Received: by mail.netbsd.org (Postfix, from userid 605) id 12F2584EFA; Sun, 20 Nov 2022 17:51:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 451B284EF7 for ; Sun, 20 Nov 2022 17:50:59 +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 F8FbL3J2WWBa for ; Sun, 20 Nov 2022 17:50:58 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id ADC0584D8B for ; Sun, 20 Nov 2022 17:50:58 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EE42BFA90; Sun, 20 Nov 2022 17:50:20 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1668966620129410" MIME-Version: 1.0 Date: Sun, 20 Nov 2022 17:50:20 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-astroid To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20221120175020.EE42BFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1668966620129410 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Nov 20 17:50:20 UTC 2022 Modified Files: pkgsrc/devel/py-astroid: Makefile distinfo Log Message: py-astroid: updated to 2.12.13 What's New in astroid 2.12.13? ============================== * Prevent returning an empty list for ``ClassDef.slots()`` when the mro list contains one class & it is not ``object``. * Prevent a crash when inferring calls to ``str.format`` with inferred arguments that would be invalid. * Infer the `length` argument of the ``random.sample`` function. * Catch ``ValueError`` when indexing some builtin containers and sequences during inference. To generate a diff of this commit: cvs rdiff -u -r1.68 -r1.69 pkgsrc/devel/py-astroid/Makefile cvs rdiff -u -r1.60 -r1.61 pkgsrc/devel/py-astroid/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1668966620129410 Content-Disposition: inline Content-Length: 1904 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-astroid/Makefile diff -u pkgsrc/devel/py-astroid/Makefile:1.68 pkgsrc/devel/py-astroid/Makefile:1.69 --- pkgsrc/devel/py-astroid/Makefile:1.68 Tue Nov 8 09:07:10 2022 +++ pkgsrc/devel/py-astroid/Makefile Sun Nov 20 17:50:20 2022 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.68 2022/11/08 09:07:10 adam Exp $ +# $NetBSD: Makefile,v 1.69 2022/11/20 17:50:20 adam Exp $ -DISTNAME= astroid-2.12.12 +DISTNAME= astroid-2.12.13 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=a/astroid/} @@ -11,7 +11,7 @@ COMMENT= Rebuild a new abstract syntax t LICENSE= gnu-lgpl-v2.1 DEPENDS+= ${PYPKGPREFIX}-lazy-object-proxy>=1.4.0:../../devel/py-lazy-object-proxy -DEPENDS+= ${PYPKGPREFIX}-wrapt>=1.11:../../devel/py-wrapt +DEPENDS+= ${PYPKGPREFIX}-wrapt>=1.14:../../devel/py-wrapt PYTHON_VERSIONS_INCOMPATIBLE= 27 Index: pkgsrc/devel/py-astroid/distinfo diff -u pkgsrc/devel/py-astroid/distinfo:1.60 pkgsrc/devel/py-astroid/distinfo:1.61 --- pkgsrc/devel/py-astroid/distinfo:1.60 Tue Oct 25 09:27:33 2022 +++ pkgsrc/devel/py-astroid/distinfo Sun Nov 20 17:50:20 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.60 2022/10/25 09:27:33 adam Exp $ +$NetBSD: distinfo,v 1.61 2022/11/20 17:50:20 adam Exp $ -BLAKE2s (astroid-2.12.12.tar.gz) = dc11c2103639c70565547df03616a592befc6f1b2f79f4a46570c82325cb35e1 -SHA512 (astroid-2.12.12.tar.gz) = 26b9e6241fb80274ed4ce5059d58e94ba43ca93a24744a439dadea8baab16ce45d2dfa86766811dd379a22beba90bd54fd06d21da90d0ea6e8fc717d7ec8a20c -Size (astroid-2.12.12.tar.gz) = 217342 bytes +BLAKE2s (astroid-2.12.13.tar.gz) = dbc46405e56bb47d7310c74706c9fd379e16b172fb79b951f3dff8fbf75bf7c8 +SHA512 (astroid-2.12.13.tar.gz) = 7b5ca76c3f4cfb691d2cdfc4e2801c2b33ffeb59284e1d9ab759a634ad6eb4fd613b56c9b57af71c0da62112c1cf4e6a0d15f8d9f834315844b29989c4274d0b +Size (astroid-2.12.13.tar.gz) = 217439 bytes --_----------=_1668966620129410--