1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python26 1.0 |
---|
5 | |
---|
6 | name py26-pyflakes |
---|
7 | version 0.3.0 |
---|
8 | categories python www |
---|
9 | platforms darwin |
---|
10 | maintainers arthurkoziel.com:arthur |
---|
11 | homepage http://www.divmod.org/trac/wiki/DivmodPyflakes |
---|
12 | description passive checker of Python programs |
---|
13 | long_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 | |
---|
18 | master_sites http://pypi.python.org/packages/source/p/pyflakes/ |
---|
19 | distname pyflakes-${version} |
---|
20 | checksums md5 ec7eee3444214bda18e57b82175e1da7 \ |
---|
21 | sha1 579fccf1e903639fa5527e022b1a3bc0d3a6499e \ |
---|
22 | rmd160 8acef8911299bb6e3710b36c3cadd2bc2cfc1192 |
---|
23 | |
---|
24 | depends_lib-append port:py26-setuptools |
---|
25 | |
---|
26 | post-destroot { |
---|
27 | ln -s ${python.prefix}/bin/pyflakes ${destroot}${prefix}/bin/pyflakes-2.6 |
---|
28 | } |
---|
29 | |
---|
30 | livecheck.check regex |
---|
31 | livecheck.url http://pypi.python.org/pypi/pyflakes/ |
---|
32 | livecheck.regex pyflakes (0\.\[0-9\]+\.\[0-9\]+) |
---|