Received: by mail.netbsd.org (Postfix, from userid 605) id 4084D84D74; Wed, 13 Nov 2019 20:56:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BC91884CE9 for ; Wed, 13 Nov 2019 20:56:09 +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 fHLtggCO9m-H for ; Wed, 13 Nov 2019 20:56:09 +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 2990B84C85 for ; Wed, 13 Nov 2019 20:56:09 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1D286FA95; Wed, 13 Nov 2019 20:56:09 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_157367856935220" MIME-Version: 1.0 Date: Wed, 13 Nov 2019 20:56:09 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/math/py-tables To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20191113205609.1D286FA95@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. --_----------=_157367856935220 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Nov 13 20:56:09 UTC 2019 Modified Files: pkgsrc/math/py-tables: Makefile PLIST distinfo Log Message: py-tables: updated to 3.6.1 Changes from 3.6.0 to 3.6.1 Maintenance release to fix packaging issues. No new features or bugfixes. Changes from 3.5.3 to 3.6.0 PyTables 3.6 no longer supports Python 2.7. Improvements - Full python 3.8 support. - On Windows PyTables wheels on PyPI are linked to `pytables_hdf5.dll` instead of `hdf5.dll` to prevent collisions with other packages/wheels that also vendor `hdf5.dll`. This should prevent problems that arise when a different version of a dll is imported that the version to which the program was linked to. This problem is known as "DLL Hell". With the renaming of the HDF5 DLL to `pytables_hdf5.dll` these problems should be solved. Bugfixes - Bugfix for HDF5 files/types with padding. For details see :issue:`734`. - More fixes for python 3.8 compatibility: Replace deprecated time.clock with time.perf_counter - Improvements in tests as well as clean up from dropping Python 2.7 support. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/math/py-tables/Makefile \ pkgsrc/math/py-tables/distinfo cvs rdiff -u -r1.2 -r1.3 pkgsrc/math/py-tables/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_157367856935220 Content-Disposition: inline Content-Length: 2882 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/py-tables/Makefile diff -u pkgsrc/math/py-tables/Makefile:1.3 pkgsrc/math/py-tables/Makefile:1.4 --- pkgsrc/math/py-tables/Makefile:1.3 Fri Jun 14 15:13:35 2019 +++ pkgsrc/math/py-tables/Makefile Wed Nov 13 20:56:08 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.3 2019/06/14 15:13:35 adam Exp $ +# $NetBSD: Makefile,v 1.4 2019/11/13 20:56:08 adam Exp $ -DISTNAME= tables-3.5.2 +DISTNAME= tables-3.6.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= math python MASTER_SITES= ${MASTER_SITE_PYPI:=t/tables/} Index: pkgsrc/math/py-tables/distinfo diff -u pkgsrc/math/py-tables/distinfo:1.3 pkgsrc/math/py-tables/distinfo:1.4 --- pkgsrc/math/py-tables/distinfo:1.3 Fri Jun 14 15:13:35 2019 +++ pkgsrc/math/py-tables/distinfo Wed Nov 13 20:56:08 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2019/06/14 15:13:35 adam Exp $ +$NetBSD: distinfo,v 1.4 2019/11/13 20:56:08 adam Exp $ -SHA1 (tables-3.5.2.tar.gz) = 293ae14497e50be2de9fcfa7250527395c613647 -RMD160 (tables-3.5.2.tar.gz) = 9e5aa9f3b270888c853eb5f30cd6461a362bb1c1 -SHA512 (tables-3.5.2.tar.gz) = 00b411d9d5b2e2793346709d0f702b8cdc5e117afd35be09c7f6739357fe621a6e1adcb1dcda5497a459b35b675d6c3d6a0c930f463ff6b921b7fcc35a79b3d9 -Size (tables-3.5.2.tar.gz) = 7825372 bytes +SHA1 (tables-3.6.1.tar.gz) = 3f093c3dd5be7ec2aaa1263fa0957f5d67c48e52 +RMD160 (tables-3.6.1.tar.gz) = 05833282f4c44e48f6f39afada9cb2684aa3249a +SHA512 (tables-3.6.1.tar.gz) = 7f018b70251095049bce9075be4e19f72efba9d39121a35c4521f634b1dd5b81ab6de47df3bb44ad6b8b2dbdbff4e6d0985ad1a7b2f13b44f920c0935e5830ff +Size (tables-3.6.1.tar.gz) = 4641089 bytes Index: pkgsrc/math/py-tables/PLIST diff -u pkgsrc/math/py-tables/PLIST:1.2 pkgsrc/math/py-tables/PLIST:1.3 --- pkgsrc/math/py-tables/PLIST:1.2 Wed Mar 20 16:08:06 2019 +++ pkgsrc/math/py-tables/PLIST Wed Nov 13 20:56:08 2019 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2019/03/20 16:08:06 adam Exp $ +@comment $NetBSD: PLIST,v 1.3 2019/11/13 20:56:08 adam Exp $ bin/pt2to3-${PYVERSSUFFIX} bin/ptdump-${PYVERSSUFFIX} bin/ptrepack-${PYVERSSUFFIX} @@ -162,6 +162,7 @@ ${PYSITELIB}/tables/tests/indexes_2_0.h5 ${PYSITELIB}/tables/tests/indexes_2_1.h5 ${PYSITELIB}/tables/tests/issue_368.h5 ${PYSITELIB}/tables/tests/issue_560.h5 +${PYSITELIB}/tables/tests/itemsize.h5 ${PYSITELIB}/tables/tests/matlab_file.mat ${PYSITELIB}/tables/tests/nested-type-with-gaps.h5 ${PYSITELIB}/tables/tests/non-chunked-table.h5 @@ -248,6 +249,9 @@ ${PYSITELIB}/tables/tests/test_queries.p ${PYSITELIB}/tables/tests/test_queries.pyo ${PYSITELIB}/tables/tests/test_ref_array1.mat ${PYSITELIB}/tables/tests/test_ref_array2.mat +${PYSITELIB}/tables/tests/test_suite.py +${PYSITELIB}/tables/tests/test_suite.pyc +${PYSITELIB}/tables/tests/test_suite.pyo ${PYSITELIB}/tables/tests/test_szip.h5 ${PYSITELIB}/tables/tests/test_tables.py ${PYSITELIB}/tables/tests/test_tables.pyc --_----------=_157367856935220--