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-cinderclient/
Date: Fri, 25 Feb 2022 23:41:34
Message-Id: 1645830994.9c6f8f35d44407b32cd396f69156990986a6d1b8.mgorny@gentoo
1 commit: 9c6f8f35d44407b32cd396f69156990986a6d1b8
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 25 22:58:45 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 25 23:16:34 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c6f8f35
7
8 dev-python/python-cinderclient: Bump to 8.3.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/python-cinderclient/Manifest | 1 +
13 .../python-cinderclient-8.3.0.ebuild | 45 ++++++++++++++++++++++
14 2 files changed, 46 insertions(+)
15
16 diff --git a/dev-python/python-cinderclient/Manifest b/dev-python/python-cinderclient/Manifest
17 index b4983caa1cf4..e82580587dd7 100644
18 --- a/dev-python/python-cinderclient/Manifest
19 +++ b/dev-python/python-cinderclient/Manifest
20 @@ -1 +1,2 @@
21 DIST python-cinderclient-8.2.0.tar.gz 233148 BLAKE2B 4ada4562ff1e51a284cf98e7ca4b324a05a4524951d6193bb4683a3986bc8a26a48373ef78613f3b94ed475992fb781b409fe58f9f3655f3f721b38f7eab770b SHA512 86e7a0c18d960f00448e20485d91443d185902db281014c99f35af463843be6d4bca80712edf44189b53e25853af064c14de18e943d9fdee29446180d9b91bbc
22 +DIST python-cinderclient-8.3.0.tar.gz 234371 BLAKE2B 092d7abdd348f5fac750efb3f3f4df1575584684ad613d22c558630576ad2f82c399af671aad7070dd224a89fa01d73333c2505dc0166d2e4c70e21ac01f298d SHA512 4d633b39a3c59cfdc2fc2c6235b3b87093f7617c89a80b50cf26d8f6fd63e8c3197d788e0b9e81347b9427cf363289b09b85376512d5820031472a735e0ca839
23
24 diff --git a/dev-python/python-cinderclient/python-cinderclient-8.3.0.ebuild b/dev-python/python-cinderclient/python-cinderclient-8.3.0.ebuild
25 new file mode 100644
26 index 000000000000..610b988ad6b8
27 --- /dev/null
28 +++ b/dev-python/python-cinderclient/python-cinderclient-8.3.0.ebuild
29 @@ -0,0 +1,45 @@
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="A client for the OpenStack Cinder API"
41 +HOMEPAGE="https://launchpad.net/python-cinderclient"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="Apache-2.0"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
47 +
48 +RDEPEND="
49 + >=dev-python/keystoneauth-4.2.1[${PYTHON_USEDEP}]
50 + >=dev-python/oslo-i18n-5.0.1[${PYTHON_USEDEP}]
51 + >=dev-python/oslo-utils-4.8.0[${PYTHON_USEDEP}]
52 + >=dev-python/pbr-5.5.0[${PYTHON_USEDEP}]
53 + >=dev-python/prettytable-0.7.2[${PYTHON_USEDEP}]
54 + >=dev-python/requests-2.25.1[${PYTHON_USEDEP}]
55 + >=dev-python/simplejson-3.5.1[${PYTHON_USEDEP}]
56 + >=dev-python/stevedore-3.3.0[${PYTHON_USEDEP}]
57 +"
58 +BDEPEND="
59 + dev-python/pbr[${PYTHON_USEDEP}]
60 + test? (
61 + dev-python/ddt[${PYTHON_USEDEP}]
62 + dev-python/fixtures[${PYTHON_USEDEP}]
63 + dev-python/oslo-serialization[${PYTHON_USEDEP}]
64 + dev-python/requests-mock[${PYTHON_USEDEP}]
65 + dev-python/testtools[${PYTHON_USEDEP}]
66 + )
67 +"
68 +
69 +distutils_enable_tests unittest
70 +
71 +python_test() {
72 + # functional tests require cloud instance access
73 + eunittest -b cinderclient/tests/unit
74 +}