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-ironicclient/
Date: Thu, 30 Sep 2021 17:59:28
Message-Id: 1633024645.ba7e6068782862918e1f3bf7e2d55ef231f09ffa.arthurzam@gentoo
1 commit: ba7e6068782862918e1f3bf7e2d55ef231f09ffa
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 30 13:43:56 2021 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 30 17:57:25 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba7e6068
7
8 dev-python/python-ironicclient: add 4.8.0, enable tests, py3.9
9
10 Closes: https://bugs.gentoo.org/798393
11 Closes: https://bugs.gentoo.org/812911
12 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
13
14 dev-python/python-ironicclient/Manifest | 1 +
15 .../python-ironicclient-4.8.0.ebuild | 44 ++++++++++++++++++++++
16 2 files changed, 45 insertions(+)
17
18 diff --git a/dev-python/python-ironicclient/Manifest b/dev-python/python-ironicclient/Manifest
19 index 6144bff24e9..93c90175743 100644
20 --- a/dev-python/python-ironicclient/Manifest
21 +++ b/dev-python/python-ironicclient/Manifest
22 @@ -1 +1,2 @@
23 DIST python-ironicclient-4.4.0.tar.gz 205165 BLAKE2B eac0eea383890d9d9d70594300df5d8771217e0ba226a38da38544e715487c12d3fcace07651b84e180ee0601ae6bb3c17b6ed47130bd009ed351f1e4d270d64 SHA512 8d9325e464804503a504bbcc3211f0e6f50d4a1cccf652960d1020e1cd0141f8ac67ebcbab37ba7af417679fef3f25d5aa48b9e8134fffbc971cff34446fec3c
24 +DIST python-ironicclient-4.8.0.tar.gz 217915 BLAKE2B 6ef8636a063eaa344bd414aa5a75b08dc4ba4c615835defba522233127baa2454f9c54de40874cd5fde9de1748887ad0c1a002da31176059a5d8562a8ffeda87 SHA512 c784124e59ee836c3349e17f347b59bb96e28afd067b7de2d948563293c16d2f641c15d3312c56c9fed476e1c8c9de65949bfdc139cd9267cb210c5cc70ccbb3
25
26 diff --git a/dev-python/python-ironicclient/python-ironicclient-4.8.0.ebuild b/dev-python/python-ironicclient/python-ironicclient-4.8.0.ebuild
27 new file mode 100644
28 index 00000000000..fe7665bdc9a
29 --- /dev/null
30 +++ b/dev-python/python-ironicclient/python-ironicclient-4.8.0.ebuild
31 @@ -0,0 +1,44 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python3_{8..9} )
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Python bindings for the Ironic API"
41 +HOMEPAGE="https://www.openstack.org/"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="Apache-2.0"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +
48 +RDEPEND="
49 + >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
50 + >=dev-python/appdirs-1.3.0[${PYTHON_USEDEP}]
51 + >dev-python/cliff-2.9.0[${PYTHON_USEDEP}]
52 + >=dev-python/dogpile-cache-0.8.0[${PYTHON_USEDEP}]
53 + >=dev-python/jsonschema-3.2.0[${PYTHON_USEDEP}]
54 + >=dev-python/keystoneauth-3.11.0[${PYTHON_USEDEP}]
55 + >=dev-python/openstacksdk-0.18.0[${PYTHON_USEDEP}]
56 + >=dev-python/osc-lib-2.0.0[${PYTHON_USEDEP}]
57 + >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}]
58 + >=dev-python/pyyaml-3.13.0[${PYTHON_USEDEP}]
59 + >=dev-python/requests-2.14.2[${PYTHON_USEDEP}]
60 + >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]
61 +"
62 +BDEPEND="
63 + >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
64 + test? (
65 + >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
66 + >=dev-python/requests-mock-1.2.0[${PYTHON_USEDEP}]
67 + >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
68 + >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
69 + >=dev-python/tempest-17.1.0[${PYTHON_USEDEP}]
70 + >=dev-python/ddt-1.0.1[${PYTHON_USEDEP}]
71 + >=dev-python/python-openstackclient-3.12.0[${PYTHON_USEDEP}]
72 + )
73 +"
74 +
75 +distutils_enable_tests unittest