public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/testfixtures/
Date: Sat, 19 Jul 2025 10:27:32 +0000 (UTC)	[thread overview]
Message-ID: <1752920845.d26359d7f9242d9faf15ed76fecd4deacad6a07d.mgorny@gentoo> (raw)

commit:     d26359d7f9242d9faf15ed76fecd4deacad6a07d
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 19 09:03:13 2025 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jul 19 10:27:25 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d26359d7

dev-python/testfixtures: Remove old

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

 dev-python/testfixtures/Manifest                  |  2 -
 dev-python/testfixtures/testfixtures-8.3.0.ebuild | 61 -----------------------
 dev-python/testfixtures/testfixtures-9.0.0.ebuild | 51 -------------------
 3 files changed, 114 deletions(-)

diff --git a/dev-python/testfixtures/Manifest b/dev-python/testfixtures/Manifest
index cc465bce8afb..f338b092e27d 100644
--- a/dev-python/testfixtures/Manifest
+++ b/dev-python/testfixtures/Manifest
@@ -1,4 +1,2 @@
-DIST testfixtures-8.3.0.tar.gz 137420 BLAKE2B bf0fe6705bbbb33a26dcc98be061c1dafbe331ca6c4ac8c028e146f7e156870ee8abe5118b3182600e8d513530c442a4fa1efa696253b9b0c114733bd40fc6ee SHA512 b2c18a35c44b90bce50cc68ca9bf9909ac8f75287c7188eeddfa855aec1db3bd14f3fccb4c5ef0e44b19c683ad4bd6be4876554ce9127698e8e20cbfa4191800
-DIST testfixtures-9.0.0.tar.gz 87851 BLAKE2B e3c718572d844ca1070a044fdd21246ffa4839a89e9d95603bbe9496bf510957eac125a29a9db2beb588d79957a068c5d9585bfe3d954d8f88075900f531f904 SHA512 8a88bd0b868793e75fc867fa6cdf5f994c69178141f1b5c0b3709ebd4cf52a2209fa4b37c09ccc6c2dab95fdd646ea8e4367425ed382d4a99d8f8de2d8d862bc
 DIST testfixtures-9.0.1.tar.gz 88436 BLAKE2B 1c029de0e2dee29a2fadb100ea19ffaac3ee4e6312ae2991eea515c5c0748d07d8d08fe773c623b014fe9d8a92ce4920101cd9a50c2493d4cc6600e24227c677 SHA512 1874e7b012ec340637b00bbdf33869f68d757b436fd4865d3c1314640f5f7aa68a49273097682337a826c6b7a6c14c7f859ea8963ce7097a3106bd08bcbf9fd1
 DIST testfixtures-9.1.0.tar.gz 88605 BLAKE2B 0ff23f49f24b5bf94cce28b828ffb0f6549f74a4a969c8c65a3abfde44c9903a1d9680b051438b1e3771332e6801f35f7d066de1b7ae8615372583a04a8663c3 SHA512 f1f16be2fb21475e4852f6a1e80eb53d3a702c4748f3bb5abb9dd955020ba0bc823ee910bfec87bd93a4aaa94bd20eff6f061af668219f916b8bb4771ec8f103

diff --git a/dev-python/testfixtures/testfixtures-8.3.0.ebuild b/dev-python/testfixtures/testfixtures-8.3.0.ebuild
deleted file mode 100644
index 4c36b1ea4207..000000000000
--- a/dev-python/testfixtures/testfixtures-8.3.0.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-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="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux"
-
-BDEPEND="
-	test? (
-		$(python_gen_impl_dep sqlite)
-		dev-python/django[${PYTHON_USEDEP}]
-		dev-python/pytest-django[${PYTHON_USEDEP}]
-		>=dev-python/sybil-6[${PYTHON_USEDEP}]
-		>=dev-python/twisted-18[${PYTHON_USEDEP}]
-		sys-libs/timezone-data
-	)
-"
-
-distutils_enable_sphinx docs \
-	dev-python/furo
-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
-	)
-	case ${EPYTHON} in
-		python3.13)
-			EPYTEST_DESELECT+=(
-				# changed exception message
-				testfixtures/tests/test_replace.py::TestReplaceWithInterestingOriginsNotStrict::test_invalid_attribute_on_instance_of_slotted_cl
-			)
-	esac
-
-	local EPYTEST_IGNORE=()
-	if ! has_version "dev-python/twisted[${PYTHON_USEDEP}]"; then
-		EPYTEST_IGNORE+=(
-			testfixtures/tests/test_twisted.py
-		)
-	fi
-
-	epytest
-}

diff --git a/dev-python/testfixtures/testfixtures-9.0.0.ebuild b/dev-python/testfixtures/testfixtures-9.0.0.ebuild
deleted file mode 100644
index c8922e751f02..000000000000
--- a/dev-python/testfixtures/testfixtures-9.0.0.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{11..13} )
-
-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="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
-
-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
-}


             reply	other threads:[~2025-07-19 10:27 UTC|newest]

Thread overview: 100+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-07-19 10:27 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-10-14  6:48 [gentoo-commits] repo/gentoo:master commit in: dev-python/testfixtures/ Michał Górny
2025-07-26 10:25 Michał Górny
2025-07-26 10:18 Michał Górny
2025-07-19  9:00 Sam James
2025-07-09  4:53 Michał Górny
2025-07-05  4:44 Michał Górny
2025-07-04  3:19 Michał Górny
2025-04-13 21:30 Sam James
2024-10-12 15:05 Sam James
2024-08-29  6:34 Jakov Smolić
2024-08-29  6:34 Jakov Smolić
2024-08-29  5:10 Jakov Smolić
2024-06-30 14:11 Michał Górny
2024-06-22 15:01 Michał Górny
2024-06-22 13:48 Arthur Zamarin
2024-06-19 17:21 Michał Górny
2024-06-08  5:06 Michał Górny
2024-05-17  9:49 Michał Górny
2024-05-17  8:31 Arthur Zamarin
2024-05-02  2:00 Michał Górny
2024-04-19  6:39 Ionen Wolkens
2024-04-18 16:17 Arthur Zamarin
2024-04-18 16:17 Arthur Zamarin
2024-04-18 16:16 Arthur Zamarin
2024-03-30 14:14 Michał Górny
2024-03-30 13:59 Michał Górny
2024-03-15 13:15 Michał Górny
2024-03-15 13:15 Michał Górny
2024-03-02 11:44 Michał Górny
2024-03-02  9:59 Arthur Zamarin
2024-03-01 18:33 Michał Górny
2024-02-17  6:10 Michał Górny
2023-11-22 12:03 Michał Górny
2023-11-22 11:11 Sam James
2023-10-20 12:26 Michał Górny
2023-10-18 15:50 Michał Górny
2023-10-18  9:02 Sam James
2023-09-15 10:11 Michał Górny
2023-07-23 18:34 Michał Górny
2023-07-23 15:14 Michał Górny
2023-03-11 10:02 Michał Górny
2023-03-11  9:03 Arthur Zamarin
2023-02-08 17:36 Michał Górny
2022-12-10  9:09 Michał Górny
2022-12-10  9:05 Arthur Zamarin
2022-11-09  6:53 Sam James
2022-11-05 14:43 Arthur Zamarin
2022-11-04  8:39 Arthur Zamarin
2022-08-09  6:31 Michał Górny
2022-08-09  4:00 Arthur Zamarin
2022-07-06 19:18 Arthur Zamarin
2022-03-31 13:55 Jakov Smolić
2022-03-09 20:29 Arthur Zamarin
2022-02-25 23:41 Michał Górny
2021-10-31 20:09 Arthur Zamarin
2021-10-31 17:55 Sam James
2021-09-29 21:59 Michał Górny
2021-09-25 22:14 Michał Górny
2021-09-25 19:56 Sam James
2021-09-21 19:11 Michał Górny
2021-08-21  8:01 Michał Górny
2021-08-16  6:19 Michał Górny
2021-08-16  5:13 Agostino Sarubbo
2021-07-16  6:12 Michał Górny
2021-07-15 17:50 Michał Górny
2021-06-22 19:11 Marek Szuba
2021-03-05 19:26 Sam James
2021-03-02  8:53 Michał Górny
2021-03-02  4:39 Sam James
2021-02-22 13:28 Sam James
2021-01-18 19:13 Michał Górny
2021-01-18 17:43 Sam James
2021-01-14 21:30 Michał Górny
2021-01-13 20:16 Michał Górny
2021-01-13 19:34 Sam James
2020-12-16 17:18 Michał Górny
2020-12-11 21:55 Sam James
2020-11-18  9:12 Michał Górny
2020-10-21 22:51 Michał Górny
2020-10-09  7:15 Michał Górny
2020-09-05  6:08 Michał Górny
2020-07-07 15:30 Michał Górny
2020-07-06 19:15 Michał Górny
2020-05-11 17:48 Michał Górny
2020-05-04 13:58 Michał Górny
2020-05-04 12:24 Michał Górny
2020-04-21  8:08 Michał Górny
2020-03-29 10:13 Michał Górny
2020-03-08 14:29 Michał Górny
2020-01-25 20:54 Michał Górny
2019-05-08 14:41 Virgil Dupras
2018-06-24 17:24 Pacho Ramos
2016-10-11 17:09 Patrice Clement
2016-05-29 14:19 Pacho Ramos
2016-02-24  9:23 Justin Lecher
2015-12-13 14:05 Justin Lecher
2015-12-05 16:41 Justin Lecher
2015-11-03 17:21 Justin Lecher
2015-09-20  9:33 Justin Lecher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1752920845.d26359d7f9242d9faf15ed76fecd4deacad6a07d.mgorny@gentoo \
    --to=mgorny@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox