Ticket #39968: Portfile.3

File Portfile.3, 1.4 KB (added by smithsp (Sterling Smith), 11 years ago)

Updated portfile with revised categories

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