Ticket #39968: Portfile.4

File Portfile.4, 1.1 KB (added by smithsp (Sterling Smith), 11 years ago)

Improved Portfile to use bitbucket.setup

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          python 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
28if {$subport != $name} {
29    depends_build-append port:py${python.version}-setuptools
30    livecheck.type       none
31}