Ticket #47400: py-jedi.diff

File py-jedi.diff, 1.7 KB (added by xeron (Ivan Larionov), 9 years ago)
  • Portfile

     
    33
    44PortSystem          1.0
    55PortGroup           python 1.0
    6 PortGroup           github 1.0
    76
    8 github.setup        davidhalter jedi 0.8.1 v
    97name                py-jedi
     8version             0.9.0
    109platforms           darwin
    1110supported_archs     noarch
    1211license             GPL-2+
    1312maintainers         nomaintainer
    14 
    1513description         Awesome autocompletion library for python
    1614long_description    Jedi is an autocompletion tool for Python that can \
    1715                    be used in IDEs/editors. Jedi works. Jedi is fast. \
     
    1816                    It understands all of the basic Python syntax \
    1917                    elements including many builtin functions.
    2018
    21 checksums           rmd160  e4eb591c6ab3ab8e3490b47c9b8367f0b35184c0 \
    22                     sha256  b3c7e709953b66759c5afec170d2dcb4ee0f6c6aee620157c211ce6de94785da
    23 
    2419python.versions     27 34
    2520
     21homepage            https://pypi.python.org/pypi/jedi/
     22master_sites        https://pypi.python.org/packages/source/j/jedi/
     23distname            jedi-${version}
     24
     25checksums           md5     2fee93d273622527ef8c97ac736e92bd \
     26                    rmd160  5ee2bf56feb94f52f8502ae082a0f3584dc78dc2 \
     27                    sha256  3b4c19fba31bdead9ab7350fb9fa7c914c59b0a807dcdd5c00a05feb85491d31
     28
    2629if {${name} ne ${subport}} {
    2730    depends_build-append    port:py${python.version}-setuptools
    2831    livecheck.type          none
     32} else {
     33    livecheck.type      regex
     34    livecheck.url       ${homepage}
     35    livecheck.regex     "jedi (\\d+\\.\\d+(?:\\.\\d+))"
    2936}