From 5a380e5dc78edb7b0019f7e261851bb2ed3aeb58 Mon Sep 17 00:00:00 2001 From: Paul Zander Date: Wed, 17 Jun 2026 16:42:41 +0200 Subject: [PATCH] dev-util/nvchecker: drop obsolete zstandard handling Fixes: 68fbddeaec33c84681344a53d9ce231bc2df3348 Closes: https://bugs.gentoo.org/974956 Signed-off-by: Paul Zander --- dev-util/nvchecker/nvchecker-2.19.ebuild | 9 +++------ dev-util/nvchecker/nvchecker-2.20.ebuild | 8 ++------ 2 files changed, 5 insertions(+), 12 deletions(-) diff --git a/dev-util/nvchecker/nvchecker-2.19.ebuild b/dev-util/nvchecker/nvchecker-2.19.ebuild index a7d5a53db1..08ab8faf5d 100644 --- a/dev-util/nvchecker/nvchecker-2.19.ebuild +++ b/dev-util/nvchecker/nvchecker-2.19.ebuild @@ -2,6 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 + PYTHON_COMPAT=( python3_{12..14} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 optfeature @@ -34,7 +35,7 @@ BDEPEND=" dev-python/pytest-asyncio[${PYTHON_USEDEP}] dev-python/pytest-httpbin[${PYTHON_USEDEP}] $(python_gen_cond_dep \ - 'dev-python/zstandard[${PYTHON_USEDEP}]' python3_{11..13}) + 'dev-python/zstandard[${PYTHON_USEDEP}]') ) " @@ -100,9 +101,5 @@ pkg_postinst() { optfeature "jq source" "dev-python/jq[${PYTHON_USEDEP}]" optfeature "httpheader source" "dev-python/lxml[${PYTHON_USEDEP}]" optfeature "pypi source" "dev-python/packaging[${PYTHON_USEDEP}]" - if use python_targets_python3_11 || \ - use python_targets_python3_12 || \ - use python_targets_python3_13; then - optfeature "rpmrepo source" "dev-python/zstandard[${PYTHON_USEDEP}]" - fi + optfeature "rpmrepo source" "dev-python/zstandard[${PYTHON_USEDEP}]" } diff --git a/dev-util/nvchecker/nvchecker-2.20.ebuild b/dev-util/nvchecker/nvchecker-2.20.ebuild index 8e170ab5db..1225709244 100644 --- a/dev-util/nvchecker/nvchecker-2.20.ebuild +++ b/dev-util/nvchecker/nvchecker-2.20.ebuild @@ -35,7 +35,7 @@ BDEPEND=" dev-python/pytest-asyncio[${PYTHON_USEDEP}] dev-python/pytest-httpbin[${PYTHON_USEDEP}] $(python_gen_cond_dep \ - 'dev-python/zstandard[${PYTHON_USEDEP}]' python3_{11..13}) + 'dev-python/zstandard[${PYTHON_USEDEP}]') dev-vcs/git ) " @@ -98,10 +98,6 @@ pkg_postinst() { optfeature "jq source" "dev-python/jq[${PYTHON_USEDEP}]" optfeature "httpheader source" "dev-python/lxml[${PYTHON_USEDEP}]" optfeature "pypi source" "dev-python/packaging[${PYTHON_USEDEP}]" - if use python_targets_python3_11 || \ - use python_targets_python3_12 || \ - use python_targets_python3_13; then - optfeature "rpmrepo source" "dev-python/zstandard[${PYTHON_USEDEP}]" - fi + optfeature "rpmrepo source" "dev-python/zstandard[${PYTHON_USEDEP}]" optfeature "git source" dev-vcs/git }