From 74f2a4a9a6bc041e3f7d54fa5538a0a98d7becf5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Sat, 5 Jul 2025 10:50:15 +0200 Subject: [PATCH] dev-python/pyflakes: Remove old MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/pyflakes/Manifest | 1 - dev-python/pyflakes/pyflakes-3.3.2.ebuild | 47 ----------------------- 2 files changed, 48 deletions(-) delete mode 100644 dev-python/pyflakes/pyflakes-3.3.2.ebuild diff --git a/dev-python/pyflakes/Manifest b/dev-python/pyflakes/Manifest index e28bfbe8fcc98..d40f78d11e9a6 100644 --- a/dev-python/pyflakes/Manifest +++ b/dev-python/pyflakes/Manifest @@ -1,2 +1 @@ -DIST pyflakes-3.3.2.tar.gz 64175 BLAKE2B d1fe4713ce62e3cce0f54724113546c8025457b09ad2d20176f011de8654f48b24981aa7ecfddb3ab3fc65b8f974411560be78cfc319c45f15acb14020d0866a SHA512 1cf65584e77a70a17dea0b66dc3e4e4a202cf6501f0209025eac2ce34925e229b28b6a66e09c536692a6ce5ce895c5b7451dbd6b44dd77994e4c0701653c6251 DIST pyflakes-3.4.0.tar.gz 64669 BLAKE2B 693708f575b7d98a3042845682b29fef1e077fe904c650c57c0c7af756471a3a36875bfcdb9d6d304415e772d5771591a6508bcef14d0e19cfe821ac3de7e0c4 SHA512 d2c48d2b3a1024af27f8fa1b304b9839d65d63d4a5d1db408e8546396b5150627dc9d84189716624f228a70ab0b2343d8c66b2ab154d4c6042362c9f6ed1b8c7 diff --git a/dev-python/pyflakes/pyflakes-3.3.2.ebuild b/dev-python/pyflakes/pyflakes-3.3.2.ebuild deleted file mode 100644 index baa8d987ea491..0000000000000 --- a/dev-python/pyflakes/pyflakes-3.3.2.ebuild +++ /dev/null @@ -1,47 +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=( python3_{10..13} pypy3 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*) - # regressions with pypy3.10 - # https://github.com/PyCQA/pyflakes/issues/779 - 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 - ) - ;; - python3.13) - EPYTEST_DESELECT+=( - # failing due to improved error message - # https://github.com/PyCQA/pyflakes/issues/812 - pyflakes/test/test_api.py::IntegrationTests::test_errors_syntax - pyflakes/test/test_api.py::TestMain::test_errors_syntax - ) - ;; - esac - - local -X PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 - epytest -}