From owner-svn-ports-head@freebsd.org Sun Feb 5 14:25:04 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 9C82ACD288F; Sun, 5 Feb 2017 14:25:04 +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 69F5F172F; Sun, 5 Feb 2017 14:25:04 +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 v15EP3we010050; Sun, 5 Feb 2017 14:25:03 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v15EP34k010045; Sun, 5 Feb 2017 14:25:03 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201702051425.v15EP34k010045@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 5 Feb 2017 14:25:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r433410 - in head/devel: . py-pydocstyle py3-pydocstyle 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: Sun, 05 Feb 2017 14:25:04 -0000 Author: amdmi3 Date: Sun Feb 5 14:25:02 2017 New Revision: 433410 URL: https://svnweb.freebsd.org/changeset/ports/433410 Log: - Add py-pydocstyle, py3-pydocstyle Python docstring style checker (formerly pep257) pydocstyle is a static analysis tool for checking compliance with Python docstring conventions. pydocstyle supports most of PEP 257 out of the box, but it should not be considered a reference implementation. pydocstyle supports Python 2.6, 2.7, 3.3, 3.4, 3.5, pypy and pypy3. WWW: https://pypi.python.org/pypi/pydocstyle Added: head/devel/py-pydocstyle/ head/devel/py-pydocstyle/Makefile (contents, props changed) head/devel/py-pydocstyle/distinfo (contents, props changed) head/devel/py-pydocstyle/pkg-descr (contents, props changed) head/devel/py3-pydocstyle/ head/devel/py3-pydocstyle/Makefile (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Feb 5 14:13:01 2017 (r433409) +++ head/devel/Makefile Sun Feb 5 14:25:02 2017 (r433410) @@ -4505,6 +4505,7 @@ SUBDIR += py-pycodestyle SUBDIR += py-pycparser SUBDIR += py-pydenticon + SUBDIR += py-pydocstyle SUBDIR += py-pydoop SUBDIR += py-pyechonest SUBDIR += py-pyee @@ -4884,6 +4885,7 @@ SUBDIR += py3-nose SUBDIR += py3-py SUBDIR += py3-pycodestyle + SUBDIR += py3-pydocstyle SUBDIR += py3-pyflakes SUBDIR += py3-pyicu SUBDIR += py3-pylru-cache Added: head/devel/py-pydocstyle/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pydocstyle/Makefile Sun Feb 5 14:25:02 2017 (r433410) @@ -0,0 +1,20 @@ +# Created by: Dmitry Marakasov +# $FreeBSD$ + +PORTNAME= pydocstyle +PORTVERSION= 1.1.1 +CATEGORIES= devel +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= amdmi3@FreeBSD.org +COMMENT= Python docstring style checker + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE-MIT + +USES?= python zip +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include Added: head/devel/py-pydocstyle/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pydocstyle/distinfo Sun Feb 5 14:25:02 2017 (r433410) @@ -0,0 +1,3 @@ +TIMESTAMP = 1486304287 +SHA256 (pydocstyle-1.1.1.zip) = f808d8fc23952fe93c2d85598732bfa854cb5ee8a25f8191f60600710f898e8d +SIZE (pydocstyle-1.1.1.zip) = 26570 Added: head/devel/py-pydocstyle/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pydocstyle/pkg-descr Sun Feb 5 14:25:02 2017 (r433410) @@ -0,0 +1,13 @@ +Python docstring style checker + +(formerly pep257) + +pydocstyle is a static analysis tool for checking compliance with +Python docstring conventions. + +pydocstyle supports most of PEP 257 out of the box, but it should +not be considered a reference implementation. + +pydocstyle supports Python 2.6, 2.7, 3.3, 3.4, 3.5, pypy and pypy3. + +WWW: https://pypi.python.org/pypi/pydocstyle Added: head/devel/py3-pydocstyle/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py3-pydocstyle/Makefile Sun Feb 5 14:25:02 2017 (r433410) @@ -0,0 +1,8 @@ +# Created by: Dmitry Marakasov +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-pydocstyle + +USES= python:3 zip + +.include "${MASTERDIR}/Makefile"