From 115e1b7dd4ebd7bcd141fb580090cac22637405d Mon Sep 17 00:00:00 2001 From: Rudi Heitbaum Date: Thu, 1 Dec 2022 08:48:30 +0000 Subject: [PATCH] xz: update to 5.2.9 news: - https://git.tukaani.org/?p=xz.git;a=blob_plain;f=NEWS;hb=3be6942e5c27d29995d41da52fbe274e4ce4a537 5.2.9 (2022-11-30) * liblzma: - Fixed an infinite loop in LZMA encoder initialization if dict_size >= 2 GiB. (The encoder only supports up to 1536 MiB.) - Fixed two cases of invalid free() that can happen if a tiny allocation fails in encoder re-initialization or in lzma_filters_update(). These bugs had some similarities with the bug fixed in 5.2.7. - Fixed lzma_block_encoder() not allowing the use of LZMA_SYNC_FLUSH with lzma_code() even though it was documented to be supported. The sync-flush code in the Block encoder was already used internally via lzma_stream_encoder(), so this was just a missing flag in the lzma_block_encoder() API function. - GNU/Linux only: Don't put symbol versions into static liblzma as it breaks things in some cases (and even if it didn't break anything, symbol versions in static libraries are useless anyway). The downside of the fix is that if the configure options --with-pic or --without-pic are used then it's not possible to build both shared and static liblzma at the same time on GNU/Linux anymore; with those options --disable-static or --disable-shared must be used too. * New email address for bug reports is which forwards messages to Lasse Collin and Jia Tan. --- packages/compress/xz/package.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/compress/xz/package.mk b/packages/compress/xz/package.mk index 07f0346b3d..4fdc69762f 100644 --- a/packages/compress/xz/package.mk +++ b/packages/compress/xz/package.mk @@ -3,8 +3,8 @@ # Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv) PKG_NAME="xz" -PKG_VERSION="5.2.8" -PKG_SHA256="2424b2711b1d40d2129645d550363896c6853c97528f085f7765092fe68679d4" +PKG_VERSION="5.2.9" +PKG_SHA256="287ef163e7e57561e9de590b2a9037457af24f03a46bbd12bf84f3263679e8d2" PKG_LICENSE="GPL" PKG_SITE="https://tukaani.org/xz/" PKG_URL="https://tukaani.org/xz/${PKG_NAME}-${PKG_VERSION}.tar.xz"