Received: by mail.netbsd.org (Postfix, from userid 605) id 562C784D78; Thu, 23 Apr 2020 08:44:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D33B984D4E for ; Thu, 23 Apr 2020 08:44:26 +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 H2Nl54mtsUH2 for ; Thu, 23 Apr 2020 08:44:26 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 5CC6184D37 for ; Thu, 23 Apr 2020 08:44:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5643EFB27; Thu, 23 Apr 2020 08:44:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1587631466264650" MIME-Version: 1.0 Date: Thu, 23 Apr 2020 08:44:26 +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: <20200423084426.5643EFB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1587631466264650 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Apr 23 08:44:26 UTC 2020 Modified Files: pkgsrc/devel/py-astroid: distinfo Added Files: pkgsrc/devel/py-astroid/patches: patch-astroid_____pkginfo____.py Log Message: py-astroid: relax wrapt version requirement To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 pkgsrc/devel/py-astroid/distinfo cvs rdiff -u -r0 -r1.3 \ pkgsrc/devel/py-astroid/patches/patch-astroid_____pkginfo____.py Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1587631466264650 Content-Disposition: inline Content-Length: 1677 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-astroid/distinfo diff -u pkgsrc/devel/py-astroid/distinfo:1.25 pkgsrc/devel/py-astroid/distinfo:1.26 --- pkgsrc/devel/py-astroid/distinfo:1.25 Thu Nov 7 10:56:42 2019 +++ pkgsrc/devel/py-astroid/distinfo Thu Apr 23 08:44:26 2020 @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.25 2019/11/07 10:56:42 adam Exp $ +$NetBSD: distinfo,v 1.26 2020/04/23 08:44:26 adam Exp $ SHA1 (astroid-2.3.3.tar.gz) = d53a00c984beb22679a7f10bc02310a1ce24a9f9 RMD160 (astroid-2.3.3.tar.gz) = 180dfda90675ead4026b7cd2f47f2ba2ecb7aee9 SHA512 (astroid-2.3.3.tar.gz) = 72011f3eb312ea7ce7dd55f7615972f6bfc152d8f16f9052b405f44fe17e594d5da22e0502b4c3034881b9783be9e808509d4ded3d679182ddf6d34eb90748f1 Size (astroid-2.3.3.tar.gz) = 297350 bytes +SHA1 (patch-astroid_____pkginfo____.py) = a173438f76081d66dd4c65cf42740dbd97f59854 Added files: Index: pkgsrc/devel/py-astroid/patches/patch-astroid_____pkginfo____.py diff -u /dev/null pkgsrc/devel/py-astroid/patches/patch-astroid_____pkginfo____.py:1.3 --- /dev/null Thu Apr 23 08:44:26 2020 +++ pkgsrc/devel/py-astroid/patches/patch-astroid_____pkginfo____.py Thu Apr 23 08:44:26 2020 @@ -0,0 +1,16 @@ +$NetBSD: patch-astroid_____pkginfo____.py,v 1.3 2020/04/23 08:44:26 adam Exp $ + +Relax wrapt version requirement. +https://github.com/PyCQA/astroid/issues/768 + +--- astroid/__pkginfo__.py.orig 2020-04-23 08:41:06.000000000 +0000 ++++ astroid/__pkginfo__.py +@@ -24,7 +24,7 @@ extras_require = {} + install_requires = [ + "lazy_object_proxy==1.4.*", + "six~=1.12", +- "wrapt==1.11.*", ++ "wrapt>=1.11", + 'typed-ast>=1.4.0,<1.5;implementation_name== "cpython" and python_version<"3.8"', + ] + --_----------=_1587631466264650--