1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-13 03:03:15 +00:00

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/
This commit is contained in:
Dmitry Marakasov 2017-01-23 13:41:35 +00:00
parent 2e7a96e586
commit 4e16d6eec2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=432217
5 changed files with 42 additions and 0 deletions

View File

@ -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

View File

@ -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>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1484910290
SHA256 (pycodestyle-2.2.0.tar.gz) = df81dc3293e0123e2e8d1f2aaf819600e4ae287d8b3af8b72181af50257e5d9a
SIZE (pycodestyle-2.2.0.tar.gz) = 85811

View File

@ -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/

View File

@ -0,0 +1,8 @@
# Created by: Dmitry Marakasov <amdmi3@FreeBSD.org>
# $FreeBSD$
MASTERDIR= ${.CURDIR}/../py-pycodestyle
USES= python:3
.include "${MASTERDIR}/Makefile"