Received: by mail.netbsd.org (Postfix, from userid 605) id E8FE484D8C; Sun, 17 Sep 2017 08:29:43 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7DEDA84D36 for ; Sun, 17 Sep 2017 08:29:43 +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 2zEHXHzI4mk9 for ; Sun, 17 Sep 2017 08:29:42 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B875B84D04 for ; Sun, 17 Sep 2017 08:29:42 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B3AF7FA9A; Sun, 17 Sep 2017 08:29:42 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_150563698272590" MIME-Version: 1.0 Date: Sun, 17 Sep 2017 08:29:42 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/converters/p5-Sereal To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20170917082942.B3AF7FA9A@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. --_----------=_150563698272590 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: wiz Date: Sun Sep 17 08:29:42 UTC 2017 Modified Files: pkgsrc/converters/p5-Sereal: Makefile distinfo Log Message: p5-Sereal: update to 3.015. 3.015 Thu Sep 1 20:18:44 CEST 2016 * Fix builds under 5.25+ * Fix various buffer overun bugs found using AFL (thanks to dgryski) * Fix issue in decode_from_file() 3.014 Dec 7 2015 * Fix builds under 5.8.9 3.012 Dec 6 2015 * Yet another release related to broken META files. ExtUtils::MakeMaker and CPAN::Meta need to be up to date or the META files miss stuff. 3.011 Dec 6 2015 * No significant changes. Doc typo fixes, and build tweaks. 3.010 Nov 30 2015 * Fix silly build issue for Sereal. We do some magic so that things "Just Work" when building from withing the git repo, but that magic was failing due to a precedence issue in the magic detection logic. This mean that users building in a git based .cpan dir would see breakage. 3.009 Nov 30 2015 * Re-relase 3.008 with updated META files. 3.008 Nov 27 2015 * [ENCODER] FIX: Make sure that reserializing a data structure created using alias_varint_under does not produce a corrupted dataset. Thanks to Iskra for the report. * [ENCODER] FIX: Precedence issue related to sort keys options. Thanks to Petr Písař for the report and fix. * [ENCODER/DECODER] FIX: Win32 build issues. 3.007 Nov 26 2015 * [DECODER] Build fixes for boxes without any Sereal installed (it seems to be common on certain types of smokers, and not on others). * [ENCODER]: Base sort order changed, new sort orders added. Rework sort logic to be more efficient, fix sorted tied hashes, define new sort order. See Sereal::Encoders CHANGES files. * [ENCODER] Handle PVLV undefs * [ENCODER] General optimizations. * [ENCODER] Build fixes for 5.8.9 * [ENCODER] Doc patches * Win32 build fixes. 3.006 Nov 14 2015 * [DECODER] fix segfaults from heavily corrupted data. Guards against various pathological cases which could cause segfaults fixed. Thanks to Damian Gryski and "fuzzing sereal with afl" for finding these cases. * [ENCODER] Various subtle fixes to how we choose whether to serialize the string or numeric version of a value, in particular to ensure that "00" always round trips as "00", and related issues. Note this fix has correctness and performance consequences. In some cases values that used to serialized as integers (arguably incorrectly) will be serialized as strings instead, and some code maybe be slower to serialize. NOTE: Some issues related to this subject are not fixable without a protocol change. In particular this change may affect the behavior of code that uses binary logical operators on values serialized with Perl. Thanks to Zefram, Tom, and others for help with this issue. * Fixups for cast warnings under -Wint-to-ptr builds by using using PTR2INT and INT2PTR for casting our objects. * Win32 fixes * Build improvements * Changes to how we generate constants 3.005 Jan 05 2015 * Build improvements related to char signedness being platform dependent. 3.004 Dec 27 2014 * Performance optimizations and other miscellaneous changes. * Build improvements. * Win32 fixes for weakrefs. 3.003 Oct 19 2014 * Niko Tyni fixed the 64-bit big endian Sereal bug! (Yay Niko!) * Setup META.yml correctly so that certain dependencies are marked as being test dependencies and not build or run-time dependencies. * Allow one to build against an externally supplied version of csnappy or miniz. Thanks to Petr Písař 3.002 Aug 20 2014 Summary of changes from 3.001 - 3.002 - Encoder: Introduce "canonical" option to encoder - Encoder: Introduce "canonical_refs" option to encoder - Decoder: Introduce "set_readonly" option to decoder - Decooder: Introduce "set_readonly_scalars" option to decoder * Decoder Bug fixes - Fix assertion fails in DEBUG perls (Brian Fraser) - Fix segfault with "into" interface when decoding references and strings into the same target SV. See new test t/550_decode_into.t * Test Infra Changes - Split up bulk tests to speed up testing and make it easier to see when a failure is restricted to a specific option. * Big-Endian Support - Improved support for Big-Endian machines. We now build and pass test on Sparc and HP-UX and other platforms with big-endian or strict alignedness requirements. Much thanks to Jarkko Hietaniemi, Gregor Herrmann, and H. Merijn Brand for for their assistance with this. - We still have issues with s390x (Z/Os) with Sereal. If someone wants to help it would be appreciated. 3.001 - Production release 1 of protocol version 3 - Zlib support - CANONICAL_UNDEF, - new magic header to make it easier to detect UTF8 encoded data. - Minor changes to how scalar values are serialized to favour more compact representations. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/converters/p5-Sereal/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/converters/p5-Sereal/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_150563698272590 Content-Disposition: inline Content-Length: 2201 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/converters/p5-Sereal/Makefile diff -u pkgsrc/converters/p5-Sereal/Makefile:1.2 pkgsrc/converters/p5-Sereal/Makefile:1.3 --- pkgsrc/converters/p5-Sereal/Makefile:1.2 Mon Jun 5 14:22:22 2017 +++ pkgsrc/converters/p5-Sereal/Makefile Sun Sep 17 08:29:42 2017 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.2 2017/06/05 14:22:22 ryoon Exp $ +# $NetBSD: Makefile,v 1.3 2017/09/17 08:29:42 wiz Exp $ -DISTNAME= Sereal-0.330 +DISTNAME= Sereal-3.015 PKGNAME= p5-${DISTNAME} -PKGREVISION= 1 CATEGORIES= converters perl5 MASTER_SITES= http://search.cpan.org/CPAN/authors/id/Y/YV/YVES/ @@ -14,6 +13,11 @@ COMMENT= Fast, compact, powerful binary DEPENDS+= p5-Sereal-Decoder-[0-9]*:../../converters/p5-Sereal-Decoder DEPENDS+= p5-Sereal-Encoder-[0-9]*:../../converters/p5-Sereal-Encoder +# TEST_DEPENDS +BUILD_DEPENDS+= p5-Test-Deep-[0-9]*:../../devel/p5-Test-Deep +BUILD_DEPENDS+= p5-Test-LongString-[0-9]*:../../devel/p5-Test-LongString +BUILD_DEPENDS+= p5-Test-Warn-[0-9]*:../../devel/p5-Test-Warn + PERL5_PACKLIST= auto/Sereal/.packlist .include "../../lang/perl5/module.mk" Index: pkgsrc/converters/p5-Sereal/distinfo diff -u pkgsrc/converters/p5-Sereal/distinfo:1.1 pkgsrc/converters/p5-Sereal/distinfo:1.2 --- pkgsrc/converters/p5-Sereal/distinfo:1.1 Sun May 28 13:23:34 2017 +++ pkgsrc/converters/p5-Sereal/distinfo Sun Sep 17 08:29:42 2017 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.1 2017/05/28 13:23:34 mef Exp $ +$NetBSD: distinfo,v 1.2 2017/09/17 08:29:42 wiz Exp $ -SHA1 (Sereal-0.330.tar.gz) = b40bcfcbb0a61dda4bc48282b8544ba356aca409 -RMD160 (Sereal-0.330.tar.gz) = 835d27b0d0bcba4b2c66b69c2b8eda768875980a -SHA512 (Sereal-0.330.tar.gz) = eb95b13872f3190a685aa9dcc70a567cc19d5f8b2b35c4d4ef449d1d997c8acb70837c825d2265182d5275317e485cacc3ea40c8a48050d9531e3d1e89a3164b -Size (Sereal-0.330.tar.gz) = 3511 bytes +SHA1 (Sereal-3.015.tar.gz) = 0094c31faf003195147c6ef108ccee5c17082c5c +RMD160 (Sereal-3.015.tar.gz) = 2d2352f59ff902df3269adfdf6293842ac48fd49 +SHA512 (Sereal-3.015.tar.gz) = cb85628bf8e87959bc64ff4c8fc2542d9ac8be09652f299c53da3bfc04ae46d8bd9e44e02828c28174b015c9262f5af510d929408d2afd05aabab9478c3f747e +Size (Sereal-3.015.tar.gz) = 192780 bytes --_----------=_150563698272590--