Ticket #57992: Portfile.3

File Portfile.3, 1.6 KB (added by Schamschula (Marius Schamschula), 5 years ago)

holoviews Portfile

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           github 1.0
5PortGroup           python 1.0
6
7github.setup        ioam holoviews 1.11.2 v
8revision            0
9categories-append   science
10license             BSD
11maintainers         {mps @Schamschula} openmaintainer
12description         HoloViews is an open-source Python library designed to make data \
13                    analysis and visualization seamless and simple.
14long_description    ${description} With HoloViews, you can usually express what you \
15                    want to do in very few lines of code, letting you focus on what you \
16                    are trying to explore and convey, not on the process of plotting.
17platforms           darwin
18
19checksums           rmd160  6e79e33de02c80b76587847794f4e333528ca45d \
20                    sha256  d98fa7ddb42bb5937fa1b7a237d29e972865fc748f6a20dadf26a84f744f2206 \
21                    size    4628716
22
23python.versions     36 37
24
25depends_lib-append  port:py${python.version}-matplotlib \
26                    port:py${python.version}-notebook \
27                    port:py${python.version}-param \
28                    port:py${python.version}-pyviz_comms \
29                    port:py${python.version}-setuptools
30
31variant python36 conflicts python37 description {Use Python 3.6} {
32    python.default_version 36
33}
34
35variant python37 conflicts python36 description {Use Python 3.7} {
36    python.default_version 37
37}
38
39if {![variant_isset python36] && ![variant_isset python37]} {
40    default_variants +python37
41}