Ticket #31434: Portfile.2

File Portfile.2, 1.5 KB (added by cdeil (Christoph Deil), 12 years ago)
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: Portfile 79102 2011-06-02 06:52:33Z ryandesign@macports.org $
3
4PortSystem          1.0
5PortGroup           python 1.0
6PortGroup           select 1.0
7
8set realname        pyfits
9
10name                py-${realname}
11version             3.0.4
12categories          python science
13platforms           darwin
14maintainers         gmail.com:sebastien.maret
15
16description         Python interface to FITS formatted files
17
18long_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
25homepage            http://www.stsci.edu/resources/software_hardware/pyfits
26master_sites        http://pypi.python.org/packages/source/p/pyfits
27distname            ${realname}-${version}
28
29checksums           md5     7860aac5d04c979360851bece55827d1 \
30                    sha1    e2775d0a8610a9921e3609e36be9d049fe912388 \
31                    rmd160  5e0114a9abede5e4ba960c5edf7fe3f2d71d0cb9
32
33python.versions     25 26 27 31 32
34
35depends_lib-append  port:py${python.version}-numpy
36
37livecheck.type      regex
38livecheck.url       ${homepage}/Download
39livecheck.regex     ${realname}-(\[0-9.\]+)\\.
40