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-swiftclient/
Date: Thu, 18 Aug 2022 06:18:54
Message-Id: 1660803517.e3cc299e5228c9890fa66d4ad1fdc7e4b8a76fca.mgorny@gentoo
1 commit: e3cc299e5228c9890fa66d4ad1fdc7e4b8a76fca
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 18 05:11:06 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 18 06:18:37 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3cc299e
7
8 dev-python/python-swiftclient: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/python-swiftclient/Manifest | 1 -
13 .../python-swiftclient-4.0.0.ebuild | 40 ----------------------
14 2 files changed, 41 deletions(-)
15
16 diff --git a/dev-python/python-swiftclient/Manifest b/dev-python/python-swiftclient/Manifest
17 index b5c4eb220a2f..05ac41ea40d0 100644
18 --- a/dev-python/python-swiftclient/Manifest
19 +++ b/dev-python/python-swiftclient/Manifest
20 @@ -1,2 +1 @@
21 -DIST python-swiftclient-4.0.0.tar.gz 200490 BLAKE2B 37cadf27758640a916014e09309282a4b7ffebb3e578ae7411744fafd22431cfb748cffb4127309b20a8b2d8daca7f8f0a1ed6431f55766c33b243744ce5a71e SHA512 9058558564973ea2a4944e87dedd7b9b12e106672576da1d796eae336d3127ce8b35803cade93c605b38fd16a2d3466e6dc710838ceb77143059007625299360
22 DIST python-swiftclient-4.0.1.tar.gz 201300 BLAKE2B 6a506ae8996a3937048f67e7b3f8e5185605f9e5fe955f23e1131eead4d3699fb01e7851ab632e3dfaa75c12e88ec17cec5b4c1b19c1663163a2ff95530561ec SHA512 0028bc12a9694047e31da3c05fe92ce846de8858743771281cc9b93f0826c596bb6ed5ee72f4e5c68c4bba2dbd9f311062dccdf13c9917536d2aaec7eaf33ef9
23
24 diff --git a/dev-python/python-swiftclient/python-swiftclient-4.0.0.ebuild b/dev-python/python-swiftclient/python-swiftclient-4.0.0.ebuild
25 deleted file mode 100644
26 index 4ec90b98b6ca..000000000000
27 --- a/dev-python/python-swiftclient/python-swiftclient-4.0.0.ebuild
28 +++ /dev/null
29 @@ -1,40 +0,0 @@
30 -# Copyright 1999-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..10} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Python bindings to the OpenStack Object Storage API"
41 -HOMEPAGE="https://launchpad.net/python-swiftclient"
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"
47 -
48 -RDEPEND="
49 - >=dev-python/requests-2.4.0[${PYTHON_USEDEP}]
50 -"
51 -BDEPEND="
52 - dev-python/pbr[${PYTHON_USEDEP}]
53 - test? (
54 - >=dev-python/keystoneauth-3.4.0[${PYTHON_USEDEP}]
55 - dev-python/python-keystoneclient[${PYTHON_USEDEP}]
56 - >=dev-python/mock-1.2.0[${PYTHON_USEDEP}]
57 - >=dev-python/openstacksdk-0.11.0[${PYTHON_USEDEP}]
58 - )
59 -"
60 -
61 -distutils_enable_tests unittest
62 -
63 -python_prepare_all() {
64 - sed -e 's/test_password_prompt/_&/' -i test/unit/test_shell.py || die
65 - # fix duplicate script/entry point
66 - # https://bugs.launchpad.net/python-swiftclient/+bug/1975361
67 - sed -i -e '/bin\/swift/d' setup.cfg || die
68 - distutils-r1_python_prepare_all
69 -}