diff --git a/python/docker-compose/Portfile b/python/docker-compose/Portfile
index ad8235d..d3c0de5 100644
a
|
b
|
PortSystem 1.0 |
5 | 5 | PortGroup python 1.0 |
6 | 6 | PortGroup github 1.0 |
7 | 7 | |
8 | | github.setup docker compose 1.6.2 |
| 8 | github.setup docker compose 1.7.1 |
9 | 9 | name docker-compose |
10 | 10 | categories-append devel |
11 | 11 | platforms darwin |
… |
… |
long_description Compose is a tool for defining and running multi-container \ |
18 | 18 | application up in a single command which does everything \ |
19 | 19 | that needs to be done to get it running. |
20 | 20 | |
21 | | checksums rmd160 3919c078624168d7ef4f901b18fa95489e90f0fc \ |
22 | | sha256 40acee3c5bc4b7f31c6c097a497d249fa50480d9518c8cbd38e0eb4044d6c2ad |
| 21 | checksums rmd160 66ff4979ec6453103e5efed3013863cfdb68375e \ |
| 22 | sha256 96344e140dc8e8747fb8bc5cf69e07926567d13dc9b78d062052518b488ff7af |
23 | 23 | |
24 | 24 | python.default_version 27 |
25 | 25 | |
… |
… |
depends_lib port:py${python.version}-yaml \ |
30 | 30 | port:py${python.version}-texttable \ |
31 | 31 | port:py${python.version}-cached-property |
32 | 32 | |
| 33 | if {${python.version} < 34} { |
| 34 | depends_lib-append port:py${python.version}-enum34 |
| 35 | } |
| 36 | |
33 | 37 | # remove this after next release |
34 | 38 | post-extract { |
35 | | reinplace "s|requests >= .*|requests >= 2.6.1, < 2.10',|" ${worksrcpath}/setup.py |
| 39 | reinplace "s|requests >= .*|requests >= 2.6.1, <= 2.10',|" ${worksrcpath}/setup.py |
36 | 40 | } |
37 | 41 | |
38 | 42 | livecheck.regex archive/[join ${github.tag_prefix} ""](\[^"r\]+)${extract.suffix} |