Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-rootwrap/
Date: Mon, 31 May 2021 20:31:23
Message-Id: 1622492836.93b352fde0af23e9256e13463387e4aee8209e2d.mgorny@gentoo
1 commit: 93b352fde0af23e9256e13463387e4aee8209e2d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 31 20:25:57 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 31 20:27:16 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93b352fd
7
8 dev-python/oslo-rootwrap: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/oslo-rootwrap/Manifest | 1 -
13 .../oslo-rootwrap/oslo-rootwrap-5.15.2.ebuild | 50 ----------------------
14 2 files changed, 51 deletions(-)
15
16 diff --git a/dev-python/oslo-rootwrap/Manifest b/dev-python/oslo-rootwrap/Manifest
17 index 9eb1e5cd74a..a175dc28aac 100644
18 --- a/dev-python/oslo-rootwrap/Manifest
19 +++ b/dev-python/oslo-rootwrap/Manifest
20 @@ -1,2 +1 @@
21 -DIST oslo.rootwrap-5.15.2.tar.gz 45566 BLAKE2B 1755a52d1e380a512c50f5314f7a4f249da9e62030abfef531bf973277a98f1f42f1c27a69a4e6e5cf64441e6a7263a3780355da4860461cfafed172ea087946 SHA512 9fc4c4678a25ebecb08026e71ef8da44bf1214f177d5330de8d68cfce8c3d85f4085a9e19f282bc8b498a36d8a7e384cde354a95619a800e3a68aba088df5aad
22 DIST oslo.rootwrap-6.2.0.tar.gz 46850 BLAKE2B 0ad998aecaf8dfe0616094ed08e64380d38fa663dc63f192b58b95a07deeb690f16f1b8de2d0666c80bc49c11c06dc7221e9b9fae7243c3569971745884b752f SHA512 bf3e91ec8a18f92f6f5974a6d8369ae73dba6e61fa3001996678b85d0bfb2426536d27097ad784169e6eca50ad23471505d5089e8d4a6a84c9e0e009a6a38f5a
23
24 diff --git a/dev-python/oslo-rootwrap/oslo-rootwrap-5.15.2.ebuild b/dev-python/oslo-rootwrap/oslo-rootwrap-5.15.2.ebuild
25 deleted file mode 100644
26 index 4c4b475ddc2..00000000000
27 --- a/dev-python/oslo-rootwrap/oslo-rootwrap-5.15.2.ebuild
28 +++ /dev/null
29 @@ -1,50 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -PYTHON_COMPAT=( python3_7 )
35 -
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="Allows fine filtering of shell commands to run as root from OpenStack services"
39 -HOMEPAGE="https://pypi.org/project/oslo.config/"
40 -SRC_URI="mirror://pypi/${PN:0:1}/oslo.rootwrap/oslo.rootwrap-${PV}.tar.gz"
41 -S="${WORKDIR}/oslo.rootwrap-${PV}"
42 -
43 -LICENSE="Apache-2.0"
44 -SLOT="0"
45 -KEYWORDS="amd64 ~arm64 x86"
46 -IUSE="test"
47 -RESTRICT="!test? ( test )"
48 -
49 -CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
50 - !~dev-python/pbr-2.1.0"
51 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
52 - ${CDEPEND}
53 - test? (
54 - >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
55 - >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
56 - >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
57 - >=dev-python/stestr-2.0.0[${PYTHON_USEDEP}]
58 - >=dev-python/sphinx-1.6.2[${PYTHON_USEDEP}]
59 - !~dev-python/sphinx-1.6.6[${PYTHON_USEDEP}]
60 - !~dev-python/sphinx-1.6.7[${PYTHON_USEDEP}]
61 - >=dev-python/openstackdocstheme-1.18.1[${PYTHON_USEDEP}]
62 - >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
63 - >=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
64 - >=dev-python/eventlet-0.18.4[${PYTHON_USEDEP}]
65 - !~dev-python/eventlet-0.20.1[${PYTHON_USEDEP}]
66 - >=dev-python/reno-2.5.0[${PYTHON_USEDEP}]
67 - >dev-python/bandit-1.1.0[${PYTHON_USEDEP}]
68 - dev-python/nose[${PYTHON_USEDEP}] )"
69 -RDEPEND=">=dev-python/six-1.10.0[${PYTHON_USEDEP}]"
70 -
71 -python_prepare_all() {
72 - sed -i '/^hacking/d' test-requirements.txt || die
73 - distutils-r1_python_prepare_all
74 -}
75 -
76 -python_test() {
77 - sed -i 's/sbin\/ip/bin\/ip/g' tests/test_rootwrap.py
78 - nosetests tests/ || die "test failed under ${EPYTHON}"
79 -}