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-08-10 17:12:42
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/bash-completion (Old)
and /work/SRC/openSUSE:Factory/.bash-completion.new.1521 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "bash-completion"
Wed Aug 10 17:12:42 2022 rev:55 rq:993929 version:2.11
Changes:
--------
--- /work/SRC/openSUSE:Factory/bash-completion/bash-completion.changes
2022-05-24 20:31:10.982909561 +0200
+++
/work/SRC/openSUSE:Factory/.bash-completion.new.1521/bash-completion.changes
2022-08-10 17:12:58.353656712 +0200
@@ -1,0 +2,6 @@
+Tue Jul 26 19:26:11 UTC 2022 - Otto Hollmann <[email protected]>
+
+- Add patch fix-curl-help-completion-bsc1200791.patch (bsc#1200791)
+ * List all options for `curl --<TAB>`
+
+-------------------------------------------------------------------
New:
----
fix-curl-help-completion-bsc1200791.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ bash-completion.spec ++++++
--- /var/tmp/diff_new_pack.XbDajY/_old 2022-08-10 17:12:59.037658497 +0200
+++ /var/tmp/diff_new_pack.XbDajY/_new 2022-08-10 17:12:59.045658518 +0200
@@ -1,5 +1,5 @@
#
-# spec file
+# spec file for package bash
#
# Copyright (c) 2022 SUSE LLC
#
@@ -70,6 +70,8 @@
Patch13: boo1190929-9af4afd0.patch
# PATCH-FIX-SUSE boo#1199724
Patch14: bsc1199724-modules.patch
+# PATCH-FIX-UPSTREAM bsc#1200791
+Patch15: fix-curl-help-completion-bsc1200791.patch
BuildRequires: libtool
BuildRequires: pkgconfig
BuildArch: noarch
++++++ fix-curl-help-completion-bsc1200791.patch ++++++
---
completions/curl | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
--- a/completions/curl
+++ b/completions/curl
@@ -91,7 +91,9 @@ _curl()
esac
if [[ $cur == -* ]]; then
- COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
+ COMPREPLY=($(compgen -W '$(_parse_help "$1" "--help all")' -- "$cur"))
+ [[ $COMPREPLY ]] ||
+ COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
fi
} &&
complete -F _curl curl