From owner-svn-ports-head@freebsd.org Fri Jun 9 00:04:39 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 9B5B9D8711C; Fri, 9 Jun 2017 00:04:39 +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 68ED277195; Fri, 9 Jun 2017 00:04:39 +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 v5904ctv060719; Fri, 9 Jun 2017 00:04:38 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5904caS060716; Fri, 9 Jun 2017 00:04:38 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201706090004.v5904caS060716@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Fri, 9 Jun 2017 00:04:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r442964 - in head/devel: . py-pytest-capturelog py3-pytest-capturelog 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: Fri, 09 Jun 2017 00:04:39 -0000 Author: woodsb02 Date: Fri Jun 9 00:04:38 2017 New Revision: 442964 URL: https://svnweb.freebsd.org/changeset/ports/442964 Log: [NEW] devel/py3-pytest-capturelog: Add Python 3.x version of this port PR: 219833 Added: head/devel/py3-pytest-capturelog/ head/devel/py3-pytest-capturelog/Makefile (contents, props changed) Modified: head/devel/Makefile head/devel/py-pytest-capturelog/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Jun 8 23:53:48 2017 (r442963) +++ head/devel/Makefile Fri Jun 9 00:04:38 2017 (r442964) @@ -4980,6 +4980,7 @@ SUBDIR += py3-pyicu SUBDIR += py3-pylru-cache SUBDIR += py3-pytest + SUBDIR += py3-pytest-capturelog SUBDIR += py3-pytest-runner SUBDIR += py3-pytest-xdist SUBDIR += py3-python-magic Modified: head/devel/py-pytest-capturelog/Makefile ============================================================================== --- head/devel/py-pytest-capturelog/Makefile Thu Jun 8 23:53:48 2017 (r442963) +++ head/devel/py-pytest-capturelog/Makefile Fri Jun 9 00:04:38 2017 (r442964) @@ -12,9 +12,9 @@ COMMENT= Py.test plugin to capture log messages LICENSE= MIT -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}py>=1.1.1:devel/py-py +RUN_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}py>=1.1.1:devel/py-py -USES= python +USES?= python USE_PYTHON= autoplist distutils .include Added: head/devel/py3-pytest-capturelog/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py3-pytest-capturelog/Makefile Fri Jun 9 00:04:38 2017 (r442964) @@ -0,0 +1,10 @@ +# Created by: Ben Woods +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-pytest-capturelog + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}py>=1.1.1:devel/py3-py + +USES= python:3 + +.include "${MASTERDIR}/Makefile"