commit:     e3ff35533426a2b36b62a1ea47205503d2df08e0
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Mar  6 13:22:51 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Mar  6 14:04:56 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3ff3553

dev-python/astroid: Bump to 2.15.0

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/astroid/Manifest              |  1 +
 dev-python/astroid/astroid-2.15.0.ebuild | 63 ++++++++++++++++++++++++++++++++
 2 files changed, 64 insertions(+)

diff --git a/dev-python/astroid/Manifest b/dev-python/astroid/Manifest
index ed745dd8817e..05dfbca39cc5 100644
--- a/dev-python/astroid/Manifest
+++ b/dev-python/astroid/Manifest
@@ -2,3 +2,4 @@ DIST astroid-2.13.2.gh.tar.gz 449022 BLAKE2B 
c8180057edef860fae6697b40d6b023b5be
 DIST astroid-2.13.5.gh.tar.gz 451241 BLAKE2B 
6994c9a62911ab347be4de17b9322ca9957b274c2a42085b5c521bc4a810ab0c0079fda89203910a1d7151ebad1b07cc446c1fc8e88580051029861cfb3465ae
 SHA512 
87920dfe5a4e3e64b77cbeefcdd1e227dd712230aeb957f78b57a50d215ef0601689df26ac97cec65d7690e89b10e1b8ab8f2976d1a9b1a3e9a971eb2142d9d2
 DIST astroid-2.14.1.gh.tar.gz 452889 BLAKE2B 
f6cee61825d2c86bbf02ba6cc9f48076692d3d71ac2c8a02880a778380b076692aef549ab01829d943323b5829b83ee88009b5136b308da6f81a824fa1f62047
 SHA512 
47dd132e66645c3da639c68011f4691409af38affa80c5b1863706a864fb8458cdfd100f86929fdaac027a514d285132d8865d2d40996c583077384696a84123
 DIST astroid-2.14.2.gh.tar.gz 453109 BLAKE2B 
cb4b0795bde841e98712a719ba0870a3f0c616fc777cb3afc1ebbb0f5e49b763241825072d7915df87e778649a5632fec8f48e125cfa67de0b70618e34509157
 SHA512 
2dad27c0a3ddad5747a021c0700b831fe9f7a557238a2f52d87722c637120d49796a0a8e9e6f27d42ab4bee1c91541b7b5b5fa93dc3ec8a47197f35569a64a3a
+DIST astroid-2.15.0.gh.tar.gz 460733 BLAKE2B 
cc80ffd9b5804a1a0c94598f75363088dcb971ee322b556e150799a5e18aa16d20c58d9bf7725c2697d34152daa72a20d845e7c56a524d58354913eed338010f
 SHA512 
7ec121b3c7d60e2d48f738fbc4eeae3e32c7135a77fb778db9479d730a757818f549d8bd35facdd67d411d777d57ec620a2448de1f4da23754863cae18717bce

diff --git a/dev-python/astroid/astroid-2.15.0.ebuild 
b/dev-python/astroid/astroid-2.15.0.ebuild
new file mode 100644
index 000000000000..e619ead6e779
--- /dev/null
+++ b/dev-python/astroid/astroid-2.15.0.ebuild
@@ -0,0 +1,63 @@
+# 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_{9..11} )
+
+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="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+
+# Version specified in pyproject.toml
+RDEPEND="
+       >=dev-python/lazy-object-proxy-1.4.0[${PYTHON_USEDEP}]
+       dev-python/setuptools[${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
+}

Reply via email to