Ticket #55450: Portfile

File Portfile, 1.2 KB (added by someuser12, 7 years ago)

Portfile proposal

Line 
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
3PortSystem          1.0
4PortGroup           python 1.0
5PortGroup           github 1.0
6
7name                py-pyinterval
8github.setup        taschini pyinterval 1.2.0
9categories-append   math
10platforms           darwin
11supported_archs     noarch
12license             BSD
13maintainers         nomaintainer
14
15description         Interval arithmetic in Python
16long_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
22checksums           md5     ea9fde4a95d089d55466799697bed3cf \
23                    rmd160  baf27c4acb5c617879a425635bd9fe77fa23a54b \
24                    sha256  e33e1f7fc4d25ffd60bae4b6b82a4b414c3edd6591103d41883831e9687fd3e0
25
26python.versions     27 34 35 36
27
28if {${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}