From owner-svn-ports-head@freebsd.org Sat Jan 11 13:45:38 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 C7B351EAC12; Sat, 11 Jan 2020 13:45:38 +0000 (UTC) (envelope-from koobs@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) server-signature RSA-PSS (4096 bits) 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 47w1MQ4xYnz45V6; Sat, 11 Jan 2020 13:45:38 +0000 (UTC) (envelope-from koobs@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 A4FC63C50; Sat, 11 Jan 2020 13:45:38 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 00BDjc3Y057045; Sat, 11 Jan 2020 13:45:38 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 00BDjbT0057041; Sat, 11 Jan 2020 13:45:37 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <202001111345.00BDjbT0057041@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Sat, 11 Jan 2020 13:45:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r522685 - in head/devel: . py-pytest-pep8 X-SVN-Group: ports-head X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: in head/devel: . py-pytest-pep8 X-SVN-Commit-Revision: 522685 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.29 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: Sat, 11 Jan 2020 13:45:38 -0000 Author: koobs Date: Sat Jan 11 13:45:37 2020 New Revision: 522685 URL: https://svnweb.freebsd.org/changeset/ports/522685 Log: [NEW] devel/py-pytest-pep8: Pytest plugin to check PEP8 requirements This plugin allows to configure on a per-project and per-file basis which errors or warnings to care about. WWW: https://bitbucket.org/pytest-dev/pytest-pep8 PR: 242756 Submitted by: Goran Mekić Added: head/devel/py-pytest-pep8/ head/devel/py-pytest-pep8/Makefile (contents, props changed) head/devel/py-pytest-pep8/distinfo (contents, props changed) head/devel/py-pytest-pep8/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Jan 11 13:03:30 2020 (r522684) +++ head/devel/Makefile Sat Jan 11 13:45:37 2020 (r522685) @@ -4899,6 +4899,7 @@ SUBDIR += py-pytest-isort SUBDIR += py-pytest-localserver SUBDIR += py-pytest-mock + SUBDIR += py-pytest-pep8 SUBDIR += py-pytest-pycodestyle SUBDIR += py-pytest-relaxed SUBDIR += py-pytest-rerunfailures Added: head/devel/py-pytest-pep8/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-pep8/Makefile Sat Jan 11 13:45:37 2020 (r522685) @@ -0,0 +1,33 @@ +# $FreeBSD$ + +PORTNAME= pytest-pep8 +PORTVERSION= 1.0.6 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= meka@tilda.center +COMMENT= Pytest plugin to check PEP8 requirements + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=2.4.2:devel/py-pytest@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest-cache>=0:devel/py-pytest-cache@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pep8>=1.3:devel/pep8@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +TEST_ENV= PYTHONPATH=${WRKSRC}/src + +NO_ARCH= yes + +do-test: + cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest -v -rs -o addopts= \ + -k 'not test_strict \ + and not test_ok_verbose \ + and not test_mtime_caching \ + and not test_w293w292' + +.include Added: head/devel/py-pytest-pep8/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-pep8/distinfo Sat Jan 11 13:45:37 2020 (r522685) @@ -0,0 +1,3 @@ +TIMESTAMP = 1576898226 +SHA256 (pytest-pep8-1.0.6.tar.gz) = 032ef7e5fa3ac30f4458c73e05bb67b0f036a8a5cb418a534b3170f89f120318 +SIZE (pytest-pep8-1.0.6.tar.gz) = 7271 Added: head/devel/py-pytest-pep8/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-pep8/pkg-descr Sat Jan 11 13:45:37 2020 (r522685) @@ -0,0 +1,4 @@ +This plugin allows to configure on a per-project and per-file basis which +errors or warnings to care about. + +WWW: https://bitbucket.org/pytest-dev/pytest-pep8