1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id: Portfile 57375 2009-09-10 08:16:41Z ryandesign@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python26 1.0 |
---|
6 | |
---|
7 | name py26-coverage |
---|
8 | version 3.0.1 |
---|
9 | categories-append devel |
---|
10 | platforms darwin |
---|
11 | maintainers nodamage.com:nodamage openmaintainer |
---|
12 | description Code coverage tool for Python |
---|
13 | long_description Coverage.py is a Python module that measures code \ |
---|
14 | coverage during Python execution. It uses the code \ |
---|
15 | analysis tools and tracing hooks provided in the Python \ |
---|
16 | standard library to determine which lines are \ |
---|
17 | executable, and which have been executed. The original \ |
---|
18 | version was written by Gareth Rees. I've updated it to \ |
---|
19 | determine executable statements more accurately. |
---|
20 | |
---|
21 | homepage http://nedbatchelder.com/code/modules/coverage.html |
---|
22 | master_sites http://pypi.python.org/packages/source/c/coverage/ |
---|
23 | distname coverage-${version} |
---|
24 | |
---|
25 | checksums md5 b299c33b169bd796a6186a1f0f42a7da \ |
---|
26 | sha1 17403e47a52481ee3950ecb33fedb8887e5ea030 \ |
---|
27 | rmd160 00b921492921eb57ff970ff7898b05f137f10a4a |
---|
28 | |
---|
29 | livecheck.type regex |
---|
30 | livecheck.url http://pypi.python.org/pypi/coverage |
---|
31 | livecheck.regex {coverage (\d+(?:\.\d+)*)} |
---|