Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 4 Dec 2013 10:07:23 +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: r335608 - head/devel/py-pbr
Message-ID:  <201312041007.rB4A7Ngl060389@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



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