Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 23 Jan 2017 13:41:36 +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: r432217 - in head/devel: . py-pycodestyle py3-pycodestyle
Message-ID:  <201701231341.v0NDfa5J032794@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Mon Jan 23 13:41:35 2017
New Revision: 432217
URL: https://svnweb.freebsd.org/changeset/ports/432217

Log:
  pycodestyle is a tool to check your Python code against some of the
  style conventions in PEP 8.
  
  This package used to be called pep8 but was renamed to pycodestyle
  to reduce confusion
  
  WWW: https://pycodestyle.readthedocs.io/en/latest/

Added:
  head/devel/py-pycodestyle/
  head/devel/py-pycodestyle/Makefile   (contents, props changed)
  head/devel/py-pycodestyle/distinfo   (contents, props changed)
  head/devel/py-pycodestyle/pkg-descr   (contents, props changed)
  head/devel/py3-pycodestyle/
  head/devel/py3-pycodestyle/Makefile   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Jan 23 13:22:56 2017	(r432216)
+++ head/devel/Makefile	Mon Jan 23 13:41:35 2017	(r432217)
@@ -4483,6 +4483,7 @@
     SUBDIR += py-pycapsicum
     SUBDIR += py-pycerberus
     SUBDIR += py-pycmd
+    SUBDIR += py-pycodestyle
     SUBDIR += py-pycparser
     SUBDIR += py-pydenticon
     SUBDIR += py-pydoop
@@ -4855,6 +4856,7 @@
     SUBDIR += py3-lxml
     SUBDIR += py3-nose
     SUBDIR += py3-py
+    SUBDIR += py3-pycodestyle
     SUBDIR += py3-pyicu
     SUBDIR += py3-pylru-cache
     SUBDIR += py3-pytest

Added: head/devel/py-pycodestyle/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pycodestyle/Makefile	Mon Jan 23 13:41:35 2017	(r432217)
@@ -0,0 +1,22 @@
+# Created by: Dmitry Marakasov <amdmi3@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	pycodestyle
+PORTVERSION=	2.2.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	amdmi3@FreeBSD.org
+COMMENT=	Python style guide checker
+
+LICENSE=	MIT # mentioned as "Expat"
+
+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-pycodestyle/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pycodestyle/distinfo	Mon Jan 23 13:41:35 2017	(r432217)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1484910290
+SHA256 (pycodestyle-2.2.0.tar.gz) = df81dc3293e0123e2e8d1f2aaf819600e4ae287d8b3af8b72181af50257e5d9a
+SIZE (pycodestyle-2.2.0.tar.gz) = 85811

Added: head/devel/py-pycodestyle/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pycodestyle/pkg-descr	Mon Jan 23 13:41:35 2017	(r432217)
@@ -0,0 +1,7 @@
+pycodestyle is a tool to check your Python code against some of the
+style conventions in PEP 8.
+
+This package used to be called pep8 but was renamed to pycodestyle
+to reduce confusion
+
+WWW: https://pycodestyle.readthedocs.io/en/latest/

Added: head/devel/py3-pycodestyle/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py3-pycodestyle/Makefile	Mon Jan 23 13:41:35 2017	(r432217)
@@ -0,0 +1,8 @@
+# Created by: Dmitry Marakasov <amdmi3@FreeBSD.org>
+# $FreeBSD$
+
+MASTERDIR=	${.CURDIR}/../py-pycodestyle
+
+USES=		python:3
+
+.include "${MASTERDIR}/Makefile"



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