From owner-svn-ports-head@freebsd.org Sat Jun 10 02:32:10 2017 Return-Path: Delivered-To: svn-ports-head@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 5910FC31606; Sat, 10 Jun 2017 02:32:10 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 2995112F2; Sat, 10 Jun 2017 02:32:10 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5A2W9Sx017229; Sat, 10 Jun 2017 02:32:09 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5A2W8ht017226; Sat, 10 Jun 2017 02:32:08 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201706100232.v5A2W8ht017226@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Sat, 10 Jun 2017 02:32:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443060 - in head/devel: . py-pluggy py3-pluggy 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.23 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: Sat, 10 Jun 2017 02:32:10 -0000 Author: woodsb02 Date: Sat Jun 10 02:32:08 2017 New Revision: 443060 URL: https://svnweb.freebsd.org/changeset/ports/443060 Log: [NEW] devel/py3-pluggy: Add Python 3.x version of this port PR: 219833 Added: head/devel/py3-pluggy/ head/devel/py3-pluggy/Makefile (contents, props changed) Modified: head/devel/Makefile head/devel/py-pluggy/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Jun 10 02:19:04 2017 (r443059) +++ head/devel/Makefile Sat Jun 10 02:32:08 2017 (r443060) @@ -4970,6 +4970,7 @@ SUBDIR += py3-mccabe SUBDIR += py3-nose SUBDIR += py3-pip + SUBDIR += py3-pluggy SUBDIR += py3-ply SUBDIR += py3-pretend SUBDIR += py3-prompt_toolkit Modified: head/devel/py-pluggy/Makefile ============================================================================== --- head/devel/py-pluggy/Makefile Sat Jun 10 02:19:04 2017 (r443059) +++ head/devel/py-pluggy/Makefile Sat Jun 10 02:32:08 2017 (r443060) @@ -13,9 +13,9 @@ COMMENT= Plugin and hook calling mechanisms for Python LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest +TEST_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest -USES= python +USES?= python USE_PYTHON= autoplist distutils NO_ARCH= yes Added: head/devel/py3-pluggy/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py3-pluggy/Makefile Sat Jun 10 02:32:08 2017 (r443060) @@ -0,0 +1,10 @@ +# Created by: Ben Woods +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-pluggy + +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py3-pytest + +USES= python:3.3+ + +.include "${MASTERDIR}/Makefile"