diff --git a/devel/pylint/Makefile b/devel/pylint/Makefile index 21ecc1830b25..5fb8e2965573 100644 --- a/devel/pylint/Makefile +++ b/devel/pylint/Makefile @@ -1,38 +1,38 @@ PORTNAME= pylint -PORTVERSION= 3.3.6 +PORTVERSION= 3.3.7 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMESUFFIX= ${PYTHON_PKGNAMESUFFIX} MAINTAINER= sunpoet@FreeBSD.org COMMENT= Analyzes python source code looking for bugs and signs of poor quality WWW= https://www.pylint.org/ \ https://pylint.readthedocs.io/en/latest/ \ https://github.com/pylint-dev/pylint LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=62.6:devel/py-setuptools@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}wheel>=0.37.1:devel/py-wheel@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}astroid>=3.3.8<3.4.0:devel/py-astroid@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}dill>=0.3.7:devel/py-dill@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}isort>=4.2.5<7:devel/py-isort@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}mccabe>=0.6<0.8:devel/py-mccabe@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}platformdirs>=2.2:devel/py-platformdirs@${PY_FLAVOR} \ ${PY_TOMLI} \ ${PYTHON_PKGNAMEPREFIX}tomlkit>=0.10.1:textproc/py-tomlkit@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR} USES= python:3.9+ USE_PYTHON= autoplist concurrent pep517 NO_ARCH= yes .include .if ${PYTHON_REL} < 31000 RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}typing-extensions>=3.10:devel/py-typing-extensions@${PY_FLAVOR} .endif .include diff --git a/devel/pylint/distinfo b/devel/pylint/distinfo index 8fbb4995fc9b..69c049b2a98c 100644 --- a/devel/pylint/distinfo +++ b/devel/pylint/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1744288718 -SHA256 (pylint-3.3.6.tar.gz) = b634a041aac33706d56a0d217e6587228c66427e20ec21a019bc4cdee48c040a -SIZE (pylint-3.3.6.tar.gz) = 1519586 +TIMESTAMP = 1747546422 +SHA256 (pylint-3.3.7.tar.gz) = 2b11de8bde49f9c5059452e0c310c079c746a0a8eeaa789e5aa966ecc23e4559 +SIZE (pylint-3.3.7.tar.gz) = 1520709 diff --git a/devel/pylint/files/patch-pyproject.toml b/devel/pylint/files/patch-pyproject.toml index 860b058e2bb3..d2826b97b284 100644 --- a/devel/pylint/files/patch-pyproject.toml +++ b/devel/pylint/files/patch-pyproject.toml @@ -1,21 +1,21 @@ ---- pyproject.toml.orig 2025-03-20 11:25:02 UTC +--- pyproject.toml.orig 2025-05-04 17:07:20 UTC +++ pyproject.toml @@ -1,15 +1,15 @@ build-backend = "setuptools.build_meta" [build-system] build-backend = "setuptools.build_meta" --requires = [ "setuptools>=71.0.4" ] +-requires = [ "setuptools>=77" ] +requires = [ "setuptools>=62.6" ] [project] name = "pylint" description = "python code static checker" readme = "README.rst" keywords = [ "lint", "linter", "python", "static code analysis" ] -license = "GPL-2.0-or-later" -license-files = [ "LICENSE", "CONTRIBUTORS.txt" ] +license = { text="GPL-2.0-or-later" } +# license-files = [ "LICENSE", "CONTRIBUTORS.txt" ] authors = [ { name = "Python Code Quality Authority", email = "code-quality@python.org" }, ]