You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
48 lines
1.7 KiB
Tcl
48 lines
1.7 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
|
|
|
|
name py-pmdarima
|
|
version 2.1.1
|
|
platforms darwin
|
|
license MIT
|
|
maintainers nomaintainer
|
|
|
|
description Python's forecast auto.arima equivalent
|
|
long_description {*}${description}
|
|
|
|
homepage http://alkaline-ml.com/pmdarima
|
|
|
|
checksums rmd160 5fc1a5990d94060c654c3edc4549504cb3428743 \
|
|
sha256 b8d2a0c0cd3f7ec90825fa25a917b5f66073de58033511de015a9e76e4e3d8f7 \
|
|
size 1426078
|
|
|
|
python.versions 310 311 312 313
|
|
|
|
python.pep517_backend meson
|
|
|
|
if {${name} ne ${subport}} {
|
|
depends_build-append \
|
|
path:bin/cython-${python.branch}:py${python.version}-cython
|
|
|
|
depends_run-append \
|
|
port:py${python.version}-packaging \
|
|
port:py${python.version}-cython \
|
|
port:py${python.version}-statsmodels \
|
|
port:py${python.version}-joblib \
|
|
port:py${python.version}-numpy \
|
|
port:py${python.version}-pandas \
|
|
port:py${python.version}-scikit-learn \
|
|
port:py${python.version}-scipy \
|
|
port:py${python.version}-urllib3
|
|
|
|
build.args --skip-dependency-check
|
|
build.env-append \
|
|
CC=${configure.cc} \
|
|
CYTHON=${prefix}/bin/cython-${python.branch}
|
|
destroot.env-append \
|
|
CC=${configure.cc} \
|
|
CYTHON=${prefix}/bin/cython-${python.branch}
|
|
}
|