Hello community, here is the log from the commit of package kglobalaccel for openSUSE:Factory checked in at 2018-12-19 13:41:07 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kglobalaccel (Old) and /work/SRC/openSUSE:Factory/.kglobalaccel.new.28833 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kglobalaccel" Wed Dec 19 13:41:07 2018 rev:63 rq:658563 version:5.53.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kglobalaccel/kglobalaccel.changes 2018-11-14 14:34:28.331263005 +0100 +++ /work/SRC/openSUSE:Factory/.kglobalaccel.new.28833/kglobalaccel.changes 2018-12-19 13:41:09.151978988 +0100 @@ -1,0 +2,11 @@ +Sun Dec 09 19:43:43 UTC 2018 - [email protected] + +- Update to 5.53.0 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/kde-frameworks-5.53.0.php +- Changes since 5.52.0: + * Use isEmpty() + * Fix CMake condition + +------------------------------------------------------------------- Old: ---- kglobalaccel-5.52.0.tar.xz New: ---- kglobalaccel-5.53.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kglobalaccel.spec ++++++ --- /var/tmp/diff_new_pack.QeOvbh/_old 2018-12-19 13:41:09.619978327 +0100 +++ /var/tmp/diff_new_pack.QeOvbh/_new 2018-12-19 13:41:09.623978321 +0100 @@ -17,14 +17,14 @@ %define lname libKF5GlobalAccel5 -%define _tar_path 5.52 +%define _tar_path 5.53 # Full KF5 version (e.g. 5.33.0) %{!?_kf5_version: %global _kf5_version %{version}} # Last major and minor KF5 version (e.g. 5.33) %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | awk -F. '{print $1"."$2}')} %bcond_without lang Name: kglobalaccel -Version: 5.52.0 +Version: 5.53.0 Release: 0 Summary: Global desktop keyboard shortcuts License: LGPL-2.1-or-later ++++++ kglobalaccel-5.52.0.tar.xz -> kglobalaccel-5.53.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kglobalaccel-5.52.0/CMakeLists.txt new/kglobalaccel-5.53.0/CMakeLists.txt --- old/kglobalaccel-5.52.0/CMakeLists.txt 2018-11-03 19:00:56.000000000 +0100 +++ new/kglobalaccel-5.53.0/CMakeLists.txt 2018-12-01 15:55:19.000000000 +0100 @@ -1,12 +1,12 @@ cmake_minimum_required(VERSION 3.0) -set(KF5_VERSION "5.52.0") # handled by release scripts -set(KF5_DEP_VERSION "5.52.0") # handled by release scripts +set(KF5_VERSION "5.53.0") # handled by release scripts +set(KF5_DEP_VERSION "5.53.0") # handled by release scripts project(KGlobalAccel VERSION ${KF5_VERSION}) # ECM setup include(FeatureSummary) -find_package(ECM 5.52.0 NO_MODULE) +find_package(ECM 5.53.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) @@ -33,7 +33,7 @@ SOVERSION 5) # Dependencies -set(REQUIRED_QT_VERSION 5.8.0) +set(REQUIRED_QT_VERSION 5.9.0) find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED DBus Widgets) include(KDEInstallDirs) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kglobalaccel-5.52.0/po/zh_CN/kglobalaccel5_qt.po new/kglobalaccel-5.53.0/po/zh_CN/kglobalaccel5_qt.po --- old/kglobalaccel-5.52.0/po/zh_CN/kglobalaccel5_qt.po 2018-11-03 19:00:56.000000000 +0100 +++ new/kglobalaccel-5.53.0/po/zh_CN/kglobalaccel5_qt.po 2018-12-01 15:55:19.000000000 +0100 @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: kdeorg\n" -"PO-Revision-Date: 2018-10-09 18:38\n" +"PO-Revision-Date: 2018-11-12 09:13\n" "Last-Translator: guoyunhe <[email protected]>\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kglobalaccel-5.52.0/src/runtime/kserviceactioncomponent.cpp new/kglobalaccel-5.53.0/src/runtime/kserviceactioncomponent.cpp --- old/kglobalaccel-5.52.0/src/runtime/kserviceactioncomponent.cpp 2018-11-03 19:00:56.000000000 +0100 +++ new/kglobalaccel-5.53.0/src/runtime/kserviceactioncomponent.cpp 2018-12-01 15:55:19.000000000 +0100 @@ -113,7 +113,7 @@ QString shortcutString; QStringList shortcuts = m_desktopFile.desktopGroup().readEntry(QStringLiteral("X-KDE-Shortcuts"), QString()).split(QChar(',')); - if (shortcuts.size() > 0) { + if (!shortcuts.isEmpty()) { shortcutString = shortcuts.join(QChar('\t')); } @@ -123,7 +123,7 @@ foreach(const QString &action, m_desktopFile.readActions()) { shortcuts = m_desktopFile.actionGroup(action).readEntry(QStringLiteral("X-KDE-Shortcuts"), QString()).split(QChar(',')); - if (shortcuts.size() > 0) + if (!shortcuts.isEmpty()) { shortcutString = shortcuts.join(QChar('\t')); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kglobalaccel-5.52.0/src/runtime/plugins/CMakeLists.txt new/kglobalaccel-5.53.0/src/runtime/plugins/CMakeLists.txt --- old/kglobalaccel-5.52.0/src/runtime/plugins/CMakeLists.txt 2018-11-03 19:00:56.000000000 +0100 +++ new/kglobalaccel-5.53.0/src/runtime/plugins/CMakeLists.txt 2018-12-01 15:55:19.000000000 +0100 @@ -1,4 +1,4 @@ -if (${XCB_XCB_FOUND} AND ${XCB_KEYSYMS_FOUND} AND ${XCB_XKB_FOUND}) +if (XCB_XCB_FOUND AND XCB_KEYSYMS_FOUND AND XCB_XKB_FOUND) add_subdirectory(xcb) endif() # if (APPLE)
