Received: by mail.netbsd.org (Postfix, from userid 605) id 90A1284DC0; Sun, 3 May 2020 10:10:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 17E2A84D2C for ; Sun, 3 May 2020 10:10:45 +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 9vTzXe5eHjay for ; Sun, 3 May 2020 10:10:44 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 330BD84CD4 for ; Sun, 3 May 2020 10:10:44 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 30DC1FB27; Sun, 3 May 2020 10:10:44 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_158850064463170" MIME-Version: 1.0 Date: Sun, 3 May 2020 10:10:44 +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: <20200503101044.30DC1FB27@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. --_----------=_158850064463170 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun May 3 10:10:44 UTC 2020 Modified Files: pkgsrc/archivers/xz: Makefile PLIST distinfo Log Message: xz: updated to 5.2.5 5.2.5: * liblzma: - Fixed several C99/C11 conformance bugs. Now the code is clean under gcc/clang -fsanitize=undefined. Some of these changes might have a negative effect on performance with old GCC versions or compilers other than GCC and Clang. The configure option --enable-unsafe-type-punning can be used to (mostly) restore the old behavior but it shouldn't normally be used. - Improved API documentation of lzma_properties_decode(). - Added a very minor encoder speed optimization. * xz: - Fixed a crash in "xz -dcfv not_an_xz_file". All four options were required to trigger it. The crash occurred in the progress indicator code when xz was in passthru mode where xz works like "cat". - Fixed an integer overflow with 32-bit off_t. It could happen when decompressing a file that has a long run of zero bytes which xz would try to write as a sparse file. Since the build system enables large file support by default, off_t is normally 64-bit even on 32-bit systems. - Fixes for --flush-timeout: * Fix semi-busy-waiting. * Avoid unneeded flushes when no new input has arrived since the previous flush was completed. - Added a special case for 32-bit xz: If --memlimit-compress is used to specify a limit that exceeds 4020 MiB, the limit will be set to 4020 MiB. The values "0" and "max" aren't affected by this and neither is decompression. This hack can be helpful when a 32-bit xz has access to 4 GiB address space but the specified memlimit exceeds 4 GiB. This can happen e.g. with some scripts. - Capsicum sandbox is now enabled by default where available (FreeBSD >= 10). The sandbox debug messages (xz -vv) were removed since they seemed to be more annoying than useful. - DOS build now requires DJGPP 2.05 instead of 2.04beta. A workaround for a locale problem with DJGPP 2.05 was added. * xzgrep and other scripts: - Added a configure option --enable-path-for-scripts=PREFIX. It is disabled by default except on Solaris where the default is /usr/xpg4/bin. See INSTALL for details. - Added a workaround for a POSIX shell detection problem on Solaris. * Build systems: - Added preliminary build instructions for z/OS. See INSTALL section 1.2.9. - Experimental CMake support was added. It should work to build static liblzma on a few operating systems. It may or may not work to build shared liblzma. On some platforms it can build xz and xzdec too but those are only for testing. See the comment in the beginning of CMakeLists.txt for details. - Visual Studio project files were updated. WindowsTargetPlatformVersion was removed from VS2017 files and set to "10.0" in the added VS2019 files. In the future the VS project files will be removed when CMake support is good enough. - New #defines in config.h: HAVE___BUILTIN_ASSUME_ALIGNED, HAVE___BUILTIN_BSWAPXX, and TUKLIB_USE_UNSAFE_TYPE_PUNNING. - autogen.sh has a new optional dependency on po4a and a new option --no-po4a to skip that step. This matters only if one wants to remake the build files. po4a is used to update the translated man pages but as long as the man pages haven't been modified, there's nothing to update and one can use --no-po4a to avoid the dependency on po4a. * Translations: - XZ Utils translations are now handled by the Translation Project: https://translationproject.org/domain/xz.html - All man pages are now included in German too. - New xz translations: Brazilian Portuguese, Finnish, Hungarian, Chinese (simplified), Chinese (traditional), and Danish (partial translation) - Updated xz translations: French, German, Italian, and Polish - Unfortunately a few new xz translations weren't included due to technical problems like too long lines in --help output or misaligned column headings in tables. In the future, many of these strings will be split and e.g. the table column alignment will be handled in software. This should make the strings easier to translate. To generate a diff of this commit: cvs rdiff -u -r1.28 -r1.29 pkgsrc/archivers/xz/Makefile cvs rdiff -u -r1.9 -r1.10 pkgsrc/archivers/xz/PLIST cvs rdiff -u -r1.18 -r1.19 pkgsrc/archivers/xz/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_158850064463170 Content-Disposition: inline Content-Length: 3606 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.28 pkgsrc/archivers/xz/Makefile:1.29 --- pkgsrc/archivers/xz/Makefile:1.28 Sun Sep 2 21:03:22 2018 +++ pkgsrc/archivers/xz/Makefile Sun May 3 10:10:43 2020 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.28 2018/09/02 21:03:22 maya Exp $ +# $NetBSD: Makefile,v 1.29 2020/05/03 10:10:43 adam Exp $ -DISTNAME= xz-5.2.4 +DISTNAME= xz-5.2.5 CATEGORIES= archivers MASTER_SITES= https://tukaani.org/xz/ EXTRACT_SUFX= .tar.bz2 Index: pkgsrc/archivers/xz/PLIST diff -u pkgsrc/archivers/xz/PLIST:1.9 pkgsrc/archivers/xz/PLIST:1.10 --- pkgsrc/archivers/xz/PLIST:1.9 Tue Dec 30 06:37:35 2014 +++ pkgsrc/archivers/xz/PLIST Sun May 3 10:10:44 2020 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.9 2014/12/30 06:37:35 adam Exp $ +@comment $NetBSD: PLIST,v 1.10 2020/05/03 10:10:44 adam Exp $ bin/lzcat bin/lzcmp bin/lzdiff @@ -39,6 +39,28 @@ include/lzma/version.h include/lzma/vli.h lib/liblzma.la lib/pkgconfig/liblzma.pc +${PLIST.nls}man/de/man1/lzcat.1 +${PLIST.nls}man/de/man1/lzcmp.1 +${PLIST.nls}man/de/man1/lzdiff.1 +${PLIST.nls}man/de/man1/lzegrep.1 +${PLIST.nls}man/de/man1/lzfgrep.1 +${PLIST.nls}man/de/man1/lzgrep.1 +${PLIST.nls}man/de/man1/lzless.1 +${PLIST.nls}man/de/man1/lzma.1 +${PLIST.nls}man/de/man1/lzmadec.1 +${PLIST.nls}man/de/man1/lzmore.1 +${PLIST.nls}man/de/man1/unlzma.1 +${PLIST.nls}man/de/man1/unxz.1 +${PLIST.nls}man/de/man1/xz.1 +${PLIST.nls}man/de/man1/xzcat.1 +${PLIST.nls}man/de/man1/xzcmp.1 +${PLIST.nls}man/de/man1/xzdec.1 +${PLIST.nls}man/de/man1/xzdiff.1 +${PLIST.nls}man/de/man1/xzegrep.1 +${PLIST.nls}man/de/man1/xzfgrep.1 +${PLIST.nls}man/de/man1/xzgrep.1 +${PLIST.nls}man/de/man1/xzless.1 +${PLIST.nls}man/de/man1/xzmore.1 man/man1/lzcat.1 man/man1/lzcmp.1 man/man1/lzdiff.1 @@ -82,8 +104,14 @@ share/doc/xz/history.txt share/doc/xz/lzma-file-format.txt share/doc/xz/xz-file-format.txt ${PLIST.nls}share/locale/cs/LC_MESSAGES/xz.mo +${PLIST.nls}share/locale/da/LC_MESSAGES/xz.mo ${PLIST.nls}share/locale/de/LC_MESSAGES/xz.mo +${PLIST.nls}share/locale/fi/LC_MESSAGES/xz.mo ${PLIST.nls}share/locale/fr/LC_MESSAGES/xz.mo +${PLIST.nls}share/locale/hu/LC_MESSAGES/xz.mo ${PLIST.nls}share/locale/it/LC_MESSAGES/xz.mo ${PLIST.nls}share/locale/pl/LC_MESSAGES/xz.mo +${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/xz.mo ${PLIST.nls}share/locale/vi/LC_MESSAGES/xz.mo +${PLIST.nls}share/locale/zh_CN/LC_MESSAGES/xz.mo +${PLIST.nls}share/locale/zh_TW/LC_MESSAGES/xz.mo Index: pkgsrc/archivers/xz/distinfo diff -u pkgsrc/archivers/xz/distinfo:1.18 pkgsrc/archivers/xz/distinfo:1.19 --- pkgsrc/archivers/xz/distinfo:1.18 Tue Jun 5 22:28:38 2018 +++ pkgsrc/archivers/xz/distinfo Sun May 3 10:10:44 2020 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.18 2018/06/05 22:28:38 adam Exp $ +$NetBSD: distinfo,v 1.19 2020/05/03 10:10:44 adam Exp $ -SHA1 (xz-5.2.4.tar.bz2) = 50ad451279404fb5206e23c7b1ba9c4aa858c994 -RMD160 (xz-5.2.4.tar.bz2) = 0c5a6ffd47d657fed0c7192f413422e503b79c69 -SHA512 (xz-5.2.4.tar.bz2) = 25a548c34a304ba51cdaa63813df0fa4ac2f3cf0ec6dc2d181ec5b62fe586090cd0f1c866ee7ba19e9b264ecabf9ca9f2f1dda7f95313546da4152f3cfaa7e6e -Size (xz-5.2.4.tar.bz2) = 1287922 bytes +SHA1 (xz-5.2.5.tar.bz2) = 19f83fb33dc51df87169864decd4b3de75dee1df +RMD160 (xz-5.2.5.tar.bz2) = e8c9343d2a1d4aafda92f0b2d94962f16b46688d +SHA512 (xz-5.2.5.tar.bz2) = 89e25ddf72427ee9608cbf2e9dbc24d592cb67a27f44ccf7d47e4d9405774444e9cfcd02ac4bcb92064860371ed31d3cfbecd5fe063f296ead607714c0a664a1 +Size (xz-5.2.5.tar.bz2) = 1473322 bytes SHA1 (patch-src_xz_Makefile.in) = b9360c7b2b34159028fb8b84339aa2faf3922287 --_----------=_158850064463170--