pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/py-pylint



Module Name:    pkgsrc
Committed By:   wiz
Date:           Sun Oct 19 18:58:54 UTC 2025

Modified Files:
        pkgsrc/devel/py-pylint: Makefile PLIST distinfo

Log Message:
py-pylint: update to 4.0.1.

4.0.1

False Positives Fixed

    Exclude __all__ and __future__.annotations from unused-variable.

    Closes #10019

    Fix false-positive for bare-name-capture-pattern if a case guard is used.

    Closes #10647

    Check enums created with the Enum() functional syntax to pass against the
    --class-rgx for the invalid-name check, like other enums.

    Closes #10660

4.0.0

    Pylint now supports Python 3.14.

    Pylint's inference engine (astroid) is now much more precise,
    understanding implicit booleanness and ternary expressions. (Thanks @zenlyj!)


To generate a diff of this commit:
cvs rdiff -u -r1.114 -r1.115 pkgsrc/devel/py-pylint/Makefile
cvs rdiff -u -r1.36 -r1.37 pkgsrc/devel/py-pylint/PLIST
cvs rdiff -u -r1.99 -r1.100 pkgsrc/devel/py-pylint/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/py-pylint/Makefile
diff -u pkgsrc/devel/py-pylint/Makefile:1.114 pkgsrc/devel/py-pylint/Makefile:1.115
--- pkgsrc/devel/py-pylint/Makefile:1.114       Fri Oct 10 09:52:28 2025
+++ pkgsrc/devel/py-pylint/Makefile     Sun Oct 19 18:58:54 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.114 2025/10/10 09:52:28 adam Exp $
+# $NetBSD: Makefile,v 1.115 2025/10/19 18:58:54 wiz Exp $
 
-DISTNAME=      pylint-3.3.9
+DISTNAME=      pylint-4.0.1
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=p/pylint/}
@@ -22,6 +22,9 @@ TEST_DEPENDS+=        ${PYPKGPREFIX}-test-bench
 
 USE_LANGUAGES= # none
 
+# as of 4.0.1
+# 13 failed, 1987 passed, 261 skipped, 5 xfailed
+
 .include "../../lang/python/pyversion.mk"
 .if ${PYTHON_VERSION} < 311
 DEPENDS+=      ${PYPKGPREFIX}-tomli>=1.1.0:../../textproc/py-tomli

Index: pkgsrc/devel/py-pylint/PLIST
diff -u pkgsrc/devel/py-pylint/PLIST:1.36 pkgsrc/devel/py-pylint/PLIST:1.37
--- pkgsrc/devel/py-pylint/PLIST:1.36   Sat Apr 12 11:42:12 2025
+++ pkgsrc/devel/py-pylint/PLIST        Sun Oct 19 18:58:54 2025
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.36 2025/04/12 11:42:12 adam Exp $
+@comment $NetBSD: PLIST,v 1.37 2025/10/19 18:58:54 wiz Exp $
 bin/pylint-${PYVERSSUFFIX}
 bin/pylint-config-${PYVERSSUFFIX}
 bin/pyreverse-${PYVERSSUFFIX}
@@ -22,9 +22,9 @@ ${PYSITELIB}/pylint/__pkginfo__.pyo
 ${PYSITELIB}/pylint/checkers/__init__.py
 ${PYSITELIB}/pylint/checkers/__init__.pyc
 ${PYSITELIB}/pylint/checkers/__init__.pyo
-${PYSITELIB}/pylint/checkers/async.py
-${PYSITELIB}/pylint/checkers/async.pyc
-${PYSITELIB}/pylint/checkers/async.pyo
+${PYSITELIB}/pylint/checkers/async_checker.py
+${PYSITELIB}/pylint/checkers/async_checker.pyc
+${PYSITELIB}/pylint/checkers/async_checker.pyo
 ${PYSITELIB}/pylint/checkers/bad_chained_comparison.py
 ${PYSITELIB}/pylint/checkers/bad_chained_comparison.pyc
 ${PYSITELIB}/pylint/checkers/bad_chained_comparison.pyo
@@ -70,6 +70,9 @@ ${PYSITELIB}/pylint/checkers/classes/cla
 ${PYSITELIB}/pylint/checkers/classes/special_methods_checker.py
 ${PYSITELIB}/pylint/checkers/classes/special_methods_checker.pyc
 ${PYSITELIB}/pylint/checkers/classes/special_methods_checker.pyo
+${PYSITELIB}/pylint/checkers/clear_lru_cache.py
+${PYSITELIB}/pylint/checkers/clear_lru_cache.pyc
+${PYSITELIB}/pylint/checkers/clear_lru_cache.pyo
 ${PYSITELIB}/pylint/checkers/dataclass_checker.py
 ${PYSITELIB}/pylint/checkers/dataclass_checker.pyc
 ${PYSITELIB}/pylint/checkers/dataclass_checker.pyo
@@ -100,6 +103,9 @@ ${PYSITELIB}/pylint/checkers/lambda_expr
 ${PYSITELIB}/pylint/checkers/logging.py
 ${PYSITELIB}/pylint/checkers/logging.pyc
 ${PYSITELIB}/pylint/checkers/logging.pyo
+${PYSITELIB}/pylint/checkers/match_statements_checker.py
+${PYSITELIB}/pylint/checkers/match_statements_checker.pyc
+${PYSITELIB}/pylint/checkers/match_statements_checker.pyo
 ${PYSITELIB}/pylint/checkers/method_args.py
 ${PYSITELIB}/pylint/checkers/method_args.pyc
 ${PYSITELIB}/pylint/checkers/method_args.pyo
@@ -169,9 +175,9 @@ ${PYSITELIB}/pylint/checkers/variables.p
 ${PYSITELIB}/pylint/config/__init__.py
 ${PYSITELIB}/pylint/config/__init__.pyc
 ${PYSITELIB}/pylint/config/__init__.pyo
-${PYSITELIB}/pylint/config/_breaking_changes.py
-${PYSITELIB}/pylint/config/_breaking_changes.pyc
-${PYSITELIB}/pylint/config/_breaking_changes.pyo
+${PYSITELIB}/pylint/config/_breaking_changes/__init__.py
+${PYSITELIB}/pylint/config/_breaking_changes/__init__.pyc
+${PYSITELIB}/pylint/config/_breaking_changes/__init__.pyo
 ${PYSITELIB}/pylint/config/_pylint_config/__init__.py
 ${PYSITELIB}/pylint/config/_pylint_config/__init__.pyc
 ${PYSITELIB}/pylint/config/_pylint_config/__init__.pyo
@@ -416,6 +422,9 @@ ${PYSITELIB}/pylint/reporters/json_repor
 ${PYSITELIB}/pylint/reporters/multi_reporter.py
 ${PYSITELIB}/pylint/reporters/multi_reporter.pyc
 ${PYSITELIB}/pylint/reporters/multi_reporter.pyo
+${PYSITELIB}/pylint/reporters/progress_reporters.py
+${PYSITELIB}/pylint/reporters/progress_reporters.pyc
+${PYSITELIB}/pylint/reporters/progress_reporters.pyo
 ${PYSITELIB}/pylint/reporters/reports_handler_mix_in.py
 ${PYSITELIB}/pylint/reporters/reports_handler_mix_in.pyc
 ${PYSITELIB}/pylint/reporters/reports_handler_mix_in.pyo

Index: pkgsrc/devel/py-pylint/distinfo
diff -u pkgsrc/devel/py-pylint/distinfo:1.99 pkgsrc/devel/py-pylint/distinfo:1.100
--- pkgsrc/devel/py-pylint/distinfo:1.99        Fri Oct 10 09:52:28 2025
+++ pkgsrc/devel/py-pylint/distinfo     Sun Oct 19 18:58:54 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.99 2025/10/10 09:52:28 adam Exp $
+$NetBSD: distinfo,v 1.100 2025/10/19 18:58:54 wiz Exp $
 
-BLAKE2s (pylint-3.3.9.tar.gz) = 4b068cc5051bdfbba254fd4b6673ecfa02f407c622c6d0f9e3e0b7e452842f97
-SHA512 (pylint-3.3.9.tar.gz) = d84119be04e002fed5dda4beb953f0e280b6f69490661bfdb06d9e6c5bc7f2784cde01fb94b1cd5fc277c414b930d44b4719d1aa02cb9228461f5ea492a5797b
-Size (pylint-3.3.9.tar.gz) = 1525946 bytes
+BLAKE2s (pylint-4.0.1.tar.gz) = f31f58d1bbe7a257551f8b5271f44bdbf51cc4f04fb3ef1581216191a03bc42b
+SHA512 (pylint-4.0.1.tar.gz) = 326b81abe64623584d1e8bb480fca98eb861e1cbd7422a22322a42bb76e5d415f05c3ca14b22702764d7e520636ffd8494c4a9741139c75210ad8fc2c80799a1
+Size (pylint-4.0.1.tar.gz) = 1568430 bytes



Home | Main Index | Thread Index | Old Index