Ticket #39626: Portfile

File Portfile, 1.0 KB (added by smithsp (Sterling Smith), 11 years ago)

Revised Portfile to use github PortGroup

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# $Id:
3
4PortSystem              1.0
5PortGroup               python 1.0
6PortGroup               github 1.0
7
8github.setup            lebigot uncertainties 2.4.1
9
10name                    py-uncertainties
11categories-append       math
12license                 BSD
13maintainers             gmail.com:jjstickel openmaintainer
14description             The python uncertainties package.
15long_description        The uncertainties package transparently handles\
16                        calculations for numbers with\
17                        uncertainties.
18platforms               darwin
19
20checksums           rmd160  0d68d9c5e096a2f4459e693786d958ce67036b87 \
21                    sha256  bbb0a7e0740053e1616d62edd98ca45c7baa17063506bbf11b8472e172d76b62
22
23python.versions         26 27 31 32 33
24python.default_version  27
25
26if {$subport != $name} {
27    depends_build-append       port:py${python.version}-setuptools
28}