1 | # $Id: Portfile 57375 2009-09-10 08:16:41Z ryandesign@macports.org $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python26 1.0 |
---|
5 | |
---|
6 | name py26-pyflakes |
---|
7 | version 0.4.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 630a72510aae8758f48cf60e4fa17176 \ |
---|
21 | sha1 439b547be3be431de90ebea16b7fd2a3f620e3f9 \ |
---|
22 | rmd160 b2962664414c41128b165d2db5977bfc8ecb7777 |
---|
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.type regex |
---|
31 | livecheck.url http://pypi.python.org/pypi/pyflakes/ |
---|
32 | livecheck.regex pyflakes (0\.\[0-9\]+\.\[0-9\]+) |
---|
33 | |
---|