Received: by mail.netbsd.org (Postfix, from userid 605) id 3D10584DB9; Sat, 19 Oct 2019 14:29:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B880684D6F for ; Sat, 19 Oct 2019 14:29:46 +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 9POuWz57L2l5 for ; Sat, 19 Oct 2019 14:29:46 +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 2A86D84CEA for ; Sat, 19 Oct 2019 14:29:46 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 19A0EFBF4; Sat, 19 Oct 2019 14:29:46 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1571495386286090" MIME-Version: 1.0 Date: Sat, 19 Oct 2019 14:29:46 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-pyrsistent To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20191019142946.19A0EFBF4@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. --_----------=_1571495386286090 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sat Oct 19 14:29:46 UTC 2019 Modified Files: pkgsrc/devel/py-pyrsistent: Makefile distinfo Log Message: py-pyrsistent: updated to 0.15.4 0.15.4: * Fix a GC traversal bug in pvector evolver C extension. * Fix pytest 5 compatibility, this is a quick fix, some more work is needed to get coverage working etc. 0.15.3: * Fix catch all exceptions during extension build to reduce chance of corner cases that prevents installation. * Fix in PVector equality comparison don's assume that other object has a length, check before calling len. * Fix write warning about failing build of C extension directly to stderr to avoid that pip silences it. * Fix update PMapEvolver type stub to better reflect implementation. 0.15.2: * Propagate 'ignore_extra' param in hierarchy. * Fix thaw typing. * Fix not possible to insert empty pmap as leaf node with transform. 0.15.1: * Fix installation broken on Python 2. 0.15.0: * Python 3.4 is no longer officially supported since it is EOL since 2019-03-18. * Fix major improvements to type hints. * Fix installation fails on some Windows platforms because fallback to Python pvector does not work. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-pyrsistent/Makefile \ pkgsrc/devel/py-pyrsistent/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1571495386286090 Content-Disposition: inline Content-Length: 1724 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-pyrsistent/Makefile diff -u pkgsrc/devel/py-pyrsistent/Makefile:1.1 pkgsrc/devel/py-pyrsistent/Makefile:1.2 --- pkgsrc/devel/py-pyrsistent/Makefile:1.1 Sat Mar 2 14:27:15 2019 +++ pkgsrc/devel/py-pyrsistent/Makefile Sat Oct 19 14:29:45 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.1 2019/03/02 14:27:15 adam Exp $ +# $NetBSD: Makefile,v 1.2 2019/10/19 14:29:45 adam Exp $ -DISTNAME= pyrsistent-0.14.11 +DISTNAME= pyrsistent-0.15.4 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=p/pyrsistent/} Index: pkgsrc/devel/py-pyrsistent/distinfo diff -u pkgsrc/devel/py-pyrsistent/distinfo:1.1 pkgsrc/devel/py-pyrsistent/distinfo:1.2 --- pkgsrc/devel/py-pyrsistent/distinfo:1.1 Sat Mar 2 14:27:15 2019 +++ pkgsrc/devel/py-pyrsistent/distinfo Sat Oct 19 14:29:45 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.1 2019/03/02 14:27:15 adam Exp $ +$NetBSD: distinfo,v 1.2 2019/10/19 14:29:45 adam Exp $ -SHA1 (pyrsistent-0.14.11.tar.gz) = fa47c423d7245ec2473a0ec6efcc0811020b875b -RMD160 (pyrsistent-0.14.11.tar.gz) = 9e665cfbb6fd3c996771669a9fcb51e7c86c7e88 -SHA512 (pyrsistent-0.14.11.tar.gz) = c9dbf01a96d93eb7608f37febe2a51cb243fcee4d1dfc8821e74b576969ee7ca7097af85373b3eb58804715a2f4ab10ed92b42b1169580ad3e4ba9fb4739d3bb -Size (pyrsistent-0.14.11.tar.gz) = 104498 bytes +SHA1 (pyrsistent-0.15.4.tar.gz) = 12855cfc5c23d5e4eb7a43c98c591398464a95dd +RMD160 (pyrsistent-0.15.4.tar.gz) = 14fe3f3021c98b6ac1787a407f99b3c3dfdb588c +SHA512 (pyrsistent-0.15.4.tar.gz) = a88cf1c8422919707f47ab3933841407075f1ea03d62dceb3f10433ff9514dc55b463720b83c53961a322dbd66074392295ef44ef9e831c9f1b527b4f18032a2 +Size (pyrsistent-0.15.4.tar.gz) = 107237 bytes --_----------=_1571495386286090--