From owner-svn-ports-head@freebsd.org Mon Jan 23 13:41:37 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 846DFCB821C; Mon, 23 Jan 2017 13:41:37 +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 mx1.freebsd.org (Postfix) with ESMTPS id 575D9EC6; Mon, 23 Jan 2017 13:41:37 +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 v0NDfaVi032800; Mon, 23 Jan 2017 13:41:36 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0NDfa5J032794; Mon, 23 Jan 2017 13:41:36 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201701231341.v0NDfa5J032794@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 23 Jan 2017 13:41:36 +0000 (UTC) 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 X-SVN-Group: ports-head 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.23 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: Mon, 23 Jan 2017 13:41:37 -0000 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 +# $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 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 +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-pycodestyle + +USES= python:3 + +.include "${MASTERDIR}/Makefile"