Ticket #39968: Portfile

File Portfile, 965 bytes (added by mf2k (Frank Schima), 11 years ago)
Line 
1PortSystem          1.0
2PortGroup           python 1.0
3
4name                py-fortranformat
5set real_name       fortranformat
6
7version             0.2.3
8platforms           darwin
9supported_archs     noarch
10license             MIT
11maintainers         nomaintainer
12description         Mimics Fortran textual IO in Python
13long_description    Generates text from a Python list of variables or will \
14  read a line of text into Python variables according to the FORTRAN format \
15  statement passed.
16
17checksums           md5 d78c5a320fedcbdf21f823cd18e28ac0
18python.versions     26 27 31 32 33
19homepage            https://bitbucket.org/brendanarnold/${name}
20
21master_sites       \
22        https://bitbucket.org/brendanarnold/py-fortranformat/downloads/ \
23        https://pypi.python.org/packages/source/f/fortranformat/
24
25distname            ${real_name}-${version}
26
27
28if {$subport != $name} {
29    depends_build-append port:py${python.version}-setuptools
30    livecheck.type       none
31}