commit:     24ca0363eee06c0283bdf9cd24c677caf7a98c88
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 22 04:40:03 2025 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Dec 22 05:08:27 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24ca0363

dev-python/pyfakefs: Remove old

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

 dev-python/pyfakefs/Manifest               |  3 --
 dev-python/pyfakefs/pyfakefs-5.10.0.ebuild | 60 ------------------------------
 dev-python/pyfakefs/pyfakefs-5.10.1.ebuild | 60 ------------------------------
 dev-python/pyfakefs/pyfakefs-5.9.3.ebuild  | 60 ------------------------------
 4 files changed, 183 deletions(-)

diff --git a/dev-python/pyfakefs/Manifest b/dev-python/pyfakefs/Manifest
index 93fce3fe20c1..b1a2f53b97f1 100644
--- a/dev-python/pyfakefs/Manifest
+++ b/dev-python/pyfakefs/Manifest
@@ -1,4 +1 @@
-DIST pyfakefs-5.10.0.gh.tar.gz 257657 BLAKE2B 
abf84ee4c1dab06c741eee83a6fce1f366d44d48b987f7fb79e996771e030b989c53f83a5d74c2504067b08848b359251a2e61cb177cd3f5328fa9e058201d20
 SHA512 
1b35cf3c0ed329e653834673bab2fbfd9d9850809b9282d5cdb90dc1a26fe39fa651778aa3ffa060b3ecccc12fcb432d45029e59b51d6f8e87fda824bbaff2cd
-DIST pyfakefs-5.10.1.gh.tar.gz 257867 BLAKE2B 
374e773d968a0a24aa1e561caf8b0d58472bca7f8f864f47c156c8b3bd8e8f5c6e55a90ee4c3473c98fc2fb8c06c44d41e34c530d61b2f0550d2f4448c60d3ac
 SHA512 
00a46de59f1e7180848e7a66d61f6c008580c41e7bc70cf78d6bcd0e80ba67956b15b72015b5ee2f4038f27c18210952522f9f4767788da015c52a2c28fd14ac
 DIST pyfakefs-5.10.2.gh.tar.gz 257936 BLAKE2B 
bc6adfadd0d2adcb0f56d0e9c53db5003f0a128c2f877004cf629cc70e26865c424187a737423924178f8d189ff02aebef541df6302c171c7bceaf4be6af2fc7
 SHA512 
57a46f01ad2985884fe8b448c3625007bbf29689e42eb956788f5f213e9557e6d0964c0e9702e784a2dfe1bd73af90d5a9dad52dd3d0ac1c1f395ea90cef47f1
-DIST pyfakefs-5.9.3.gh.tar.gz 256673 BLAKE2B 
638720a82f06a0c54298959e4f9d32195fc9ffb2bae00f21fb6c4cc93862e6cb6c5680d7c4e5340ffd6259505f1ce291fdcdbcced077ab89a2b0ba58c365e732
 SHA512 
5a79fc56836bd8c3416f653c3222f7d93203cff112f08b9ae357b271c695a720f65fc90a8a3bfff2b8b6168ddd8dfba0219ba8582e0f54ec4d9ce393ab55dab9

diff --git a/dev-python/pyfakefs/pyfakefs-5.10.0.ebuild 
b/dev-python/pyfakefs/pyfakefs-5.10.0.ebuild
deleted file mode 100644
index ad8b9af2c6d8..000000000000
--- a/dev-python/pyfakefs/pyfakefs-5.10.0.ebuild
+++ /dev/null
@@ -1,60 +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..14} pypy3_11 )
-
-inherit distutils-r1
-
-DESCRIPTION="A fake file system that mocks the Python file system modules"
-HOMEPAGE="
-       https://github.com/pytest-dev/pyfakefs/
-       https://pypi.org/project/pyfakefs/
-"
-SRC_URI="
-       https://github.com/pytest-dev/pyfakefs/archive/v${PV}.tar.gz
-               -> ${P}.gh.tar.gz
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86 ~x64-macos"
-
-EPYTEST_PLUGINS=( "${PN}" )
-distutils_enable_tests pytest
-
-python_test() {
-       local EPYTEST_DESELECT=(
-               # requires *.dist-info/RECORD file that we're stripping
-               
pyfakefs/tests/fake_filesystem_test.py::RealFileSystemAccessTest::test_add_package_metadata
-               # wants dev-python/openpyxl
-               
pyfakefs/tests/patched_packages_test.py::TestPatchedPackages::test_read_excel
-       )
-       local EPYTEST_IGNORE=(
-               # test for regression with opentimelineio package
-               pyfakefs/pytest_tests/segfault_test.py
-               # test for regression with undefined package
-               pyfakefs/pytest_tests/pytest_fixture_test.py
-       )
-
-       if ! has_version "dev-python/pandas[${PYTHON_USEDEP}]"; then
-               EPYTEST_IGNORE+=(
-                       pyfakefs/pytest_tests/pytest_reload_pandas_test.py
-               )
-       fi
-
-       case ${EPYTHON} in
-               pypy3.11)
-                       EPYTEST_DESELECT+=(
-                               # TODO: this test messes up everything
-                               
pyfakefs/tests/fake_filesystem_unittest_test.py::TestDeprecationSuppression::test_no_deprecation_warning
-                               # TODO
-                               
pyfakefs/tests/fake_pathlib_test.py::SkipPathlibTest::test_exists
-                       )
-                       ;;
-       esac
-
-       epytest
-}

diff --git a/dev-python/pyfakefs/pyfakefs-5.10.1.ebuild 
b/dev-python/pyfakefs/pyfakefs-5.10.1.ebuild
deleted file mode 100644
index ad8b9af2c6d8..000000000000
--- a/dev-python/pyfakefs/pyfakefs-5.10.1.ebuild
+++ /dev/null
@@ -1,60 +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..14} pypy3_11 )
-
-inherit distutils-r1
-
-DESCRIPTION="A fake file system that mocks the Python file system modules"
-HOMEPAGE="
-       https://github.com/pytest-dev/pyfakefs/
-       https://pypi.org/project/pyfakefs/
-"
-SRC_URI="
-       https://github.com/pytest-dev/pyfakefs/archive/v${PV}.tar.gz
-               -> ${P}.gh.tar.gz
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86 ~x64-macos"
-
-EPYTEST_PLUGINS=( "${PN}" )
-distutils_enable_tests pytest
-
-python_test() {
-       local EPYTEST_DESELECT=(
-               # requires *.dist-info/RECORD file that we're stripping
-               
pyfakefs/tests/fake_filesystem_test.py::RealFileSystemAccessTest::test_add_package_metadata
-               # wants dev-python/openpyxl
-               
pyfakefs/tests/patched_packages_test.py::TestPatchedPackages::test_read_excel
-       )
-       local EPYTEST_IGNORE=(
-               # test for regression with opentimelineio package
-               pyfakefs/pytest_tests/segfault_test.py
-               # test for regression with undefined package
-               pyfakefs/pytest_tests/pytest_fixture_test.py
-       )
-
-       if ! has_version "dev-python/pandas[${PYTHON_USEDEP}]"; then
-               EPYTEST_IGNORE+=(
-                       pyfakefs/pytest_tests/pytest_reload_pandas_test.py
-               )
-       fi
-
-       case ${EPYTHON} in
-               pypy3.11)
-                       EPYTEST_DESELECT+=(
-                               # TODO: this test messes up everything
-                               
pyfakefs/tests/fake_filesystem_unittest_test.py::TestDeprecationSuppression::test_no_deprecation_warning
-                               # TODO
-                               
pyfakefs/tests/fake_pathlib_test.py::SkipPathlibTest::test_exists
-                       )
-                       ;;
-       esac
-
-       epytest
-}

diff --git a/dev-python/pyfakefs/pyfakefs-5.9.3.ebuild 
b/dev-python/pyfakefs/pyfakefs-5.9.3.ebuild
deleted file mode 100644
index ad8b9af2c6d8..000000000000
--- a/dev-python/pyfakefs/pyfakefs-5.9.3.ebuild
+++ /dev/null
@@ -1,60 +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..14} pypy3_11 )
-
-inherit distutils-r1
-
-DESCRIPTION="A fake file system that mocks the Python file system modules"
-HOMEPAGE="
-       https://github.com/pytest-dev/pyfakefs/
-       https://pypi.org/project/pyfakefs/
-"
-SRC_URI="
-       https://github.com/pytest-dev/pyfakefs/archive/v${PV}.tar.gz
-               -> ${P}.gh.tar.gz
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86 ~x64-macos"
-
-EPYTEST_PLUGINS=( "${PN}" )
-distutils_enable_tests pytest
-
-python_test() {
-       local EPYTEST_DESELECT=(
-               # requires *.dist-info/RECORD file that we're stripping
-               
pyfakefs/tests/fake_filesystem_test.py::RealFileSystemAccessTest::test_add_package_metadata
-               # wants dev-python/openpyxl
-               
pyfakefs/tests/patched_packages_test.py::TestPatchedPackages::test_read_excel
-       )
-       local EPYTEST_IGNORE=(
-               # test for regression with opentimelineio package
-               pyfakefs/pytest_tests/segfault_test.py
-               # test for regression with undefined package
-               pyfakefs/pytest_tests/pytest_fixture_test.py
-       )
-
-       if ! has_version "dev-python/pandas[${PYTHON_USEDEP}]"; then
-               EPYTEST_IGNORE+=(
-                       pyfakefs/pytest_tests/pytest_reload_pandas_test.py
-               )
-       fi
-
-       case ${EPYTHON} in
-               pypy3.11)
-                       EPYTEST_DESELECT+=(
-                               # TODO: this test messes up everything
-                               
pyfakefs/tests/fake_filesystem_unittest_test.py::TestDeprecationSuppression::test_no_deprecation_warning
-                               # TODO
-                               
pyfakefs/tests/fake_pathlib_test.py::SkipPathlibTest::test_exists
-                       )
-                       ;;
-       esac
-
-       epytest
-}

Reply via email to