dev-python/astroid: drop 2.15.7

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
2023-12-30 20:32:23 +01:00
parent 8c8d71c55a
commit ea09c3a1af
3 changed files with 2 additions and 66 deletions

View File

@@ -1,5 +1,3 @@
DIST astroid-2.15.7.gh.tar.gz 462906 BLAKE2B 7a984f9f7c67c2956958b23ee2ca94c1f86284d8a50aaedbe10b9dca887802189cba21f19ee66b394f347f415d61946aaff52e4d0448271edba77b6bd958fa0e SHA512 716665744915d8a635ac124f03ffe6f7aee6bde6d98c238551ea1c6468595d6c327bb2d5605f66e7ba6294ec1b79c85b861034acba8a4584095ba38e24f82ae9
DIST astroid-3.0.1.gh.tar.gz 461593 BLAKE2B de3458bcd9ba111020132e89b6e2fdf18b81b82cba68c986e84af91c910e6c70e7d13ff024b7947f3fa08e2491ba211a77a35421b3d5cd184b94e6a833c0da42 SHA512 2c8a4cf22959aef1eb9510430bcc55d00fcda76d022575786c9a59c093fe4196b67c0b9401f9226595a4cbf1fb9444bdfbb9ac2d83c115ec1d7d46cb7dd75dbd
EBUILD astroid-2.15.7.ebuild 1821 BLAKE2B 65bebcfa30ffa1bb5a6908abc17660782fde50559b4e03a617d0ace377f89e317fe818b790043ea530398c0874478b139f8584ba4f9ab46a337f653f0f483914 SHA512 875263821e73284cdb7f444aa1c1dcabe096d65241cf40236456157c1da7fe9190b03a6ce5ca9bfd294becf504872a52143833f6d301ee8ef2566bc78a2dd918
EBUILD astroid-3.0.1.ebuild 1451 BLAKE2B 7e606691877a47fd3ee64c22626d3c62566357ba2ecf350dc73088616a9e758a9464e52ebe81fc333494d9e9801833373d9438a2b4d515eed12336c26ecd4ad5 SHA512 8d8909b99eed607f353e4c7081c987fc5d95602883d9656cdbe585d316f786c3e7cd3ae2905cb772a9aa73e29176c4ace1b9cb3032f34352ea20d0c7d853bf1a
MISC metadata.xml 386 BLAKE2B 0fdb35ff12eee31b0eec240328dad835b4119b00c4be0fd3924b7b0053c7cd139f39ab33efcbc9cc0bd5db237ee886003f19aeeda389a1ae7344da6ab5ad8156 SHA512 53748a52d3aa42d8d48c3543eeda99bd13c08e8d2569f712a1af0de686c1a153c7c2850baed61f987d6ec838b3f63be8a9553d9b85b900790c9103cc908539c0

View File

@@ -1,62 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..12} )
inherit distutils-r1
DESCRIPTION="Abstract Syntax Tree for logilab packages"
HOMEPAGE="
https://github.com/PyCQA/astroid/
https://pypi.org/project/astroid/
"
SRC_URI="
https://github.com/PyCQA/astroid/archive/v${PV}.tar.gz
-> ${P}.gh.tar.gz
"
LICENSE="LGPL-2.1+"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
# Version specified in pyproject.toml
RDEPEND="
>=dev-python/lazy-object-proxy-1.4.0[${PYTHON_USEDEP}]
$(python_gen_cond_dep '
>=dev-python/typing-extensions-4.0.0[${PYTHON_USEDEP}]
' 3.{8..10})
<dev-python/wrapt-2[${PYTHON_USEDEP}]
"
BDEPEND="
dev-python/setuptools-scm[${PYTHON_USEDEP}]
test? (
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/python-dateutil[${PYTHON_USEDEP}]
)
"
distutils_enable_tests pytest
export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
python_test() {
local EPYTEST_DESELECT=(
# no clue why they're broken
tests/test_modutils.py::GetModulePartTest::test_known_values_get_builtin_module_part
tests/test_regrtest.py::NonRegressionTests::test_numpy_distutils
tests/brain/test_regex.py::TestRegexBrain::test_regex_pattern_and_match_subscriptable
# some problem with warnings (our options?)
tests/test_decorators.py::TestDeprecationDecorators::test_deprecated_default_argument_values_one_arg
tests/test_decorators.py::TestDeprecationDecorators::test_deprecated_default_argument_values_two_args
tests/test_scoped_nodes.py::test_deprecation_of_doc_attribute
# requires six bundled in urllib3, sigh
tests/test_modutils.py::test_file_info_from_modpath__SixMetaPathImporter
)
# Faker causes sys.path_importer_cache keys to be overwritten
# with PosixPaths
epytest -p no:faker
}