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-novaclient/
Date: Thu, 01 Sep 2022 19:42:13
Message-Id: 1662061313.50bbd1ff73de8636cda0fde0163c8c679a5708ef.arthurzam@gentoo
1 commit: 50bbd1ff73de8636cda0fde0163c8c679a5708ef
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 1 19:00:12 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 1 19:41:53 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50bbd1ff
7
8 dev-python/python-novaclient: add 18.1.0
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/python-novaclient/Manifest | 1 +
13 .../python-novaclient-18.1.0.ebuild | 61 ++++++++++++++++++++++
14 2 files changed, 62 insertions(+)
15
16 diff --git a/dev-python/python-novaclient/Manifest b/dev-python/python-novaclient/Manifest
17 index 34e6b13c2bd2..0c641d78a686 100644
18 --- a/dev-python/python-novaclient/Manifest
19 +++ b/dev-python/python-novaclient/Manifest
20 @@ -1 +1,2 @@
21 DIST python-novaclient-18.0.0.tar.gz 335142 BLAKE2B 0b76ce92897e16310892427efc9062d20d1316be61e7391eaf9aca618844c4420f963591d1aa773b2d1ae1785aaf63888de6aec5baabbbedb09e4937a14d24d2 SHA512 fe3c5ad591679329a77421a1ef520823855d0ba1a7aa077d92a8b01e2b8bdab814c8cc94b5f76c1e59d6c7e70355f6efebd7b3596a4d4f74966aaedc38deac4a
22 +DIST python-novaclient-18.1.0.tar.gz 337772 BLAKE2B 593b47e86401e83ca9b42a62bb42e531becc8ca66fb460675f3bfacea237c6d643dd38cd41abb0185714c5ee1afae10c5aea269f16672cd5131f6058e08064d6 SHA512 907acbb3b9aae0c0ad463425260b2ca4ff968efd9ac2113b36d19dfa5bced29fca0ca6f549b479b3b6089b9b6e558f3ae31617edd99e2485eafe8403893f6501
23
24 diff --git a/dev-python/python-novaclient/python-novaclient-18.1.0.ebuild b/dev-python/python-novaclient/python-novaclient-18.1.0.ebuild
25 new file mode 100644
26 index 000000000000..ca61108fb265
27 --- /dev/null
28 +++ b/dev-python/python-novaclient/python-novaclient-18.1.0.ebuild
29 @@ -0,0 +1,61 @@
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 Nova API"
41 +HOMEPAGE="https://github.com/openstack/python-novaclient"
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/pbr-2.1.0[${PYTHON_USEDEP}]
50 + >=dev-python/keystoneauth-3.5.0[${PYTHON_USEDEP}]
51 + >=dev-python/iso8601-0.1.11[${PYTHON_USEDEP}]
52 + >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
53 + >dev-python/oslo-serialization-2.19.1[${PYTHON_USEDEP}]
54 + >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}]
55 + >=dev-python/prettytable-0.7.2[${PYTHON_USEDEP}]
56 + >dev-python/requests-2.12.2[${PYTHON_USEDEP}]
57 + >=dev-python/stevedore-2.0.1[${PYTHON_USEDEP}]
58 +"
59 +# Tests fail with dev-python/prettytable-3.4.0
60 +BDEPEND="
61 + >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
62 + test? (
63 + dev-python/bandit[${PYTHON_USEDEP}]
64 + dev-python/ddt[${PYTHON_USEDEP}]
65 + dev-python/fixtures[${PYTHON_USEDEP}]
66 + dev-python/python-keystoneclient[${PYTHON_USEDEP}]
67 + dev-python/python-cinderclient[${PYTHON_USEDEP}]
68 + dev-python/python-glanceclient[${PYTHON_USEDEP}]
69 + dev-python/python-neutronclient[${PYTHON_USEDEP}]
70 + dev-python/requests-mock[${PYTHON_USEDEP}]
71 + dev-python/openstacksdk[${PYTHON_USEDEP}]
72 + dev-python/testscenarios[${PYTHON_USEDEP}]
73 + dev-python/testtools[${PYTHON_USEDEP}]
74 + dev-python/tempest[${PYTHON_USEDEP}]
75 + <dev-python/prettytable-3.4.0[${PYTHON_USEDEP}]
76 + )
77 +"
78 +
79 +distutils_enable_tests unittest
80 +
81 +src_prepare() {
82 + sed -e 's/test_osprofiler/_&/' -i novaclient/tests/unit/test_shell.py || die
83 + sed -e 's/novaclient\.tests\.unit\.//' -i novaclient/tests/unit/test_api_versions.py || die
84 + distutils-r1_src_prepare
85 +}
86 +
87 +python_test() {
88 + # functional tests require cloud instance access
89 + eunittest -b novaclient/tests/unit
90 +}