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 2023-09-26 22:00:33 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/xdg-utils (Old) and /work/SRC/openSUSE:Factory/.xdg-utils.new.1770 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xdg-utils" Tue Sep 26 22:00:33 2023 rev:59 rq:1112695 version:1.1.3+20230831 Changes: -------- --- /work/SRC/openSUSE:Factory/xdg-utils/xdg-utils.changes 2023-09-02 22:07:34.739104896 +0200 +++ /work/SRC/openSUSE:Factory/.xdg-utils.new.1770/xdg-utils.changes 2023-09-26 22:15:49.939112640 +0200 @@ -1,0 +2,9 @@ +Thu Sep 21 05:47:59 UTC 2023 - jsl...@suse.cz + +- Update to version 1.1.3+20230831: + * Revert putting process in background from !55 +- revert _service to the original state +- revert drop of xdg-terminal-don-t-run-kreadconfig-if-KDE_SESSION_VE.patch + (bsc#1215384) + +------------------------------------------------------------------- Old: ---- xdg-utils-1.1.3+20230830.obscpio New: ---- xdg-terminal-don-t-run-kreadconfig-if-KDE_SESSION_VE.patch xdg-utils-1.1.3+20230831.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ xdg-utils.spec ++++++ --- /var/tmp/diff_new_pack.lRFcYn/_old 2023-09-26 22:15:51.503169250 +0200 +++ /var/tmp/diff_new_pack.lRFcYn/_new 2023-09-26 22:15:51.503169250 +0200 @@ -17,7 +17,7 @@ Name: xdg-utils -Version: 1.1.3+20230830 +Version: 1.1.3+20230831 Release: 0 Summary: Utilities to uniformly interface desktop environments License: MIT @@ -27,6 +27,7 @@ Source: xdg-utils-%{version}.tar.xz # PATCH-FEATURE-OPENSUSE install-some-more-scripts.diff jsl...@suse.cz Patch0: install-some-more-scripts.diff +Patch1: xdg-terminal-don-t-run-kreadconfig-if-KDE_SESSION_VE.patch BuildRequires: make # for xmlto to be able to generate text from html BuildRequires: w3m ++++++ _service ++++++ --- /var/tmp/diff_new_pack.lRFcYn/_old 2023-09-26 22:15:51.535170408 +0200 +++ /var/tmp/diff_new_pack.lRFcYn/_new 2023-09-26 22:15:51.539170552 +0200 @@ -2,8 +2,8 @@ <service mode="manual" name="obs_scm"> <param name="url">https://gitlab.freedesktop.org/xdg/xdg-utils.git</param> <param name="scm">git</param> + <param name="changesgenerate">enable</param> <param name="filename">xdg-utils</param> - <param name="revision">master</param> <param name="versionformat">@PARENT_TAG@+%cd</param> <param name="versionrewrite-pattern">v(.*)</param> <param name="versionrewrite-replacement">\1</param> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.lRFcYn/_old 2023-09-26 22:15:51.559171277 +0200 +++ /var/tmp/diff_new_pack.lRFcYn/_new 2023-09-26 22:15:51.563171421 +0200 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> - <param name="url">git://anongit.freedesktop.org/xdg/xdg-utils</param> - <param name="changesrevision">1a58bc28f6844898532daf9ee1bf6da7764955a9</param></service></servicedata> + <param name="url">https://gitlab.freedesktop.org/xdg/xdg-utils.git</param> + <param name="changesrevision">adf064ae472b4cacf11f04f5265a0a86980e4ced</param></service></servicedata> (No newline at EOF) ++++++ xdg-terminal-don-t-run-kreadconfig-if-KDE_SESSION_VE.patch ++++++ From: Christophe Giboudeaux <christo...@krop.fr> Date: Wed, 30 Oct 2019 17:11:08 +0100 Subject: xdg-terminal: don't run 'kreadconfig' if KDE_SESSION_VERSION is >= 5 Patch-mainline: not yet References: bsc#1215384 'kreadconfig' is a KDE4 executable. The program is called 'kreadconfig5' in KDE Frameworks 5.xx. --- scripts/xdg-terminal.in | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/scripts/xdg-terminal.in b/scripts/xdg-terminal.in index 71d56a595cfb..bd2529cde1ad 100644 --- a/scripts/xdg-terminal.in +++ b/scripts/xdg-terminal.in @@ -30,7 +30,20 @@ _USAGE terminal_kde() { - terminal=`kreadconfig --file kdeglobals --group General --key TerminalApplication --default konsole` + if [ -n "$KDE_SESSION_VERSION" ] && [ "$KDE_SESSION_VERSION" -ge 5 ]; then + local kreadconfig=kreadconfig$KDE_SESSION_VERSION + else + local kreadconfig=kreadconfig + fi + + if which $kreadconfig >/dev/null 2>&1; then + local terminal=$($kreadconfig --file kdeglobals \ + --group General \ + --key TerminalApplication \ + --default konsole) + else + exit_failure_operation_impossible "'$kreadconfig' was not found or is not executable" + fi terminal_exec=`command -v $terminal` -- 2.42.0 ++++++ xdg-utils-1.1.3+20230830.obscpio -> xdg-utils-1.1.3+20230831.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xdg-utils-1.1.3+20230830/scripts/xdg-open.in new/xdg-utils-1.1.3+20230831/scripts/xdg-open.in --- old/xdg-utils-1.1.3+20230830/scripts/xdg-open.in 2023-08-30 06:35:34.000000000 +0200 +++ new/xdg-utils-1.1.3+20230831/scripts/xdg-open.in 2023-08-31 03:51:58.000000000 +0200 @@ -356,7 +356,7 @@ args=$(( $args - 1 )) done [ $replaced -eq 1 ] || set -- "$@" "$target" - env "$command" "$@" & + env "$command" "$@" exit_success fi fi ++++++ xdg-utils.obsinfo ++++++ --- /var/tmp/diff_new_pack.lRFcYn/_old 2023-09-26 22:15:51.739177792 +0200 +++ /var/tmp/diff_new_pack.lRFcYn/_new 2023-09-26 22:15:51.739177792 +0200 @@ -1,5 +1,5 @@ name: xdg-utils -version: 1.1.3+20230830 -mtime: 1693370134 -commit: d0b765f4879ea784bfa3c4cb91e5c9240e5df52e +version: 1.1.3+20230831 +mtime: 1693446718 +commit: adf064ae472b4cacf11f04f5265a0a86980e4ced