Ticket #39968: Portfile.5

File Portfile.5, 1.2 KB (added by smithsp (Sterling Smith), 11 years ago)

Revised the Portfile to explicitly state the master_sites and distname, since the project is not git-tagged.

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$
3PortSystem          1.0
4PortGroup           python 1.0
5PortGroup           bitbucket 1.0
6
7
8bitbucket.setup     brendanarnold fortranformat 0.2.3
9
10name                py-fortranformat
11
12categories-append   science print
13
14platforms           darwin
15supported_archs     noarch
16license             MIT
17maintainers         nomaintainer
18description         Mimics Fortran textual IO in Python
19long_description    Generates text from a Python list of variables or will \
20    read a line of text into Python variables according to the FORTRAN format \
21    statement passed.
22
23checksums           md5 d78c5a320fedcbdf21f823cd18e28ac0 \
24                    rmd160 212edf59a6da06b8127322f30806e6559353ea79 \
25                    sha256 ec76c1c7bc07972aa98e01ff2303bb0aefe77306be8ff2723bc40b7c7775292c
26python.versions     26 27 31 32 33
27
28master_sites        https://bitbucket.org/brendanarnold/py-fortranformat/downloads
29distname            fortranformat-${version}
30
31if {$subport != $name} {
32    depends_build-append port:py${python.version}-setuptools
33    livecheck.type       none
34}