From owner-svn-ports-head@freebsd.org Tue Jul 21 02:29:14 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 5B5A1372D56; Tue, 21 Jul 2020 02:29:14 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4B9jGL1q2lz3gYf; Tue, 21 Jul 2020 02:29:14 +0000 (UTC) (envelope-from swills@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 2310516DC8; Tue, 21 Jul 2020 02:29:14 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 06L2TETS065298; Tue, 21 Jul 2020 02:29:14 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 06L2TDvD065289; Tue, 21 Jul 2020 02:29:13 GMT (envelope-from swills@FreeBSD.org) Message-Id: <202007210229.06L2TDvD065289@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 21 Jul 2020 02:29:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r542706 - in head/devel: . py-pytest-env X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/devel: . py-pytest-env X-SVN-Commit-Revision: 542706 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.33 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: Tue, 21 Jul 2020 02:29:14 -0000 Author: swills Date: Tue Jul 21 02:29:12 2020 New Revision: 542706 URL: https://svnweb.freebsd.org/changeset/ports/542706 Log: devel/py-pytest-env: create port py.test plugin that allows you to add environment variables. WWW: https://github.com/MobileDynasty/pytest-env Added: head/devel/py-pytest-env/ head/devel/py-pytest-env/Makefile (contents, props changed) head/devel/py-pytest-env/distinfo (contents, props changed) head/devel/py-pytest-env/pkg-descr (contents, props changed) Modified: head/devel/Makefile (contents, props changed) Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Jul 21 02:03:06 2020 (r542705) +++ head/devel/Makefile Tue Jul 21 02:29:12 2020 (r542706) @@ -4919,6 +4919,7 @@ SUBDIR += py-pytest-capturelog SUBDIR += py-pytest-cov SUBDIR += py-pytest-django + SUBDIR += py-pytest-env SUBDIR += py-pytest-factoryboy SUBDIR += py-pytest-fixture-config SUBDIR += py-pytest-flake8 Added: head/devel/py-pytest-env/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-env/Makefile Tue Jul 21 02:29:12 2020 (r542706) @@ -0,0 +1,17 @@ +# $FreeBSD$ + +PORTNAME= pytest-env +PORTVERSION= 0.6.2 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= swills@FreeBSD.org +COMMENT= Py.test plugin that allows you to add environment variables + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=2.6:devel/py-pytest@${PY_FLAVOR} + +USES= python:3.6+ +USE_PYTHON= autoplist distutils + +.include Added: head/devel/py-pytest-env/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-env/distinfo Tue Jul 21 02:29:12 2020 (r542706) @@ -0,0 +1,3 @@ +TIMESTAMP = 1595296529 +SHA256 (pytest-env-0.6.2.tar.gz) = 7e94956aef7f2764f3c147d216ce066bf6c42948bb9e293169b1b1c880a580c2 +SIZE (pytest-env-0.6.2.tar.gz) = 1693 Added: head/devel/py-pytest-env/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-env/pkg-descr Tue Jul 21 02:29:12 2020 (r542706) @@ -0,0 +1,3 @@ +py.test plugin that allows you to add environment variables. + +WWW: https://github.com/MobileDynasty/pytest-env