Ticket #21373: Portfile

File Portfile, 1.5 KB (added by nodamage@…, 15 years ago)
Line 
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
4PortSystem          1.0
5PortGroup           python26 1.0
6
7name                py26-coverage
8version             3.0.1
9categories-append   devel
10platforms           darwin
11maintainers         nodamage.com:nodamage openmaintainer
12description         Code coverage tool for Python
13long_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
21homepage            http://nedbatchelder.com/code/modules/coverage.html
22master_sites        http://pypi.python.org/packages/source/c/coverage/
23distname            coverage-${version}
24
25checksums           md5 b299c33b169bd796a6186a1f0f42a7da \
26                    sha1 17403e47a52481ee3950ecb33fedb8887e5ea030 \
27                    rmd160 00b921492921eb57ff970ff7898b05f137f10a4a
28
29livecheck.type      regex
30livecheck.url       http://pypi.python.org/pypi/coverage
31livecheck.regex     {coverage (\d+(?:\.\d+)*)}