From owner-svn-ports-head@freebsd.org Sun Jul 5 17:17:13 2015 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 8D3C195BA; Sun, 5 Jul 2015 17:17:13 +0000 (UTC) (envelope-from loader@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 682F712C8; Sun, 5 Jul 2015 17:17:13 +0000 (UTC) (envelope-from loader@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t65HHDlC048095; Sun, 5 Jul 2015 17:17:13 GMT (envelope-from loader@FreeBSD.org) Received: (from loader@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t65HHC8e048089; Sun, 5 Jul 2015 17:17:12 GMT (envelope-from loader@FreeBSD.org) Message-Id: <201507051717.t65HHC8e048089@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: loader set sender to loader@FreeBSD.org using -f From: Fukang Chen Date: Sun, 5 Jul 2015 17:17:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r391367 - in head/devel: . py-pytest-cache 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.20 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: Sun, 05 Jul 2015 17:17:13 -0000 Author: loader (doc committer) Date: Sun Jul 5 17:17:11 2015 New Revision: 391367 URL: https://svnweb.freebsd.org/changeset/ports/391367 Log: [NEW] devel/py-pytest-cache: Pytest plugin with mechanisms for caching across test runs pytest plugin with mechanisms for caching across test runs. WWW: https://bitbucket.org/hpk42/pytest-cache/ PR: 199774 Approved by: koobs Differential Revision: https://reviews.freebsd.org/D2996 Added: head/devel/py-pytest-cache/ head/devel/py-pytest-cache/Makefile (contents, props changed) head/devel/py-pytest-cache/distinfo (contents, props changed) head/devel/py-pytest-cache/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jul 5 16:41:37 2015 (r391366) +++ head/devel/Makefile Sun Jul 5 17:17:11 2015 (r391367) @@ -4090,6 +4090,7 @@ SUBDIR += py-pyshapelib SUBDIR += py-pytemplate SUBDIR += py-pytest + SUBDIR += py-pytest-cache SUBDIR += py-pytest-capturelog SUBDIR += py-pytest-runner SUBDIR += py-pytest-timeout Added: head/devel/py-pytest-cache/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-cache/Makefile Sun Jul 5 17:17:11 2015 (r391367) @@ -0,0 +1,31 @@ +# Created by: loader +# $FreeBSD$ + +PORTNAME= pytest-cache +PORTVERSION= 1.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= loader@FreeBSD.org +COMMENT= Pytest plugin with mechanisms for caching across test runs + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=2.2:${PORTSDIR}/devel/py-pytest \ + ${PYTHON_PKGNAMEPREFIX}execnet>=1.2:${PORTSDIR}/sysutils/py-execnet +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:${PORTSDIR}/devel/py-pytest + +OPTIONS_DEFINE= TESTS + +TESTS_DESC= Install test suite requirements +TESTS_BUILD_DEPENDS= ${TEST_DEPENDS} + +USES= python +USE_PYTHON= autoplist distutils + +regression-test: build + @cd ${WRKSRC} && py.test + +.include Added: head/devel/py-pytest-cache/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-cache/distinfo Sun Jul 5 17:17:11 2015 (r391367) @@ -0,0 +1,2 @@ +SHA256 (pytest-cache-1.0.tar.gz) = be7468edd4d3d83f1e844959fd6e3fd28e77a481440a7118d430130ea31b07a9 +SIZE (pytest-cache-1.0.tar.gz) = 16242 Added: head/devel/py-pytest-cache/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-cache/pkg-descr Sun Jul 5 17:17:11 2015 (r391367) @@ -0,0 +1,3 @@ +pytest plugin with mechanisms for caching across test runs. + +WWW: https://bitbucket.org/hpk42/pytest-cache/