commit: 082cee0f627a964fbd2730abfe9f15fe2c02b552
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 30 16:00:43 2026 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 30 16:35:45 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=082cee0f
dev-python/zope-testing: drop 6.0
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/zope-testing/Manifest | 1 -
dev-python/zope-testing/zope-testing-6.0.ebuild | 55 -------------------------
2 files changed, 56 deletions(-)
diff --git a/dev-python/zope-testing/Manifest b/dev-python/zope-testing/Manifest
index 5eb8737d2cd1..8a903c1ba202 100644
--- a/dev-python/zope-testing/Manifest
+++ b/dev-python/zope-testing/Manifest
@@ -1,2 +1 @@
-DIST zope_testing-6.0.tar.gz 42462 BLAKE2B
8ea0b46417d1227a5a13fd782ebbd497dc208441ebb224d621c560d658dff50e3af74175cb4b339c5c53cb14c9e5a99146b1aa262488380429ed2c3269a372c4
SHA512
a2fe987a308075e611d585e3cba1d62ada883be2e44fccb59fbd4aa04095dd1774f8589f7a2f76211ffe3058da01799e105c53a7fe9d1bbba0bf88e85b85587a
DIST zope_testing-6.1.tar.gz 47548 BLAKE2B
affcefda88062da4e6ce4c3636f12ed785791f8a857f5a11f4298d3f5b9814de86395c163a184dc4ba52b5f8d59e0e61040e0aa89f1d82305a987897b2b04965
SHA512
23fb69240adf9a8ec8b5aecaa6cb828992b4bc9cba8478066ac3018b4e151a6055d58b7c3f727cc44d0608c17d3a47ec399dfa17fb30b80de96b2ad687326908
diff --git a/dev-python/zope-testing/zope-testing-6.0.ebuild
b/dev-python/zope-testing/zope-testing-6.0.ebuild
deleted file mode 100644
index b30a1e42f816..000000000000
--- a/dev-python/zope-testing/zope-testing-6.0.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYPI_PN=${PN/-/.}
-PYTHON_TESTED=( python3_{11..13} python3_13t pypy3_11 )
-# py3.14 seems to have had some doctest changes recently
-PYTHON_COMPAT=( "${PYTHON_TESTED[@]}" python3_14{,t} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Zope testing helpers"
-HOMEPAGE="
- https://pypi.org/project/zope.testing/
- https://github.com/zopefoundation/zope.testing/
-"
-
-LICENSE="ZPL"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv
~s390 ~sparc x86 ~x64-macos ~x64-solaris"
-
-distutils_enable_tests unittest
-
-src_prepare() {
- local PATCHES=(
- # https://github.com/zopefoundation/zope.testing/pull/54
- "${FILESDIR}/${P}-test.patch"
- )
-
- distutils-r1_src_prepare
-
- # strip rdep specific to namespaces
- # https://github.com/zopefoundation/zope.testing/pull/53
- sed -i -e "/'setuptools'/d" setup.py || die
-}
-
-python_test() {
- if ! has "${EPYTHON/./_}" "${PYTHON_TESTED[@]}"; then
- einfo "Skipping tests on ${EPYTHON}"
- return
- fi
-
- "${EPYTHON}" - <<-EOF || die
- import sys
- import unittest
-
- from zope.testing.tests import test_suite
-
- runner = unittest.TextTestRunner(verbosity=2)
- result = runner.run(test_suite())
- sys.exit(0 if result.wasSuccessful() else 1)
- EOF
-}