From owner-svn-ports-head@freebsd.org Wed Feb 7 21:43:31 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 B689EEDC1B4; Wed, 7 Feb 2018 21:43:30 +0000 (UTC) (envelope-from amdmi3@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 60D7A8097B; Wed, 7 Feb 2018 21:43:30 +0000 (UTC) (envelope-from amdmi3@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 3E87D4C70; Wed, 7 Feb 2018 21:43:30 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w17LhUDf046787; Wed, 7 Feb 2018 21:43:30 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w17LhT9u046783; Wed, 7 Feb 2018 21:43:29 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201802072143.w17LhT9u046783@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Feb 2018 21:43:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r461188 - in head/devel: . py-pep8-naming X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: in head/devel: . py-pep8-naming X-SVN-Commit-Revision: 461188 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.25 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, 07 Feb 2018 21:43:31 -0000 Author: amdmi3 Date: Wed Feb 7 21:43:29 2018 New Revision: 461188 URL: https://svnweb.freebsd.org/changeset/ports/461188 Log: Check the PEP-8 naming conventions. This module provides a plugin for flake8, the Python code checker. (It replaces the plugin flint-naming for the flint checker.) WWW: https://pypi.python.org/pypi/pep8-naming Added: head/devel/py-pep8-naming/ head/devel/py-pep8-naming/Makefile (contents, props changed) head/devel/py-pep8-naming/distinfo (contents, props changed) head/devel/py-pep8-naming/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Feb 7 21:01:44 2018 (r461187) +++ head/devel/Makefile Wed Feb 7 21:43:29 2018 (r461188) @@ -4681,6 +4681,7 @@ SUBDIR += py-paver SUBDIR += py-pbr SUBDIR += py-pefile + SUBDIR += py-pep8-naming SUBDIR += py-period SUBDIR += py-petname SUBDIR += py-pex @@ -5959,8 +5960,8 @@ SUBDIR += sysconftool SUBDIR += sysfsutils SUBDIR += t1lib - SUBDIR += tablist SUBDIR += ta-lib + SUBDIR += tablist SUBDIR += tailor SUBDIR += talloc SUBDIR += tass64 Added: head/devel/py-pep8-naming/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pep8-naming/Makefile Wed Feb 7 21:43:29 2018 (r461188) @@ -0,0 +1,25 @@ +# Created by: Dmitry Marakasov +# $FreeBSD$ + +PORTNAME= pep8-naming +PORTVERSION= 0.5.0 +CATEGORIES= devel +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= amdmi3@FreeBSD.org +COMMENT= Check PEP-8 naming conventions, plugin for flake8 + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}flake8-polyfill>=0:devel/py-flake8-polyfill@${FLAVOR} + +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test + +.include Added: head/devel/py-pep8-naming/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pep8-naming/distinfo Wed Feb 7 21:43:29 2018 (r461188) @@ -0,0 +1,3 @@ +TIMESTAMP = 1518037481 +SHA256 (pep8-naming-0.5.0.tar.gz) = 5a2a085340b1d530605a7f4a96816433be43504c58eace799dbacdcfd6febe9d +SIZE (pep8-naming-0.5.0.tar.gz) = 9277 Added: head/devel/py-pep8-naming/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pep8-naming/pkg-descr Wed Feb 7 21:43:29 2018 (r461188) @@ -0,0 +1,7 @@ +Check the PEP-8 naming conventions. + +This module provides a plugin for flake8, the Python code checker. + +(It replaces the plugin flint-naming for the flint checker.) + +WWW: https://pypi.python.org/pypi/pep8-naming