Version in base suite: 25.00+ds-1 Base version: 7zip-rar_25.00+ds-1 Target version: 7zip-rar_25.00+ds-1+deb13u1 Base file: /srv/ftp-master.debian.org/ftp/pool/non-free/7/7zip-rar/7zip-rar_25.00+ds-1.dsc Target file: /srv/ftp-master.debian.org/policy/pool/non-free/7/7zip-rar/7zip-rar_25.00+ds-1+deb13u1.dsc changelog | 6 ++ patches/0003-Add-missing-CRC-table-constructor-Closes-1118733.patch | 25 ++++++++++ patches/series | 1 3 files changed, 32 insertions(+) diff -Nru 7zip-rar-25.00+ds/debian/changelog 7zip-rar-25.00+ds/debian/changelog --- 7zip-rar-25.00+ds/debian/changelog 2025-07-07 16:53:55.000000000 +0000 +++ 7zip-rar-25.00+ds/debian/changelog 2025-11-07 03:03:12.000000000 +0000 @@ -1,3 +1,9 @@ +7zip-rar (25.00+ds-1+deb13u1) trixie; urgency=medium + + * Add missing CRC table constructor (Closes: #1118733) + + -- YOKOTA Hiroshi Fri, 07 Nov 2025 12:03:12 +0900 + 7zip-rar (25.00+ds-1) unstable; urgency=medium * New upstream version 25.00+ds diff -Nru 7zip-rar-25.00+ds/debian/patches/0003-Add-missing-CRC-table-constructor-Closes-1118733.patch 7zip-rar-25.00+ds/debian/patches/0003-Add-missing-CRC-table-constructor-Closes-1118733.patch --- 7zip-rar-25.00+ds/debian/patches/0003-Add-missing-CRC-table-constructor-Closes-1118733.patch 1970-01-01 00:00:00.000000000 +0000 +++ 7zip-rar-25.00+ds/debian/patches/0003-Add-missing-CRC-table-constructor-Closes-1118733.patch 2025-11-07 03:01:38.000000000 +0000 @@ -0,0 +1,25 @@ +From: YOKOTA Hiroshi +Date: Sun, 2 Nov 2025 10:29:49 +0900 +Subject: Add missing CRC table constructor (Closes: #1118733) + +This function requires to select Rar3 standard VM filters. +If it missing, RAR plugin fails to extract Rar3 codec data with +compression filters. +--- + CPP/7zip/Bundles/FormatRAR/Arc_gcc.mak | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/CPP/7zip/Bundles/FormatRAR/Arc_gcc.mak b/CPP/7zip/Bundles/FormatRAR/Arc_gcc.mak +index 2fbcf52..54ceece 100644 +--- a/CPP/7zip/Bundles/FormatRAR/Arc_gcc.mak ++++ b/CPP/7zip/Bundles/FormatRAR/Arc_gcc.mak +@@ -29,7 +29,8 @@ endif + + + +-COMMON_OBJS = ++COMMON_OBJS = \ ++ $O/CRC.o + + WIN_OBJS = + diff -Nru 7zip-rar-25.00+ds/debian/patches/series 7zip-rar-25.00+ds/debian/patches/series --- 7zip-rar-25.00+ds/debian/patches/series 2025-07-07 03:24:58.000000000 +0000 +++ 7zip-rar-25.00+ds/debian/patches/series 2025-11-07 03:01:38.000000000 +0000 @@ -1,2 +1,3 @@ 0001-Accept-Debian-build-flags.patch 0002-Add-RAR-plugin-builder.patch +0003-Add-missing-CRC-table-constructor-Closes-1118733.patch