Ticket #53645: Portfile

File Portfile, 1.9 KB (added by esafak (Emre Şafak), 8 years ago)
Line 
1# -*- 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
2
3PortSystem          1.0
4PortGroup           python 1.0
5
6set base_name       leather
7name                py-$base_name
8version             0.3.3
9python.versions     27 33 34 35 36
10
11platforms           darwin
12maintainers         @esafak
13license             MIT
14
15description         Python charting for 80% of humans
16long_description    \
17    Leather is the Python charting library for those who need charts now and dont care if theyre perfect. \
18    \
19    Leather isnt picky. Its rough. It gets dirty. It looks sexy just hanging on the back of a chair. \
20    Leather doesnt need your accessories. Leather is how Snake Plissken would make charts.
21
22homepage            https://pypi.python.org/pypi/$base_name
23master_sites        pypi:l/$base_name
24
25checksums           rmd160  5d9701a4ef7ac3e32bd9275e0dd2906aa0b6a624 \
26                    sha256  076d1603b5281488285718ce1a5ce78cf1027fe1e76adf9c548caf83c519b988
27
28distname            $base_name-${version}
29
30if {${name} ne ${subport}} {
31    livecheck.type      none
32
33    depends_build-append port:py${python.version}-setuptools
34
35    depends_lib-append  port:py${python.version}-nose \
36                        port:py${python.version}-sphinx \
37                        port:py${python.version}-coverage \
38                        port:py${python.version}-six \
39                        port:py${python.version}-sphinx_rtd_theme \
40                        port:py${python.version}-tz \
41                        port:py${python.version}-tox \
42                        port:py${python.version}-lxml \
43                        port:py${python.version}-cssselect
44                        # port:py${python.version}-unittest2 \
45} else {
46    livecheck.type      regex
47    livecheck.url       ${homepage}
48    livecheck.regex     $base_name (\\d+(\\.\\d+)+)
49}