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/python-glanceclient/
Date: Fri, 01 Apr 2022 18:45:15
Message-Id: 1648838646.45f6b8d65f6a7c81af9f9587be6bc684c53d21d5.mgorny@gentoo
1 commit: 45f6b8d65f6a7c81af9f9587be6bc684c53d21d5
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 1 18:44:06 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 1 18:44:06 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45f6b8d6
7
8 dev-python/python-glanceclient: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/python-glanceclient/Manifest | 1 -
13 .../python-glanceclient-3.5.0.ebuild | 46 ----------------------
14 2 files changed, 47 deletions(-)
15
16 diff --git a/dev-python/python-glanceclient/Manifest b/dev-python/python-glanceclient/Manifest
17 index 1a0e53122ecf..42d07c708631 100644
18 --- a/dev-python/python-glanceclient/Manifest
19 +++ b/dev-python/python-glanceclient/Manifest
20 @@ -1,2 +1 @@
21 -DIST python-glanceclient-3.5.0.tar.gz 198273 BLAKE2B 7861a2124a9474c4f6267f5b82e6d7fa9825d3cdc8411fbb05afabf69928dd230a881452de57cf54f9cd1a52157f806826036d85f6a93651980ce65e86afd520 SHA512 e5db1afeea7e3f653d7afac7961aeb3ec28df5dc40bba6b8b70795efcfc66928c2af45ecc0e4bbcc0d59a0157599e4ef3af090a8b0ccd0d727e8a94d4f8c866e
22 DIST python-glanceclient-3.6.0.tar.gz 202581 BLAKE2B 20bf5ee863cc3d319cc7b670f4a218c9b84b49c392f7a7756636a93643ddf81781f808d6d966ca1982246b66b7963354c433239f554eb2aa0291bd1d57da2e79 SHA512 7bcf08386cfe6d4787dd8e6616907814a53fcc35bdac1818aef7ba094dcd37dfddddda43a1451d55f22d175f400f8680801d1a43508c5d85ce39f15164b71a5d
23
24 diff --git a/dev-python/python-glanceclient/python-glanceclient-3.5.0.ebuild b/dev-python/python-glanceclient/python-glanceclient-3.5.0.ebuild
25 deleted file mode 100644
26 index 0838967ec8c5..000000000000
27 --- a/dev-python/python-glanceclient/python-glanceclient-3.5.0.ebuild
28 +++ /dev/null
29 @@ -1,46 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{8..9} )
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="A client for the OpenStack Glance API"
39 -HOMEPAGE="https://github.com/openstack/python-glanceclient"
40 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41 -
42 -LICENSE="Apache-2.0"
43 -SLOT="0"
44 -KEYWORDS="amd64 ~arm arm64 x86"
45 -
46 -RDEPEND="
47 - >=dev-python/keystoneauth-3.6.2[${PYTHON_USEDEP}]
48 - >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}]
49 - >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
50 - >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
51 - >=dev-python/prettytable-0.7.1[${PYTHON_USEDEP}]
52 - >=dev-python/pyopenssl-17.1.0[${PYTHON_USEDEP}]
53 - >=dev-python/requests-2.14.2[${PYTHON_USEDEP}]
54 - >=dev-python/warlock-1.2.0[${PYTHON_USEDEP}]
55 - <dev-python/warlock-2[${PYTHON_USEDEP}]
56 - >=dev-python/wrapt-1.7.0[${PYTHON_USEDEP}]
57 -"
58 -BDEPEND="
59 - >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
60 - test? (
61 - dev-python/ddt[${PYTHON_USEDEP}]
62 - dev-python/fixtures[${PYTHON_USEDEP}]
63 - dev-python/requests-mock[${PYTHON_USEDEP}]
64 - dev-python/tempest[${PYTHON_USEDEP}]
65 - dev-python/testscenarios[${PYTHON_USEDEP}]
66 - dev-python/testtools[${PYTHON_USEDEP}]
67 - )
68 -"
69 -
70 -distutils_enable_tests unittest
71 -
72 -python_test() {
73 - # functional tests require cloud instance access
74 - eunittest -b glanceclient/tests/unit
75 -}