You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-03-31 14:42:53 -07:00
91 lines
3.1 KiB
Tcl
91 lines
3.1 KiB
Tcl
# -*- 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
|
|
|
|
PortSystem 1.0
|
|
PortGroup python 1.0
|
|
PortGroup select 1.0
|
|
|
|
name py-panel
|
|
version 1.8.10
|
|
revision 0
|
|
|
|
categories-append graphics devel
|
|
license BSD
|
|
maintainers {mps @Schamschula} openmaintainer
|
|
description A high-level app and dashboarding solution for Python.
|
|
long_description Panel is an open-source Python library that lets you create custom \
|
|
interactive web apps and dashboards by connecting user-defined \
|
|
widgets to plots, images, tables, or text.
|
|
homepage https://panel.holoviz.org
|
|
|
|
supported_archs noarch
|
|
platforms {darwin any}
|
|
|
|
checksums rmd160 b38de27d226843cf314d42c94211ab3f9cafa00d \
|
|
sha256 762881b06efb99f3d201749a3634c6b5f18f46cfca520970c2c1bb31bed42c90 \
|
|
size 32186528
|
|
|
|
python.versions 310 311 312 313 314
|
|
|
|
python.pep517_backend \
|
|
hatch
|
|
|
|
if {${name} ne ${subport}} {
|
|
depends_build-append \
|
|
port:py${python.version}-hatch-vcs \
|
|
port:py${python.version}-packaging
|
|
|
|
depends_lib-append \
|
|
port:panel_select \
|
|
port:py${python.version}-bleach \
|
|
port:py${python.version}-bokeh \
|
|
port:py${python.version}-linkify-it-py \
|
|
port:py${python.version}-markdown \
|
|
port:py${python.version}-markdown-it-py \
|
|
port:py${python.version}-mdit-py-plugins \
|
|
port:py${python.version}-narwhals \
|
|
port:py${python.version}-pandas \
|
|
port:py${python.version}-param \
|
|
port:py${python.version}-pyct \
|
|
port:py${python.version}-pyviz_comms \
|
|
port:py${python.version}-requests \
|
|
port:py${python.version}-tqdm \
|
|
port:py${python.version}-typing_extensions \
|
|
port:py${python.version}-tzdata \
|
|
port:py${python.version}-xyzservices
|
|
|
|
select.group panel
|
|
select.file ${filespath}/py${python.version}-panel
|
|
|
|
platform darwin {
|
|
if {${os.major} > 21} {
|
|
depends_lib-append \
|
|
port:nodejs24
|
|
}
|
|
if {${os.major} > 18 && ${os.major} < 22} {
|
|
depends_lib-append \
|
|
port:nodejs22
|
|
}
|
|
if {${os.major} > 15 && ${os.major} < 19} {
|
|
depends_lib-append \
|
|
port:nodejs20
|
|
}
|
|
if {${os.major} > 10 && ${os.major} < 16} {
|
|
depends_lib-append \
|
|
port:nodejs16
|
|
}
|
|
|
|
if {${os.major} > 15} {
|
|
depends_build-append \
|
|
port:npm11
|
|
}
|
|
if {${os.major} > 12 && ${os.major} < 16} {
|
|
depends_build-append \
|
|
port:npm9
|
|
}
|
|
if {${os.major} < 13} {
|
|
depends_build-append \
|
|
port:npm8
|
|
}
|
|
}
|
|
}
|