commit: f5cef1c9b933476c87580460b617581d68685b97
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 22 06:37:55 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Nov 22 06:58:34 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5cef1c9
dev-python/fake-py: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/fake-py/Manifest | 2 -
dev-python/fake-py/fake-py-0.11.8.ebuild | 64 --------------------------------
dev-python/fake-py/fake-py-0.11.9.ebuild | 61 ------------------------------
3 files changed, 127 deletions(-)
diff --git a/dev-python/fake-py/Manifest b/dev-python/fake-py/Manifest
index f339f4b094fa..0a06efbb207f 100644
--- a/dev-python/fake-py/Manifest
+++ b/dev-python/fake-py/Manifest
@@ -1,3 +1 @@
DIST fake.py-0.11.10.gh.tar.gz 118399 BLAKE2B
7bd1d12152c0be9f4e4e7887e3b3ffb372207d464a773acc8bd28035899ff72f6aa82c625fbfd97d4f27c92014db04795efe958d23a431ff7b6ad9ea923023ea
SHA512
def8f9dfe89f038c6ff11fc6d40e18c20c5ffa36e3c6a5a3c6f90c08ffd8018b343e455a9763594d3aeb92152c9ac608ed941a75137cb1fc1d1157b2adbbf061
-DIST fake.py-0.11.8.gh.tar.gz 117240 BLAKE2B
b5900bd9e51ed0f774cd22202100fbe303de9fcc18a67c8f6a6d03817bdd7a03838443ab759146c0b6429a0fc724d311311d26f64b7bb9cfc0e287a3957dabec
SHA512
92d4e0f01ed3e08846e12a5deace2da0cf3bd178359ec7a3b39dab3363a600b2552eb946d1baf94f47ab13b91946a61292d38ae69bafd6a3b269f02528a67675
-DIST fake.py-0.11.9.gh.tar.gz 117622 BLAKE2B
8aa64086da9853a0fb63283f6761a050fa92e605a908aadd384d3dfc73bf4b696193586f111b7206d039bfe947413054315bdf476799ac5f2f6a0a8690447726
SHA512
0961813a3356950f952121e3bc24a4747204498ab6de2e53b890056dedad56e118088d607f43891538f38072c3b437d7d6b573e1ba13760b97b0ce516ad668a1
diff --git a/dev-python/fake-py/fake-py-0.11.8.ebuild
b/dev-python/fake-py/fake-py-0.11.8.ebuild
deleted file mode 100644
index 36e77018b87e..000000000000
--- a/dev-python/fake-py/fake-py-0.11.8.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYPI_PN=fake.py
-PYTHON_COMPAT=( pypy3_11 python3_{11..14} )
-
-inherit distutils-r1
-
-MY_P=${P/-/.}
-DESCRIPTION="Minimalistic, standalone alternative fake data generator with no
dependencies"
-HOMEPAGE="
- https://github.com/barseghyanartur/fake.py/
- https://pypi.org/project/fake-py/
-"
-# upstream removed examples (and their tests) from sdist around 0.11.8
-SRC_URI="
- https://github.com/barseghyanartur/fake.py/archive/${PV}.tar.gz
- -> ${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-BDEPEND="
- dev-python/setuptools-scm[${PYTHON_USEDEP}]
- test? (
- dev-python/hypothesis[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
- distutils-r1_src_prepare
-
- # avoid pytest-codeblock which is another nightmare NIH package
- rm conftest.py || die
-}
-
-python_test() {
- # This package is a mess with tests thrown all over the place,
- # and they need to be run separately because of how messy this is.
-
- local EPYTEST_DESELECT=(
- # fails when started via 'python -m pytest' because of different
- # argparse output
- fake.py::TestCLI::test_no_command
- )
-
- local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
- epytest -o addopts= fake.py
-
- local suite
- for suite in customisation dataclasses hypothesis lazyfuzzy; do
- pushd "examples/${suite}" >/dev/null || die
- epytest -o addopts=
- popd >/dev/null || die
- done
-}
diff --git a/dev-python/fake-py/fake-py-0.11.9.ebuild
b/dev-python/fake-py/fake-py-0.11.9.ebuild
deleted file mode 100644
index 12ff5656e8d5..000000000000
--- a/dev-python/fake-py/fake-py-0.11.9.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYPI_PN=fake.py
-PYTHON_COMPAT=( pypy3_11 python3_{11..14} )
-
-inherit distutils-r1
-
-MY_P=${P/-/.}
-DESCRIPTION="Minimalistic, standalone alternative fake data generator with no
dependencies"
-HOMEPAGE="
- https://github.com/barseghyanartur/fake.py/
- https://pypi.org/project/fake-py/
-"
-# upstream removed examples (and their tests) from sdist around 0.11.8
-SRC_URI="
- https://github.com/barseghyanartur/fake.py/archive/${PV}.tar.gz
- -> ${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-BDEPEND="
- dev-python/setuptools-scm[${PYTHON_USEDEP}]
-"
-
-EPYTEST_PLUGINS=( hypothesis )
-distutils_enable_tests pytest
-
-src_prepare() {
- distutils-r1_src_prepare
-
- # avoid pytest-codeblock which is another nightmare NIH package
- rm conftest.py || die
-}
-
-python_test() {
- # This package is a mess with tests thrown all over the place,
- # and they need to be run separately because of how messy this is.
-
- local EPYTEST_DESELECT=(
- # fails when started via 'python -m pytest' because of different
- # argparse output
- fake.py::TestCLI::test_no_command
- )
-
- epytest -o addopts= fake.py
-
- local suite
- for suite in customisation dataclasses hypothesis lazyfuzzy; do
- pushd "examples/${suite}" >/dev/null || die
- epytest -o addopts=
- popd >/dev/null || die
- done
-}