Received: by mail.netbsd.org (Postfix, from userid 605) id 81AE684D3A; Sun, 6 Sep 2020 19:47:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 04F1684D37 for ; Sun, 6 Sep 2020 19:47:39 +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 tPUtSQWpsUsl for ; Sun, 6 Sep 2020 19:47:38 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 50D4084D2F for ; Sun, 6 Sep 2020 19:47:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4A3E9FB28; Sun, 6 Sep 2020 19:47:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1599421658225020" MIME-Version: 1.0 Date: Sun, 6 Sep 2020 19:47:38 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/converters/p5-Convert-UUlib To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20200906194738.4A3E9FB28@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. --_----------=_1599421658225020 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: wiz Date: Sun Sep 6 19:47:38 UTC 2020 Modified Files: pkgsrc/converters/p5-Convert-UUlib: Makefile distinfo Log Message: p5-Convert-UUlib: update to 1.710. 1.71 Tue Mar 17 00:54:06 CET 2020 - backport to c89 (patch by Paul Howarth). 1.7 Sat Feb 29 22:07:54 CET 2020 - new function: GetFileList. - experimental perlmulticore support (see manpage). - Initialize is now a NOP and CleanUp automatically initializes again. - updated example decoder and documentation a bit. - include ecb.h to deal with compiler builtins and endianness. - some further ยต-optimisations in hot code, especially for yEnc. - replace crc32 function by slice-by-16 version by Stephan Brumme, which should speed up yEnc en-/decoding. - yEnc: do not calculate two crcs per part, instead, combine the part crcs together to form the file crc. - yEnc: allow pcrc= in addition to pcrc32= for yenc trailers, as some draft mentions both and it is actually in active use. - yEnc: ignore crc32= on multiparts, except on the last part, which avoids spurious corruption warnings. - be more precise in documenting code licenses in COPYING. - convert constant creation to the method I normally use. - use common::sense. 1.62 Mon Feb 17 23:19:42 CET 2020 - major performance improvement by simplifying code in _FP_gets to not use fscanf. This might slow things down on platforms with very slow fgetc. 1.61 Sun Feb 9 18:38:29 CET 2020 - lint uulib: fix some format string type mismatches and some other minor issues. 1.6 Thu Oct 24 17:11:54 CEST 2019 - fix heap overflow (testcase by Noel Duffy, reported by Robert Scheck). The defense-in-depth mechanism based on mmap should make this unexploitable for other than denial of service, on systems supporting mmap/mprotect. To generate a diff of this commit: cvs rdiff -u -r1.43 -r1.44 pkgsrc/converters/p5-Convert-UUlib/Makefile cvs rdiff -u -r1.15 -r1.16 pkgsrc/converters/p5-Convert-UUlib/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1599421658225020 Content-Disposition: inline Content-Length: 2232 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/converters/p5-Convert-UUlib/Makefile diff -u pkgsrc/converters/p5-Convert-UUlib/Makefile:1.43 pkgsrc/converters/p5-Convert-UUlib/Makefile:1.44 --- pkgsrc/converters/p5-Convert-UUlib/Makefile:1.43 Mon Aug 31 18:06:48 2020 +++ pkgsrc/converters/p5-Convert-UUlib/Makefile Sun Sep 6 19:47:38 2020 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.43 2020/08/31 18:06:48 wiz Exp $ +# $NetBSD: Makefile,v 1.44 2020/09/06 19:47:38 wiz Exp $ -DISTNAME= Convert-UUlib-1.5 -PKGNAME= p5-${DISTNAME}0 -PKGREVISION= 5 +DISTNAME= Convert-UUlib-1.71 +PKGNAME= p5-${DISTNAME} CATEGORIES= converters perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Convert/} @@ -11,7 +10,8 @@ HOMEPAGE= https://metacpan.org/release/C COMMENT= Perl5 module interface to the uulib library LICENSE= gnu-gpl-v2 -DEPENDS+= p5-Canary-Stability>=0:../../devel/p5-Canary-Stability +DEPENDS+= p5-Canary-Stability-[0-9]*:../../devel/p5-Canary-Stability +DEPENDS+= p5-common-sense-[0-9]*:../../devel/p5-common-sense PERL5_PACKLIST= auto/Convert/UUlib/.packlist Index: pkgsrc/converters/p5-Convert-UUlib/distinfo diff -u pkgsrc/converters/p5-Convert-UUlib/distinfo:1.15 pkgsrc/converters/p5-Convert-UUlib/distinfo:1.16 --- pkgsrc/converters/p5-Convert-UUlib/distinfo:1.15 Sun Apr 17 13:44:48 2016 +++ pkgsrc/converters/p5-Convert-UUlib/distinfo Sun Sep 6 19:47:38 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.15 2016/04/17 13:44:48 wen Exp $ +$NetBSD: distinfo,v 1.16 2020/09/06 19:47:38 wiz Exp $ -SHA1 (Convert-UUlib-1.5.tar.gz) = aa949656cde1c3dbeec0508f82953451fdc737b5 -RMD160 (Convert-UUlib-1.5.tar.gz) = 3e05a9f5a51dccd403fa22554a51d787cc47f2e8 -SHA512 (Convert-UUlib-1.5.tar.gz) = 92c8b6f3a72546dca21018ddf2863113904f550e3ed950a1898ed4abfcc48738e9ca374f5adbc3226df2db6beeb0e12879ae52cdd067a030c199766d53603ec1 -Size (Convert-UUlib-1.5.tar.gz) = 236213 bytes +SHA1 (Convert-UUlib-1.71.tar.gz) = 76dfa13942de7a7ac52dc7f44ceb6b5ddffc1e37 +RMD160 (Convert-UUlib-1.71.tar.gz) = 1b5338d4114c825ba8475db010b88800de5d58dd +SHA512 (Convert-UUlib-1.71.tar.gz) = 6ca67737a29709903322f506063c4c65e17a15a2cef40959cbf1309ba608867516f554bdec426e217ec610f84e76197d41cb8a2ac7d57fb640728b0e2ae5ef31 +Size (Convert-UUlib-1.71.tar.gz) = 277227 bytes --_----------=_1599421658225020--