dev-python/osc-placement: support for Python 3.13

Signed-off-by: Niklaus 'vimja' Hofer <gentoo-bugzilla@vimja.email>
This commit is contained in:
Niklaus 'vimja' Hofer
2025-05-04 17:45:21 +02:00
parent 462e5718db
commit 2c36737e52
3 changed files with 1 additions and 53 deletions

View File

@@ -1,2 +1 @@
DIST osc-placement-4.5.0.tar.gz 59592 BLAKE2B bb5a6445317bcd6fbff41dbffb89a9703aa29cf644a57f4b28006b47050498f0ab10a7811bb6b8945e27d1a455c62182babd6a1cb39faece32eb34d2473fafcf SHA512 07008400d0d5880f533ae17d9951fe927b63340768c2b427b6e2d0d478fa98f11763440d4df5831be121a860bad44ffe79fb0377e062ff7e32fae56dd8321c34
DIST osc_placement-4.6.0.tar.gz 59637 BLAKE2B 740464abf09d65d9cdf045b07ac9f5f4cefaf1ca45b1e75981608aac52586079511f8c1e4069100e26397526baebd4d54617c647a252fae7f3655941806e92db SHA512 72e50b4b2dc9948e5a1e6fd1bd3c9c6a0fee364c701806f1a5702100c51da93b38a7ff460891c3672bbf7c36d4c0d9f3a7a2e5bfaab578ebc4bf4852592866e6

View File

@@ -1,51 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=pbr
PYPI_NO_NORMALIZE=1
PYTHON_COMPAT=( python3_{11..12} )
inherit distutils-r1 pypi
DESCRIPTION="OpenStackClient plugin for Placement service"
HOMEPAGE="
https://opendev.org/openstack/osc-placement
https://pypi.org/project/python-octaviaclient/
"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
RDEPEND="
>=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
>=dev-python/keystoneauth1-3.3.0[${PYTHON_USEDEP}]
>=dev-python/osc-lib-1.2.0[${PYTHON_USEDEP}]
>=dev-python/oslo-utils-3.37.0[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
>=dev-python/coverage-4.0.0[${PYTHON_USEDEP}]
>=dev-python/oslotest-1.10.0[${PYTHON_USEDEP}]
>=dev-python/python-openstackclient-3.3.0[${PYTHON_USEDEP}]
>=dev-python/stestr-1.0.0[${PYTHON_USEDEP}]
>=dev-python/fixtures-4.2.2[${PYTHON_USEDEP}]
)
"
EPYTEST_IGNORE=(
# Require the placement service to be packaged, too
osc_placement/tests/functional/test_allocation.py
osc_placement/tests/functional/test_allocation_candidate.py
osc_placement/tests/functional/test_inventory.py
osc_placement/tests/functional/test_resource_class.py
osc_placement/tests/functional/test_resource_provider.py
osc_placement/tests/functional/test_trait.py
osc_placement/tests/functional/test_usage.py
osc_placement/tests/functional/test_aggregate.py
osc_placement/tests/functional/test_plugin.py
)
distutils_enable_tests pytest

View File

@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=pbr
PYTHON_COMPAT=( python3_{11..12} )
PYTHON_COMPAT=( python3_{11..13} )
inherit distutils-r1 pypi