Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 23 Aug 2017 16:44:23 +0000 (UTC)
From:      Nikolai Lifanov <lifanov@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r448629 - in head/sysutils/docker-compose: . files
Message-ID:  <201708231644.v7NGiNj2087329@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: lifanov
Date: Wed Aug 23 16:44:23 2017
New Revision: 448629
URL: https://svnweb.freebsd.org/changeset/ports/448629

Log:
  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

Added:
  head/sysutils/docker-compose/files/
  head/sysutils/docker-compose/files/patch-setup.py   (contents, props changed)
Modified:
  head/sysutils/docker-compose/Makefile

Modified: head/sysutils/docker-compose/Makefile
==============================================================================
--- head/sysutils/docker-compose/Makefile	Wed Aug 23 16:33:45 2017	(r448628)
+++ head/sysutils/docker-compose/Makefile	Wed Aug 23 16:44:23 2017	(r448629)
@@ -2,6 +2,7 @@
 
 PORTNAME=		docker-compose
 PORTVERSION=		1.15.0
+PORTREVISION=		1
 CATEGORIES=		sysutils python
 MASTER_SITES=		CHEESESHOP
 

Added: head/sysutils/docker-compose/files/patch-setup.py
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/docker-compose/files/patch-setup.py	Wed Aug 23 16:44:23 2017	(r448629)
@@ -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',



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201708231644.v7NGiNj2087329>