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-glanceclient/
Date: Tue, 31 Aug 2021 12:56:03
Message-Id: 1630414540.bcbf1318f03eaddc40d4feeccd4506ba57579f9a.arthurzam@gentoo
1 commit: bcbf1318f03eaddc40d4feeccd4506ba57579f9a
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 31 10:40:37 2021 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 31 12:55:40 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcbf1318
7
8 dev-python/python-glanceclient: enable py3.9, enable tests
9
10 Closes: https://bugs.gentoo.org/798360
11 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
12
13 .../python-glanceclient-3.2.2-r1.ebuild | 46 ++++++++++++++++++++++
14 1 file changed, 46 insertions(+)
15
16 diff --git a/dev-python/python-glanceclient/python-glanceclient-3.2.2-r1.ebuild b/dev-python/python-glanceclient/python-glanceclient-3.2.2-r1.ebuild
17 new file mode 100644
18 index 00000000000..e0999c504f8
19 --- /dev/null
20 +++ b/dev-python/python-glanceclient/python-glanceclient-3.2.2-r1.ebuild
21 @@ -0,0 +1,46 @@
22 +# Copyright 1999-2021 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +PYTHON_COMPAT=( python3_{8..9} )
28 +inherit distutils-r1
29 +
30 +DESCRIPTION="A client for the OpenStack Glance API"
31 +HOMEPAGE="https://github.com/openstack/python-glanceclient"
32 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
33 +
34 +LICENSE="Apache-2.0"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
37 +IUSE="test"
38 +RESTRICT="!test? ( test )"
39 +
40 +RDEPEND="
41 + >=dev-python/keystoneauth-3.6.2[${PYTHON_USEDEP}]
42 + >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}]
43 + >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
44 + >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
45 + >=dev-python/prettytable-0.7.1[${PYTHON_USEDEP}]
46 + <dev-python/prettytable-0.8[${PYTHON_USEDEP}]
47 + >=dev-python/pyopenssl-17.1.0[${PYTHON_USEDEP}]
48 + >=dev-python/requests-2.14.2[${PYTHON_USEDEP}]
49 + >=dev-python/warlock-1.2.0[${PYTHON_USEDEP}]
50 + <dev-python/warlock-2[${PYTHON_USEDEP}]
51 + >=dev-python/wrapt-1.7.0[${PYTHON_USEDEP}]
52 +"
53 +BDEPEND="
54 + >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
55 + test? (
56 + dev-python/ddt[${PYTHON_USEDEP}]
57 + dev-python/fixtures[${PYTHON_USEDEP}]
58 + dev-python/requests-mock[${PYTHON_USEDEP}]
59 + dev-python/stestr[${PYTHON_USEDEP}]
60 + dev-python/testscenarios[${PYTHON_USEDEP}]
61 + dev-python/testtools[${PYTHON_USEDEP}]
62 + )
63 +"
64 +
65 +python_test() {
66 + "${EPYTHON}" -m stestr run --debug || die "Tests failed with ${EPYTHON}"
67 +}