dev-python/python-openstackclient: Remove old

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2025-03-15 13:23:28 +01:00
parent 657ba90c17
commit f617e746b6
2 changed files with 0 additions and 61 deletions

View File

@@ -1,2 +1 @@
DIST python_openstackclient-7.3.1.tar.gz 952512 BLAKE2B f6eb71e44dd559fc36fafdd96bec6fa9c3580c47067e9aed4cbc34a5130b17bfa69b8c86569b3b11e0016220e7c3c08046c2d2b62ac4856c0ed2a4584eb3bd5a SHA512 c1abf327ec8414bdfaa5f3e0fff8b66ecdbf5552278f161ae61e2a69fbb8f5df705fe60fb52e9bf09ed48610f046e255268a51b5d3bc9e536262b0acdcbe2fb7
DIST python_openstackclient-7.4.0.tar.gz 952845 BLAKE2B e8d736bcb520386913e9ce342bb2d27c34d379e3c182ea794bb44d4589971cbe1970c3ea0768508e8a338039a534558eac25cec458b8016004f61d4af6e2ddf6 SHA512 50382e4bc763448e1cfabd691cd758b85b1d35ea1cf21850a8476e2b44d7b4838130d2d083c0e2ff0594665e20825ac08408d97ffbaeac27bb968bd11384dba9

View File

@@ -1,60 +0,0 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..12} )
inherit distutils-r1 pypi
DESCRIPTION="A client for the OpenStack APIs"
HOMEPAGE="
https://opendev.org/openstack/python-openstackclient/
https://github.com/openstack/python-openstackclient/
https://pypi.org/project/python-openstackclient/
"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm64 ~riscv x86"
RDEPEND="
>dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
>=dev-python/cliff-3.5.0[${PYTHON_USEDEP}]
>=dev-python/cryptography-2.7[${PYTHON_USEDEP}]
>=dev-python/openstacksdk-3.3.0[${PYTHON_USEDEP}]
>=dev-python/osc-lib-2.3.0[${PYTHON_USEDEP}]
>=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
>=dev-python/python-keystoneclient-3.22.0[${PYTHON_USEDEP}]
>=dev-python/python-cinderclient-3.3.0[${PYTHON_USEDEP}]
>=dev-python/requests-2.27.0[${PYTHON_USEDEP}]
>=dev-python/stevedore-2.0.1[${PYTHON_USEDEP}]
"
BDEPEND="
>dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
test? (
>=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
>=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
>=dev-python/requests-mock-1.2.0[${PYTHON_USEDEP}]
>=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
>=dev-python/tempest-17.1.0[${PYTHON_USEDEP}]
>=dev-python/wrapt-1.7.0[${PYTHON_USEDEP}]
>=dev-python/ddt-1.0.1[${PYTHON_USEDEP}]
)
"
distutils_enable_tests unittest
src_prepare() {
# Depends on a specific runner
sed -e 's/test_command_has_logger/_&/' \
-i openstackclient/tests/unit/common/test_command.py || die
distutils-r1_src_prepare
}
python_test() {
# functional tests require cloud instance access
eunittest -b openstackclient/tests/unit
}