summaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2025-07-29 04:13:31 +0200
committerMichał Górny <mgorny@gentoo.org>2025-07-29 04:41:28 +0200
commit2988b20b7a776ea2c25766a58c7f46f77321c22d (patch)
treec7c9ab387bed9dece6d99f71ec874f373b7be02b /dev-python
parent0737f2e0afd5cf09cc9d4a5b4b9dd67be74a6a27 (diff)
downloadgentoo-2988b20b7a776ea2c25766a58c7f46f77321c22d.tar.gz
gentoo-2988b20b7a776ea2c25766a58c7f46f77321c22d.tar.bz2
gentoo-2988b20b7a776ea2c25766a58c7f46f77321c22d.zip
dev-python/griffe: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/griffe/Manifest1
-rw-r--r--dev-python/griffe/griffe-1.7.3.ebuild70
2 files changed, 0 insertions, 71 deletions
diff --git a/dev-python/griffe/Manifest b/dev-python/griffe/Manifest
index ce5626114a9a..ca65a703efbf 100644
--- a/dev-python/griffe/Manifest
+++ b/dev-python/griffe/Manifest
@@ -1,2 +1 @@
-DIST griffe-1.7.3.gh.tar.gz 398342 BLAKE2B 628f48b594ec30135cf1e8b0aee32452d75c33f41f16f5e549be4789b8c91cdea65816addc4fc8eee4c6c56cf70ff4c5682c739b0c2483758764e3b8b3dc95af SHA512 b39c4e279bd0f0ba3be144b6d8c3f762f2246f070a0af040aeb0315baecc5a2e519b7fb0bca263ed37b9002791d8efd3b340d43a3cd4e9e1c9253af8d758b52b
DIST griffe-1.8.0.gh.tar.gz 404336 BLAKE2B f3b83974b979823e74bf705eed180ace7aede4085258059389e6ff94bc243984e25f93d621fcdfd34f9af6720e0d99e1a0f4ad0f2dce1e467a00871d9dfc2da9 SHA512 cdb2176aeceab63d1ed704c9ee7cbdcd028ed768755a69879942c99ecb22081fed03ec3ad8ba9b51e104f9017e5150e7749e0ab23bd2b148c87fe5ee26a98ca9
diff --git a/dev-python/griffe/griffe-1.7.3.ebuild b/dev-python/griffe/griffe-1.7.3.ebuild
deleted file mode 100644
index 115d0beb002b..000000000000
--- a/dev-python/griffe/griffe-1.7.3.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=pdm-backend
-PYTHON_COMPAT=( pypy3 pypy3_11 python3_{10..13} )
-
-inherit distutils-r1
-
-DESCRIPTION="Signature generator for Python programs"
-HOMEPAGE="
- https://mkdocstrings.github.io/griffe/
- https://github.com/mkdocstrings/griffe/
- https://pypi.org/project/griffe/
-"
-# Tests need files absent from the PyPI tarballs
-SRC_URI="
- https://github.com/mkdocstrings/griffe/archive/${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv"
-
-RDEPEND="
- >=dev-python/colorama-0.4[${PYTHON_USEDEP}]
- $(python_gen_cond_dep '
- >=dev-python/backports-strenum-1.3[${PYTHON_USEDEP}]
- ' 3.10)
-"
-BDEPEND="
- test? (
- >=dev-python/jsonschema-4.17[${PYTHON_USEDEP}]
- >=dev-python/mkdocstrings-0.28.0[${PYTHON_USEDEP}]
- >=dev-python/pytest-xdist-2.4[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests pytest
-
-export PDM_BUILD_SCM_VERSION=${PV}
-
-python_test() {
- local EPYTEST_DESELECT=(
- # fragile to installed packages
- # (failed on PySide2 for me)
- tests/test_stdlib.py::test_fuzzing_on_stdlib
- )
-
- case ${EPYTHON} in
- pypy3.11)
- EPYTEST_DESELECT+=(
- # https://github.com/pypy/pypy/issues/5226
- tests/test_inspector.py::test_inspecting_objects_from_private_builtin_stdlib_moduless
- )
- ;&
- pypy3*)
- EPYTEST_DESELECT+=(
- # tries importing CPython-specific modules
- # https://github.com/mkdocstrings/griffe/issues/362
- tests/test_loader.py::test_load_builtin_modules
- )
- ;;
- esac
-
- local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
- epytest
-}