Ticket #34728: Portfile-py-pyquery.diff

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

update 1.1.1 -> 1.2.1

  • Portfile

    old new  
    55PortGroup                   python 1.0
    66
    77name                        py-pyquery
    8 version                     1.1.1
     8version                     1.2.1
    99categories-append           devel
    1010platforms                   darwin
     11supported_archs             noarch
    1112license                     BSD
    1213maintainers                 gmail.com:larry.velazquez
    13 description                 A jQuery-like library for Python.
     14
     15description                 A jQuery-like library for Python
    1416long_description            Pyquery allows you to make jQuery queries on XML \
    1517                            documents.
    1618homepage                    http://pypi.python.org/pypi/pyquery
    1719                           
    1820master_sites                http://pypi.python.org/packages/source/p/pyquery
    1921distname                    pyquery-${version}
    20                            
    21 checksums                   md5     cd2884653df59c4587e57d5f1ed94de5 \
    22                             sha1    be1d145af0b5c10112f604eff5da35dcf18a0281 \
    23                             rmd160  e79b002f0ca31107987194ab2ec94b227d969cba
     22checksums                   rmd160  f74c85ee0ef903260bd31e5e102c4ea51ae460b5 \
     23                            sha256  a607f81a628887e2cf03d5dddee6f092faf411e51b894130a2b4c839e60c408f
    2424
    2525python.versions             25 26 27 31 32
    2626python.default_version      27
    2727
    2828if {${subport} != ${name}} {
    2929    depends_build-append    port:py${python.version}-distribute
    30     depends_run-append      port:py${python.version}-lxml
     30    depends_run-append      port:py${python.version}-lxml \
     31                            port:py${python.version}-cssselect
    3132    post-destroot {
    3233        set doc ${destroot}${prefix}/share/doc/${subport}
    33         xinstall -m 755 -d ${doc}
    3434        xinstall -m 644 -W ${worksrcpath} CHANGES.txt README.txt ${doc}
    3535        xinstall -m 644 -W ${worksrcpath}/docs ajax.txt api.txt \
    3636          attributes.txt css.txt future.txt index.txt \
    3737          manipulating.txt testing.txt tips.txt traversing.txt ${doc}
    3838    }
     39    livecheck.type          none
     40} else {
     41    livecheck.type          regex
     42    livecheck.url           ${homepage}
     43    livecheck.regex         "pyquery-(\\d+(?:\\.\\d+)*)${extract.suffix}"
    3944}
    40 
    41 livecheck.type             regex
    42 livecheck.url              ${homepage}
    43 livecheck.regex            "pyquery-(\[0-9.\]+)${extract.suffix}"
    44  No newline at end of file