Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kwalletmanager for openSUSE:Factory checked in at 2024-09-05 15:46:13 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kwalletmanager (Old) and /work/SRC/openSUSE:Factory/.kwalletmanager.new.10096 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kwalletmanager" Thu Sep 5 15:46:13 2024 rev:5 rq:1198648 version:24.08.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kwalletmanager/kwalletmanager.changes 2024-08-26 22:05:43.538728601 +0200 +++ /work/SRC/openSUSE:Factory/.kwalletmanager.new.10096/kwalletmanager.changes 2024-09-05 15:46:26.694222446 +0200 @@ -1,0 +2,6 @@ +Wed Sep 4 07:41:24 UTC 2024 - Christophe Marin <[email protected]> + +- Add upstream fix (kde#492138): + * 0001-Fix-service-file-name.patch + +------------------------------------------------------------------- New: ---- 0001-Fix-service-file-name.patch BETA DEBUG BEGIN: New:- Add upstream fix (kde#492138): * 0001-Fix-service-file-name.patch BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kwalletmanager.spec ++++++ --- /var/tmp/diff_new_pack.iktGLI/_old 2024-09-05 15:46:27.274246491 +0200 +++ /var/tmp/diff_new_pack.iktGLI/_new 2024-09-05 15:46:27.274246491 +0200 @@ -33,6 +33,8 @@ %endif # PATCH-FIX-OPENSUSE -- boo#1217190 don't require password to save settings Patch0: 0001-Don-t-require-password-when-changing-settings.patch +# PATCH-FIX-UPSTREAM +Patch1: 0001-Fix-service-file-name.patch BuildRequires: kf6-extra-cmake-modules >= %{kf6_version} BuildRequires: cmake(KF6Archive) >= %{kf6_version} BuildRequires: cmake(KF6Config) >= %{kf6_version} @@ -90,7 +92,7 @@ %{_kf6_debugdir}/kwalletmanager.categories %{_kf6_iconsdir}/hicolor/*/*/*.* %{_kf6_plugindir}/plasma/kcms/systemsettings_qwidgets/kcm_kwallet5.so -%{_kf6_sharedir}/dbus-1/services/org.kde.kwalletmanager5.service +%{_kf6_sharedir}/dbus-1/services/org.kde.kwalletmanager.service %files lang -f %{name}.lang %exclude %{_kf6_htmldir}/en/*/ ++++++ 0001-Fix-service-file-name.patch ++++++ >From e42afee809f8df056d0d882cc01586f80bcf1786 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gy=C3=B6rgy=20Ball=C3=B3?= <[email protected]> Date: Tue, 27 Aug 2024 06:21:50 +0000 Subject: [PATCH] Fix service file name The D-Bus service name should match with the desktop file name to make D-Bus activation work, otherwise the application cannot be launched. The desktop file name was changed in commit 3478852e6600cbea7e87a32e5d11ca859fa59e1f. BUG: 492138 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cd6a321b..a286aefc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -71,7 +71,7 @@ add_subdirectory( src ) install( PROGRAMS org.kde.kwalletmanager.desktop kwalletmanager5-kwalletd.desktop DESTINATION ${KDE_INSTALL_APPDIR}) install(FILES org.kde.kwalletmanager5.appdata.xml DESTINATION ${KDE_INSTALL_METAINFODIR}) ecm_generate_dbus_service_file( - NAME org.kde.kwalletmanager5 + NAME org.kde.kwalletmanager EXECUTABLE ${KDE_INSTALL_FULL_BINDIR}/kwalletmanager5 DESTINATION ${KDE_INSTALL_DBUSSERVICEDIR} ) -- 2.46.0
