diff options
author | koobs <koobs@FreeBSD.org> | 2015-08-11 00:46:23 +0800 |
---|---|---|
committer | koobs <koobs@FreeBSD.org> | 2015-08-11 00:46:23 +0800 |
commit | f8dbd499f291b4f93098aa5199d682e95d2ab1d6 (patch) | |
tree | e8bbeb73e06a82ff678deb7cea8fecce5ee1f59c /www | |
parent | 5eabd39a053af2b458d8217d83692e6c26d90081 (diff) | |
download | freebsd-ports-gnome-f8dbd499f291b4f93098aa5199d682e95d2ab1d6.tar.gz freebsd-ports-gnome-f8dbd499f291b4f93098aa5199d682e95d2ab1d6.tar.zst freebsd-ports-gnome-f8dbd499f291b4f93098aa5199d682e95d2ab1d6.zip |
www/py-gandi.cli: Update to 0.15 & Unbreak
- Update to 0.15
- Update RUN_DEPENDS version for click, (and patch setup.py accordingly)
until upstream fixes it. [1].
- Make TEST_DEPENDS *only* include, test dependencies, adding
RUN_DEPENDS instead to the TESTS option conditional.
- Remove non-compulsory & forced tests_requires. Tests work perfectly
fine out of the box with setup:py:
test_suite='gandi.cli.tests',
Changes:
https://github.com/Gandi/gandi.cli/blob/0.15/CHANGES.rst
[1] https://github.com/Gandi/gandi.cli/issues/147
Reported by: antoine, pkg-fallout (in that order)
Diffstat (limited to 'www')
-rw-r--r-- | www/py-gandi.cli/Makefile | 11 | ||||
-rw-r--r-- | www/py-gandi.cli/distinfo | 4 | ||||
-rw-r--r-- | www/py-gandi.cli/files/patch-setup.py | 8 |
3 files changed, 12 insertions, 11 deletions
diff --git a/www/py-gandi.cli/Makefile b/www/py-gandi.cli/Makefile index ed6258cd91b5..42ecfc529f10 100644 --- a/www/py-gandi.cli/Makefile +++ b/www/py-gandi.cli/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gandi.cli -PORTVERSION= 0.14 +PORTVERSION= 0.15 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,18 +14,17 @@ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yaml>0:${PORTSDIR}/devel/py-yaml \ - ${PYTHON_PKGNAMEPREFIX}click<=4.0:${PORTSDIR}/devel/py-click \ + ${PYTHON_PKGNAMEPREFIX}click>=3.0:${PORTSDIR}/devel/py-click \ ${PYTHON_PKGNAMEPREFIX}requests>0:${PORTSDIR}/www/py-requests \ ${PYTHON_PKGNAMEPREFIX}ipy>0:${PORTSDIR}/net-mgmt/py-ipy - -TEST_DEPENDS:= ${RUN_DEPENDS} \ - ${PYTHON_PKGNAMEPREFIX}nose>0:${PORTSDIR}/devel/py-nose \ +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>0:${PORTSDIR}/devel/py-nose \ ${PYTHON_PKGNAMEPREFIX}coverage>0:${PORTSDIR}/devel/py-coverage OPTIONS_DEFINE= TESTS TESTS_DESC= Install test suite requirements -TESTS_BUILD_DEPENDS= ${TEST_DEPENDS} +TESTS_BUILD_DEPENDS= ${RUN_DEPENDS} \ + ${TEST_DEPENDS} USES= python USE_PYTHON= autoplist concurrent distutils diff --git a/www/py-gandi.cli/distinfo b/www/py-gandi.cli/distinfo index 904a8ed3c513..19cba6a5c14c 100644 --- a/www/py-gandi.cli/distinfo +++ b/www/py-gandi.cli/distinfo @@ -1,2 +1,2 @@ -SHA256 (gandi.cli-0.14.tar.gz) = 80f0a499d871b363ad0e0687d06da5e6935b586b7fe7bc0b92ef4cc43c08bb05 -SIZE (gandi.cli-0.14.tar.gz) = 342573 +SHA256 (gandi.cli-0.15.tar.gz) = 84c6e0aaa5fd509ab6b2e912a683f9090dc68ef122ae1a9df32ed0393df1ab7b +SIZE (gandi.cli-0.15.tar.gz) = 359801 diff --git a/www/py-gandi.cli/files/patch-setup.py b/www/py-gandi.cli/files/patch-setup.py index e3f2a4235b76..861225e727dc 100644 --- a/www/py-gandi.cli/files/patch-setup.py +++ b/www/py-gandi.cli/files/patch-setup.py @@ -1,6 +1,6 @@ --- setup.py.orig 2015-04-01 08:43:36 UTC +++ setup.py -@@ -6,10 +6,11 @@ import os +@@ -6,19 +6,20 @@ import os import sys from setuptools import setup, find_packages @@ -14,9 +14,11 @@ with open(os.path.join(here, 'gandi', 'cli', '__init__.py')) as v_file: -@@ -18,7 +19,7 @@ with open(os.path.join(here, 'gandi', 'c + version = re.compile(r".*__version__ = '(.*?)'", + re.S).match(v_file.read()).group(1) - requires = ['setuptools', 'pyyaml', 'click<=4.0', 'requests', 'IPy'] +-requires = ['setuptools', 'pyyaml', 'click<=4.0', 'requests', 'IPy'] ++requires = ['setuptools', 'pyyaml', 'click>=3.0', 'requests', 'IPy'] -tests_require = ['nose', 'coverage', 'tox', 'httpretty==0.8.6'] +tests_require = ['nose', 'httpretty==0.8.6' ] |