dev-python/pyflakes: Bump to 3.4.0

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2025-06-21 06:36:30 +02:00
parent 8fc976019a
commit 87183de031
2 changed files with 42 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST pyflakes-3.3.2.tar.gz 64175 BLAKE2B d1fe4713ce62e3cce0f54724113546c8025457b09ad2d20176f011de8654f48b24981aa7ecfddb3ab3fc65b8f974411560be78cfc319c45f15acb14020d0866a SHA512 1cf65584e77a70a17dea0b66dc3e4e4a202cf6501f0209025eac2ce34925e229b28b6a66e09c536692a6ce5ce895c5b7451dbd6b44dd77994e4c0701653c6251
DIST pyflakes-3.4.0.tar.gz 64669 BLAKE2B 693708f575b7d98a3042845682b29fef1e077fe904c650c57c0c7af756471a3a36875bfcdb9d6d304415e772d5771591a6508bcef14d0e19cfe821ac3de7e0c4 SHA512 d2c48d2b3a1024af27f8fa1b304b9839d65d63d4a5d1db408e8546396b5150627dc9d84189716624f228a70ab0b2343d8c66b2ab154d4c6042362c9f6ed1b8c7

View File

@@ -0,0 +1,41 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{11..14} pypy3_11 )
inherit distutils-r1 pypi
DESCRIPTION="Passive checker for Python programs"
HOMEPAGE="
https://github.com/PyCQA/pyflakes/
https://pypi.org/project/pyflakes/
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
distutils_enable_tests pytest
python_test() {
local EPYTEST_DESELECT=()
case ${EPYTHON} in
pypy3*)
# upstream aims only to support long dead pypy3.9
# https://github.com/PyCQA/pyflakes/issues/779
# https://github.com/PyCQA/pyflakes/pull/802
# https://github.com/PyCQA/pyflakes/issues/828
EPYTEST_DESELECT+=(
pyflakes/test/test_api.py::CheckTests::test_eofSyntaxError
pyflakes/test/test_api.py::CheckTests::test_misencodedFileUTF8
pyflakes/test/test_api.py::CheckTests::test_multilineSyntaxError
)
;;
esac
local -X PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
epytest
}