Files
2026-02-25 22:22:41 -05:00

53 lines
1.8 KiB
Tcl

# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
PortSystem 1.0
PortGroup python 1.0
PortGroup select 1.0
name py-pyflakes
# CAUTION: Updates tend to break port `py-flake8` due to strict version caps.
# Please DO NOT update without cross-checking version compatibility and
# perform updates in a coordinated way.
version 3.4.0
revision 0
categories-append devel
license MIT
supported_archs noarch
platforms {darwin any}
python.versions 310 311 312 313 314
maintainers {stromnov @stromnov} openmaintainer
description Passive checker of Python programs.
long_description Pyflakes is program to analyze Python programs and \
detect various errors. It works by parsing the source \
file, not importing it, so it is safe to use on modules \
with side effects. It's also much faster.
homepage https://github.com/pycqa/pyflakes
checksums rmd160 63d92d689b4af96a4023228c3d890e8d3adb46b8 \
sha256 b24f96fafb7d2ab0ec5075b7350b3d2d2218eab42003821c06344973d3ea2f58 \
size 64669
if {${name} ne ${subport}} {
depends_lib-append port:py${python.version}-setuptools
depends_run port:pyflakes_select
select.group pyflakes
select.file ${filespath}/py${python.version}-pyflakes
notes "
To make the Python ${python.branch} version of py-pyflakes the one that is run\
when you execute the commands without a version suffix, e.g. 'pyflakes', run:
port select --set ${select.group} [file tail ${select.file}]
"
test.run yes
python.test_framework unittest
}