summaryrefslogtreecommitdiff
path: root/dev-python/python-keystoneclient/python-keystoneclient-4.3.0.ebuild
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2021-09-30 17:02:49 +0300
committerArthur Zamarin <arthurzam@gentoo.org>2021-09-30 20:57:23 +0300
commit44ce0b7ec04d8aedc5edfa84aa9afc48c1211d61 (patch)
treef0ed9a96e2e1376804da334e97dcb45ba7c3862b /dev-python/python-keystoneclient/python-keystoneclient-4.3.0.ebuild
parent1bf29e059b6a95f281c5ac9838133c811ccee41d (diff)
downloadgentoo-44ce0b7ec04d8aedc5edfa84aa9afc48c1211d61.tar.gz
gentoo-44ce0b7ec04d8aedc5edfa84aa9afc48c1211d61.tar.bz2
gentoo-44ce0b7ec04d8aedc5edfa84aa9afc48c1211d61.zip
dev-python/python-keystoneclient: add 4.3.0, enable tests, enable py3.9
Closes: https://bugs.gentoo.org/802846 Closes: https://bugs.gentoo.org/798531 Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-python/python-keystoneclient/python-keystoneclient-4.3.0.ebuild')
-rw-r--r--dev-python/python-keystoneclient/python-keystoneclient-4.3.0.ebuild50
1 files changed, 50 insertions, 0 deletions
diff --git a/dev-python/python-keystoneclient/python-keystoneclient-4.3.0.ebuild b/dev-python/python-keystoneclient/python-keystoneclient-4.3.0.ebuild
new file mode 100644
index 000000000000..51f039cf6f1a
--- /dev/null
+++ b/dev-python/python-keystoneclient/python-keystoneclient-4.3.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8..9} )
+inherit distutils-r1
+
+DESCRIPTION="Client Library for OpenStack Identity"
+HOMEPAGE="https://www.openstack.org/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+ >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
+ >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
+ >=dev-python/keystoneauth-3.4.0[${PYTHON_USEDEP}]
+ >=dev-python/oslo-config-5.2.0[${PYTHON_USEDEP}]
+ >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
+ >dev-python/oslo-serialization-2.19.1[${PYTHON_USEDEP}]
+ >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}]
+ >=dev-python/requests-2.14.2[${PYTHON_USEDEP}]
+ >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
+ >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
+ test? (
+ >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
+ >=dev-python/lxml-4.5.0[${PYTHON_USEDEP}]
+ >=dev-python/oauthlib-0.6.2[${PYTHON_USEDEP}]
+ >=dev-python/os-client-config-1.28.0
+ >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
+ >=dev-python/requests-mock-1.2.0[${PYTHON_USEDEP}]
+ >=dev-python/tempest-17.1.0[${PYTHON_USEDEP}]
+ >=dev-python/testresources-2.0.0[${PYTHON_USEDEP}]
+ >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
+ >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests unittest
+
+python_test() {
+ # functional tests require cloud instance access
+ eunittest keystoneclient/tests/unit
+}