| 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 github 1.0 |
|---|
| 5 | PortGroup python 1.0 |
|---|
| 6 | |
|---|
| 7 | github.setup ioam holoviews 1.11.2 v |
|---|
| 8 | revision 0 |
|---|
| 9 | categories-append science |
|---|
| 10 | license BSD |
|---|
| 11 | maintainers {mps @Schamschula} openmaintainer |
|---|
| 12 | description HoloViews is an open-source Python library designed to make data \ |
|---|
| 13 | analysis and visualization seamless and simple. |
|---|
| 14 | long_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. |
|---|
| 17 | platforms darwin |
|---|
| 18 | |
|---|
| 19 | checksums rmd160 6e79e33de02c80b76587847794f4e333528ca45d \ |
|---|
| 20 | sha256 d98fa7ddb42bb5937fa1b7a237d29e972865fc748f6a20dadf26a84f744f2206 \ |
|---|
| 21 | size 4628716 |
|---|
| 22 | |
|---|
| 23 | python.versions 36 37 |
|---|
| 24 | |
|---|
| 25 | depends_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 | |
|---|
| 31 | variant python36 conflicts python37 description {Use Python 3.6} { |
|---|
| 32 | python.default_version 36 |
|---|
| 33 | } |
|---|
| 34 | |
|---|
| 35 | variant python37 conflicts python36 description {Use Python 3.7} { |
|---|
| 36 | python.default_version 37 |
|---|
| 37 | } |
|---|
| 38 | |
|---|
| 39 | if {![variant_isset python36] && ![variant_isset python37]} { |
|---|
| 40 | default_variants +python37 |
|---|
| 41 | } |
|---|