Files

54 lines
2.1 KiB
Tcl
Raw Permalink Normal View History

2012-06-12 10:08:05 +00:00
# -*- 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-numexpr
2021-03-04 16:44:11 +03:00
version 2.7.3
2014-01-27 15:18:28 +00:00
revision 0
2012-06-12 10:08:05 +00:00
categories-append math
platforms darwin
2013-04-27 12:56:00 +00:00
license MIT
2021-01-05 19:04:43 +03:00
python.versions 27 35 36 37 38 39
2012-06-12 10:08:05 +00:00
2018-06-18 01:29:09 -05:00
maintainers {stromnov @stromnov} openmaintainer
2012-06-12 10:08:05 +00:00
description Multiple-operator array expression evaluator
long_description The numexpr package evaluates multiple-operator array \
expressions many times faster than NumPy can. It accepts \
the expression as a string, analyzes it, rewrites it \
more efficiently, and compiles it on the fly into code \
for its internal virtual machine (VM). Due to its \
integrated just-in-time (JIT) compiler, it does not \
require a compiler at runtime.
2014-01-27 15:18:28 +00:00
homepage https://github.com/pydata/numexpr
2013-09-01 20:59:49 +00:00
2021-03-04 16:44:11 +03:00
checksums rmd160 1d49701c950cd8f202f02daf03bc4f570149f6f5 \
sha256 43616529f9b7d1afc83386f943dc66c4da5e052f00217ba7e3ad8dd1b5f3a825 \
size 97932
2012-06-12 10:08:05 +00:00
if {${name} ne ${subport}} {
2015-09-16 16:34:56 +00:00
depends_build-append \
port:py${python.version}-setuptools
2013-06-25 02:15:04 +00:00
depends_lib-append port:py${python.version}-numpy
2012-06-12 10:08:05 +00:00
2021-01-05 19:04:43 +03:00
if {${python.version} <= 35} {
version 2.7.1
revision 0
distname ${python.rootname}-${version}
checksums rmd160 a2d301d01e5148b07eca9fa9e0650d0c986bde36 \
sha256 b0d239d9827e1bcee08344fd05835823bc60aff97232e35a928214d03ff802b1 \
size 99196
}
2012-06-12 10:08:05 +00:00
post-destroot {
xinstall -m 755 -d ${destroot}${prefix}/share/doc/${subport}
2014-01-27 15:18:28 +00:00
xinstall -m 644 -W ${worksrcpath} ANNOUNCE.rst LICENSE.txt README.rst \
RELEASE_NOTES.rst ${destroot}${prefix}/share/doc/${subport}
2012-06-12 10:08:05 +00:00
}
2013-08-25 21:40:25 +00:00
livecheck.type none
2012-06-12 10:08:05 +00:00
}