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 2025-09-20 22:03:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/bash-completion (Old)
and /work/SRC/openSUSE:Factory/.bash-completion.new.27445 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "bash-completion"
Sat Sep 20 22:03:47 2025 rev:62 rq:1305804 version:2.12.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/bash-completion/bash-completion.changes
2025-02-25 16:41:31.751723577 +0100
+++
/work/SRC/openSUSE:Factory/.bash-completion.new.27445/bash-completion.changes
2025-09-20 22:03:51.646118163 +0200
@@ -1,0 +2,6 @@
+Thu Sep 18 13:02:46 UTC 2025 - Dr. Werner Fink <[email protected]>
+
+- Add patch bug1246923.patch
+ * Skip colon from device names for ethtool (bsc#1246923)
+
+-------------------------------------------------------------------
New:
----
bug1246923.patch
----------(New B)----------
New:
- Add patch bug1246923.patch
* Skip colon from device names for ethtool (bsc#1246923)
----------(New E)----------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ bash-completion.spec ++++++
--- /var/tmp/diff_new_pack.cQvew7/_old 2025-09-20 22:03:53.822209440 +0200
+++ /var/tmp/diff_new_pack.cQvew7/_new 2025-09-20 22:03:53.822209440 +0200
@@ -1,7 +1,7 @@
#
# spec file for package bash-completion
#
-# Copyright (c) 2025 SUSE LLC
+# Copyright (c) 2025 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -70,6 +70,8 @@
Patch14: bsc1199724-modules.patch
# PATCH-FIX-SUSE boo#1221414 -- shells/bash-completion: Bug
Patch15: boo1221414-scp.patch
+# PATCH-FIX-UPSTREAM bsc#1246923 -- [SLES 16.0] The network name is end with
":" via ethtool auto-completion
+Patch16: bug1246923.patch
BuildRequires: libtool
BuildRequires: pkgconfig
BuildArch: noarch
++++++ bug1246923.patch ++++++
>From a452aee8fb58720ecfadbdaad95277ac9d9072ac Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ville=20Skytt=C3=A4?= <[email protected]>
Date: Thu, 2 May 2024 21:22:09 +0300
Subject: [PATCH] fix(available_interfaces): strip only trailing colon from
entries
Leave other punctuation alone, at least for now.
Closes https://github.com/scop/bash-completion/issues/1133
---
bash_completion | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/bash_completion
+++ b/bash_completion 2025-09-18 13:01:19.130576676 +0000
@@ -1738,7 +1738,7 @@ _comp_compgen_available_interfaces()
fi
} 2>/dev/null | _comp_awk \
'/^[^ \t]/ { if ($1 ~ /^[0-9]+:/) { print $2 } else { print $1 } }')"
&&
- _comp_compgen -U generated set "${generated[@]}"
+ _comp_compgen -U generated set "${generated[@]%:}"
}
# Echo number of CPUs, falling back to 1 on failure.