Index: head/devel/pylint/Makefile =================================================================== --- head/devel/pylint/Makefile (revision 464784) +++ head/devel/pylint/Makefile (revision 464785) @@ -1,39 +1,39 @@ # Created by: Hye-Shik Chang # $FreeBSD$ PORTNAME= pylint -PORTVERSION= 1.8.2 +PORTVERSION= 1.8.3 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 BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-runner>=0:devel/py-pytest-runner@${FLAVOR} -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}astroid>=1.6.0:devel/py-astroid@${FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}astroid>=1.6:devel/py-astroid@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}isort>=4.2.5:devel/py-isort@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}mccabe>=0:devel/py-mccabe@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${FLAVOR} NO_ARCH= yes USE_PYTHON= concurrent distutils py3kplist USES= python shebangfix SHEBANG_FILES= pylint/test/data/ascript .include .if ${PYTHON_REL} < 3000 RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}backports.functools_lru_cache>=0:devel/py-backports.functools_lru_cache@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}configparser>=0:devel/py-configparser@${FLAVOR} .endif .if ${PYTHON_REL} < 3400 RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}singledispatch>=0:devel/py-singledispatch@${FLAVOR} .endif .include Index: head/devel/pylint/distinfo =================================================================== --- head/devel/pylint/distinfo (revision 464784) +++ head/devel/pylint/distinfo (revision 464785) @@ -1,3 +1,3 @@ -TIMESTAMP = 1516794974 -SHA256 (pylint-1.8.2.tar.gz) = 4fe3b99da7e789545327b75548cee6b511e4faa98afe268130fea1af4b5ec022 -SIZE (pylint-1.8.2.tar.gz) = 510319 +TIMESTAMP = 1521277180 +SHA256 (pylint-1.8.3.tar.gz) = c77311859e0c2d7932095f30d2b1bfdc4b6fe111f534450ba727a52eae330ef2 +SIZE (pylint-1.8.3.tar.gz) = 512104 Index: head/devel/pylint/pkg-descr =================================================================== --- head/devel/pylint/pkg-descr (revision 464784) +++ head/devel/pylint/pkg-descr (revision 464785) @@ -1,11 +1,12 @@ 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.python.org/pypi/pylint WWW: https://github.com/PyCQA/pylint