Ticket #54449: Portfile

File Portfile, 1.0 KB (added by zdw (Zack Williams), 7 years ago)
Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
2
3PortSystem          1.0
4PortGroup           python 1.0
5PortGroup           github 1.0
6
7github.setup        shin- dockerpy-creds 0.2.1
8name                py-dockerpy-creds
9categories-append   devel
10platforms           darwin
11supported_archs     noarch
12license             Apache-2
13maintainers         artisancomputer.com:zdw \
14                    openmaintainer
15description         Python bindings for the docker credentials store API
16long_description    $description
17
18checksums           rmd160  b5d71f144841751326b533474308a635191c7956 \
19                    sha256  2a24525d79ef0c4decea6161e5b15ff7228f080508456df1f9429b1cdadbaab6
20
21python.versions     27 34 35
22
23if {${subport} ne ${name}} {
24    depends_build   port:py${python.version}-setuptools
25    depends_lib     port:py${python.version}-six
26    livecheck.type  none
27} else {
28    livecheck.regex     archive/[join ${github.tag_prefix} ""](\[^"r-\]+)${extract.suffix}
29}