Received: by mail.netbsd.org (Postfix, from userid 605) id 2B6DB84D8E; Thu, 5 Apr 2018 15:26:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 179C484D33 for ; Thu, 5 Apr 2018 15:26: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 53e0TtcIVu1v for ; Thu, 5 Apr 2018 15:26:08 +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 4D8E984CD9 for ; Thu, 5 Apr 2018 15:26:08 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3C999FBEC; Thu, 5 Apr 2018 15:26:08 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1522941968290680" MIME-Version: 1.0 Date: Thu, 5 Apr 2018 15:26:08 +0000 From: "Min Sik Kim" Subject: CVS commit: pkgsrc/devel/blosc To: pkgsrc-changes@NetBSD.org Reply-To: minskim@netbsd.org X-Mailer: log_accum Message-Id: <20180405152608.3C999FBEC@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. --_----------=_1522941968290680 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: minskim Date: Thu Apr 5 15:26:08 UTC 2018 Modified Files: pkgsrc/devel/blosc: Makefile distinfo Log Message: devel/blosc: Update to 1.14.2 Notable changes since 1.12.1: - Serious optimization of memory copy functions (see new blosc/fastcopy.c). This benefits the speed of all the codecs, but specially the BloscLZ one. - As a result of the above, the BloscLZ codec received a new adjustment of knobs so that you should expect better compression ratios with it too. - Fixed a buffer overrun that happens when compressing small buffers and len(destination_buffer) < (len(source_buffer) + BLOSC_MAX_OVERHEAD). - New split mode that favors forward compatibility. That means that, from now on, all the buffers created starting with blosc 1.14.0 will be forward compatible with any previous versions of the library --at least until 1.3.0, when support for multi-codec was introduced. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/blosc/Makefile \ pkgsrc/devel/blosc/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1522941968290680 Content-Disposition: inline Content-Length: 1727 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/blosc/Makefile diff -u pkgsrc/devel/blosc/Makefile:1.2 pkgsrc/devel/blosc/Makefile:1.3 --- pkgsrc/devel/blosc/Makefile:1.2 Thu Apr 5 09:33:48 2018 +++ pkgsrc/devel/blosc/Makefile Thu Apr 5 15:26:08 2018 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.2 2018/04/05 09:33:48 jperkin Exp $ +# $NetBSD: Makefile,v 1.3 2018/04/05 15:26:08 minskim Exp $ -DISTNAME= blosc-1.12.1 +DISTNAME= blosc-1.14.2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GITHUB:=Blosc/} GITHUB_PROJECT= c-blosc Index: pkgsrc/devel/blosc/distinfo diff -u pkgsrc/devel/blosc/distinfo:1.2 pkgsrc/devel/blosc/distinfo:1.3 --- pkgsrc/devel/blosc/distinfo:1.2 Thu Apr 5 09:33:48 2018 +++ pkgsrc/devel/blosc/distinfo Thu Apr 5 15:26:08 2018 @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.2 2018/04/05 09:33:48 jperkin Exp $ +$NetBSD: distinfo,v 1.3 2018/04/05 15:26:08 minskim Exp $ -SHA1 (blosc-1.12.1.tar.gz) = 234ca85e3602cceee4d8b106c27fda526bbd733d -RMD160 (blosc-1.12.1.tar.gz) = b04b93363b90015b79964dc4615699fa897e5273 -SHA512 (blosc-1.12.1.tar.gz) = f65bbbfce6fc59d0c5a0889d5771dd78cae2796244c6ee69edf15b27c4563c28ce789fded9104a8626d12be3e46418d596dfdb204c43e33abae8dca40debfd92 -Size (blosc-1.12.1.tar.gz) = 683510 bytes +SHA1 (blosc-1.14.2.tar.gz) = ba8bc63c2f0cdc62077a45b5e44216abd098020a +RMD160 (blosc-1.14.2.tar.gz) = 4e75ba5f5cee49410cde42e0bef75d2f7e3d78d8 +SHA512 (blosc-1.14.2.tar.gz) = fb0346e3c2c6101d17963771643a114302034a5389e2ffd9498c6b6367fe6f138ec59edbf039f89a57ce44a63e1f70324ad3906a39884ecc9d54ee2987a1b39c +Size (blosc-1.14.2.tar.gz) = 759731 bytes SHA1 (patch-CMakeLists.txt) = 70dfc44c1541b1fccd200905acbd16e17a9313e1 SHA1 (patch-tests_test__common.h) = 2dabaec2dd7dc23a5fd56fd01647670845145675 --_----------=_1522941968290680--