Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-cinderclient/
Date: Wed, 31 Aug 2022 19:08:41
Message-Id: 1661972904.a2a5041e3494098a2d4cbd42434b61d0a64e30fb.arthurzam@gentoo
1 commit: a2a5041e3494098a2d4cbd42434b61d0a64e30fb
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 31 18:56:39 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 31 19:08:24 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2a5041e
7
8 dev-python/python-cinderclient: add 9.1.0
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/python-cinderclient/Manifest | 1 +
13 .../python-cinderclient-9.1.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 b6c350f39f21..deb1696c82d2 100644
18 --- a/dev-python/python-cinderclient/Manifest
19 +++ b/dev-python/python-cinderclient/Manifest
20 @@ -1 +1,2 @@
21 DIST python-cinderclient-9.0.0.tar.gz 234533 BLAKE2B 18d673cbe02c5a4221b8667d051b1e0c1cbfe0c071e2b8c2f37b37dcf4ea9adae7ee64a7d5c8663c8ebd5946be53d91e253b9fb1df75e0d7f4dd8554098d22db SHA512 66542e10041d567fd7193a577ea5e8e7de6d7f735e05b1135f5d41e88847a6d042356431f54b481d9c13ec99c56e6d898df0222737e17c21fe6be6cfa886eafe
22 +DIST python-cinderclient-9.1.0.tar.gz 234608 BLAKE2B 9ff63454e8162d731517ce2d98b6ea0c3cf04ef5a885e30afaa67444eb7f814c1ac205a0a216c7a3b92311be5687b9e2561aa02936e87b91ca61c8ea663e069f SHA512 2aa55331d5f372cccb946a4be2e25d4cc6a1d9d9676f1f32b9b51f141d107f74bcb1d0d7a5ef94b931fc5a5ccacb43f639db635217a7833d7738296734938f8b
23
24 diff --git a/dev-python/python-cinderclient/python-cinderclient-9.1.0.ebuild b/dev-python/python-cinderclient/python-cinderclient-9.1.0.ebuild
25 new file mode 100644
26 index 000000000000..69b8678ff2eb
27 --- /dev/null
28 +++ b/dev-python/python-cinderclient/python-cinderclient-9.1.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 ~riscv ~x86"
47 +
48 +RDEPEND="
49 + >=dev-python/keystoneauth-4.3.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 +}