commit: 92e3e9f27f596c379a8c1d218c8de2283343b81b
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 21 02:41:34 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Nov 21 02:41:34 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92e3e9f2
dev-python/stevedore: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/stevedore/Manifest | 1 -
dev-python/stevedore/stevedore-5.4.1.ebuild | 57 -----------------------------
2 files changed, 58 deletions(-)
diff --git a/dev-python/stevedore/Manifest b/dev-python/stevedore/Manifest
index d3875d0a2274..29476deeabd4 100644
--- a/dev-python/stevedore/Manifest
+++ b/dev-python/stevedore/Manifest
@@ -1,2 +1 @@
-DIST stevedore-5.4.1.tar.gz 513858 BLAKE2B
9aa55e0234a7a472432cfbdca7bbe235eca2e16b54b2b07401a8f0ffe441806b0c6677cc0d198c2dd76579c620b016c7f414e6adb3662453e1dc9c38f052be1b
SHA512
cd2f23b7c4b48eb82b4a389a49d890d4cdeee9383f3a633a8c9f7e5c1edacbcb522af72240807dff204ecd2df1ee34cb3f5633d373b0ae95ed5e9fa0f3a7684d
DIST stevedore-5.5.0.tar.gz 513878 BLAKE2B
4a062394f3c2bb1044a5510fa15d8124696bfb6a7a8f39470158b51293709bd6aca31f74f44db150ccc5bcb7102a413a063e34693a48f80bd3f85f7c7fe3c204
SHA512
4fa4806ddb98430893f44f97e4e43b6eab244bd47c72cec196418edf1f55647c29e47c4f6b4c6c42069001415471d9cecdc149e9d5a504422143a7f143813381
diff --git a/dev-python/stevedore/stevedore-5.4.1.ebuild
b/dev-python/stevedore/stevedore-5.4.1.ebuild
deleted file mode 100644
index 6d84a8b45d41..000000000000
--- a/dev-python/stevedore/stevedore-5.4.1.ebuild
+++ /dev/null
@@ -1,57 +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_{11..14} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Manage dynamic plugins for Python applications"
-HOMEPAGE="
- https://opendev.org/openstack/stevedore/
- https://github.com/openstack/stevedore/
- https://pypi.org/project/stevedore/
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~mips ~ppc64 ~riscv ~s390 ~sparc x86"
-
-BDEPEND="
- >=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
- test? (
- dev-python/sphinx[${PYTHON_USEDEP}]
- dev-python/testtools[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests pytest
-distutils_enable_sphinx 'doc/source' \
- '>=dev-python/openstackdocstheme-1.18.1' \
- '>=dev-python/reno-2.5.0' \
- '>=dev-python/sphinx-2.0.0'
-
-python_prepare_all() {
- # Delete spurious data in requirements.txt
- sed -e '/^pbr/d' -i requirements.txt || die
-
- # Also known problem, inside venv
- sed -i -e 's:test_disable_caching_file:_&:' \
- stevedore/tests/test_cache.py || die
-
- distutils-r1_python_prepare_all
-}
-
-python_test() {
- local EPYTEST_IGNORE=()
- if ! has_version "dev-python/sphinx[${PYTHON_USEDEP}]"; then
- EPYTEST_IGNORE+=(
- stevedore/tests/test_sphinxext.py
- )
- fi
-
- local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
- epytest
-}