summaryrefslogtreecommitdiff
path: root/dev-python/python-discovery
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/python-discovery')
-rw-r--r--dev-python/python-discovery/Manifest2
-rw-r--r--dev-python/python-discovery/python-discovery-1.2.0.ebuild51
2 files changed, 0 insertions, 53 deletions
diff --git a/dev-python/python-discovery/Manifest b/dev-python/python-discovery/Manifest
index e51090a3d982..2c52f3fb1140 100644
--- a/dev-python/python-discovery/Manifest
+++ b/dev-python/python-discovery/Manifest
@@ -1,4 +1,2 @@
-DIST python_discovery-1.2.0.tar.gz 58055 BLAKE2B de4dae59ebfaadc92704f928503d13e2afc0d34c85413ff418fff905abbc8e52c0e24fe70cf0324935991cff25f5ce2e35d0b1d4b29402ac3ba044682018e0ed SHA512 9a1ce35f3f36f5a85b67a5791fb0a44c90ac21eb9f42be6c2e6f9c500f46510d5a9b6dd5041af3d733b1acdaa2023bbb0bd8894f0d2527705398e41ad6bebcf9
-DIST python_discovery-1.2.0.tar.gz.provenance 10015 BLAKE2B 1af4de8e6d54981452e8d9ba98ecfad88299bde4f7b176f51b2449b74fd55cba495c1ebc21327981a1f4660fbf2b3bca53d798a738a735d8b1ca00a91ec9dd07 SHA512 e0c01953c9d8d6f4729b83472af44d3d588382292147270a3bc9f807b0682a3b3b9dc38e93c8498a160552f95b47e0560f8ab1ce79ff42348a6ca72748f94fc8
DIST python_discovery-1.2.1.tar.gz 58457 BLAKE2B 618d2063314201b1a309c30e39061e6eeaa973f48ee60cfd7698a0dfbe753e66a2719f1798a191eb1fdb0c91fc2fbf5163132040d97e1384f101716c5a7c54c5 SHA512 7007265dd78279c55f12383eac0acafbcfd76e94fc6d2ceb2124fe7741abe4ba302b82d0522e72193dcd0372f7c236b0fb500c1a3be4b32393f0424c5e419323
DIST python_discovery-1.2.1.tar.gz.provenance 9827 BLAKE2B e2ac127bd8d2e0d340bbb0b06afe6fe6afc3a8db4837050723aa6fef32684c1b7540a353b2830247016926fd7b115361ce0a691c87180dff51a4b808517ee892 SHA512 3da8a48c369fceeaaa8972f450c6c6f047aa21cb8758380006ba5b9c4b61a9f1fefc9f3837cd6e419f9bcee7f22853bd7904ab23023ae1b4bbd4a5ffe26c0cb8
diff --git a/dev-python/python-discovery/python-discovery-1.2.0.ebuild b/dev-python/python-discovery/python-discovery-1.2.0.ebuild
deleted file mode 100644
index cfb429e3e85e..000000000000
--- a/dev-python/python-discovery/python-discovery-1.2.0.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 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/tox-dev/python-discovery
-PYTHON_COMPAT=( python3_{10..14} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Python interpreter discovery"
-HOMEPAGE="
- https://github.com/tox-dev/python-discovery/
- https://pypi.org/project/python-discovery/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~riscv ~s390"
-
-RDEPEND="
- >=dev-python/filelock-3.15.4[${PYTHON_USEDEP}]
- <dev-python/platformdirs-5[${PYTHON_USEDEP}]
- >=dev-python/platformdirs-4.3.6[${PYTHON_USEDEP}]
-"
-BDEPEND="
- dev-python/hatch-vcs[${PYTHON_USEDEP}]
- test? (
- >=dev-python/setuptools-75.1[${PYTHON_USEDEP}]
- )
-"
-
-EPYTEST_PLUGINS=( pytest-mock )
-EPYTEST_XDIST=1
-distutils_enable_tests pytest
-
-python_test() {
- local EPYTEST_DESELECT=()
-
- case ${EPYTHON} in
- python3.*t)
- EPYTEST_DESELECT+=(
- # TODO
- tests/test_py_info_extra.py::test_satisfies_path_not_abs_basename_match
- )
- ;;
- esac
-
- epytest
-}