From owner-svn-ports-head@FreeBSD.ORG Wed Dec 4 10:07:24 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 08FE23A0; Wed, 4 Dec 2013 10:07:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EA2FC135F; Wed, 4 Dec 2013 10:07:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rB4A7N0Y060390; Wed, 4 Dec 2013 10:07:23 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rB4A7Ngl060389; Wed, 4 Dec 2013 10:07:23 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201312041007.rB4A7Ngl060389@svn.freebsd.org> From: Kubilay Kocak Date: Wed, 4 Dec 2013 10:07:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335608 - head/devel/py-pbr X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Dec 2013 10:07:24 -0000 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