Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 7 Feb 2018 21:43:29 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
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
Message-ID:  <201802072143.w17LhT9u046783@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <amdmi3@FreeBSD.org>
+# $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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802072143.w17LhT9u046783>