Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package xdg-utils for openSUSE:Factory checked in at 2022-09-06 13:00:43 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/xdg-utils (Old) and /work/SRC/openSUSE:Factory/.xdg-utils.new.2083 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xdg-utils" Tue Sep 6 13:00:43 2022 rev:57 rq:1001164 version:1.1.3+20210805 Changes: -------- --- /work/SRC/openSUSE:Factory/xdg-utils/xdg-utils.changes 2022-08-03 21:16:30.871413177 +0200 +++ /work/SRC/openSUSE:Factory/.xdg-utils.new.2083/xdg-utils.changes 2022-09-06 13:00:52.458942924 +0200 @@ -1,0 +2,6 @@ +Sun Sep 4 17:29:24 UTC 2022 - Andreas Stieger <andreas.stie...@gmx.de> + +- xdg-open: convert usage of obsolete egrep to grep -E + add xdg-utils-egrep.patch, boo#1203092 + +------------------------------------------------------------------- New: ---- xdg-utils-egrep.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ xdg-utils.spec ++++++ --- /var/tmp/diff_new_pack.mPc8gs/_old 2022-09-06 13:00:53.318945095 +0200 +++ /var/tmp/diff_new_pack.mPc8gs/_new 2022-09-06 13:00:53.322945105 +0200 @@ -31,6 +31,7 @@ Patch1: 0001-Don-t-run-kreadconfig-if-KDE_SESSION_VERSION-is-5.patch # PATCH-FIX-OPENSUSE support-deepin-desktop.patch hillw...@opensuse.org Patch2: support-deepin-desktop.patch +Patch3: xdg-utils-egrep.patch BuildRequires: make # for xmlto to be able to generate text from html BuildRequires: w3m ++++++ xdg-utils-egrep.patch ++++++ >From 7538458c6c8999296a272c40bd4ec24132a51877 Mon Sep 17 00:00:00 2001 From: E5ten <ethancsom...@gmail.com> Date: Thu, 16 Jan 2020 02:06:09 +0000 Subject: [PATCH] switch from non-standard "egrep" to POSIX "grep -E" References: https://bugzilla.opensuse.org/show_bug.cgi?id=1203092 https://gitlab.freedesktop.org/xdg/xdg-utils/-/merge_requests/21 https://gitlab.freedesktop.org/xdg/xdg-utils/-/merge_requests/44 https://gitlab.freedesktop.org/xdg/xdg-utils/-/issues/207 --- scripts/xdg-open.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/xdg-open.in b/scripts/xdg-open.in index 202f3e3..35b0522 100644 --- a/scripts/xdg-open.in +++ b/scripts/xdg-open.in @@ -72,7 +72,7 @@ get_key() is_file_url_or_path() { if echo "$1" | grep -q '^file://' \ - || ! echo "$1" | egrep -q '^[[:alpha:]][[:alpha:][:digit:]+\.\-]*:'; then + || ! echo "$1" | grep -Eq '^[[:alpha:]][[:alpha:][:digit:]+\.\-]*:'; then return 0 else return 1 -- GitLab