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-concurrency/
Date: Wed, 07 Sep 2022 05:16:55
Message-Id: 1662527416.8899d6b6cf6b0dc3a6afffa45b31a844ca80ae62.mgorny@gentoo
1 commit: 8899d6b6cf6b0dc3a6afffa45b31a844ca80ae62
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 7 05:10:16 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 7 05:10:16 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8899d6b6
7
8 dev-python/oslo-concurrency: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/oslo-concurrency/Manifest | 1 -
13 .../oslo-concurrency/oslo-concurrency-4.5.1.ebuild | 51 ----------------------
14 2 files changed, 52 deletions(-)
15
16 diff --git a/dev-python/oslo-concurrency/Manifest b/dev-python/oslo-concurrency/Manifest
17 index e2ef7144db99..f44c8b0de32d 100644
18 --- a/dev-python/oslo-concurrency/Manifest
19 +++ b/dev-python/oslo-concurrency/Manifest
20 @@ -1,2 +1 @@
21 -DIST oslo.concurrency-4.5.1.tar.gz 59126 BLAKE2B 61f509b4ce76cd036b695bb5ad744374e029239a63a629a4b96d44c8ba29150095fe9d57000367c4d07dc7c358ef61cfa4868a2347f206327093ad32ffb85955 SHA512 88319915c90befb01a275666b4a760357c1e72f04d5faf27ab9c67629ecbf2dd3a73d077f3c57435231b55aa777a9642f26e91cc4cb27ad56eb801b2b98eca48
22 DIST oslo.concurrency-5.0.0.tar.gz 59343 BLAKE2B 412fba38e0281b2c6d7b27182d159c99730a22ec3400586481f234998cd2f446de5cdd84aaa3abb1cdd93eb9eff1294c87ce51e165dc49caa078e69932ecd19b SHA512 570acbaf599a8a177ba6bc7c009edb43db5e077c06bee5c5895d81944daf78c8dde197bd9af730b17b5075fdaf527252aa44ea0edb79d73e16714582645afb7e
23
24 diff --git a/dev-python/oslo-concurrency/oslo-concurrency-4.5.1.ebuild b/dev-python/oslo-concurrency/oslo-concurrency-4.5.1.ebuild
25 deleted file mode 100644
26 index c2a8701d0d14..000000000000
27 --- a/dev-python/oslo-concurrency/oslo-concurrency-4.5.1.ebuild
28 +++ /dev/null
29 @@ -1,51 +0,0 @@
30 -# Copyright 2021-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -DISTUTILS_USE_PEP517=setuptools
36 -PYTHON_COMPAT=( python3_{8..11} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Oslo Concurrency library"
41 -HOMEPAGE="https://pypi.org/project/oslo.concurrency/
42 - https://github.com/openstack/oslo.concurrency"
43 -SRC_URI="mirror://pypi/o/${PN/-/.}/${PN/-/.}-${PV}.tar.gz"
44 -S="${WORKDIR}/${PN/-/.}-${PV}"
45 -
46 -LICENSE="Apache-2.0"
47 -SLOT="0"
48 -KEYWORDS="amd64 ~arm arm64 ~riscv x86"
49 -
50 -RDEPEND="
51 - >=dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
52 - >=dev-python/oslo-config-5.2.0[${PYTHON_USEDEP}]
53 - >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
54 - >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}]
55 - >=dev-python/fasteners-0.7.0[${PYTHON_USEDEP}]
56 -"
57 -BDEPEND="
58 - >=dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
59 - test? (
60 - >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
61 - >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
62 - $(python_gen_cond_dep '
63 - >=dev-python/eventlet-0.19.0[${PYTHON_USEDEP}]
64 - ' 3.8 3.9)
65 - )
66 -"
67 -
68 -distutils_enable_tests unittest
69 -
70 -python_compile() {
71 - distutils-r1_python_compile
72 - if ! has "${EPYTHON}" python3.{8..9}; then
73 - find "${BUILD_DIR}"/install -name '*eventlet*.py' -delete || die
74 - fi
75 -}
76 -
77 -python_test() {
78 - cd "${BUILD_DIR}/install$(python_get_sitedir)" || die
79 - eunittest
80 -}