commit:     7573ec81396ef980e858650006e98dd68681f5b7
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 10 03:21:31 2026 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Mar 10 03:39:14 2026 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7573ec81

dev-python/testfixtures: Bump to 11.0.0

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/testfixtures/Manifest                   |  2 +
 dev-python/testfixtures/metadata.xml               |  2 +-
 dev-python/testfixtures/testfixtures-11.0.0.ebuild | 52 ++++++++++++++++++++++
 3 files changed, 55 insertions(+), 1 deletion(-)

diff --git a/dev-python/testfixtures/Manifest b/dev-python/testfixtures/Manifest
index edae0aa224bb..41e51abb2ea3 100644
--- a/dev-python/testfixtures/Manifest
+++ b/dev-python/testfixtures/Manifest
@@ -1 +1,3 @@
 DIST testfixtures-10.0.0.tar.gz 147464 BLAKE2B 
9bd52f612441d4cb44ef35174155cfe10b02a7f243c418957969e1d65075af20e9fd4aba4aa92786924e0620c710cb51bb210382ca7c83e8c8e3bece924d8c51
 SHA512 
64585315fb9a05957f262f9da289256d3155d41ced026388f7d8efc0c42052bfb24dbb1573609d2909321d62e5fc833e2fce6623615661ed8689147746ef2d70
+DIST testfixtures-11.0.0.tar.gz 152532 BLAKE2B 
1fd28fe724366e6fee16b33eaf445dd229db55614923e581ed5e8c86b4aad98570d69a294f9f4876deddfe4274967721c44fbe1539762ad3d19322d6f2a9523b
 SHA512 
1ae22532b7bc0425128b0ea57a3b02ffa5daca38a017da15003c4e62bfc088852d50275937beb7e5b436e4718e27c40c35c7f3e2143769abe71dd1fb1d6d3bd6
+DIST testfixtures-11.0.0.tar.gz.provenance 9482 BLAKE2B 
18c78ac06436207820c190be8d978eb0ca39e59a2ff990573755407de3541d2309546954b44551638ae69649f3844b4cde50d464df9b06014abf020e4fbc7aac
 SHA512 
77cbdc7987351977432c81e1f9ea7b3b83a60d9f9936dbde025a22ca344d2eedd9a9329b1d0575dcfecf49d1712414d53e2f3aebab9cb85e615774ee24f963a9

diff --git a/dev-python/testfixtures/metadata.xml 
b/dev-python/testfixtures/metadata.xml
index 7ccef354ba28..451983055e34 100644
--- a/dev-python/testfixtures/metadata.xml
+++ b/dev-python/testfixtures/metadata.xml
@@ -8,6 +8,6 @@
   <stabilize-allarches/>
   <upstream>
     <remote-id type="pypi">testfixtures</remote-id>
-    <remote-id type="github">Simplistix/testfixtures</remote-id>
+    <remote-id type="github">simplistix/testfixtures</remote-id>
   </upstream>
 </pkgmetadata>

diff --git a/dev-python/testfixtures/testfixtures-11.0.0.ebuild 
b/dev-python/testfixtures/testfixtures-11.0.0.ebuild
new file mode 100644
index 000000000000..21ad9ef7b8fe
--- /dev/null
+++ b/dev-python/testfixtures/testfixtures-11.0.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYPI_VERIFY_REPO=https://github.com/simplistix/testfixtures
+PYTHON_COMPAT=( python3_{12..14} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="A collection of helpers and mock objects for unit tests and doc 
tests"
+HOMEPAGE="
+       https://pypi.org/project/testfixtures/
+       https://github.com/simplistix/testfixtures/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
+
+BDEPEND="
+       test? (
+               $(python_gen_impl_dep sqlite)
+               dev-python/django[${PYTHON_USEDEP}]
+               >=dev-python/sybil-6[${PYTHON_USEDEP}]
+               >=dev-python/twisted-18[${PYTHON_USEDEP}]
+               sys-libs/timezone-data
+       )
+"
+
+EPYTEST_PLUGINS=( pytest-django )
+distutils_enable_tests pytest
+
+python_test() {
+       local -x PYTHONPATH="."
+       local -x DJANGO_SETTINGS_MODULE=tests.test_django.settings
+
+       local EPYTEST_DESELECT=(
+               # TODO
+               tests/test_shouldwarn.py::ShouldWarnTests::test_filter_missing
+               tests/test_shouldwarn.py::ShouldWarnTests::test_filter_present
+       )
+       local EPYTEST_IGNORE=()
+       if ! has_version "dev-python/twisted[${PYTHON_USEDEP}]"; then
+               EPYTEST_IGNORE+=(
+                       tests/test_twisted.py
+               )
+       fi
+
+       epytest
+}

Reply via email to