Received: by mail.netbsd.org (Postfix, from userid 605) id 2C05084E6C; Thu, 7 Jun 2018 06:35:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C588B84E08 for ; Thu, 7 Jun 2018 06:33:55 +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 WtUp6JQ1Wy9b for ; Thu, 7 Jun 2018 06:33:55 +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 1476184CFB for ; Thu, 7 Jun 2018 06:33:55 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 04EF8FBEC; Thu, 7 Jun 2018 06:33:55 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1528353234273040" MIME-Version: 1.0 Date: Thu, 7 Jun 2018 06:33:54 +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: <20180607063355.04EF8FBEC@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. --_----------=_1528353234273040 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Jun 7 06:33:54 UTC 2018 Modified Files: pkgsrc/devel/py-astroid: Makefile distinfo Log Message: py-astroid: updated to 1.6.5 1.6.5 * Don't propagate Uninferable objects when inferring BinOps * Protect against passing lookup_class to non-class proxied objects In some cases the _proxied object points to another Instance, not to the Class of an Instance node (usually this happens with enum and with our hardcoded inference support for this library). Instead of getting a TypeError, we check before if the _proxied matches what we expect. To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 pkgsrc/devel/py-astroid/Makefile cvs rdiff -u -r1.10 -r1.11 pkgsrc/devel/py-astroid/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1528353234273040 Content-Disposition: inline Content-Length: 1880 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.16 pkgsrc/devel/py-astroid/Makefile:1.17 --- pkgsrc/devel/py-astroid/Makefile:1.16 Wed May 16 06:54:20 2018 +++ pkgsrc/devel/py-astroid/Makefile Thu Jun 7 06:33:54 2018 @@ -1,12 +1,12 @@ -# $NetBSD: Makefile,v 1.16 2018/05/16 06:54:20 adam Exp $ +# $NetBSD: Makefile,v 1.17 2018/06/07 06:33:54 adam Exp $ -DISTNAME= astroid-1.6.4 +DISTNAME= astroid-1.6.5 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=a/astroid/} MAINTAINER= kamel.derouiche@gmail.com -HOMEPAGE= https://bitbucket.org/logilab/astroid +HOMEPAGE= https://github.com/pycqa/astroid COMMENT= Rebuild a new abstract syntax tree from Python's ast LICENSE= gnu-lgpl-v3 Index: pkgsrc/devel/py-astroid/distinfo diff -u pkgsrc/devel/py-astroid/distinfo:1.10 pkgsrc/devel/py-astroid/distinfo:1.11 --- pkgsrc/devel/py-astroid/distinfo:1.10 Wed May 16 06:54:20 2018 +++ pkgsrc/devel/py-astroid/distinfo Thu Jun 7 06:33:54 2018 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.10 2018/05/16 06:54:20 adam Exp $ +$NetBSD: distinfo,v 1.11 2018/06/07 06:33:54 adam Exp $ -SHA1 (astroid-1.6.4.tar.gz) = 0493d2d12532ed4394e8b26bd7065d9e30b680c4 -RMD160 (astroid-1.6.4.tar.gz) = 79293da77ac9a780b7be53ed8a995def16786666 -SHA512 (astroid-1.6.4.tar.gz) = 5dd66c5b6829743d2ccfc5d70b769ade8d65b1eb29bf0344c64981d1a7bfadff7c6ae0b42754400663274ac06893a9a1896dd29b559e2c40f248365680a07991 -Size (astroid-1.6.4.tar.gz) = 260039 bytes +SHA1 (astroid-1.6.5.tar.gz) = c99c76daa0b7e3fa633ddd4315ca999689f2fa02 +RMD160 (astroid-1.6.5.tar.gz) = bba1d1e3582e557ecbe6a56ca83adef5b1d80506 +SHA512 (astroid-1.6.5.tar.gz) = f51f275c9f04809c8993d187cb62fadc84003ddc954d371356474dbe6b719868406fd9188c560f5b658b8b44bb6a4d3ee0785e809e789ca117e2bcbdb58aec53 +Size (astroid-1.6.5.tar.gz) = 255688 bytes --_----------=_1528353234273040--