Ticket #31501: py-sphinx.diff

File py-sphinx.diff, 2.0 KB (added by jmroot (Joshua Root), 13 years ago)
  • Portfile

     
    22# $Id$
    33
    44PortSystem          1.0
    5 PortGroup           python27 1.0
     5PortGroup           python 1.0
    66
    7 name                py27-sphinx
    8 version             1.0.7
     7name                py-sphinx
     8version             1.0.8
    99categories-append   textproc devel
    1010license             BSD
    11 maintainers         jmr openmaintainer
     11maintainers         jmr gmail.com:michel.sylvan openmaintainer
    1212description         Python documentation generator
    1313long_description \
    1414    Sphinx is a tool that makes it easy to create intelligent and beautiful \
     
    2424master_sites        http://pypi.python.org/packages/source/S/Sphinx/
    2525distname            Sphinx-${version}
    2626
    27 checksums           md5 42c722d48e52d4888193965dd473adb5 \
    28                     sha1 b231438a51a84d53679a226ab2036ec62bb14fd5 \
    29                     rmd160 e3c622dec2a971158bfe8bc7faee493f722199c8
     27checksums           md5 6f9aace3f7e523ce55514eafa2764c6f \
     28                    sha1 0301700e51f9610b6e2bc3df06ec97a8d80883d5 \
     29                    rmd160 3d09880012f7dc26268923a3e0b13e8ab1250ae4
    3030
    31 depends_lib         port:py27-docutils
    32 depends_run         port:py27-pygments \
    33                     port:py27-jinja2
     31python.versions     24 25 26 27
    3432
    35 livecheck.type      regex
    36 livecheck.regex     {<p>Current version: <b>([0-9.]+)</b></p>}
     33if {$subport != $name} {
     34    depends_lib     port:py${python.version}-docutils
     35    depends_run     port:py${python.version}-pygments \
     36                    port:py${python.version}-jinja2
     37    if {${python.version} <= 25} {
     38        post-destroot {
     39            foreach f [glob -directory "${destroot}${prefix}/bin" *] {
     40                move ${f} ${f}-${python.branch}
     41            }
     42        }
     43    }
     44    livecheck.type  none
     45} else {
     46    livecheck.type  regex
     47    livecheck.regex {<p>Current version: <b>([0-9.]+)</b></p>}
     48}