From owner-svn-ports-all@freebsd.org Fri Sep 4 17:13:01 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EE8249CAB5C; Fri, 4 Sep 2015 17:13:01 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C548ABE; Fri, 4 Sep 2015 17:13:01 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t84HD1C1059214; Fri, 4 Sep 2015 17:13:01 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t84HD1ov059213; Fri, 4 Sep 2015 17:13:01 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201509041713.t84HD1ov059213@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 4 Sep 2015 17:13:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r396114 - head/devel/py-RPyC X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Sep 2015 17:13:02 -0000 Author: jbeich Date: Fri Sep 4 17:13:00 2015 New Revision: 396114 URL: https://svnweb.freebsd.org/changeset/ports/396114 Log: devel/py-RPyC: properly register py-plumbum dependency This fixes package consumers like www/py-flexget since r363629. $ flexget Traceback (most recent call last): File "/usr/local/bin/flexget", line 5, in from pkg_resources import load_entry_point File "/usr/local/lib/python2.7/site-packages/pkg_resources/__init__.py", line 3074, in @_call_aside File "/usr/local/lib/python2.7/site-packages/pkg_resources/__init__.py", line 3060, in _call_aside f(*args, **kwargs) File "/usr/local/lib/python2.7/site-packages/pkg_resources/__init__.py", line 3087, in _initialize_master_working_set working_set = WorkingSet._build_master() File "/usr/local/lib/python2.7/site-packages/pkg_resources/__init__.py", line 645, in _build_master ws.require(__requires__) File "/usr/local/lib/python2.7/site-packages/pkg_resources/__init__.py", line 946, in require needed = self.resolve(parse_requirements(requirements)) File "/usr/local/lib/python2.7/site-packages/pkg_resources/__init__.py", line 833, in resolve raise DistributionNotFound(req, requirers) pkg_resources.DistributionNotFound: The 'plumbum' distribution was not found and is required by rpyc Approved by: portmgr blanket Differential Revision: https://reviews.freebsd.org/D3566 Modified: head/devel/py-RPyC/Makefile (contents, props changed) Modified: head/devel/py-RPyC/Makefile ============================================================================== --- head/devel/py-RPyC/Makefile Fri Sep 4 17:04:00 2015 (r396113) +++ head/devel/py-RPyC/Makefile Fri Sep 4 17:13:00 2015 (r396114) @@ -3,6 +3,7 @@ PORTNAME= rpyc PORTVERSION= 3.3.0 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,7 +16,7 @@ LICENSE= MIT OPTIONS_DEFINE= PLUMBUM OPTIONS_DEFAULT=PLUMBUM -PLUMBUM_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}plumbum>0:${PORTSDIR}/sysutils/py-plumbum +PLUMBUM_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}plumbum>0:${PORTSDIR}/sysutils/py-plumbum PLUMBUM_DESC= Required for features like rpyc_classic.py and zero deploy USES= python:-3.3