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/keystoneauth/
Date: Sat, 21 May 2022 06:47:22
Message-Id: 1653115626.bdca96ae06e272f0a3a2f7b8fb89c8d336afb07d.mgorny@gentoo
1 commit: bdca96ae06e272f0a3a2f7b8fb89c8d336afb07d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 21 05:40:31 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat May 21 06:47:06 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdca96ae
7
8 dev-python/keystoneauth: Bump to 4.6.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/keystoneauth/Manifest | 1 +
13 dev-python/keystoneauth/keystoneauth-4.6.0.ebuild | 62 +++++++++++++++++++++++
14 2 files changed, 63 insertions(+)
15
16 diff --git a/dev-python/keystoneauth/Manifest b/dev-python/keystoneauth/Manifest
17 index 47ebd25c1298..0629976d5c18 100644
18 --- a/dev-python/keystoneauth/Manifest
19 +++ b/dev-python/keystoneauth/Manifest
20 @@ -1 +1,2 @@
21 DIST keystoneauth1-4.5.0.tar.gz 266418 BLAKE2B cd56e6d62e185ded667b2e9a53478e65fdea7eea203e3598193b34137297a5b75e315433882a08d16f360936208eb55c6d4e5c80e64161f1ce00db2633e59d7a SHA512 eebf9f15624d4544351b26e80af4023dab3a60ad2848b14c1cf6ab4deab50d2c9812747f3e737aacd9e49eacaff3960d8cb1432067d2648d7d2552fdad907457
22 +DIST keystoneauth1-4.6.0.tar.gz 267019 BLAKE2B ad1df2ce6f88ca03f1c9cde6bd84014fc7afedb3fb2375bc95461bab466f82464393e20919e4e506bce2cdbf1283ef53777c7ab3e92e2195b21d95459814f408 SHA512 fe6fbb0e47fb3608b0653362da0d19bdcb7055f9d043c776d487a2f6af76bda1cc1d8a2b87a771cafb54d0cd349695618428ed7dd93aba273d3d455b4175cbc8
23
24 diff --git a/dev-python/keystoneauth/keystoneauth-4.6.0.ebuild b/dev-python/keystoneauth/keystoneauth-4.6.0.ebuild
25 new file mode 100644
26 index 000000000000..3be77a24f5f4
27 --- /dev/null
28 +++ b/dev-python/keystoneauth/keystoneauth-4.6.0.ebuild
29 @@ -0,0 +1,62 @@
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="This package contains tools for authenticating to an OpenStack-based cloud"
41 +HOMEPAGE="https://github.com/openstack/keystoneauth"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}1/${PN}1-${PV}.tar.gz"
43 +S="${WORKDIR}/${PN}1-${PV}"
44 +
45 +LICENSE="Apache-2.0"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
48 +
49 +CDEPEND="
50 + >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
51 +"
52 +RDEPEND="
53 + ${CDEPEND}
54 + >=dev-python/iso8601-0.1.11[${PYTHON_USEDEP}]
55 + >=dev-python/requests-2.14.2[${PYTHON_USEDEP}]
56 + >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
57 + >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]
58 + >=dev-python/os-service-types-1.2.0[${PYTHON_USEDEP}]
59 +"
60 +BDEPEND="
61 + ${CDEPEND}
62 + test? (
63 + >=dev-python/betamax-0.7.0[${PYTHON_USEDEP}]
64 + >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
65 + >=dev-python/lxml-4.2.0[${PYTHON_USEDEP}]
66 + >=dev-python/oauthlib-0.6.2[${PYTHON_USEDEP}]
67 + >=dev-python/oslo-config-5.2.0[${PYTHON_USEDEP}]
68 + >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}]
69 + >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
70 + >=dev-python/pyyaml-3.12[${PYTHON_USEDEP}]
71 + >=dev-python/requests-kerberos-0.8.0[${PYTHON_USEDEP}]
72 + >=dev-python/requests-mock-1.2.0[${PYTHON_USEDEP}]
73 + >=dev-python/testresources-2.0.0[${PYTHON_USEDEP}]
74 + >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
75 + )
76 +"
77 +
78 +distutils_enable_tests unittest
79 +
80 +src_prepare() {
81 + # relies on specific test runner name
82 + sed -i -e 's:run\.py:unittest_or_fail.py:' \
83 + keystoneauth1/tests/unit/test_session.py || die
84 + # remove the test that requires hacking
85 + rm keystoneauth1/tests/unit/test_hacking_checks.py || die
86 + distutils-r1_src_prepare
87 +}
88 +
89 +python_test() {
90 + eunittest -b
91 +}