Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/oslotest/
Date: Tue, 11 Feb 2020 19:06:46
Message-Id: 1581447968.8a226aed49c7639e2efc898c43d29a9578877dae.prometheanfire@gentoo
1 commit: 8a226aed49c7639e2efc898c43d29a9578877dae
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 11 18:36:58 2020 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 11 19:06:08 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a226aed
7
8 dev-python/oslotest: cleanup
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 dev-python/oslotest/Manifest | 1 -
14 dev-python/oslotest/oslotest-3.2.0.ebuild | 63 -------------------------------
15 2 files changed, 64 deletions(-)
16
17 diff --git a/dev-python/oslotest/Manifest b/dev-python/oslotest/Manifest
18 index d0f1e89d22f..1487fd07ffd 100644
19 --- a/dev-python/oslotest/Manifest
20 +++ b/dev-python/oslotest/Manifest
21 @@ -1,2 +1 @@
22 -DIST oslotest-3.2.0.tar.gz 35445 BLAKE2B d33c70e760fc595586c2d7b0ce6ed1f63b73c89ba078f85b70d3b6b1af1c4d115e6eb7b431f9ef52abf50290eb47a1d3adb2d014c2ba5cf7b93ecf0e46401a26 SHA512 4513291e2bec939f9734255cb0fe3f85b9eb8a8cadce58873ad4e85365a0ec27bc2084085f5b95b681b5e811b62458e18fe63aff1e022b2d8ace0ca48bd6a527
23 DIST oslotest-3.7.1.tar.gz 38176 BLAKE2B 94924dca8384dcc8ba9e4f62220eb6d29b27b38966ffce7dddbd23d5c5e66493141ce4170565325a0516648db186a0171cd33de6d536bb8ed5cdef76161d4f94 SHA512 dfc55bc91ebd8ef448d4c69b2af51b8f2a9f2068b2ef2ec1cfbcfffc27eff7ccafb00dc2a3059730427aecbcd815f9dee2f00b8c74df154c8dbb95793aff7e78
24
25 diff --git a/dev-python/oslotest/oslotest-3.2.0.ebuild b/dev-python/oslotest/oslotest-3.2.0.ebuild
26 deleted file mode 100644
27 index 9132d32067c..00000000000
28 --- a/dev-python/oslotest/oslotest-3.2.0.ebuild
29 +++ /dev/null
30 @@ -1,63 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -
36 -PYTHON_COMPAT=( python3_{6,7} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Oslo test framework"
41 -HOMEPAGE="https://launchpad.net/oslo"
42 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 -
44 -LICENSE="Apache-2.0"
45 -SLOT="0"
46 -KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
47 -IUSE="doc test"
48 -RESTRICT="!test? ( test )"
49 -
50 -CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]"
51 -DEPEND="
52 - dev-python/setuptools[${PYTHON_USEDEP}]
53 - ${CDEPEND}
54 - test? (
55 - >=dev-python/oslo-config-5.1.0[${PYTHON_USEDEP}]
56 - )
57 - doc? (
58 - >=dev-python/openstackdocstheme-1.17.0[${PYTHON_USEDEP}]
59 - >=dev-python/sphinx-1.6.2[${PYTHON_USEDEP}]
60 - >=dev-python/reno-2.5.0[${PYTHON_USEDEP}]
61 - )
62 -"
63 -RDEPEND="
64 - >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
65 - >=dev-python/subunit-1.0.0[${PYTHON_USEDEP}]
66 - >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
67 - >=dev-python/testrepository-0.0.18[${PYTHON_USEDEP}]
68 - >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
69 - >=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
70 - >=dev-python/mox3-0.20.0[${PYTHON_USEDEP}]
71 - >=dev-python/os-client-config-1.28.0[${PYTHON_USEDEP}]
72 -"
73 -
74 -python_compile_all() {
75 - if use doc; then
76 - esetup.py build_sphinx -b man
77 - fi
78 -}
79 -
80 -python_test() {
81 - rm -rf .testrepository || die "couldn't remove '.testrepository' under ${EPYTHON}"
82 -
83 - testr init || die "testr init failed under ${EPYTHON}"
84 - testr run || die "testr run failed under ${EPYTHON}"
85 -}
86 -
87 -python_install_all() {
88 - if use doc; then
89 - doman doc/build/man/oslotest.1
90 - fi
91 -
92 - distutils-r1_python_install_all
93 -}