Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gzip for openSUSE:Factory checked in at 2022-05-01 18:53:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gzip (Old) and /work/SRC/openSUSE:Factory/.gzip.new.1538 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gzip" Sun May 1 18:53:16 2022 rev:61 rq:973075 version:1.12 Changes: -------- --- /work/SRC/openSUSE:Factory/gzip/gzip.changes 2022-04-11 23:46:33.944906905 +0200 +++ /work/SRC/openSUSE:Factory/.gzip.new.1538/gzip.changes 2022-05-01 18:53:17.587146509 +0200 @@ -1,0 +2,6 @@ +Wed Apr 27 08:53:53 UTC 2022 - Dominique Leuenberger <dims...@opensuse.org> + +- Rename xz_lzma.patch xz_lzma_zstd.patch and expand the patch to + supprt zstd compression (boo#1198922). + +------------------------------------------------------------------- Old: ---- xz_lzma.patch New: ---- xz_lzma_zstd.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gzip.spec ++++++ --- /var/tmp/diff_new_pack.TlYuvC/_old 2022-05-01 18:53:18.287147159 +0200 +++ /var/tmp/diff_new_pack.TlYuvC/_new 2022-05-01 18:53:18.291147163 +0200 @@ -32,7 +32,7 @@ Patch3: non-exec-stack.diff Patch6: zdiff.diff # PATCH FIX OPENSUSE BNC#799561 - zgrep silently fails on LZMA compressed files -Patch7: xz_lzma.patch +Patch7: xz_lzma_zstd.patch Patch8: manpage-no-date.patch BuildRequires: autoconf BuildRequires: automake ++++++ xz_lzma_zstd.patch ++++++ Index: gzip-1.12/zgrep.1 =================================================================== --- gzip-1.12.orig/zgrep.1 +++ gzip-1.12/zgrep.1 @@ -11,7 +11,7 @@ The .B zgrep command invokes .B grep -on compressed or gzipped files. +on compressed, xz'ed, lzma'ed, zstd'ed, bzip2'ed or gzipped files. All options specified are passed directly to .BR grep . If no file is specified, then the standard input is decompressed Index: gzip-1.12/zgrep.in =================================================================== --- gzip-1.12.orig/zgrep.in +++ gzip-1.12/zgrep.in @@ -215,6 +215,15 @@ do *.bz2) uncompress=bzip2 ;; + *.xz) + uncompress=xz + ;; + *.lzma) + uncompress=lzma + ;; + *.zst) + uncompress=zstd + ;; *) uncompress=gzip ;;