Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 91CE284ECE for ; Thu, 28 Sep 2023 15:55:47 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id iiBPBy1xNV4F for ; Thu, 28 Sep 2023 15:55:47 +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 EF2CB84D25 for ; Thu, 28 Sep 2023 15:55:46 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E309EFBDB; Thu, 28 Sep 2023 15:55:46 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_169591654646580" MIME-Version: 1.0 Date: Thu, 28 Sep 2023 15:55:46 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-astroid To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230928155546.E309EFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_169591654646580 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Sep 28 15:55:46 UTC 2023 Modified Files: pkgsrc/devel/py-astroid: Makefile distinfo Log Message: py-astroid: updated to 2.15.8 v2.15.8 Fix a regression in 2.15.7 for unsubscriptable-object. v2.15.7 Fix a crash when inferring a typing.TypeVar call. Infer user-defined enum classes by checking if the class is a subtype of enum.Enum. Fix inference of functions with @functools.lru_cache decorators without parentheses. Make sys.argv uninferable because it never is. (It's impossible to infer the value it will have outside of static analysis where it's our own value.)v2.15.7 Fix a crash when inferring a typing.TypeVar call. Infer user-defined enum classes by checking if the class is a subtype of enum.Enum. Fix inference of functions with @functools.lru_cache decorators without parentheses. Make sys.argv uninferable because it never is. (It's impossible to infer the value it will have outside of static analysis where it's our own value.) To generate a diff of this commit: cvs rdiff -u -r1.79 -r1.80 pkgsrc/devel/py-astroid/Makefile cvs rdiff -u -r1.70 -r1.71 pkgsrc/devel/py-astroid/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_169591654646580 Content-Disposition: inline Content-Length: 1571 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.79 pkgsrc/devel/py-astroid/Makefile:1.80 --- pkgsrc/devel/py-astroid/Makefile:1.79 Mon Jul 10 03:41:20 2023 +++ pkgsrc/devel/py-astroid/Makefile Thu Sep 28 15:55:46 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.79 2023/07/10 03:41:20 adam Exp $ +# $NetBSD: Makefile,v 1.80 2023/09/28 15:55:46 adam Exp $ -DISTNAME= astroid-2.15.6 +DISTNAME= astroid-2.15.8 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.70 pkgsrc/devel/py-astroid/distinfo:1.71 --- pkgsrc/devel/py-astroid/distinfo:1.70 Mon Jul 10 03:41:20 2023 +++ pkgsrc/devel/py-astroid/distinfo Thu Sep 28 15:55:46 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.70 2023/07/10 03:41:20 adam Exp $ +$NetBSD: distinfo,v 1.71 2023/09/28 15:55:46 adam Exp $ -BLAKE2s (astroid-2.15.6.tar.gz) = 8971aa41f6a4295c8f15766ab1c67a93e3026807524be8fb14a6dac836aa951d -SHA512 (astroid-2.15.6.tar.gz) = 777c17ad38600e7dd14aade8d379d38d977b5675cb4156e10cdcaf723f9979ab7e304425d1810ca5046c17ae2bfdbced40cd042a598cdae45f17d6871d58121d -Size (astroid-2.15.6.tar.gz) = 344027 bytes +BLAKE2s (astroid-2.15.8.tar.gz) = 153bca76cfcbe271be02628b0927b92d02d117552ea1155ef044dbcea6271093 +SHA512 (astroid-2.15.8.tar.gz) = 8c3f946c8998bc2cd87a5fc60beb323ae40331164972d6b7ca459e1d63859d4e9c4f773832d3dc4d532eb9ee7fc791e307fad44babc8c75cdb89c7cb1720e72b +Size (astroid-2.15.8.tar.gz) = 344362 bytes --_----------=_169591654646580--