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 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python 1.0 |
---|
5 | |
---|
6 | set base_name leather |
---|
7 | name py-$base_name |
---|
8 | version 0.3.3 |
---|
9 | python.versions 27 33 34 35 36 |
---|
10 | |
---|
11 | platforms darwin |
---|
12 | maintainers @esafak |
---|
13 | license MIT |
---|
14 | |
---|
15 | description Python charting for 80% of humans |
---|
16 | long_description \ |
---|
17 | Leather is the Python charting library for those who need charts now and don’t care if they’re perfect. \ |
---|
18 | \ |
---|
19 | Leather isn’t picky. It’s rough. It gets dirty. It looks sexy just hanging on the back of a chair. \ |
---|
20 | Leather doesn’t need your accessories. Leather is how Snake Plissken would make charts. |
---|
21 | |
---|
22 | homepage https://pypi.python.org/pypi/$base_name |
---|
23 | master_sites pypi:l/$base_name |
---|
24 | |
---|
25 | checksums rmd160 5d9701a4ef7ac3e32bd9275e0dd2906aa0b6a624 \ |
---|
26 | sha256 076d1603b5281488285718ce1a5ce78cf1027fe1e76adf9c548caf83c519b988 |
---|
27 | |
---|
28 | distname $base_name-${version} |
---|
29 | |
---|
30 | if {${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 | } |
---|