Received: by mail.netbsd.org (Postfix, from userid 605) id 58A3E84ED7; Sat, 27 Jan 2024 18:50:18 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8790484ECA for ; Sat, 27 Jan 2024 18:50:17 +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 mCcBq2WxthEt for ; Sat, 27 Jan 2024 18:50:17 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id E4DAC84CF9 for ; Sat, 27 Jan 2024 18:50:16 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D56A4FA42; Sat, 27 Jan 2024 18:50:16 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_170638141620550" MIME-Version: 1.0 Date: Sat, 27 Jan 2024 18:50:16 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/archivers/xz To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20240127185016.D56A4FA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_170638141620550 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sat Jan 27 18:50:16 UTC 2024 Modified Files: pkgsrc/archivers/xz: Makefile distinfo Log Message: xz: updated to 5.4.6 5.4.6 (2024-01-26) * Fixed a bug involving internal function pointers in liblzma not being initialized to NULL. The bug can only be triggered if lzma_filters_update() is called on a LZMA1 encoder, so it does not affect xz or any application known to us that uses liblzma. * xz: - Fixed a regression introduced in 5.4.2 that caused encoding in the raw format to unnecessarily fail if --suffix was not used. For instance, the following command no longer reports that --suffix must be used: echo foo | xz --format=raw --lzma2 | wc -c - Fixed an issue on MinGW-w64 builds that prevented reading from or writing to non-terminal character devices like NUL. * Added a new test. To generate a diff of this commit: cvs rdiff -u -r1.42 -r1.43 pkgsrc/archivers/xz/Makefile cvs rdiff -u -r1.32 -r1.33 pkgsrc/archivers/xz/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_170638141620550 Content-Disposition: inline Content-Length: 1674 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/archivers/xz/Makefile diff -u pkgsrc/archivers/xz/Makefile:1.42 pkgsrc/archivers/xz/Makefile:1.43 --- pkgsrc/archivers/xz/Makefile:1.42 Sun Dec 24 07:17:14 2023 +++ pkgsrc/archivers/xz/Makefile Sat Jan 27 18:50:16 2024 @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.42 2023/12/24 07:17:14 wiz Exp $ +# $NetBSD: Makefile,v 1.43 2024/01/27 18:50:16 adam Exp $ -DISTNAME= xz-5.4.5 +DISTNAME= xz-5.4.6 CATEGORIES= archivers -MASTER_SITES= https://tukaani.org/xz/ +MASTER_SITES= ${MASTER_SITE_GITHUB:=tukaani-project/} +GITHUB_RELEASE= v${PKGVERSION_NOREV} EXTRACT_SUFX= .tar.bz2 MAINTAINER= pkgsrc-users@NetBSD.org Index: pkgsrc/archivers/xz/distinfo diff -u pkgsrc/archivers/xz/distinfo:1.32 pkgsrc/archivers/xz/distinfo:1.33 --- pkgsrc/archivers/xz/distinfo:1.32 Wed Nov 1 20:28:49 2023 +++ pkgsrc/archivers/xz/distinfo Sat Jan 27 18:50:16 2024 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.32 2023/11/01 20:28:49 adam Exp $ +$NetBSD: distinfo,v 1.33 2024/01/27 18:50:16 adam Exp $ -BLAKE2s (xz-5.4.5.tar.bz2) = eb95e55c8f0bc49ed371e34456cf2844af92d67c54f7f1ead4f301bfba8e71d2 -SHA512 (xz-5.4.5.tar.bz2) = 64176f1426ca046d76294ef9a801933f3c8ef9abd90785669bd39ecb222ed9fab1dbab6bf0909d61637cd28758c91be6cbec63e5841be32accd79ba329e50397 -Size (xz-5.4.5.tar.bz2) = 2178771 bytes +BLAKE2s (xz-5.4.6.tar.bz2) = e8db846fa99a2e00be26c621c3cd12e392cd85cd057775ecd332f01c1cdc4947 +SHA512 (xz-5.4.6.tar.bz2) = 0d77b5fdc662235ce43ec587a0e0ee8003a03a29fde69bcea883074057eca357bf5e1d3510be60e9b7ce4033cf9b28e5ba78fc7fa1902a3f6a4bf9c22e79e1a2 +Size (xz-5.4.6.tar.bz2) = 2181925 bytes SHA1 (patch-src_xz_Makefile.in) = b9360c7b2b34159028fb8b84339aa2faf3922287 --_----------=_170638141620550--