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 | set _name pycrlibm |
---|
8 | |
---|
9 | name py-${_name} |
---|
10 | github.setup taschini ${_name} 1.0.3 |
---|
11 | categories-append math |
---|
12 | platforms darwin |
---|
13 | license LGPL |
---|
14 | maintainers nomaintainer |
---|
15 | |
---|
16 | description Python bindings for CRlibm |
---|
17 | long_description \ |
---|
18 | Python bindings for CRlibm, an efficient and proven \ |
---|
19 | correctly-rounded mathematical library. |
---|
20 | |
---|
21 | checksums md5 0112b10d76fa2cb72ecc6ee61a91a509 \ |
---|
22 | rmd160 03fb4b95a47173089151fd824129561c06c2cdeb \ |
---|
23 | sha256 31b6e18252395a153aa25c933cb04778828531152c5c58a6707492833ba15109 |
---|
24 | |
---|
25 | python.versions 27 34 35 36 |
---|
26 | |
---|
27 | if {${name} ne ${subport}} { |
---|
28 | depends_build-append port:py${python.version}-setuptools |
---|
29 | |
---|
30 | depends_lib-append port:crlibm |
---|
31 | |
---|
32 | livecheck.type none |
---|
33 | } |
---|