diff options
author | Nikolai Lifanov <lifanov@FreeBSD.org> | 2017-08-24 00:44:23 +0800 |
---|---|---|
committer | Nikolai Lifanov <lifanov@FreeBSD.org> | 2017-08-24 00:44:23 +0800 |
commit | bc1c316b67f73393384f4310bb616769ac4e075d (patch) | |
tree | 89d3f30e8160b4bf9bac070df06c72cc7ec5293c /sysutils/docker-compose | |
parent | 315f85adebc7d154eea574362f0ff34f3208d6f4 (diff) | |
download | freebsd-ports-gnome-bc1c316b67f73393384f4310bb616769ac4e075d.tar.gz freebsd-ports-gnome-bc1c316b67f73393384f4310bb616769ac4e075d.tar.zst freebsd-ports-gnome-bc1c316b67f73393384f4310bb616769ac4e075d.zip |
fix sysutils/docker-compose by relaxing requirements
Make setup.py satisfiable by API-compatible versions
we have in ports.
References:
https://github.com/docker/compose/issues/4848
https://bugzilla.redhat.com/show_bug.cgi?id=1452999
PR: 221744
Reported by: decke
Diffstat (limited to 'sysutils/docker-compose')
-rw-r--r-- | sysutils/docker-compose/Makefile | 1 | ||||
-rw-r--r-- | sysutils/docker-compose/files/patch-setup.py | 13 |
2 files changed, 14 insertions, 0 deletions
diff --git a/sysutils/docker-compose/Makefile b/sysutils/docker-compose/Makefile index dfc3135a4247..65cb09fa54c2 100644 --- a/sysutils/docker-compose/Makefile +++ b/sysutils/docker-compose/Makefile @@ -2,6 +2,7 @@ PORTNAME= docker-compose PORTVERSION= 1.15.0 +PORTREVISION= 1 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP diff --git a/sysutils/docker-compose/files/patch-setup.py b/sysutils/docker-compose/files/patch-setup.py new file mode 100644 index 000000000000..d9550284a760 --- /dev/null +++ b/sysutils/docker-compose/files/patch-setup.py @@ -0,0 +1,13 @@ +--- setup.py.orig 2017-07-25 23:05:03 UTC ++++ setup.py +@@ -34,8 +34,8 @@ install_requires = [ + 'colorama >= 0.3.7, < 0.4', + 'docopt >= 0.6.1, < 0.7', + 'PyYAML >= 3.10, < 4', +- 'requests >= 2.6.1, != 2.11.0, < 2.12', +- 'texttable >= 0.8.1, < 0.9', ++ 'requests >= 2.6.1, != 2.11.0, < 3', ++ 'texttable >= 0.8.1, < 1', + 'websocket-client >= 0.32.0, < 1.0', + 'docker >= 2.4.2, < 3.0', + 'dockerpty >= 0.4.1, < 0.5', |