From owner-svn-ports-head@freebsd.org Wed Aug 23 16:44:24 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D322BDEAFA7; Wed, 23 Aug 2017 16:44:24 +0000 (UTC) (envelope-from lifanov@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9932976DE2; Wed, 23 Aug 2017 16:44:24 +0000 (UTC) (envelope-from lifanov@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7NGiN7b087331; Wed, 23 Aug 2017 16:44:23 GMT (envelope-from lifanov@FreeBSD.org) Received: (from lifanov@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7NGiNj2087329; Wed, 23 Aug 2017 16:44:23 GMT (envelope-from lifanov@FreeBSD.org) Message-Id: <201708231644.v7NGiNj2087329@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lifanov set sender to lifanov@FreeBSD.org using -f From: Nikolai Lifanov Date: Wed, 23 Aug 2017 16:44:23 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: lifanov X-SVN-Commit-Paths: in head/sysutils/docker-compose: . files X-SVN-Commit-Revision: 448629 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Aug 2017 16:44:25 -0000 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',