Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package bash-completion for openSUSE:Factory checked in at 2022-05-24 20:30:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/bash-completion (Old) and /work/SRC/openSUSE:Factory/.bash-completion.new.2254 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "bash-completion" Tue May 24 20:30:56 2022 rev:54 rq:978684 version:2.11 Changes: -------- --- /work/SRC/openSUSE:Factory/bash-completion/bash-completion.changes 2022-03-18 16:41:23.681149477 +0100 +++ /work/SRC/openSUSE:Factory/.bash-completion.new.2254/bash-completion.changes 2022-05-24 20:31:10.982909561 +0200 @@ -1,0 +2,6 @@ +Mon May 23 10:37:27 UTC 2022 - Dr. Werner Fink <wer...@suse.de> + +- Add patch bsc1199724-modules.patch (bsc#1199724) + * Enable upstream commit to list ko.zst modules as well + +------------------------------------------------------------------- New: ---- bsc1199724-modules.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ bash-completion.spec ++++++ --- /var/tmp/diff_new_pack.SxWS8j/_old 2022-05-24 20:31:12.566910975 +0200 +++ /var/tmp/diff_new_pack.SxWS8j/_new 2022-05-24 20:31:12.574910983 +0200 @@ -68,6 +68,8 @@ Patch12: bash-completion-fix-missing-directory-completion-with-filename-pattern.patch # PATCH-FIX-SUSE boo#1190929 Patch13: boo1190929-9af4afd0.patch +# PATCH-FIX-SUSE boo#1199724 +Patch14: bsc1199724-modules.patch BuildRequires: libtool BuildRequires: pkgconfig BuildArch: noarch ++++++ bsc1199724-modules.patch ++++++ --- bash_completion | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/bash_completion +++ b/bash_completion 2022-05-23 10:50:43.197937832 +0000 @@ -1316,7 +1316,7 @@ _modules() local modpath modpath=/lib/modules/$1 COMPREPLY=($(compgen -W "$(command ls -RL $modpath 2>/dev/null | - command sed -ne 's/^\(.*\)\.k\{0,1\}o\(\.[gx]z\)\{0,1\}$/\1/p')" -- "$cur")) + command sed -ne 's/^\(.*\)\.k\{0,1\}o\(\.[gx]z\|\.bz2\|\.zst\)\{0,1\}$/\1/p')" -- "$cur")) } # This function completes on installed modules