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: Portfile 79102 2011-06-02 06:52:33Z ryandesign@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | PortGroup select 1.0 |
---|
7 | |
---|
8 | set realname pyfits |
---|
9 | |
---|
10 | name py-${realname} |
---|
11 | version 3.0.4 |
---|
12 | categories python science |
---|
13 | platforms darwin |
---|
14 | maintainers gmail.com:sebastien.maret |
---|
15 | |
---|
16 | description Python interface to FITS formatted files |
---|
17 | |
---|
18 | long_description PyFITS provides an interface to FITS formatted files \ |
---|
19 | under Python. It is useful both for interactive data \ |
---|
20 | analysis and for writing analysis scripts in Python \ |
---|
21 | using FITS files as either input or output. PyFITS is \ |
---|
22 | a development project of the Science Software Branch \ |
---|
23 | at the Space Telescope Science Institute. |
---|
24 | |
---|
25 | homepage http://www.stsci.edu/resources/software_hardware/pyfits |
---|
26 | master_sites http://pypi.python.org/packages/source/p/pyfits |
---|
27 | distname ${realname}-${version} |
---|
28 | |
---|
29 | checksums md5 7860aac5d04c979360851bece55827d1 \ |
---|
30 | sha1 e2775d0a8610a9921e3609e36be9d049fe912388 \ |
---|
31 | rmd160 5e0114a9abede5e4ba960c5edf7fe3f2d71d0cb9 |
---|
32 | |
---|
33 | python.versions 25 26 27 31 32 |
---|
34 | |
---|
35 | depends_lib-append port:py${python.version}-numpy |
---|
36 | |
---|
37 | livecheck.type regex |
---|
38 | livecheck.url ${homepage}/Download |
---|
39 | livecheck.regex ${realname}-(\[0-9.\]+)\\. |
---|
40 | |
---|