# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4

PortSystem          1.0
PortGroup           python 1.0

name                py-coverage
version             4.5.4
categories-append   devel
maintainers         {petr @petrrr} openmaintainer
license             Apache-2

description         Code coverage measurement for Python
long_description    Coverage measures code coverage, typically during test \
                    execution. It uses the code analysis tools and tracing \
                    hooks provided in the Python standard library to \
                    determine which lines are executable, and which have \
                    been executed.

platforms           darwin

homepage            https://github.com/nedbat/coveragepy
master_sites        pypi:[string index ${python.rootname} 0]/${python.rootname}
distname            ${python.rootname}-${version}

checksums           rmd160  81ff5f8a5616864d7393a7348c16332667958355 \
                    sha256  e07d9f1a23e9e93ab5c62902833bf3e4b1f65502927379148b6622686223125c \
                    size    385185

python.versions     27 34 35 36 37 38

if {${name} ne ${subport}} {
    depends_lib-append \
                    port:py${python.version}-setuptools

    patchfiles      patch-setup.py.diff

    livecheck.type  none
}