summaryrefslogtreecommitdiff
path: root/dev-python/forbiddenfruit
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-09-18 15:41:29 -0500
committerroot <root@alpha.trunkmasters.com>2026-09-18 15:41:29 -0500
commit201b1a5f202628742bb2b602acc1147303f503ab (patch)
tree48d6c9d5754ae1d1a7078e37bc40e108cecf4fbf /dev-python/forbiddenfruit
parent4f24a5a81ceb5b88ec46c27b34f371d5a8e30152 (diff)
downloadbaldeagleos-repo-201b1a5f202628742bb2b602acc1147303f503ab.tar.gz
baldeagleos-repo-201b1a5f202628742bb2b602acc1147303f503ab.tar.xz
baldeagleos-repo-201b1a5f202628742bb2b602acc1147303f503ab.zip
Adding metadata
Diffstat (limited to 'dev-python/forbiddenfruit')
-rw-r--r--dev-python/forbiddenfruit/forbiddenfruit-0.1.4.ebuild52
1 files changed, 0 insertions, 52 deletions
diff --git a/dev-python/forbiddenfruit/forbiddenfruit-0.1.4.ebuild b/dev-python/forbiddenfruit/forbiddenfruit-0.1.4.ebuild
deleted file mode 100644
index 3cefd61682c4..000000000000
--- a/dev-python/forbiddenfruit/forbiddenfruit-0.1.4.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_TESTED=( python3_{13..14} )
-# tests crash on 3.13+
-# https://github.com/clarete/forbiddenfruit/issues/78
-PYTHON_COMPAT=( python3_{13..14} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Patch built-in Python objects"
-HOMEPAGE="
- https://github.com/clarete/forbiddenfruit/
- https://pypi.org/project/forbiddenfruit/
-"
-
-LICENSE="|| ( GPL-3 MIT )"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
- test? (
- $(python_gen_cond_dep '
- dev-python/pytest[${PYTHON_USEDEP}]
- ' "${PYTHON_TESTED[@]}")
- )
-"
-
-PATCHES=(
- # https://github.com/clarete/forbiddenfruit/pull/79
- # + test case fix from
- # https://github.com/clarete/forbiddenfruit/commit/6eb07cb77bcd3d54c7f09f23f176706d7dfccdef
- "${FILESDIR}/${P}-pytest.patch"
-)
-
-python_test() {
- if ! has "${EPYTHON/./_}" "${PYTHON_TESTED[@]}"; then
- einfo "Skipping tests on ${EPYTHON}, as they are broken"
- return
- fi
-
- local -x FFRUIT_EXTENSION=true
- esetup.py build_ext -b tests/unit
-
- local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
- epytest
-}