Hello community,

here is the log from the commit of package krunner for openSUSE:Factory checked 
in at 2015-09-02 07:48:09
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/krunner (Old)
 and      /work/SRC/openSUSE:Factory/.krunner.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "krunner"

Changes:
--------
--- /work/SRC/openSUSE:Factory/krunner/krunner.changes  2015-07-14 
17:29:15.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.krunner.new/krunner.changes     2015-09-02 
07:48:10.000000000 +0200
@@ -1,0 +2,11 @@
+Tue Aug  4 19:20:42 UTC 2015 - [email protected]
+
+- Update to 5.13.0
+  * The Qt version requirement has been bumped from 5.2 to 5.3
+  * Debug output has been ported to categorized output, for less
+    noise by default
+  * Docbook documentation has been reviewed and updated
+  * For more details please see:
+    https://www.kde.org/announcements/kde-frameworks-5.13.0.php
+
+-------------------------------------------------------------------

Old:
----
  krunner-5.12.0.tar.xz

New:
----
  krunner-5.13.0.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ krunner.spec ++++++
--- /var/tmp/diff_new_pack.VjK5OD/_old  2015-09-02 07:48:11.000000000 +0200
+++ /var/tmp/diff_new_pack.VjK5OD/_new  2015-09-02 07:48:11.000000000 +0200
@@ -17,9 +17,9 @@
 
 
 %define lname   libKF5Runner5
-%define _tar_path 5.12
+%define _tar_path 5.13
 Name:           krunner
-Version:        5.12.0
+Version:        5.13.0
 Release:        0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12
@@ -34,9 +34,9 @@
 BuildRequires:  plasma-framework-devel >= %{_tar_path}
 BuildRequires:  solid-devel >= %{_tar_path}
 BuildRequires:  threadweaver-devel >= %{_tar_path}
-BuildRequires:  pkgconfig(Qt5Gui) >= 5.2.0
-BuildRequires:  pkgconfig(Qt5Quick) >= 5.2.0
-BuildRequires:  pkgconfig(Qt5Test) >= 5.2.0
+BuildRequires:  cmake(Qt5Gui) >= 5.3.0
+BuildRequires:  cmake(Qt5Quick) >= 5.3.0
+BuildRequires:  cmake(Qt5Test) >= 5.3.0
 Summary:        Plugins responsible for better integration of Qt applications 
in KDE Workspace
 License:        LGPL-2.1+
 Group:          System/GUI/KDE
@@ -69,7 +69,7 @@
 Requires:       %lname = %{version}
 Requires:       extra-cmake-modules
 Requires:       plasma-framework-devel >= %{_tar_path}
-Requires:       pkgconfig(Qt5Core) >= 5.2.0
+Requires:       cmake(Qt5Core) >= 5.3.0
 
 %description devel
 Framework Integration is a set of plugins responsible for better

++++++ krunner-5.12.0.tar.xz -> krunner-5.13.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krunner-5.12.0/CMakeLists.txt 
new/krunner-5.13.0/CMakeLists.txt
--- old/krunner-5.12.0/CMakeLists.txt   2015-07-05 11:12:34.000000000 +0200
+++ new/krunner-5.13.0/CMakeLists.txt   2015-08-04 13:40:37.000000000 +0200
@@ -4,7 +4,7 @@
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.12.0  NO_MODULE)
+find_package(ECM 5.13.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -19,8 +19,8 @@
 include(KDECompilerSettings)
 include(KDECMakeSettings)
 
-set(KF5_VERSION "5.12.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.12.0") # handled by release scripts
+set(KF5_VERSION "5.13.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.13.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
     VARIABLE_PREFIX KRUNNER
@@ -29,7 +29,7 @@
 )
 
 # Dependencies
-set(REQUIRED_QT_VERSION "5.2.0")
+set(REQUIRED_QT_VERSION "5.3.0")
 
 find_package(Qt5 ${REQUIRED_QT_VERSION} NO_MODULE REQUIRED Gui Widgets Quick)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krunner-5.12.0/src/declarative/krunner_debug.cpp 
new/krunner-5.13.0/src/declarative/krunner_debug.cpp
--- old/krunner-5.12.0/src/declarative/krunner_debug.cpp        2015-07-05 
11:12:34.000000000 +0200
+++ new/krunner-5.13.0/src/declarative/krunner_debug.cpp        2015-08-04 
13:40:37.000000000 +0200
@@ -18,6 +18,10 @@
 */
 
 #include "krunner_debug.h"
-Q_LOGGING_CATEGORY(KRUNNER, "org.kde.krunner")
-
 
+#if QT_VERSION >= QT_VERSION_CHECK(5, 4, 0)
+// logging category for this framework, default: log stuff >= warning
+Q_LOGGING_CATEGORY(KRUNNER, "org.kde.krunner", QtWarningMsg)
+#else
+Q_LOGGING_CATEGORY(KRUNNER, "org.kde.krunner")
+#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krunner-5.12.0/src/krunner_debug.cpp 
new/krunner-5.13.0/src/krunner_debug.cpp
--- old/krunner-5.12.0/src/krunner_debug.cpp    2015-07-05 11:12:34.000000000 
+0200
+++ new/krunner-5.13.0/src/krunner_debug.cpp    2015-08-04 13:40:37.000000000 
+0200
@@ -18,6 +18,10 @@
 */
 
 #include "krunner_debug.h"
-Q_LOGGING_CATEGORY(KRUNNER, "org.kde.krunner")
-
 
+#if QT_VERSION >= QT_VERSION_CHECK(5, 4, 0)
+// logging category for this framework, default: log stuff >= warning
+Q_LOGGING_CATEGORY(KRUNNER, "org.kde.krunner", QtWarningMsg)
+#else
+Q_LOGGING_CATEGORY(KRUNNER, "org.kde.krunner")
+#endif


Reply via email to