| 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 | set real_name pyviz_comms |
|---|
| 8 | name py-${real_name} |
|---|
| 9 | github.setup pyviz ${real_name} 0.7.0 v |
|---|
| 10 | revision 0 |
|---|
| 11 | categories python |
|---|
| 12 | license BSD |
|---|
| 13 | maintainers {mps @Schamschula} openmaintainer |
|---|
| 14 | description Offers a simple bidirectional communication architecture for PyViz \ |
|---|
| 15 | tools including support for Jupyter comms in both the classic \ |
|---|
| 16 | notebook and Jupyterlab. |
|---|
| 17 | long_description ${description} |
|---|
| 18 | platforms darwin |
|---|
| 19 | |
|---|
| 20 | checksums rmd160 4b88e8eeb2415e8a41ae280cf74bfdf05e4ab6f6 \ |
|---|
| 21 | sha256 2148088edb4bf3a0106be49ed4bbb7c712a0f62012011b71e6933ff257634748 \ |
|---|
| 22 | size 13990 |
|---|
| 23 | |
|---|
| 24 | python.versions 36 37 |
|---|
| 25 | |
|---|
| 26 | if {${name} ne ${subport}} { |
|---|
| 27 | depends_build port:git |
|---|
| 28 | |
|---|
| 29 | depends_lib port:py${python.version}-numpy \ |
|---|
| 30 | port:py${python.version}-param \ |
|---|
| 31 | port:py${python.version}-pyobjc \ |
|---|
| 32 | port:py${python.version}-setuptools |
|---|
| 33 | } |
|---|