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 2024-03-26 19:24:34
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/bash-completion (Old)
and /work/SRC/openSUSE:Factory/.bash-completion.new.1905 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "bash-completion"
Tue Mar 26 19:24:34 2024 rev:59 rq:1160694 version:2.12.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/bash-completion/bash-completion.changes
2024-02-25 14:04:56.042326960 +0100
+++
/work/SRC/openSUSE:Factory/.bash-completion.new.1905/bash-completion.changes
2024-03-26 19:25:15.656520006 +0100
@@ -1,0 +2,7 @@
+Fri Mar 22 13:31:54 UTC 2024 - Dr. Werner Fink <[email protected]>
+
+- Add patch boo1221414-scp.patch
+ * Do not replace the asignment of the array COMPREPLY with
+ the shell function _comp_compgen_split (boo#1221414)
+
+-------------------------------------------------------------------
New:
----
boo1221414-scp.patch
BETA DEBUG BEGIN:
New:
- Add patch boo1221414-scp.patch
* Do not replace the asignment of the array COMPREPLY with
BETA DEBUG END:
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ bash-completion.spec ++++++
--- /var/tmp/diff_new_pack.L4FCqu/_old 2024-03-26 19:25:17.532589038 +0100
+++ /var/tmp/diff_new_pack.L4FCqu/_new 2024-03-26 19:25:17.532589038 +0100
@@ -68,6 +68,8 @@
Patch13: boo1190929-9af4afd0.patch
# PATCH-FIX-SUSE boo#1199724
Patch14: bsc1199724-modules.patch
+# PATCH-FIX-SUSE boo#1221414 -- shells/bash-completion: Bug
+Patch15: boo1221414-scp.patch
BuildRequires: libtool
BuildRequires: pkgconfig
BuildArch: noarch
++++++ boo1221414-scp.patch ++++++
Do not replace COMPREPLY with _comp_compgen_split()
---
completions/ssh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/completions/ssh
+++ b/completions/ssh 2024-03-22 13:27:49.715476006 +0000
@@ -499,7 +499,7 @@ _comp_xfunc_scp_compgen_remote_files()
command sed -e 's/'"$_comp_cmd_scp__path_esc"'/\\\\\\&/g' -e
's/[*@|=]$//g' \
-e 's/[^\/]$/& /g')
fi
- _comp_compgen_split -l -- "$_files"
+ COMPREPLY+=( $_files )
}
# @deprecated 2.12 use `_comp_compgen -ax ssh remote_files` instead