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 | PortGroup github 1.0 |
---|
6 | |
---|
7 | github.setup python-quantities python-quantities 0.10.1 v |
---|
8 | |
---|
9 | name py-quantities |
---|
10 | categories-append 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 md5 4e378de8ba0c5ae2fc8d3bedc3538488 \ |
---|
27 | rmd160 a9be07abc6ceb746e3648cafa11e5762778a25c6 \ |
---|
28 | sha256 d31e55a150a207c68c999611d459b93fc8b501863de993ef7efa47766c84eabd |
---|
29 | python.versions 26 27 31 32 33 |
---|
30 | |
---|
31 | if {$subport != $name} { |
---|
32 | depends_build-append port:py${python.version}-setuptools |
---|
33 | depends_lib-append port:py${python.version}-numpy |
---|
34 | livecheck.type none |
---|
35 | } |
---|