Ticket #47402: Portfile

File Portfile, 1.2 KB (added by xeron (Ivan Larionov), 9 years ago)
Line 
1# $Id$
2
3PortSystem          1.0
4PortGroup           python 1.0
5
6name                py-prompt_toolkit
7version             0.46
8license             Permissive
9platforms           darwin
10supported_archs     noarch
11maintainers         gmail.com:xeron.oskom openmaintainer
12description         Library for building powerful interactive command lines in Python
13long_description    ${description}
14
15python.versions     27
16
17homepage            https://pypi.python.org/pypi/prompt_toolkit/
18master_sites        https://pypi.python.org/packages/source/p/prompt_toolkit/
19distname            prompt_toolkit-${version}
20
21checksums           md5     086d43d6e14bbfbbf0141d0144d5bf1c \
22                    rmd160  1725181cd428125e693d348ea8a2daca2e0cf6db \
23                    sha256  1aa25cb9772e1e27d12f7920b5a514421ab763231067119bbd2f8b1574b409fb
24
25if {${name} ne ${subport}} {
26    depends_build-append    port:py${python.version}-setuptools
27    depends_lib-append      port:py${python.version}-wcwidth \
28                            port:py${python.version}-pygments \
29                            port:py${python.version}-six
30    livecheck.type          none
31} else {
32    livecheck.type      regex
33    livecheck.url       ${homepage}
34    livecheck.regex     "prompt_toolkit (\\d+(?:\\.\\d+))"
35}