Ticket #49141: Portfile

File Portfile, 1.0 KB (added by xeron (Ivan Larionov), 9 years ago)
Line 
1# $Id$
2
3PortSystem          1.0
4PortGroup           python 1.0
5
6name                py-pymysql
7version             0.6.7
8license             MIT
9platforms           darwin
10supported_archs     noarch
11maintainers         gmail.com:xeron.oskom openmaintainer
12description         Pure-Python MySQL client library
13long_description    ${description}
14
15python.versions     27 34
16
17homepage            https://pypi.python.org/pypi/PyMySQL
18master_sites        https://pypi.python.org/packages/source/P/PyMySQL/
19distname            PyMySQL-${version}
20
21checksums           md5     a923513b970e7add0dad9b50e20b82b3 \
22                    rmd160  1078d86c94a4ea8dcf901b12ada6828ad8d1f93b \
23                    sha256  e549649db3b1a9317c6027175197458bfb4f55357828410ed4f768fc6ce35f0f
24
25if {${name} ne ${subport}} {
26    depends_build-append    port:py${python.version}-setuptools
27    livecheck.type          none
28} else {
29    livecheck.type      regex
30    livecheck.url       ${homepage}
31    livecheck.regex     "PyMySQL (\\d+\\.\\d+(?:\\.\\d+))"
32}