Changes between Initial Version and Version 1 of Ticket #39968


Ignore:
Timestamp:
Aug 2, 2013, 10:52:40 PM (11 years ago)
Author:
mf2k (Frank Schima)
Comment:

In the future, please attach your Portfile and do not set the Milestone field.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #39968

    • Property Keywords python fortran format removed
    • Property Version changed from 2.2.0 to
    • Property Milestone changed from MacPorts Future to
  • Ticket #39968 – Description

    initial v1  
    11I would like to submit a Portfile for a py-fortranformat port
    2 {{{
    3 PortSystem          1.0
    4 PortGroup           python 1.0
    5 
    6 name                py-fortranformat
    7 set real_name       fortranformat
    8 
    9 version             0.2.3
    10 platforms           darwin
    11 supported_archs     noarch
    12 license             MIT
    13 maintainers         nomaintainer
    14 description         Mimics Fortran textual IO in Python
    15 long_description    Generates text from a Python list of variables or will \
    16   read a line of text into Python variables according to the FORTRAN format \
    17   statement passed.
    18 
    19 checksums           md5 d78c5a320fedcbdf21f823cd18e28ac0
    20 python.versions     26 27 31 32 33
    21 homepage            https://bitbucket.org/brendanarnold/${name}
    22 
    23 master_sites       \
    24         https://bitbucket.org/brendanarnold/py-fortranformat/downloads/ \
    25         https://pypi.python.org/packages/source/f/fortranformat/
    26 
    27 distname            ${real_name}-${version}
    28 
    29 
    30 if {$subport != $name} {
    31     depends_build-append port:py${python.version}-setuptools
    32     livecheck.type       none
    33 }
    34 
    35 }}}
    362
    373Note that when I tested it, I had to change the name to py27-fortranformat to allow installation.  I don't know if I missed a setting.  I have changed it back to py-fortranformat.  I am not sure what the livecheck.type setting is for.