diff options
author | 2023-02-17 17:56:49 +0100 | |
---|---|---|
committer | 2023-02-17 19:51:29 +0100 | |
commit | 4dcefef12bb92dbadec4f01dec21020acdb42cf3 (patch) | |
tree | 25658aa75969a760824e49bf44afc6ab50dc1b78 /dev-python/python-cinderclient/python-cinderclient-9.3.0.ebuild | |
parent | media-radio/fldigi: add 4.1.24 (diff) | |
download | gentoo-4dcefef12bb92dbadec4f01dec21020acdb42cf3.tar.gz gentoo-4dcefef12bb92dbadec4f01dec21020acdb42cf3.tar.bz2 gentoo-4dcefef12bb92dbadec4f01dec21020acdb42cf3.zip |
dev-python/python-cinderclient: Bump to 9.3.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/python-cinderclient/python-cinderclient-9.3.0.ebuild')
-rw-r--r-- | dev-python/python-cinderclient/python-cinderclient-9.3.0.ebuild | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/dev-python/python-cinderclient/python-cinderclient-9.3.0.ebuild b/dev-python/python-cinderclient/python-cinderclient-9.3.0.ebuild new file mode 100644 index 000000000000..8c820686265d --- /dev/null +++ b/dev-python/python-cinderclient/python-cinderclient-9.3.0.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYPI_NO_NORMALIZE=1 +PYTHON_COMPAT=( python3_{9..11} ) + +inherit distutils-r1 pypi + +DESCRIPTION="A client for the OpenStack Cinder API" +HOMEPAGE=" + https://opendev.org/openstack/python-cinderclient/ + https://github.com/openstack/python-cinderclient/ + https://pypi.org/project/python-cinderclient/ +" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" + +RDEPEND=" + >=dev-python/keystoneauth1-4.3.1[${PYTHON_USEDEP}] + >=dev-python/oslo-i18n-5.0.1[${PYTHON_USEDEP}] + >=dev-python/oslo-utils-4.8.0[${PYTHON_USEDEP}] + >=dev-python/pbr-5.5.0[${PYTHON_USEDEP}] + >=dev-python/prettytable-0.7.2[${PYTHON_USEDEP}] + >=dev-python/requests-2.25.1[${PYTHON_USEDEP}] + >=dev-python/stevedore-3.3.0[${PYTHON_USEDEP}] +" +# Tests fail with dev-python/prettytable-3.4.0 +BDEPEND=" + dev-python/pbr[${PYTHON_USEDEP}] + test? ( + dev-python/ddt[${PYTHON_USEDEP}] + dev-python/fixtures[${PYTHON_USEDEP}] + dev-python/oslo-serialization[${PYTHON_USEDEP}] + dev-python/requests-mock[${PYTHON_USEDEP}] + dev-python/testtools[${PYTHON_USEDEP}] + <dev-python/prettytable-3.4.0[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests unittest + +python_test() { + # functional tests require cloud instance access + eunittest -b cinderclient/tests/unit +} |