From owner-svn-ports-head@freebsd.org Wed Sep 26 04:25:42 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 617E3109F7FD; Wed, 26 Sep 2018 04:25:42 +0000 (UTC) (envelope-from loader@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0BAB58DF15; Wed, 26 Sep 2018 04:25:42 +0000 (UTC) (envelope-from loader@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 020BC124CA; Wed, 26 Sep 2018 04:25:42 +0000 (UTC) (envelope-from loader@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w8Q4PffJ098715; Wed, 26 Sep 2018 04:25:41 GMT (envelope-from loader@FreeBSD.org) Received: (from loader@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8Q4PfbZ098711; Wed, 26 Sep 2018 04:25:41 GMT (envelope-from loader@FreeBSD.org) Message-Id: <201809260425.w8Q4PfbZ098711@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: loader set sender to loader@FreeBSD.org using -f From: Fukang Chen Date: Wed, 26 Sep 2018 04:25:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r480714 - in head/devel: . py-pytest-xprocess X-SVN-Group: ports-head X-SVN-Commit-Author: loader X-SVN-Commit-Paths: in head/devel: . py-pytest-xprocess X-SVN-Commit-Revision: 480714 X-SVN-Commit-Repository: ports 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.27 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, 26 Sep 2018 04:25:42 -0000 Author: loader Date: Wed Sep 26 04:25:40 2018 New Revision: 480714 URL: https://svnweb.freebsd.org/changeset/ports/480714 Log: [NEW PORT]: devel/py-pytest-xprocess: Pytest plugin to manage external processes across test runs Experimental py.test plugin for managing processes across test runs. WWW: https://github.com/pytest-dev/pytest-xprocess Reviewed by: koobs Approved by: koobs (mentor) Differential Revision: https://reviews.freebsd.org/D17313 Added: head/devel/py-pytest-xprocess/ head/devel/py-pytest-xprocess/Makefile (contents, props changed) head/devel/py-pytest-xprocess/distinfo (contents, props changed) head/devel/py-pytest-xprocess/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Sep 26 03:38:40 2018 (r480713) +++ head/devel/Makefile Wed Sep 26 04:25:40 2018 (r480714) @@ -4952,6 +4952,7 @@ SUBDIR += py-pytest-timeout SUBDIR += py-pytest-tornado SUBDIR += py-pytest-xdist + SUBDIR += py-pytest-xprocess SUBDIR += py-python-Levenshtein SUBDIR += py-python-bugzilla SUBDIR += py-python-distutils-extra Added: head/devel/py-pytest-xprocess/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-xprocess/Makefile Wed Sep 26 04:25:40 2018 (r480714) @@ -0,0 +1,30 @@ +# $FreeBSD$ + +PORTNAME= pytest-xprocess +PORTVERSION= 0.12.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= loader@FreeBSD.org +COMMENT= Pytest plugin to manage external processes across test runs + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=2.3.5:devel/py-pytest@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest-cache>0:devel/py-pytest-cache@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}psutil>0:sysutils/py-psutil@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +post-extract: + ${RM} -r ${WRKSRC}/example/__pycache__ + +do-test: + @cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest + +.include Added: head/devel/py-pytest-xprocess/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-xprocess/distinfo Wed Sep 26 04:25:40 2018 (r480714) @@ -0,0 +1,3 @@ +TIMESTAMP = 1537860840 +SHA256 (pytest-xprocess-0.12.1.tar.gz) = 50e0d00d898a867cf2af75168a8bf6d23d582365f8765b73dfc0430d1e53821b +SIZE (pytest-xprocess-0.12.1.tar.gz) = 12078 Added: head/devel/py-pytest-xprocess/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-xprocess/pkg-descr Wed Sep 26 04:25:40 2018 (r480714) @@ -0,0 +1,3 @@ +Experimental py.test plugin for managing processes across test runs. + +WWW: https://github.com/pytest-dev/pytest-xprocess