Index: head/devel/py-flake8/Makefile =================================================================== --- head/devel/py-flake8/Makefile (revision 435161) +++ head/devel/py-flake8/Makefile (revision 435162) @@ -1,25 +1,24 @@ # Created by: William Grzybowski # $FreeBSD$ PORTNAME= flake8 -PORTVERSION= 3.2.1 -PORTREVISION= 1 +PORTVERSION= 3.3.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= wg@FreeBSD.org COMMENT= Code checking using pep8 and pyflakes LICENSE= MIT BUILD_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}pytest-runner>=0:devel/py-pytest-runner RUN_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}mccabe>=0.5.0:devel/py-mccabe \ ${PYTHON_PKGNAMEPREFIX}pycodestyle>=2.0.0:devel/py-pycodestyle \ ${PYTHON_PKGNAMEPREFIX}pyflakes>=0.8.1:devel/py-pyflakes USES?= python USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes .include Index: head/devel/py-flake8/distinfo =================================================================== --- head/devel/py-flake8/distinfo (revision 435161) +++ head/devel/py-flake8/distinfo (revision 435162) @@ -1,3 +1,3 @@ -TIMESTAMP = 1484910118 -SHA256 (flake8-3.2.1.tar.gz) = c7c460b5aff3a2063c798a77af18ec70af3941d35a22e2e76965e3c0e0b36055 -SIZE (flake8-3.2.1.tar.gz) = 129458 +TIMESTAMP = 1487238723 +SHA256 (flake8-3.3.0.tar.gz) = b907a26dcf5580753d8f80f1be0ec1d5c45b719f7bac441120793d1a70b03f12 +SIZE (flake8-3.3.0.tar.gz) = 134345 Index: head/devel/py-flake8/pkg-descr =================================================================== --- head/devel/py-flake8/pkg-descr (revision 435161) +++ head/devel/py-flake8/pkg-descr (revision 435162) @@ -1,11 +1,11 @@ Flake8 is a wrapper around these tools: - - PyFlakes - - pep8 - - Ned's McCabe script + - PyFlakes + - pycodestyle + - Ned Batchelder's McCabe script -Flake8 runs all tools by launching the single 'flake8' script, but ignores pep8 -and PyFlakes extended options and just uses defaults. It displays the warnings -in a per-file, merged output. +Flake8 runs all tools by launching the single 'flake8' script. It +displays the warnings in a per-file, merged output +WWW: https://pypi.python.org/pypi/flake8 WWW: https://gitlab.com/pycqa/flake8