Ticket #37308: Portfile-py-decorator.diff

File Portfile-py-decorator.diff, 1.1 KB (added by larryv (Lawrence Velázquez), 12 years ago)

add py3x subports

  • trunk/dports/python/py-decorator/Portfile

    diff --git a/trunk/dports/python/py-decorator/Portfile b/trunk/dports/python/py-decorator/Portfile
    a b  
    66
    77name                py-decorator
    88version             3.4.0
    9 python.versions     25 26 27
    10 python.default_version  27
    119categories          python
    1210license             BSD
    1311maintainers         gmail.com:larry.velazquez
     
    2220checksums           rmd160  57b014f5fb2a1750910364882d430a85f94a8b85 \
    2321                    sha256  c20b404cbb7ee5cebd506688e0114e3cd76f5ce233805a51f36e1a7988d9d783
    2422
    25 livecheck.type      regex
    26 livecheck.regex     {decorator/(\d+(?:\.\d+)*)<}
     23python.versions     25 26 27 31 32 33
     24python.default_version  27
     25
     26if {${subport} != ${name}} {
     27    if {${python.version} >= 31 } {
     28        depends_build-append    port:py${python.version}-distribute
     29    }
     30    livecheck.type          none
     31} else {
     32    livecheck.type          regex
     33    livecheck.regex         {decorator/(\d+(?:\.\d+)*)<}
     34}