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/tempest/
Date: Fri, 01 Apr 2022 18:45:15
Message-Id: 1648838562.0447a2cc185e52f8990742d88681e73c15b52dff.mgorny@gentoo
1 commit: 0447a2cc185e52f8990742d88681e73c15b52dff
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 1 18:42:42 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 1 18:42:42 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0447a2cc
7
8 dev-python/tempest: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/tempest/Manifest | 1 -
13 dev-python/tempest/tempest-29.2.0-r1.ebuild | 69 -----------------------------
14 dev-python/tempest/tempest-29.2.0.ebuild | 68 ----------------------------
15 3 files changed, 138 deletions(-)
16
17 diff --git a/dev-python/tempest/Manifest b/dev-python/tempest/Manifest
18 index 7accabf8fa65..1e820dd27853 100644
19 --- a/dev-python/tempest/Manifest
20 +++ b/dev-python/tempest/Manifest
21 @@ -1,2 +1 @@
22 -DIST tempest-29.2.0.tar.gz 1092824 BLAKE2B cad7284ab5a5a39a1a5bdf9f2365a85d337e4ebe17243bc3692a98402ef7f11b27b94e0252d9d427f358c343b736b500db5386098950c88b09f23d87de9ad856 SHA512 4042bce9c5d7cd26d652189d82ee91ac43d73a515b690820dfe05b70c2e792ec6f3bb0be5566bb37e81965015f62773414c8a16cc77512b1e52f141eafbd542d
23 DIST tempest-30.0.0.tar.gz 1110715 BLAKE2B b697ecbced21124719e6b1d7ebd2c4f8ba83528a84da0b8f8109c155b61124581b97c180bbdc6885ae53850fb28daed25772d12be5026c44ecc3fe4f0dad98a3 SHA512 fa9be713ccb130ad065628592f59bebda3dc1fa8222ab3c382ec5b299504dc0a730f2110ef80f98bbdd1288b5785ab745fe39b721b77f7343983c1bc0a036f19
24
25 diff --git a/dev-python/tempest/tempest-29.2.0-r1.ebuild b/dev-python/tempest/tempest-29.2.0-r1.ebuild
26 deleted file mode 100644
27 index e9f0d2aad3d1..000000000000
28 --- a/dev-python/tempest/tempest-29.2.0-r1.ebuild
29 +++ /dev/null
30 @@ -1,69 +0,0 @@
31 -# Copyright 2021-2022 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
35 -
36 -DISTUTILS_USE_PEP517=setuptools
37 -PYTHON_COMPAT=( python3_{8..10} )
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="OpenStack Integration Testing"
42 -HOMEPAGE="https://pypi.org/project/tempest/ https://docs.openstack.org/tempest/latest/"
43 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 -
45 -LICENSE="Apache-2.0"
46 -SLOT="0"
47 -KEYWORDS="~amd64 ~arm ~arm64 ~x86"
48 -
49 -RDEPEND="
50 - >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
51 - >dev-python/cliff-2.9.0[${PYTHON_USEDEP}]
52 - >=dev-python/jsonschema-3.2.0[${PYTHON_USEDEP}]
53 - >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
54 - >=dev-python/paramiko-2.7.0[${PYTHON_USEDEP}]
55 - >=dev-python/netaddr-0.7.18[${PYTHON_USEDEP}]
56 - >=dev-python/oslo-concurrency-3.26.0[${PYTHON_USEDEP}]
57 - >=dev-python/oslo-config-5.2.0[${PYTHON_USEDEP}]
58 - >=dev-python/oslo-log-3.36.0[${PYTHON_USEDEP}]
59 - >=dev-python/oslo-utils-4.7.0[${PYTHON_USEDEP}]
60 - >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
61 - >=dev-python/pyyaml-3.12[${PYTHON_USEDEP}]
62 - >=dev-python/subunit-1.0.0[${PYTHON_USEDEP}]
63 - >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]
64 - >=dev-python/prettytable-0.7.1[${PYTHON_USEDEP}]
65 - >=dev-python/urllib3-1.21.1[${PYTHON_USEDEP}]
66 - >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
67 -"
68 -BDEPEND="
69 - >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
70 - test? (
71 - >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
72 - dev-python/stestr[${PYTHON_USEDEP}]
73 - )
74 -"
75 -
76 -distutils_enable_tests unittest
77 -
78 -src_prepare() {
79 - # Small subset of tests, which fail as result of not using specific
80 - # testing environment. Others expect to run suite using stestr.
81 - rm -r tempest/tests/lib/services/volume/v3/ || die
82 - rm tempest/tests/test_list_tests.py || die
83 - rm tempest/tests/lib/cmd/test_check_uuid.py || die
84 -
85 - # remove dep on hacking
86 - rm tempest/tests/test_hacking.py || die
87 -
88 - distutils-r1_src_prepare
89 -}
90 -
91 -python_test() {
92 - local -x OS_LOG_CAPTURE=1 OS_STDOUT_CAPTURE=1 OS_STDERR_CAPTURE=1 OS_TEST_TIMEOUT=320
93 - eunittest -b -s tempest/tests -t .
94 -}
95 -
96 -src_install() {
97 - distutils-r1_src_install
98 - mv "${ED}/usr/etc" "${ED}/etc" || die
99 -}
100
101 diff --git a/dev-python/tempest/tempest-29.2.0.ebuild b/dev-python/tempest/tempest-29.2.0.ebuild
102 deleted file mode 100644
103 index 5db5ba750c7a..000000000000
104 --- a/dev-python/tempest/tempest-29.2.0.ebuild
105 +++ /dev/null
106 @@ -1,68 +0,0 @@
107 -# Copyright 2021 Gentoo Authors
108 -# Distributed under the terms of the GNU General Public License v2
109 -
110 -EAPI=8
111 -
112 -PYTHON_COMPAT=( python3_{8..9} )
113 -inherit distutils-r1
114 -
115 -DESCRIPTION="OpenStack Integration Testing"
116 -HOMEPAGE="https://pypi.org/project/tempest/ https://docs.openstack.org/tempest/latest/"
117 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
118 -
119 -LICENSE="Apache-2.0"
120 -SLOT="0"
121 -KEYWORDS="amd64 ~arm arm64 x86"
122 -
123 -RDEPEND="
124 - >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
125 - >dev-python/cliff-2.9.0[${PYTHON_USEDEP}]
126 - >=dev-python/jsonschema-3.2.0[${PYTHON_USEDEP}]
127 - >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
128 - >=dev-python/paramiko-2.7.0[${PYTHON_USEDEP}]
129 - >=dev-python/netaddr-0.7.18[${PYTHON_USEDEP}]
130 - >=dev-python/oslo-concurrency-3.26.0[${PYTHON_USEDEP}]
131 - >=dev-python/oslo-config-5.2.0[${PYTHON_USEDEP}]
132 - >=dev-python/oslo-log-3.36.0[${PYTHON_USEDEP}]
133 - >=dev-python/oslo-utils-4.7.0[${PYTHON_USEDEP}]
134 - >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
135 - >=dev-python/pyyaml-3.12[${PYTHON_USEDEP}]
136 - >=dev-python/subunit-1.0.0[${PYTHON_USEDEP}]
137 - >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]
138 - >=dev-python/prettytable-0.7.1[${PYTHON_USEDEP}]
139 - >=dev-python/urllib3-1.21.1[${PYTHON_USEDEP}]
140 - >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
141 -"
142 -BDEPEND="
143 - >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
144 - test? (
145 - >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
146 - dev-python/stestr[${PYTHON_USEDEP}]
147 - )
148 -"
149 -
150 -distutils_enable_tests unittest
151 -
152 -src_prepare() {
153 - # Small subset of tests, which fail as result of not using specific
154 - # testing environment. Others expect to run suite using stestr.
155 - rm -r tempest/tests/lib/services/volume/v3/ || die
156 - rm tempest/tests/test_list_tests.py || die
157 - rm tempest/tests/lib/cmd/test_check_uuid.py || die
158 -
159 - # remove dep on hacking
160 - rm tempest/tests/test_hacking.py || die
161 -
162 - distutils-r1_src_prepare
163 -}
164 -
165 -python_test() {
166 - distutils_install_for_testing
167 - local -x OS_LOG_CAPTURE=1 OS_STDOUT_CAPTURE=1 OS_STDERR_CAPTURE=1 OS_TEST_TIMEOUT=320
168 - eunittest -b -s tempest/tests -t .
169 -}
170 -
171 -src_install() {
172 - distutils-r1_src_install
173 - mv "${ED}/usr/etc" "${ED}/etc" || die
174 -}