commit: 0515e962e8479e897b7fe3d7e2588b9f509270e1
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat May 31 10:15:29 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 31 10:19:15 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0515e962
dev-python/astor: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/astor/astor-0.8.1-r1.ebuild | 53 ----------------------------------
1 file changed, 53 deletions(-)
diff --git a/dev-python/astor/astor-0.8.1-r1.ebuild
b/dev-python/astor/astor-0.8.1-r1.ebuild
deleted file mode 100644
index 7f7c08576247..000000000000
--- a/dev-python/astor/astor-0.8.1-r1.ebuild
+++ /dev/null
@@ -1,53 +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=( pypy3_11 python3_{11..14} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Read/rewrite/write Python ASTs"
-HOMEPAGE="
- https://pypi.org/project/astor/
- https://github.com/berkerpeksag/astor/
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~loong ~mips ppc ppc64 ~riscv ~s390
sparc x86"
-
-PATCHES=(
- "${FILESDIR}"/${P}-tests-bigint.patch
-)
-
-distutils_enable_tests pytest
-
-python_test() {
- local EPYTEST_IGNORE=(
- tests/test_rtrip.py
- )
- local EPYTEST_DESELECT=()
-
- case ${EPYTHON} in
- python3.14)
- EPYTEST_DESELECT+=(
- # TODO
-
tests/test_code_gen.py::CodegenTestCase::test_complex
-
tests/test_code_gen.py::CodegenTestCase::test_deprecated_constant_nodes
-
tests/test_code_gen.py::CodegenTestCase::test_deprecated_name_constants
-
tests/test_code_gen.py::CodegenTestCase::test_fstring_debugging
-
tests/test_code_gen.py::CodegenTestCase::test_fstring_escaped_braces
-
tests/test_code_gen.py::CodegenTestCase::test_fstring_trailing_newline
-
tests/test_code_gen.py::CodegenTestCase::test_fstrings
-
tests/test_code_gen.py::CodegenTestCase::test_huge_int
-
tests/test_code_gen.py::CodegenTestCase::test_inf
-
tests/test_code_gen.py::CodegenTestCase::test_nan
- )
- ;;
- esac
-
- local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
- epytest
-}