summaryrefslogtreecommitdiff
path: root/dev-python/testfixtures
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-05-01 07:10:50 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-05-01 07:10:50 +0000
commit706713a94f1df034ca3d007ff5919ca256311d8f (patch)
tree6306ed2898fc8baa0a474b00975b5ebae1a3ab48 /dev-python/testfixtures
parent4ae305f4f8a7a8d004ff4470e38b93ee13c6540c (diff)
downloadbaldeagleos-repo-706713a94f1df034ca3d007ff5919ca256311d8f.tar.gz
baldeagleos-repo-706713a94f1df034ca3d007ff5919ca256311d8f.tar.xz
baldeagleos-repo-706713a94f1df034ca3d007ff5919ca256311d8f.zip
Adding metadata
Diffstat (limited to 'dev-python/testfixtures')
-rw-r--r--dev-python/testfixtures/Manifest1
-rw-r--r--dev-python/testfixtures/testfixtures-10.0.0.ebuild51
2 files changed, 0 insertions, 52 deletions
diff --git a/dev-python/testfixtures/Manifest b/dev-python/testfixtures/Manifest
index 41e51abb2ea3..d11d0126bfa5 100644
--- a/dev-python/testfixtures/Manifest
+++ b/dev-python/testfixtures/Manifest
@@ -1,3 +1,2 @@
-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/testfixtures-10.0.0.ebuild b/dev-python/testfixtures/testfixtures-10.0.0.ebuild
deleted file mode 100644
index e3029cc4878e..000000000000
--- a/dev-python/testfixtures/testfixtures-10.0.0.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..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=testfixtures.tests.test_django.settings
-
- local EPYTEST_DESELECT=(
- # TODO
- testfixtures/tests/test_shouldwarn.py::ShouldWarnTests::test_filter_missing
- testfixtures/tests/test_shouldwarn.py::ShouldWarnTests::test_filter_present
- )
- local EPYTEST_IGNORE=()
- if ! has_version "dev-python/twisted[${PYTHON_USEDEP}]"; then
- EPYTEST_IGNORE+=(
- testfixtures/tests/test_twisted.py
- )
- fi
-
- epytest
-}