Received: by mail.netbsd.org (Postfix, from userid 605) id AA00384E75; Sat, 2 Jul 2022 09:39:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E29FA84DBF for ; Sat, 2 Jul 2022 09:39:32 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id AtUbHlqlwgSE for ; Sat, 2 Jul 2022 09:39:32 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 57FB484CFE for ; Sat, 2 Jul 2022 09:39:32 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 47FFAFB1A; Sat, 2 Jul 2022 09:39:32 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1656754772151870" MIME-Version: 1.0 Date: Sat, 2 Jul 2022 09:39:32 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-pylint To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20220702093932.47FFAFB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1656754772151870 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sat Jul 2 09:39:32 UTC 2022 Modified Files: pkgsrc/devel/py-pylint: Makefile distinfo Log Message: py-pylint: updated to 2.14.4 v2.14.4 The differing-param-doc check was triggered by positional only arguments. Fixed an issue where scanning . directory recursively with --ignore-path=^path/to/dir is not ignoring the path/to/dir directory. Fixed regression that didn't allow quoted init-hooks in option files. Fixed a false positive for modified-iterating-dict when updating an existing key. Fixed an issue where many-core Windows machines (>~60 logical processors) would hang when using the default jobs count. Fixed an issue with the recognition of setup.cfg files. Only .cfg files that are exactly named setup.cfg require section names that start with pylint.. Don't report import-private-name for relative imports. To generate a diff of this commit: cvs rdiff -u -r1.64 -r1.65 pkgsrc/devel/py-pylint/Makefile cvs rdiff -u -r1.54 -r1.55 pkgsrc/devel/py-pylint/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1656754772151870 Content-Disposition: inline Content-Length: 1552 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-pylint/Makefile diff -u pkgsrc/devel/py-pylint/Makefile:1.64 pkgsrc/devel/py-pylint/Makefile:1.65 --- pkgsrc/devel/py-pylint/Makefile:1.64 Wed Jun 15 11:43:05 2022 +++ pkgsrc/devel/py-pylint/Makefile Sat Jul 2 09:39:32 2022 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.64 2022/06/15 11:43:05 adam Exp $ +# $NetBSD: Makefile,v 1.65 2022/07/02 09:39:32 adam Exp $ -DISTNAME= pylint-2.14.2 +DISTNAME= pylint-2.14.4 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=p/pylint/} Index: pkgsrc/devel/py-pylint/distinfo diff -u pkgsrc/devel/py-pylint/distinfo:1.54 pkgsrc/devel/py-pylint/distinfo:1.55 --- pkgsrc/devel/py-pylint/distinfo:1.54 Wed Jun 15 11:43:05 2022 +++ pkgsrc/devel/py-pylint/distinfo Sat Jul 2 09:39:32 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.54 2022/06/15 11:43:05 adam Exp $ +$NetBSD: distinfo,v 1.55 2022/07/02 09:39:32 adam Exp $ -BLAKE2s (pylint-2.14.2.tar.gz) = 0c6a913119fa4dd11fa334655288df77d36cb38ec86c22fd7056378404a17861 -SHA512 (pylint-2.14.2.tar.gz) = 6387a2f15126486632fa87823a336f90834fc79369f67099ee25f3240b243d03e31b9c3b0edc7743f13e244cb8712335e831b24abd9ca41f6de971c3d871e1fb -Size (pylint-2.14.2.tar.gz) = 393651 bytes +BLAKE2s (pylint-2.14.4.tar.gz) = b266c21c6a682d425cf64de27213ba761c50d0ee202e75fdc68c5086da1a5c67 +SHA512 (pylint-2.14.4.tar.gz) = 44d1c76571a8ed7716a7737908df1642d939716f5a8cf321e3b329880487352f8a874d71ebb87a7406c10f328c9fda00c4b417740e3b6ca93bff161b59e1f6d0 +Size (pylint-2.14.4.tar.gz) = 394082 bytes --_----------=_1656754772151870--