From owner-svn-ports-all@freebsd.org Sun May 17 18:25:25 2020 Return-Path: Delivered-To: svn-ports-all@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 E077E2DFDF3; Sun, 17 May 2020 18:25:25 +0000 (UTC) (envelope-from sunpoet@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 49Q9Yd4VK7z4cZK; Sun, 17 May 2020 18:25:25 +0000 (UTC) (envelope-from sunpoet@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 83F0714A33; Sun, 17 May 2020 18:25:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 04HIPOtS094360; Sun, 17 May 2020 18:25:24 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 04HIPNwP094356; Sun, 17 May 2020 18:25:23 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202005171825.04HIPNwP094356@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 17 May 2020 18:25:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r535568 - in head/devel: . py-pytest-black-multipy X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . py-pytest-black-multipy X-SVN-Commit-Revision: 535568 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 May 2020 18:25:25 -0000 Author: sunpoet Date: Sun May 17 18:25:23 2020 New Revision: 535568 URL: https://svnweb.freebsd.org/changeset/ports/535568 Log: Add py-pytest-black-multipy 1.0.0 pytest-black-multipy is a wrapper around pytest-black to allow projects on older Python versions to use the --black paremeter. WWW: https://github.com/jaraco/pytest-black-multipy Added: head/devel/py-pytest-black-multipy/ head/devel/py-pytest-black-multipy/Makefile (contents, props changed) head/devel/py-pytest-black-multipy/distinfo (contents, props changed) head/devel/py-pytest-black-multipy/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun May 17 18:25:14 2020 (r535567) +++ head/devel/Makefile Sun May 17 18:25:23 2020 (r535568) @@ -4902,6 +4902,7 @@ SUBDIR += py-pytest-azurepipelines SUBDIR += py-pytest-benchmark SUBDIR += py-pytest-black + SUBDIR += py-pytest-black-multipy SUBDIR += py-pytest-cache SUBDIR += py-pytest-capturelog SUBDIR += py-pytest-cov Added: head/devel/py-pytest-black-multipy/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-black-multipy/Makefile Sun May 17 18:25:23 2020 (r535568) @@ -0,0 +1,34 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= pytest-black-multipy +PORTVERSION= 1.0.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Allow --black on older Pythons + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>=1.15.0:devel/py-setuptools_scm@${PY_FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=3.5:devel/py-pytest@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest-flake8>=0:devel/py-pytest-flake8@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include + +.if ${PYTHON_REL} >= 3600 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}pytest-black>=0:devel/py-pytest-black@${PY_FLAVOR} +.endif + +do-test: + cd ${WRKSRC} && ${PYTHON_CMD} -m pytest -rs -v + +.include Added: head/devel/py-pytest-black-multipy/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-black-multipy/distinfo Sun May 17 18:25:23 2020 (r535568) @@ -0,0 +1,3 @@ +TIMESTAMP = 1589631128 +SHA256 (pytest-black-multipy-1.0.0.tar.gz) = cd6bf8d9e60af4d97771f848d5efae8eef30c9c77d4bb6f57a767ceb52523cb2 +SIZE (pytest-black-multipy-1.0.0.tar.gz) = 8576 Added: head/devel/py-pytest-black-multipy/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-black-multipy/pkg-descr Sun May 17 18:25:23 2020 (r535568) @@ -0,0 +1,4 @@ +pytest-black-multipy is a wrapper around pytest-black to allow projects on older +Python versions to use the --black paremeter. + +WWW: https://github.com/jaraco/pytest-black-multipy