summaryrefslogtreecommitdiff
path: root/dev-python/testfixtures
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
commit290aebdea65a02557706eaeda477fef0437b6a48 (patch)
treef87a939169a508a2e943570501b64cc16b411cda /dev-python/testfixtures
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'dev-python/testfixtures')
-rw-r--r--dev-python/testfixtures/Manifest4
-rw-r--r--dev-python/testfixtures/metadata.xml10
-rw-r--r--dev-python/testfixtures/testfixtures-11.0.0.ebuild52
-rw-r--r--dev-python/testfixtures/testfixtures-12.0.0.ebuild52
4 files changed, 0 insertions, 118 deletions
diff --git a/dev-python/testfixtures/Manifest b/dev-python/testfixtures/Manifest
deleted file mode 100644
index 530017a52785..000000000000
--- a/dev-python/testfixtures/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-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
-DIST testfixtures-12.0.0.tar.gz 177327 BLAKE2B d60c59aef027fd63d144ed9156ccd3a740c54e522955080c0f4549d5eff41d907aa3ebd14683a0204620afb3a516c401e730422f4703b060bd5711352c9af3d4 SHA512 07a35147b2feed74f0d0c64d755abf11d0b2fcadcc990939a5ccdf30530cd63f2fa0e265dc9836ddc2d7c85413a5f0dd9c67fd91f7444630db758b91327f0ebc
-DIST testfixtures-12.0.0.tar.gz.provenance 9763 BLAKE2B f5d5a5f0274f0052fa9903d2ea63b289cad8f2a8f44a69880f4ac99ac4ab02146a88dcea3bc5ff2bac7951fa48e138b375e6548198161d4fdc3ae09f2186defe SHA512 f5bc80317beca8c5d5275bde2519ed6088bfdb9f9d6484afefd434387e52701ae8a848029e20189b0b77a0f9cb809e542154c56368dfd1fe81fb7cc173b9822a
diff --git a/dev-python/testfixtures/metadata.xml b/dev-python/testfixtures/metadata.xml
deleted file mode 100644
index 5e95859f915a..000000000000
--- a/dev-python/testfixtures/metadata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>python@gentoo.org</email>
- <name>Python</name>
- </maintainer>
- <stabilize-allarches />
- <origin>baldeagleos-repo</origin>
-</pkgmetadata>
diff --git a/dev-python/testfixtures/testfixtures-11.0.0.ebuild b/dev-python/testfixtures/testfixtures-11.0.0.ebuild
deleted file mode 100644
index feac367c2a48..000000000000
--- a/dev-python/testfixtures/testfixtures-11.0.0.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# 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_{13..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
-}
diff --git a/dev-python/testfixtures/testfixtures-12.0.0.ebuild b/dev-python/testfixtures/testfixtures-12.0.0.ebuild
deleted file mode 100644
index ef4790782516..000000000000
--- a/dev-python/testfixtures/testfixtures-12.0.0.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# 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_{13..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
-}