From 737ca1ffc24bbd7b3a1d1343f09c87f540485d2f Mon Sep 17 00:00:00 2001 From: Kubilay Kocak Date: Fri, 5 Jun 2015 05:49:38 +0000 Subject: www/py-gandi.cli: Update to 0.14, concurrent Python support - Update to 0.14 - Add multiple concurrent Python support - Match upstream dependency versions in RUN_DEPENDS so they fail-closed when py-click is updated to 4.0 - Add RUN_DEPENDS to TEST_DEPENDS since they're needed to test. - Patch setup.py to remove optional test dependencies (coverage, tox) Changes: https://github.com/Gandi/gandi.cli/blob/0.14/CHANGES.rst Requested by: bapt --- www/py-gandi.cli/files/patch-setup.py | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'www/py-gandi.cli/files/patch-setup.py') diff --git a/www/py-gandi.cli/files/patch-setup.py b/www/py-gandi.cli/files/patch-setup.py index 6c7022a40861..e3f2a4235b76 100644 --- a/www/py-gandi.cli/files/patch-setup.py +++ b/www/py-gandi.cli/files/patch-setup.py @@ -1,4 +1,4 @@ ---- setup.py.orig 2015-01-08 09:26:15 UTC +--- setup.py.orig 2015-04-01 08:43:36 UTC +++ setup.py @@ -6,10 +6,11 @@ import os import sys @@ -14,7 +14,16 @@ with open(os.path.join(here, 'gandi', 'cli', '__init__.py')) as v_file: -@@ -49,6 +50,7 @@ setup(name='gandi.cli', +@@ -18,7 +19,7 @@ with open(os.path.join(here, 'gandi', 'c + + requires = ['setuptools', 'pyyaml', 'click<=4.0', 'requests', 'IPy'] + +-tests_require = ['nose', 'coverage', 'tox', 'httpretty==0.8.6'] ++tests_require = ['nose', 'httpretty==0.8.6' ] + if sys.version_info < (2, 7): + tests_require += ['unittest2', 'importlib'] + +@@ -52,6 +53,7 @@ setup(name='gandi.cli', zip_safe=False, install_requires=requires, tests_require=tests_require, -- cgit v1.2.3