svn commit: r335608 - head/devel/py-pbr

Kubilay Kocak koobs at FreeBSD.org
Wed Dec 4 10:07:24 UTC 2013


Author: koobs
Date: Wed Dec  4 10:07:23 2013
New Revision: 335608
URL: http://svnweb.freebsd.org/changeset/ports/335608

Log:
  devel/py-pbr: Add pip to RUN_DEPENDS as swift and swiftclient need it
  
  swift and swiftclient depend on pbr, output errors on import when pip is
  not available at runtime, but don't explicitly declare a dependency on pip
  themselves.
  
  While implicit dependencies are not good practice, pbr does declare pip in its
  requirements, which is not reflected in this ports RUN_DEPENDS. So:
  
  - Add py-pip to RUN_DEPENDS
  
  Reported by:	trociny

Modified:
  head/devel/py-pbr/Makefile

Modified: head/devel/py-pbr/Makefile
==============================================================================
--- head/devel/py-pbr/Makefile	Wed Dec  4 09:54:09 2013	(r335607)
+++ head/devel/py-pbr/Makefile	Wed Dec  4 10:07:23 2013	(r335608)
@@ -3,6 +3,7 @@
 
 PORTNAME=	pbr
 PORTVERSION=	0.5.23
+PORTREVISION=	1
 CATEGORIES=	devel python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -12,6 +13,8 @@ COMMENT=	Python Build Reasonableness
 
 LICENSE=	AL2
 
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pip>=1.0:${PORTSDIR}/devel/py-pip
+
 USE_PYTHON=		yes
 USE_PYDISTUTILS=	easy_install
 PYDISTUTILS_AUTOPLIST=	yes


More information about the svn-ports-head mailing list