diff --git a/devel/pylint/Makefile b/devel/pylint/Makefile index 9b1c2c8ff342..5be0c486071f 100644 --- a/devel/pylint/Makefile +++ b/devel/pylint/Makefile @@ -1,30 +1,28 @@ # Created by: Hye-Shik Chang PORTNAME= pylint -PORTVERSION= 2.7.4 +PORTVERSION= 2.8.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMESUFFIX= ${PYTHON_PKGNAMESUFFIX} MAINTAINER= sunpoet@FreeBSD.org COMMENT= Analyzes python source code looking for bugs and signs of poor quality LICENSE= GPLv2 -LICENSE_FILE= ${WRKSRC}/COPYING +LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}astroid>=2.5.2<2.7:devel/py-astroid@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}isort>=4.2.5<6:devel/py-isort@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}mccabe>=0.6<0.7:devel/py-mccabe@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}toml>=0.7.1:textproc/py-toml@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR} -USES= python:3.6+ shebangfix +USES= python:3.6+ USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes USE_LOCALE= en_US.UTF-8 -SHEBANG_FILES= tests/data/ascript - .include diff --git a/devel/pylint/distinfo b/devel/pylint/distinfo index 16213a3b1e1a..9528adcc0d48 100644 --- a/devel/pylint/distinfo +++ b/devel/pylint/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1618319942 -SHA256 (pylint-2.7.4.tar.gz) = bd38914c7731cdc518634a8d3c5585951302b6e2b6de60fbb3f7a0220e21eeee -SIZE (pylint-2.7.4.tar.gz) = 715507 +TIMESTAMP = 1619569411 +SHA256 (pylint-2.8.0.tar.gz) = 082a6d461b54f90eea49ca90fff4ee8b6e45e8029e5dbd72f6107ef84f3779c0 +SIZE (pylint-2.8.0.tar.gz) = 298586 diff --git a/devel/pylint/pkg-descr b/devel/pylint/pkg-descr index 65d2a105d23a..ac45a5a18261 100644 --- a/devel/pylint/pkg-descr +++ b/devel/pylint/pkg-descr @@ -1,12 +1,11 @@ Pylint is a Python source code analyzer which looks for programming errors, helps enforcing a coding standard and sniffs for some code smells (as defined in Martin Fowler's Refactoring book). Pylint has many rules enabled by default, way too much to silence them all on a minimally sized program. It's highly configurable and handle pragmas to control it from within your code. Additionally, it is possible to write plugins to add your own checks. WWW: https://www.pylint.org/ -WWW: https://pypi.org/project/pylint/ WWW: https://github.com/PyCQA/pylint