From 43b29d367c87a65f8eebcc1a7b56a3943ee76fd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=95=D0=B2=D0=B3=D0=B5=D0=BD=D0=B8=D0=B9=20=28=D0=A5?= =?UTF-8?q?=D1=80=D0=B0=D0=BC=D1=8B=D1=87=D0=AA=29=20=D0=A5=D1=80=D0=B0?= =?UTF-8?q?=D0=BC=D0=BE=D0=B2?= Date: Sun, 21 Sep 2025 18:35:31 +0300 Subject: [PATCH] flake8 7.3.0-2 --- flake8/alr.sh | 38 +++++++++++++++++++++++++++++++++++--- 1 file changed, 35 insertions(+), 3 deletions(-) diff --git a/flake8/alr.sh b/flake8/alr.sh index e8cebd7..34694e5 100644 --- a/flake8/alr.sh +++ b/flake8/alr.sh @@ -1,9 +1,10 @@ name='flake8' -epoch='2' version='7.3.0' -release='1' +release='2' desc='The modular source code checker: pep8, pyflakes and co' +desc_ru='Модульная проверка исходного кода: pep8, pyflakes и другие' homepage='https://flake8.pycqa.org' +maintainer="Evgeny Khramov " maintainer="Евгений Храмов " architectures=('all') license=('MIT') @@ -16,11 +17,36 @@ deps=( 'python3-pycodestyle' 'python3-entrypoints' ) +deps_alt=( + 'python3-module-pyflakes' + 'python3-module-mccabe' + 'python3-module-pycodestyle' + 'python3-module-entrypoints' +) +deps_arch=( + 'python-pyflakes' + 'python-mccabe' + 'python-pycodestyle' + 'python-entrypoints' +) +deps_debian=("${deps[@]}") +deps_fedora=("${deps[@]}") +deps_redos=("${deps[@]}") +deps_rhel=("${deps[@]}") +deps_rosa=("${deps[@]}") build_deps=( - python3-setuptools + 'python3-setuptools' ) +build_deps_alt=('python3-module-setuptools') +build_deps_arch=('python-setuptools') +build_deps_debian=("${build_deps[@]}") +build_deps_fedora=("${build_deps[@]}") +build_deps_redos=("${build_deps[@]}") +build_deps_rhel=("${build_deps[@]}") +build_deps_rosa=("${build_deps[@]}") + sources=("https://github.com/PyCQA/flake8/archive/${version}/${name}-${version}.tar.gz") checksums=('SKIP') @@ -40,3 +66,9 @@ package() { python setup.py install --root="${pkgdir}" --prefix=/usr --optimize=1 install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$name/LICENSE } + +files() { + files-find-bin + files-find ./usr/lib/python*/site-packages + files-find-share "licenses/$name" +}