You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-03-30 11:29:27 -07:00
57 lines
2.0 KiB
Tcl
57 lines
2.0 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
|
|
|
|
set _name pyasdf
|
|
set _n [string index ${_name} 0]
|
|
|
|
conflicts py-asdf-devel
|
|
name py-${_name}
|
|
version 0.4.0
|
|
|
|
categories-append science
|
|
platforms darwin
|
|
supported_archs noarch
|
|
license BSD
|
|
|
|
maintainers {petr @petrrr} openmaintainer
|
|
|
|
description pyasdf is a Python API to read and write seismological \
|
|
ASDF files
|
|
|
|
long_description \
|
|
pyasdf is an API to read and write Adaptable Seismic Data Format (ASDF) \
|
|
files, a format based on HDF5. The packages utilizes the data structures \
|
|
of ObsPy to allow the construction of modern and efficient workflows.
|
|
|
|
homepage https://seismicdata.github.io/pyasdf/
|
|
|
|
distname ${_name}-${version}
|
|
master_sites pypi:${_n}/${_name}/
|
|
|
|
checksums rmd160 d6ec6822996051e4423aa12a55edf1c2ff7d49a5 \
|
|
sha256 49ac16709481b2771a7db6bd5e7d99d32c786227139bccc2a432e619da8bb811 \
|
|
size 1272321
|
|
|
|
python.versions 36 37 38 39
|
|
|
|
if {${name} ne ${subport}} {
|
|
depends_build-append port:py${python.version}-setuptools
|
|
|
|
depends_lib-append port:py${python.version}-dill \
|
|
port:py${python.version}-obspy \
|
|
port:py${python.version}-h5py \
|
|
port:py${python.version}-numpy \
|
|
port:py${python.version}-colorama \
|
|
port:py${python.version}-prov \
|
|
port:py${python.version}-pytest \
|
|
port:py${python.version}-flake8
|
|
|
|
livecheck.type none
|
|
} else {
|
|
livecheck.type regex
|
|
livecheck.url https://pypi.python.org/pypi/${_name}/json
|
|
livecheck.regex "\"${_name}-(\[.\\d\]+)\\${extract.suffix}\""
|
|
}
|