Commits
reneeotten authored and Ken committed 6dc20b998b8
1 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 2 | |
3 3 | PortSystem 1.0 |
4 4 | PortGroup python 1.0 |
5 5 | PortGroup github 1.0 |
6 6 | |
7 - | github.setup docker docker-py 3.5.1 |
7 + | github.setup docker docker-py 3.7.0 |
8 + | revision 0 |
8 9 | name py-docker |
9 10 | categories-append devel |
10 11 | platforms darwin |
11 12 | supported_archs noarch |
12 13 | license Apache-2 |
13 14 | maintainers nomaintainer |
14 15 | |
15 16 | description An API client for docker written in Python |
16 17 | long_description $description |
17 18 | |
18 - | checksums rmd160 392e3c33730011c870bc167f16b53e03ea6f36c7 \ |
19 - | sha256 c36e4cdfffcf2620a3dd92e1aa4937e0370ae2fc052bfde33b61ad66063a15f4 \ |
20 - | size 209425 |
19 + | checksums rmd160 cb4cb8eef398b34e94b02cd2e6e4ed7d9aac61fc \ |
20 + | sha256 466fefb5c9bfeab06b13511f0460040ee7ccf5683d4d731148e192ac29298b98 \ |
21 + | size 220452 |
21 22 | |
22 23 | python.versions 27 34 35 36 37 |
23 24 | |
24 25 | if {${subport} ne ${name}} { |
25 26 | depends_build-append \ |
26 27 | port:py${python.version}-setuptools |
27 28 | |
28 29 | depends_lib-append \ |
29 30 | port:py${python.version}-dockerpy-creds \ |
30 31 | port:py${python.version}-requests \ |
31 32 | port:py${python.version}-six \ |
32 33 | port:py${python.version}-websocket-client |
33 34 | |
34 35 | if {${python.version} < 35} { |
35 36 | depends_lib-append port:py${python.version}-backports-ssl_match_hostname |
36 37 | } |
37 38 | if {${python.version} eq 27} { |
38 39 | depends_lib-append port:py${python.version}-ipaddress |
39 40 | } |
40 41 | |
42 + | post-destroot { |
43 + | xinstall -m 0755 -d ${destroot}${prefix}/share/doc/${subport} |
44 + | xinstall -m 0644 -W ${worksrcpath} CONTRIBUTING.md LICENSE \ |
45 + | MAINTAINERS README.md ${destroot}${prefix}/share/doc/${subport} |
46 + | } |
47 + | |
41 48 | livecheck.type none |
42 49 | } |