Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=ZwSAcNIg; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=qyA8OzUf Received: by mail.netbsd.org (Postfix, from userid 605) id 2D72D84E5D; Tue, 14 May 2024 13:12:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715692346; bh=A662Yqpf8UQixRfKb4dDedbOOCF4Nw9W6n1oo93fCcI=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=ZwSAcNIg7lRBkbcCi6lEpIJqBVSacENO6zIj+lvPRXA+bFuMt5mhaKUK5q+he3iwo IqKVvDZ5JAwRh4Y0EL+oP0Vh0mYK4LA/DOC6B56V8rpwCTQ8qmx6AxnCH5bjU6BNSN L/9gYtq295KICmrIs4QZUYXiiNTiE2m0rqtzRojI= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1E55684D5E for ; Tue, 14 May 2024 13:12:25 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=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 0C8kwDC2iATI for ; Tue, 14 May 2024 13:12:24 +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 780C384CC9 for ; Tue, 14 May 2024 13:12:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715692344; bh=A662Yqpf8UQixRfKb4dDedbOOCF4Nw9W6n1oo93fCcI=; h=Date:From:Subject:To:Reply-To; b=qyA8OzUfInGa5s56g9QnRe6RsNm3TtFxJf6tcBLx7e+got5hEcz5Sc+V7Grsb6u33 LHhopp33e9wQ03oT+eY8UNRLDE/6g+54Hj+RlOFyGI6Hrbi+JI26iRQJk/zcpDk6N/ cY0pyTeUn3i0hvRDubDR17g2zVElmadqNrEXFSZ0= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6A715FA2C; Tue, 14 May 2024 13:12:24 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_171569234413520" MIME-Version: 1.0 Date: Tue, 14 May 2024 13:12:24 +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: <20240514131224.6A715FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_171569234413520 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue May 14 13:12:24 UTC 2024 Modified Files: pkgsrc/devel/py-pylint: Makefile distinfo Log Message: py-pylint: updated to 3.1.1 What's new in Pylint 3.1.1? False Positives Fixed - Treat `attrs.define` and `attrs.frozen` as dataclass decorators in `too-few-public-methods` check. - Fix a false positive with ``singledispatchmethod-function`` when a method is decorated with both ``functools.singledispatchmethod`` and ``staticmethod``. - Fix a false positive for ``consider-using-dict-items`` when iterating using ``keys()`` and then deleting an item using the key as a lookup. To generate a diff of this commit: cvs rdiff -u -r1.93 -r1.94 pkgsrc/devel/py-pylint/Makefile cvs rdiff -u -r1.80 -r1.81 pkgsrc/devel/py-pylint/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_171569234413520 Content-Disposition: inline Content-Length: 2033 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.93 pkgsrc/devel/py-pylint/Makefile:1.94 --- pkgsrc/devel/py-pylint/Makefile:1.93 Sun Mar 3 11:54:21 2024 +++ pkgsrc/devel/py-pylint/Makefile Tue May 14 13:12:24 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.93 2024/03/03 11:54:21 wiz Exp $ +# $NetBSD: Makefile,v 1.94 2024/05/14 13:12:24 adam Exp $ -DISTNAME= pylint-3.1.0 +DISTNAME= pylint-3.1.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=p/pylint/} @@ -12,7 +12,7 @@ LICENSE= gnu-gpl-v2 TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=66.1:../../devel/py-setuptools TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel>=0.37.1:../../devel/py-wheel -DEPENDS+= ${PYPKGPREFIX}-astroid>=3.0.1:../../devel/py-astroid +DEPENDS+= ${PYPKGPREFIX}-astroid>=3.1.0:../../devel/py-astroid DEPENDS+= ${PYPKGPREFIX}-dill>=0.3.7:../../textproc/py-dill DEPENDS+= ${PYPKGPREFIX}-isort>=4.2.5:../../devel/py-isort DEPENDS+= ${PYPKGPREFIX}-mccabe>=0.6:../../devel/py-mccabe Index: pkgsrc/devel/py-pylint/distinfo diff -u pkgsrc/devel/py-pylint/distinfo:1.80 pkgsrc/devel/py-pylint/distinfo:1.81 --- pkgsrc/devel/py-pylint/distinfo:1.80 Sun Mar 3 11:54:21 2024 +++ pkgsrc/devel/py-pylint/distinfo Tue May 14 13:12:24 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.80 2024/03/03 11:54:21 wiz Exp $ +$NetBSD: distinfo,v 1.81 2024/05/14 13:12:24 adam Exp $ -BLAKE2s (pylint-3.1.0.tar.gz) = 9a0448a1552c796de6fd39cc5405d1139d46afc83adb448b205f6adf76741f25 -SHA512 (pylint-3.1.0.tar.gz) = 23d72ad32c3a41be3978085d370c997ab5d2feacbd2923ddb4c1216b05a2a3ff1dae362ca8bcfef6159d284dcd16fd3226bfe71d7780e773d00e09d4bc16a8ec -Size (pylint-3.1.0.tar.gz) = 1494465 bytes +BLAKE2s (pylint-3.1.1.tar.gz) = d0195e3722d7dd30358add5283b81954f5b038f4e0b0428d0fac7ad2342833dc +SHA512 (pylint-3.1.1.tar.gz) = 96e36a4a5794a6e36cc47790700acbab7820f1483feefeb7629454e3ea3a2c5c3cf6e8cc9b82525f05e51926b0547f84f9189fc346a32d46723331bb3cbc928a +Size (pylint-3.1.1.tar.gz) = 1495262 bytes --_----------=_171569234413520--