You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
36 lines
1.1 KiB
Tcl
36 lines
1.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
|
|
|
|
name py-oldest-supported-numpy
|
|
version 0.1
|
|
platforms {darwin any}
|
|
supported_archs noarch
|
|
maintainers nomaintainer
|
|
license BSD
|
|
|
|
description a numpy dependency stub
|
|
|
|
long_description We don't need oldest-supported-numpy in MacPorts, \
|
|
so this just installs metadata so that \
|
|
dependencies will be considered satisfied.
|
|
|
|
homepage https://pypi.python.org/project/oldest-supported-numpy/
|
|
|
|
# Versions should match py-numpy
|
|
python.versions 27 310 311 312 313 314
|
|
python.pep517 no
|
|
|
|
distfiles
|
|
|
|
if {$subport ne $name} {
|
|
build {}
|
|
destroot {
|
|
xinstall -d ${destroot}${python.pkgd}/oldest_supported_numpy-0.1.dist-info
|
|
xinstall -m 644 ${filespath}/METADATA ${destroot}${python.pkgd}/oldest_supported_numpy-0.1.dist-info
|
|
}
|
|
}
|
|
|
|
livecheck.type none
|