Received: by mail.netbsd.org (Postfix, from userid 605) id E0BCF84F79; Wed, 8 Feb 2023 16:23:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1CC3384D26 for ; Wed, 8 Feb 2023 16:23:57 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 8_pdDF18bOWb for ; Wed, 8 Feb 2023 16:23:56 +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 294C784CFA for ; Wed, 8 Feb 2023 16:23:56 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 26A77FA90; Wed, 8 Feb 2023 16:23:56 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1675873436220560" MIME-Version: 1.0 Date: Wed, 8 Feb 2023 16:23:56 +0000 From: "Frederic Cambus" Subject: CVS commit: pkgsrc/converters/p5-Sereal-Encoder To: pkgsrc-changes@NetBSD.org Reply-To: fcambus@netbsd.org X-Mailer: log_accum Message-Id: <20230208162356.26A77FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1675873436220560 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: fcambus Date: Wed Feb 8 16:23:56 UTC 2023 Modified Files: pkgsrc/converters/p5-Sereal-Encoder: Makefile distinfo Log Message: p5-Sereal-Encoder: update to 5.003. 5.003 * Production release of 5.002_001 and 5.002_002 * OpenBSD build fixes. Gracious thanks to Andrew Hewus Fresh for providing guidance and access to an OpenBSD box to use to debug and fix this. * Update Miniz to 3.0.2, Zstd to 1.5.2 and Devel::CheckLib to 1.16 * Assorted build fixes related to these updates. 5.002_002 * OpenBSD build fixes. Gracious thanks to Andrew Hewus Fresh for providing guidance and access to an OpenBSD box to use to debug and fix this. 5.002_001 * Update Miniz to 3.0.2, Zstd to 1.5.2 and Devel::CheckLib to 1.16 * Assorted build fixes related to these updates. 5.002 * Fixup Decoder tests to run on perl 5.8 which has no defined-or. - Consolidated changes from 5.001_00x: * Ensure that Encoder depends on the correct version of the Decoder. Gracious thanks to Slaven Rezic for being so patient in helping me get this release working properly. * Test compatibility fixes when no perl is already installed. * Add t/195_backcompat.t to check if the latest decoder will seamlessly handle reading output from older versions. * Test compatibility fixes with version 3 and earlier. 5.001_003 * Ensure that Encoder depends on the correct version of the Decoder. Gracious thanks to Slaven Rezic for being so patient in helping me get 5.001_00x working properly. 5.001_002 * Test compatibility fixes when no perl is already installed. * Decoder: Add t/195_backcompat.t to check if the latest decoder will seamlessly handle reading output from older versions. 5.001_001 * Test compatibility fixes with version 3 and earlier. 5.001 * First official release of protocol 5. Better support for non standard NV types. Support for the new Perl 5.36 bools. Upgrade *Sereal::Decoder* FIRST. 5.000_002 * Prerelease CPAN testing. Build fixes for quadmath and longdouble perls. Certain tests were failing with the old versions which were subtly broken on quadmath or longdouble machines. These tests are now skipped on these builds. You will not be able to fully test this platform until you install the Decoder, and then install the Encoder. 5.000_001 * Prerelease CPAN testing for 5.000_000. 5.000_000 Tue Aug 30, 2022 * Better handling of floating point values * Support quadmath __float128 values as FLOAT_128. * Better longdouble support. * Add encoder option 'use_standard_double' which avoids use of LONG_DOUBLE and FLOAT_128 and forces doubles to go to the wire as DOUBLE instead. By default we use the native double for back compat. * Add support for YES and NO tags, to match the new booleans we have in Perl. JSON this is for you. Requires Perl 5.36. --- 4.025 Thr Jul 28, 2022 * Release with build fixes for the Decoder under threaded perls and MANIFEST update. 4.024 Wed Jul 27, 2022 * Changes to the FREEZE/THAW mechanism. Remove the part that says that FREEZE cannot return a list. It can, and we have supported it for a very long time, although I have not checked how far back this support goes. If you use the FREEZE/THAW API's you should upgrade to this version. * Test fixes for t/020_sort_keys.t hanging on some perls which do not come bundled with Hash::Util. To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 pkgsrc/converters/p5-Sereal-Encoder/Makefile cvs rdiff -u -r1.21 -r1.22 pkgsrc/converters/p5-Sereal-Encoder/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1675873436220560 Content-Disposition: inline Content-Length: 1793 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/converters/p5-Sereal-Encoder/Makefile diff -u pkgsrc/converters/p5-Sereal-Encoder/Makefile:1.26 pkgsrc/converters/p5-Sereal-Encoder/Makefile:1.27 --- pkgsrc/converters/p5-Sereal-Encoder/Makefile:1.26 Tue Jun 28 11:31:12 2022 +++ pkgsrc/converters/p5-Sereal-Encoder/Makefile Wed Feb 8 16:23:55 2023 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.26 2022/06/28 11:31:12 wiz Exp $ +# $NetBSD: Makefile,v 1.27 2023/02/08 16:23:55 fcambus Exp $ -DISTNAME= Sereal-Encoder-4.023 +DISTNAME= Sereal-Encoder-5.003 PKGNAME= p5-${DISTNAME} -PKGREVISION= 1 CATEGORIES= converters security perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=../../CPAN/authors/id/Y/YV/YVES/} Index: pkgsrc/converters/p5-Sereal-Encoder/distinfo diff -u pkgsrc/converters/p5-Sereal-Encoder/distinfo:1.21 pkgsrc/converters/p5-Sereal-Encoder/distinfo:1.22 --- pkgsrc/converters/p5-Sereal-Encoder/distinfo:1.21 Fri Feb 25 21:42:02 2022 +++ pkgsrc/converters/p5-Sereal-Encoder/distinfo Wed Feb 8 16:23:55 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.21 2022/02/25 21:42:02 fcambus Exp $ +$NetBSD: distinfo,v 1.22 2023/02/08 16:23:55 fcambus Exp $ -BLAKE2s (Sereal-Encoder-4.023.tar.gz) = 5019d040c1574e546491aced872476ddd906e5ff258b50cb35c9cb1c5d5c72be -SHA512 (Sereal-Encoder-4.023.tar.gz) = dc4b1b4e1d7977c1f7c8f00c7c0d1a475b785ccda29aee22a6cd09593000b176027d535f2820dd33de8820ec63cb2522d2eee4b6bd5cbbf432d5cf45437b9a67 -Size (Sereal-Encoder-4.023.tar.gz) = 723637 bytes +BLAKE2s (Sereal-Encoder-5.003.tar.gz) = 7f29fc3a28ed264a20116783ac27269525c49a0c6bd7005f078c9e9aa306e328 +SHA512 (Sereal-Encoder-5.003.tar.gz) = 218ed53e6a7356b528e87d5a8fe6f6b277ac7828fbde3fe55b1de1c938c2a8a1cb70737574a71f72f0733de6a1295fe0b57dd0e9b99599f0512a026dad2450e7 +Size (Sereal-Encoder-5.003.tar.gz) = 836757 bytes --_----------=_1675873436220560--