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$ |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python 1.0 |
---|
5 | PortGroup bitbucket 1.0 |
---|
6 | |
---|
7 | name py-fortranformat |
---|
8 | set real_name fortranformat |
---|
9 | |
---|
10 | bitbucket.author brendanarnold |
---|
11 | bitbucket.project ${name} |
---|
12 | bitbucket.tarball_from downloads |
---|
13 | |
---|
14 | version 0.2.3 |
---|
15 | categories python fortran io |
---|
16 | |
---|
17 | platforms darwin |
---|
18 | supported_archs noarch |
---|
19 | license MIT |
---|
20 | maintainers nomaintainer |
---|
21 | description Mimics Fortran textual IO in Python |
---|
22 | long_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 | |
---|
26 | checksums md5 d78c5a320fedcbdf21f823cd18e28ac0 \ |
---|
27 | rmd160 212edf59a6da06b8127322f30806e6559353ea79 \ |
---|
28 | sha256 ec76c1c7bc07972aa98e01ff2303bb0aefe77306be8ff2723bc40b7c7775292c |
---|
29 | python.versions 26 27 31 32 33 |
---|
30 | homepage https://bitbucket.org/brendanarnold/${name} |
---|
31 | |
---|
32 | master_sites \ |
---|
33 | https://bitbucket.org/brendanarnold/py-fortranformat/downloads/ \ |
---|
34 | https://pypi.python.org/packages/source/f/fortranformat/ |
---|
35 | |
---|
36 | distname ${real_name}-${version} |
---|
37 | |
---|
38 | |
---|
39 | if {$subport != $name} { |
---|
40 | depends_build-append port:py${python.version}-setuptools |
---|
41 | livecheck.type none |
---|
42 | } |
---|