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 | # $Id$ |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python 1.0 |
---|
5 | |
---|
6 | name py-quantities |
---|
7 | set real_name quantities |
---|
8 | |
---|
9 | version 0.10.1 |
---|
10 | categories python science |
---|
11 | |
---|
12 | platforms darwin |
---|
13 | supported_archs noarch |
---|
14 | license MIT |
---|
15 | maintainers nomaintainer |
---|
16 | description Support for physical quantities with units, based on numpy |
---|
17 | long_description \ |
---|
18 | Quantities is designed to handle arithmetic and conversions of physical \ |
---|
19 | quantities, which have a magnitude, dimensionality specified by various \ |
---|
20 | units, and possibly an uncertainty. Quantities builds on the popular numpy \ |
---|
21 | library and is designed to work with numpy ufuncs, many of which are \ |
---|
22 | already supported. Quantities is actively developed, and while the current \ |
---|
23 | features and API are stable, test coverage is incomplete so the package is \ |
---|
24 | not suggested for mission-critical applications. |
---|
25 | |
---|
26 | checksums \ |
---|
27 | md5 e924e21c0a5ddc9ebcdacbbe511b8ec7 \ |
---|
28 | rmd160 d5f07bfd08ae6342efe066ea8f575fa9d95b99f3 \ |
---|
29 | sha256 2d27caf31a5e0c37130ac0c14bfa8f9412a5ff1fbf3378a1d6085594776c4315 |
---|
30 | python.versions 26 27 31 32 33 |
---|
31 | homepage http://packages.python.org/${real_name} |
---|
32 | |
---|
33 | master_sites https://pypi.python.org/packages/source/q/${real_name}/ |
---|
34 | |
---|
35 | distname ${real_name}-${version} |
---|
36 | |
---|
37 | |
---|
38 | if {$subport != $name} { |
---|
39 | depends_build-append port:py${python.version}-setuptools |
---|
40 | depends_lib-append port:py${python.version}-numpy |
---|
41 | livecheck.type none |
---|
42 | } |
---|