Ticket #57992: Portfile.2

File Portfile.2, 1.2 KB (added by Schamschula (Marius Schamschula), 5 years ago)

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