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: Fri, 05 Jan 2018 13:26:24
Message-Id: 1515158760.27426c967a1399cdaecfce3e7f0f20229537ffaa.mgorny@gentoo
1 commit: 27426c967a1399cdaecfce3e7f0f20229537ffaa
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 5 09:57:44 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 5 13:26:00 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27426c96
7
8 dev-python/oslo-rootwrap: Clean old up
9
10 dev-python/oslo-rootwrap/Manifest | 1 -
11 .../oslo-rootwrap/oslo-rootwrap-5.4.2.ebuild | 47 ----------------------
12 2 files changed, 48 deletions(-)
13
14 diff --git a/dev-python/oslo-rootwrap/Manifest b/dev-python/oslo-rootwrap/Manifest
15 index 0aaaf780cf8..ff43da473a7 100644
16 --- a/dev-python/oslo-rootwrap/Manifest
17 +++ b/dev-python/oslo-rootwrap/Manifest
18 @@ -1,2 +1 @@
19 -DIST oslo.rootwrap-5.4.2.tar.gz 42789 BLAKE2B f6587ff6f57bbef75f39808373b6d76b86fb0cbb5129c0c3421aceeab29ecfc5b2cab61471dc80d7ce4a6519a432b4d572f158ac513c7a76ec4148f717346e44 SHA512 32f692248e4006e5809edb2669d4f1105cd8592c69b36bd17c4cac786f26face4971e60505e7d2d775d4b2f54a369c7acdfb3da85e19dbd96d65203f5d8df7a7
20 DIST oslo.rootwrap-5.9.2.tar.gz 43716 BLAKE2B 4e455fe52c6f20824bf220a8444dfcdc916dfd85f0ff42edf8e3a6b8a065a45344122f56272943cc06f88fc272522af9914dd2a961d3c98c30ba66741419aa1e SHA512 3ad7c2d028c3052476bc26c00bf34c421b44db59cae2d45b5d1041902c14227f6de89a9b8fb36f123c9a9e477dcee42e567425439d9d3eb12a5f701c5a13be6b
21
22 diff --git a/dev-python/oslo-rootwrap/oslo-rootwrap-5.4.2.ebuild b/dev-python/oslo-rootwrap/oslo-rootwrap-5.4.2.ebuild
23 deleted file mode 100644
24 index 82a554a79ab..00000000000
25 --- a/dev-python/oslo-rootwrap/oslo-rootwrap-5.4.2.ebuild
26 +++ /dev/null
27 @@ -1,47 +0,0 @@
28 -# Copyright 1999-2017 Gentoo Foundation
29 -# Distributed under the terms of the GNU General Public License v2
30 -
31 -EAPI=6
32 -PYTHON_COMPAT=( python2_7 python3_4 python3_5 )
33 -
34 -inherit distutils-r1
35 -
36 -DESCRIPTION="Allows fine filtering of shell commands to run as root from OpenStack services"
37 -HOMEPAGE="https://pypi.python.org/pypi/oslo.config"
38 -SRC_URI="mirror://pypi/${PN:0:1}/oslo.rootwrap/oslo.rootwrap-${PV}.tar.gz"
39 -S="${WORKDIR}/oslo.rootwrap-${PV}"
40 -
41 -LICENSE="Apache-2.0"
42 -SLOT="0"
43 -KEYWORDS="amd64 ~arm64 x86"
44 -IUSE="test"
45 -
46 -CDEPEND="
47 - >=dev-python/pbr-1.8[${PYTHON_USEDEP}]"
48 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
49 - ${CDEPEND}
50 - test? (
51 - >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
52 - >=dev-python/subunit-0.0.18[${PYTHON_USEDEP}]
53 - >=dev-python/testrepository-0.0.18[${PYTHON_USEDEP}]
54 - >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
55 - >=dev-python/testtools-1.4.0[${PYTHON_USEDEP}]
56 - >=dev-python/sphinx-1.2.1[${PYTHON_USEDEP}]
57 - <dev-python/sphinx-1.4[${PYTHON_USEDEP}]
58 - >=dev-python/oslo-sphinx-4.7.0[${PYTHON_USEDEP}]
59 - >=dev-python/oslotest-1.10.0[${PYTHON_USEDEP}]
60 - >=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
61 - >=dev-python/eventlet-0.18.4[${PYTHON_USEDEP}]
62 - >=dev-python/reno-1.8.0[${PYTHON_USEDEP}]
63 - dev-python/nose[${PYTHON_USEDEP}] )"
64 -RDEPEND=">=dev-python/six-1.9.0[${PYTHON_USEDEP}]"
65 -
66 -python_prepare_all() {
67 - sed -i '/^hacking/d' test-requirements.txt || die
68 - distutils-r1_python_prepare_all
69 -}
70 -
71 -python_test() {
72 - sed -i 's/sbin\/ip/bin\/ip/g' tests/test_rootwrap.py
73 - nosetests tests/ || die "test failed under ${EPYTHON}"
74 -}