Received: by mail.netbsd.org (Postfix, from userid 605) id 6E04884D0F; Thu, 22 Jul 2021 08:40:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A8CE284CE8 for ; Thu, 22 Jul 2021 08:40:57 +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 XZxoAaPOxQaL for ; Thu, 22 Jul 2021 08:40:57 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 194AA84C13 for ; Thu, 22 Jul 2021 08:40:57 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1228AFA95; Thu, 22 Jul 2021 08:40:57 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1626943257213660" MIME-Version: 1.0 Date: Thu, 22 Jul 2021 08:40:57 +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: <20210722084057.1228AFA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1626943257213660 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Jul 22 08:40:56 UTC 2021 Modified Files: pkgsrc/devel/py-astroid: Makefile distinfo Log Message: py-astroid: updated to 2.6.5 What's New in astroid 2.6.5? ============================ * Fix a crash when there would be a 'TypeError object does not support item assignment' in the code we parse. * Fix a crash when a AttributeInferenceError was raised when failing to find the real name in infer_import_from. What's New in astroid 2.6.4? ============================ * Fix a crash when a StopIteration was raised when inferring a faulty function in a context manager. What's New in astroid 2.6.3? ============================ * Added ``If.is_sys_guard`` and ``If.is_typing_guard`` helper methods * Fix a bad inferenece type for yield values inside of a derived class. * Fix a crash when the node is a 'Module' in the brain builtin inference * Fix issues when inferring match variables * Fix lookup for nested non-function scopes * Fix issue that ``TypedDict`` instance wasn't callable. * Add dependency on setuptools and a guard to prevent related exceptions. To generate a diff of this commit: cvs rdiff -u -r1.45 -r1.46 pkgsrc/devel/py-astroid/Makefile cvs rdiff -u -r1.37 -r1.38 pkgsrc/devel/py-astroid/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1626943257213660 Content-Disposition: inline Content-Length: 1657 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.45 pkgsrc/devel/py-astroid/Makefile:1.46 --- pkgsrc/devel/py-astroid/Makefile:1.45 Thu Jul 1 21:01:20 2021 +++ pkgsrc/devel/py-astroid/Makefile Thu Jul 22 08:40:56 2021 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.45 2021/07/01 21:01:20 adam Exp $ +# $NetBSD: Makefile,v 1.46 2021/07/22 08:40:56 adam Exp $ -DISTNAME= astroid-2.6.2 +DISTNAME= astroid-2.6.5 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=a/astroid/} Index: pkgsrc/devel/py-astroid/distinfo diff -u pkgsrc/devel/py-astroid/distinfo:1.37 pkgsrc/devel/py-astroid/distinfo:1.38 --- pkgsrc/devel/py-astroid/distinfo:1.37 Thu Jul 1 21:01:20 2021 +++ pkgsrc/devel/py-astroid/distinfo Thu Jul 22 08:40:56 2021 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.37 2021/07/01 21:01:20 adam Exp $ +$NetBSD: distinfo,v 1.38 2021/07/22 08:40:56 adam Exp $ -SHA1 (astroid-2.6.2.tar.gz) = af43a529be3ebb28f51e5f4d66e9e49e4ef2c59f -RMD160 (astroid-2.6.2.tar.gz) = f9a12871c8db54e490a94c4cebae938103041c5f -SHA512 (astroid-2.6.2.tar.gz) = 8cde7beb2a511dad9e5f5fbdd4d60584efb1c016b1c3e5085725a6880754ab952fe65a24c79a958d68d957bc1a4905d044839771d32e1e06d2dab4fea76c65a8 -Size (astroid-2.6.2.tar.gz) = 187749 bytes +SHA1 (astroid-2.6.5.tar.gz) = 570d2f3e7ced2255e61ee9618fe28c6f53f49e4a +RMD160 (astroid-2.6.5.tar.gz) = d9f7ce129f3411987743e77a0ac9e086787cc861 +SHA512 (astroid-2.6.5.tar.gz) = 0f2096f2a823c748f229c2c7b55194c50e41442c0b13659696b320f768c99702e02524ee150127369cf321d3e595bd9389689cf3847a4948cb1284fea3786852 +Size (astroid-2.6.5.tar.gz) = 189482 bytes --_----------=_1626943257213660--