Hello community, here is the log from the commit of package khotkeys5 for openSUSE:Factory checked in at 2020-06-08 23:53:11 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/khotkeys5 (Old) and /work/SRC/openSUSE:Factory/.khotkeys5.new.3606 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "khotkeys5" Mon Jun 8 23:53:11 2020 rev:99 rq:812309 version:5.19.0 Changes: -------- --- /work/SRC/openSUSE:Factory/khotkeys5/khotkeys5.changes 2020-05-07 15:09:01.584188171 +0200 +++ /work/SRC/openSUSE:Factory/.khotkeys5.new.3606/khotkeys5.changes 2020-06-08 23:54:11.635245264 +0200 @@ -1,0 +2,23 @@ +Thu Jun 4 13:27:11 UTC 2020 - Fabian Vogt <[email protected]> + +- Update to 5.19.0 + * New bugfix release + * For more details please see: + * https://www.kde.org/announcements/plasma-5.19.0.php +- No code changes since 5.18.90 + +------------------------------------------------------------------- +Thu May 14 14:33:03 UTC 2020 - Fabian Vogt <[email protected]> + +- Update to 5.18.90 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/plasma-5.18.90.php +- Changes since 5.18.5: + * Port khotkeys to KIO's ApplicationLauncherJob & CommandLauncherJob + * Launch qdbusviewer with CommandLauncherJob. Tested, works. + * bump to require Qt 5.14 +- Refresh patches: + * 0001-Use-qdbus-qt5-and-qdbusviewer-qt5.patch + +------------------------------------------------------------------- Old: ---- khotkeys-5.18.5.tar.xz khotkeys-5.18.5.tar.xz.sig New: ---- khotkeys-5.19.0.tar.xz khotkeys-5.19.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ khotkeys5.spec ++++++ --- /var/tmp/diff_new_pack.DiVl82/_old 2020-06-08 23:54:12.739248670 +0200 +++ /var/tmp/diff_new_pack.DiVl82/_new 2020-06-08 23:54:12.743248682 +0200 @@ -18,7 +18,7 @@ %bcond_without lang Name: khotkeys5 -Version: 5.18.5 +Version: 5.19.0 Release: 0 # Full Plasma 5 version (e.g. 5.8.95) %{!?_plasma5_bugfix: %define _plasma5_bugfix %{version}} @@ -28,9 +28,9 @@ License: GPL-2.0-or-later Group: System/GUI/KDE URL: http://www.kde.org -Source: https://download.kde.org/stable/plasma/%{version}/khotkeys-%{version}.tar.xz +Source: khotkeys-%{version}.tar.xz %if %{with lang} -Source1: https://download.kde.org/stable/plasma/%{version}/khotkeys-%{version}.tar.xz.sig +Source1: khotkeys-%{version}.tar.xz.sig Source2: plasma.keyring %endif # PATCH-FIX-OPENSUSE @@ -48,7 +48,7 @@ BuildRequires: cmake(KF5XmlGui) #!BuildIgnore: kwin5 BuildRequires: cmake(LibKWorkspace) >= %{_plasma5_version} -BuildRequires: cmake(Qt5X11Extras) >= 5.4.0 +BuildRequires: cmake(Qt5X11Extras) >= 5.14 BuildRequires: pkgconfig(x11) BuildRequires: pkgconfig(xtst) Requires: libqt5-qdbus @@ -70,8 +70,7 @@ %lang_package %prep -%setup -q -n khotkeys-%{version} -%patch -p1 +%autosetup -p1 -n khotkeys-%{version} %build %cmake_kf5 -d build -- -DCMAKE_INSTALL_LOCALEDIR=%{_kf5_localedir} ++++++ 0001-Use-qdbus-qt5-and-qdbusviewer-qt5.patch ++++++ --- /var/tmp/diff_new_pack.DiVl82/_old 2020-06-08 23:54:12.759248731 +0200 +++ /var/tmp/diff_new_pack.DiVl82/_new 2020-06-08 23:54:12.763248744 +0200 @@ -10,27 +10,24 @@ libkhotkeysprivate/actions/dbus_action.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) -Index: khotkeys-5.10.4/kcm_hotkeys/actions/dbus_action_widget.cpp +Index: khotkeys-5.15.80git.20200423T192354~9b4759c/kcm_hotkeys/actions/dbus_action_widget.cpp =================================================================== ---- khotkeys-5.10.4.orig/kcm_hotkeys/actions/dbus_action_widget.cpp -+++ khotkeys-5.10.4/kcm_hotkeys/actions/dbus_action_widget.cpp -@@ -117,9 +117,9 @@ bool DbusActionWidget::isChanged() const +--- khotkeys-5.15.80git.20200423T192354~9b4759c.orig/kcm_hotkeys/actions/dbus_action_widget.cpp 2020-04-24 08:10:26.252530468 +0200 ++++ khotkeys-5.15.80git.20200423T192354~9b4759c/kcm_hotkeys/actions/dbus_action_widget.cpp 2020-04-24 08:11:06.703582629 +0200 +@@ -117,7 +117,7 @@ void DbusActionWidget::launchDbusBrowser() const { -- if( KRun::runCommand( "qdbusviewer", window()) == 0 ) -+ if( KRun::runCommand( "qdbusviewer-qt5", window()) == 0 ) - { -- KMessageBox::sorry( window(), i18n( "Failed to run qdbusviewer" )); -+ KMessageBox::sorry( window(), i18n( "Failed to run qdbusviewer-qt5, maybe you need to install libqt5-qttools?" )); - } +- auto *job = new KIO::CommandLauncherJob("qdbusviewer"); ++ auto *job = new KIO::CommandLauncherJob("qdbusviewer-qt5"); + job->setUiDelegate(new KDialogJobUiDelegate(KJobUiDelegate::AutoHandlingEnabled, window())); + job->start(); } - -Index: khotkeys-5.10.4/libkhotkeysprivate/actions/dbus_action.cpp +Index: khotkeys-5.15.80git.20200423T192354~9b4759c/libkhotkeysprivate/actions/dbus_action.cpp =================================================================== ---- khotkeys-5.10.4.orig/libkhotkeysprivate/actions/dbus_action.cpp -+++ khotkeys-5.10.4/libkhotkeysprivate/actions/dbus_action.cpp -@@ -133,7 +133,7 @@ void DBusAction::execute() +--- khotkeys-5.15.80git.20200423T192354~9b4759c.orig/libkhotkeysprivate/actions/dbus_action.cpp 2020-04-24 08:08:41.193493337 +0200 ++++ khotkeys-5.15.80git.20200423T192354~9b4759c/libkhotkeysprivate/actions/dbus_action.cpp 2020-04-24 08:10:26.252530468 +0200 +@@ -133,7 +133,7 @@ } qDebug() << "D-Bus call:" << _application << ":" << _object << ":" << _function << ":" << args_list; KProcess proc; ++++++ khotkeys-5.18.5.tar.xz -> khotkeys-5.19.0.tar.xz ++++++ ++++ 2902 lines of diff (skipped)
