Files

46 lines
1.4 KiB
Tcl
Raw Permalink Normal View History

2020-02-05 21:46:48 -05:00
# -*- 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-python-coveralls
version 2.9.3
2020-02-12 09:43:22 -05:00
revision 1
2020-02-05 21:46:48 -05:00
2020-02-12 09:43:22 -05:00
categories-append devel
2020-02-05 21:46:48 -05:00
platforms darwin
supported_archs noarch
2020-02-12 09:43:22 -05:00
license Apache-2
maintainers nomaintainer
2020-02-05 21:46:48 -05:00
2020-02-12 09:43:22 -05:00
description Python API for https://coveralls.io
2021-03-29 15:20:19 -04:00
long_description {*}${description}
2020-02-05 21:46:48 -05:00
homepage https://github.com/z4r/python-coveralls
checksums rmd160 a6b60bc37aa14b2ba1bae0e56daa5e07f5a4fa3a \
sha256 bfaf7811e7dc5628e83b6b162962a4e2485dbff184b30e49f380374ed1bcee55 \
size 9036
2021-03-29 15:20:19 -04:00
python.versions 37 38 39
2020-02-05 21:46:48 -05:00
if {${name} ne ${subport}} {
2020-02-12 09:43:22 -05:00
depends_lib-append \
2020-02-05 21:46:48 -05:00
port:py${python.version}-setuptools
depends_run-append \
port:py${python.version}-coverage \
port:py${python.version}-requests \
port:py${python.version}-six \
port:py${python.version}-yaml
post-destroot {
set docdir ${prefix}/share/doc/${subport}
xinstall -d ${destroot}${docdir}
2020-02-12 09:43:22 -05:00
xinstall -m 0644 -W ${worksrcpath} README.rst LICENSE \
2020-02-05 21:46:48 -05:00
${destroot}${docdir}
}
livecheck.type none
}