From 7a5d18f6447d92f7581e8801fc6d8dbec5acb0d7 Mon Sep 17 00:00:00 2001
From: Aaron Madlon-Kay <aaron@madlon-kay.com>
Date: Thu, 26 May 2016 10:33:04 +0900
Subject: [PATCH] Update py-docker to 1.8.1
---
python/py-docker/Portfile | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
diff --git a/python/py-docker/Portfile b/python/py-docker/Portfile
index fc2d910..c7c97cd 100644
a
|
b
|
PortSystem 1.0 |
5 | 5 | PortGroup python 1.0 |
6 | 6 | PortGroup github 1.0 |
7 | 7 | |
8 | | github.setup docker docker-py 1.7.2 |
| 8 | github.setup docker docker-py 1.8.1 |
9 | 9 | name py-docker |
10 | 10 | categories-append devel |
11 | 11 | platforms darwin |
… |
… |
maintainers sean openmaintainer |
15 | 15 | description An API client for docker written in Python |
16 | 16 | long_description $description |
17 | 17 | |
18 | | checksums rmd160 8f66dce84807cdd7fc6a8f539eda75aa4330692f \ |
19 | | sha256 dca7a22dae4d02ab336440c0926a012e401dff1c001299204300401d2d5ec162 |
| 18 | checksums rmd160 2541e6d9aada7d849a31c5bd5b0ed591def00073 \ |
| 19 | sha256 6a0bf25bc685fbc5377e86f8137e45e5409e96e8de6969b00973a56d9a6d0800 |
20 | 20 | |
21 | 21 | python.versions 27 34 |
22 | 22 | |
… |
… |
if {${subport} ne ${name}} { |
24 | 24 | depends_build port:py${python.version}-setuptools |
25 | 25 | depends_lib port:py${python.version}-requests \ |
26 | 26 | port:py${python.version}-websocket-client |
27 | | |
| 27 | if {${python.version} < 35} { |
| 28 | depends_lib-append port:py${python.version}-backports-ssl_match_hostname |
| 29 | } |
| 30 | if {${python.version} < 33} { |
| 31 | depends_lib-append port:py${python.version}-ipaddress |
| 32 | } |
28 | 33 | livecheck.type none |
29 | 34 | } else { |
30 | 35 | livecheck.regex archive/[join ${github.tag_prefix} ""](\[^"r-\]+)${extract.suffix} |