Date: Sun, 5 Feb 2017 14:25:03 +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: r433410 - in head/devel: . py-pydocstyle py3-pydocstyle Message-ID: <201702051425.v15EP34k010045@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <amdmi3@FreeBSD.org> +# $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 <bsd.port.mk> 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 <amdmi3@FreeBSD.org> +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-pydocstyle + +USES= python:3 zip + +.include "${MASTERDIR}/Makefile"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702051425.v15EP34k010045>