1 | # -*- 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 |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python 1.0 |
---|
5 | PortGroup github 1.0 |
---|
6 | |
---|
7 | name py-pyinterval |
---|
8 | github.setup taschini pyinterval 1.2.0 |
---|
9 | categories-append math |
---|
10 | platforms darwin |
---|
11 | supported_archs noarch |
---|
12 | license BSD |
---|
13 | maintainers nomaintainer |
---|
14 | |
---|
15 | description Interval arithmetic in Python |
---|
16 | long_description \ |
---|
17 | This library provides a Python implementation of an algebraically closed \ |
---|
18 | interval system on the extended real number set. An interval object \ |
---|
19 | consists of a finite union of closed, possibly unbound, mathematical \ |
---|
20 | intervals. |
---|
21 | |
---|
22 | checksums md5 ea9fde4a95d089d55466799697bed3cf \ |
---|
23 | rmd160 baf27c4acb5c617879a425635bd9fe77fa23a54b \ |
---|
24 | sha256 e33e1f7fc4d25ffd60bae4b6b82a4b414c3edd6591103d41883831e9687fd3e0 |
---|
25 | |
---|
26 | python.versions 27 34 35 36 |
---|
27 | |
---|
28 | if {${name} ne ${subport}} { |
---|
29 | depends_build-append port:py${python.version}-setuptools |
---|
30 | |
---|
31 | depends_lib-append port:py${python.version}-pycrlibm |
---|
32 | |
---|
33 | livecheck.type none |
---|
34 | } |
---|