Ticket #49005: Portfile

File Portfile, 1.3 KB (added by gorticus (Jason Mitchell), 9 years ago)

initial py-palettable Portfile

Line 
1# $Id$
2
3PortSystem          1.0
4PortGroup           python 1.0
5
6name                py-palettable
7version             2.1.1
8categories-append   graphics
9maintainers         maiar.org:jason-macports openmaintainer
10license             MIT
11platforms           darwin
12supported_archs     noarch
13description         Palettable is a library of color palettes for Python.
14long_description    Palettable (formerly brewer2mpl) is a library of \
15                    color palettes for Python. It’s written in pure \
16                    Python with no dependencies, but it can supply color \
17                    maps for matplotlib.  You can use Palettable to \
18                    customize matplotlib plots or supply colors for a web \
19                    application.
20
21homepage            https://jiffyclub.github.io/${python.rootname}/
22master_sites        pypi:[string index ${python.rootname} 0]/${python.rootname}
23distname            ${python.rootname}-${version}
24
25checksums           rmd160 9e88450dbe0718931ac0969205c2a84af8b74b43 \
26                    sha256 45cf7af19ebd536a23d51c9f242121a347022a2bac5932ab4057fdc14f35ed60
27
28python.versions     27 34
29
30if {${name} ne ${subport}} {
31    depends_build-append  port:py${python.version}-setuptools
32    livecheck.type        none
33} else {
34    livecheck.type        pypi
35}