diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2018-09-09 17:57:20 +0000 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2018-09-09 17:57:20 +0000 |
commit | 6cf018c408c7ac014aee8c8cc42ef50b88677020 (patch) | |
tree | 04d6fbb00f3a574d6b8319eb7426e98436da29d6 | |
parent | Update to 1.5.1 (diff) |
devel/pep8: Remove USE_PYTHON=concurrent; Add USE_PYTHON=noflavors
This port only provides one executable, and no usable libraries, therefore
flavors and concurrency aren't needed.
It has been renamed to 'pycodestyle', see devel/py-pycodestyle.
Approved by: portmgr blanket
Notes
Notes:
svn path=/head/; revision=479325
-rw-r--r-- | devel/pep8/Makefile | 5 | ||||
-rw-r--r-- | devel/pep8/pkg-descr | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/devel/pep8/Makefile b/devel/pep8/Makefile index 1dcd8007ff8f..23ffe9ec3ac1 100644 --- a/devel/pep8/Makefile +++ b/devel/pep8/Makefile @@ -3,6 +3,7 @@ PORTNAME= pep8 PORTVERSION= 1.7.1 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,9 +13,9 @@ COMMENT= Python style guide checker LICENSE= MIT -NO_ARCH= yes USES= python -USE_PYTHON= autoplist concurrent distutils +USE_PYTHON= autoplist distutils noflavors +NO_ARCH= yes do-test: @(cd ${WRKSRC}; ${PYTHON_CMD} ${PORTNAME}.py \ diff --git a/devel/pep8/pkg-descr b/devel/pep8/pkg-descr index f53ee7afd4f5..4bb53e10e403 100644 --- a/devel/pep8/pkg-descr +++ b/devel/pep8/pkg-descr @@ -1,4 +1,6 @@ pep8 is a tool to check your Python code against some of the style conventions in PEP 8. +This project was renamed to 'pycodestyle', see the port devel/py-pycodestyle. + WWW: https://pypi.org/project/pep8/ |