Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 10 Aug 2015 16:46:24 +0000 (UTC)
From:      Kubilay Kocak <koobs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r393876 - in head/www/py-gandi.cli: . files
Message-ID:  <201508101646.t7AGkOVs027415@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: koobs
Date: Mon Aug 10 16:46:23 2015
New Revision: 393876
URL: https://svnweb.freebsd.org/changeset/ports/393876

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

Modified:
  head/www/py-gandi.cli/Makefile
  head/www/py-gandi.cli/distinfo
  head/www/py-gandi.cli/files/patch-setup.py

Modified: head/www/py-gandi.cli/Makefile
==============================================================================
--- head/www/py-gandi.cli/Makefile	Mon Aug 10 15:57:30 2015	(r393875)
+++ head/www/py-gandi.cli/Makefile	Mon Aug 10 16:46:23 2015	(r393876)
@@ -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

Modified: head/www/py-gandi.cli/distinfo
==============================================================================
--- head/www/py-gandi.cli/distinfo	Mon Aug 10 15:57:30 2015	(r393875)
+++ head/www/py-gandi.cli/distinfo	Mon Aug 10 16:46:23 2015	(r393876)
@@ -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

Modified: head/www/py-gandi.cli/files/patch-setup.py
==============================================================================
--- head/www/py-gandi.cli/files/patch-setup.py	Mon Aug 10 15:57:30 2015	(r393875)
+++ head/www/py-gandi.cli/files/patch-setup.py	Mon Aug 10 16:46:23 2015	(r393876)
@@ -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' ]



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