Ticket #22877: Portfile

File Portfile, 1.3 KB (added by bretthoerner@…, 14 years ago)

py26-pyflakes Portfile

Line 
1# $Id: Portfile 57375 2009-09-10 08:16:41Z ryandesign@macports.org $
2
3PortSystem          1.0
4PortGroup           python26 1.0
5
6name                py26-pyflakes
7version             0.4.0
8categories          python www
9platforms           darwin
10maintainers         arthurkoziel.com:arthur
11homepage            http://www.divmod.org/trac/wiki/DivmodPyflakes
12description         passive checker of Python programs
13long_description    Pyflakes is program to analyze Python programs and \
14                    detect various errors. It works by parsing the source \
15                    file, not importing it, so it is safe to use on modules \
16                    with side effects. It's also much faster.
17
18master_sites        http://pypi.python.org/packages/source/p/pyflakes/
19distname            pyflakes-${version}
20checksums           md5     630a72510aae8758f48cf60e4fa17176 \
21                    sha1    439b547be3be431de90ebea16b7fd2a3f620e3f9 \
22                    rmd160  b2962664414c41128b165d2db5977bfc8ecb7777
23
24depends_lib-append  port:py26-setuptools
25
26post-destroot {
27    ln -s ${python.prefix}/bin/pyflakes ${destroot}${prefix}/bin/pyflakes-2.6
28}
29
30livecheck.type      regex
31livecheck.url       http://pypi.python.org/pypi/pyflakes/
32livecheck.regex     pyflakes (0\.\[0-9\]+\.\[0-9\]+)
33