Hello community, here is the log from the commit of package knotifications for openSUSE:Factory checked in at 2015-09-24 07:13:04 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/knotifications (Old) and /work/SRC/openSUSE:Factory/.knotifications.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "knotifications" Changes: -------- --- /work/SRC/openSUSE:Factory/knotifications/knotifications.changes 2015-09-02 07:47:24.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.knotifications.new/knotifications.changes 2015-09-24 07:13:05.000000000 +0200 @@ -1,0 +2,7 @@ +Tue Sep 8 17:13:22 UTC 2015 - [email protected] + +- Update to 5.14.0 + * For more details please see: + https://www.kde.org/announcements/kde-frameworks-5.14.0.php + +------------------------------------------------------------------- Old: ---- knotifications-5.13.0.tar.xz New: ---- knotifications-5.14.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ knotifications.spec ++++++ --- /var/tmp/diff_new_pack.2iNRod/_old 2015-09-24 07:13:05.000000000 +0200 +++ /var/tmp/diff_new_pack.2iNRod/_new 2015-09-24 07:13:05.000000000 +0200 @@ -18,9 +18,9 @@ %bcond_without lang %define lname libKF5Notifications5 -%define _tar_path 5.13 +%define _tar_path 5.14 Name: knotifications -Version: 5.13.0 +Version: 5.14.0 Release: 0 %define kf5_version %{version} BuildRequires: cmake >= 2.8.12 ++++++ knotifications-5.13.0.tar.xz -> knotifications-5.14.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotifications-5.13.0/CMakeLists.txt new/knotifications-5.14.0/CMakeLists.txt --- old/knotifications-5.13.0/CMakeLists.txt 2015-08-04 13:08:33.000000000 +0200 +++ new/knotifications-5.14.0/CMakeLists.txt 2015-09-05 11:09:20.000000000 +0200 @@ -4,7 +4,7 @@ # ECM setup include(FeatureSummary) -find_package(ECM 5.13.0 NO_MODULE) +find_package(ECM 5.14.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) @@ -14,11 +14,11 @@ include(GenerateExportHeader) include(ECMSetupVersion) include(ECMGenerateHeaders) - +include(ECMQtDeclareLoggingCategory) include(ECMPoQmTools) -set(KF5_VERSION "5.13.0") # handled by release scripts -set(KF5_DEP_VERSION "5.13.0") # handled by release scripts +set(KF5_VERSION "5.14.0") # handled by release scripts +set(KF5_DEP_VERSION "5.14.0") # handled by release scripts ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KNOTIFICATIONS diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotifications-5.13.0/src/CMakeLists.txt new/knotifications-5.14.0/src/CMakeLists.txt --- old/knotifications-5.13.0/src/CMakeLists.txt 2015-08-04 13:08:33.000000000 +0200 +++ new/knotifications-5.14.0/src/CMakeLists.txt 2015-09-05 11:09:20.000000000 +0200 @@ -3,7 +3,6 @@ ecm_create_qm_loader(knotifications_QM_LOADER knotifications5_qt) set(knotifications_SRCS - debug_p.cpp knotification.cpp knotificationmanager.cpp @@ -24,6 +23,8 @@ ${knotifications_QM_LOADER} ) +ecm_qt_declare_logging_category(knotifications_SRCS HEADER debug_p.h IDENTIFIER LOG_KNOTIFICATIONS CATEGORY_NAME org.kde.knotifications) + if (Qt5TextToSpeech_FOUND) set(knotifications_SRCS ${knotifications_SRCS} notifybytts.cpp) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotifications-5.13.0/src/debug_p.cpp new/knotifications-5.14.0/src/debug_p.cpp --- old/knotifications-5.13.0/src/debug_p.cpp 2015-08-04 13:08:33.000000000 +0200 +++ new/knotifications-5.14.0/src/debug_p.cpp 1970-01-01 01:00:00.000000000 +0100 @@ -1,29 +0,0 @@ -/* - Copyright (C) 2015 Christoph Cullmann <[email protected]> - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) version 3, or any - later version accepted by the membership of KDE e.V. (or its - successor approved by the membership of KDE e.V.), which shall - act as a proxy defined in Section 6 of version 3 of the license. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library. If not, see <http://www.gnu.org/licenses/>. - - */ - -#include "debug_p.h" - -#if QT_VERSION >= QT_VERSION_CHECK(5, 4, 0) -// logging category for this framework, default: log stuff >= warning -Q_LOGGING_CATEGORY(LOG_KNOTIFICATIONS, "org.kde.knotifications", QtWarningMsg) -#else -Q_LOGGING_CATEGORY(LOG_KNOTIFICATIONS, "org.kde.knotifications") -#endif diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotifications-5.13.0/src/debug_p.h new/knotifications-5.14.0/src/debug_p.h --- old/knotifications-5.13.0/src/debug_p.h 2015-08-04 13:08:33.000000000 +0200 +++ new/knotifications-5.14.0/src/debug_p.h 1970-01-01 01:00:00.000000000 +0100 @@ -1,30 +0,0 @@ -/* - Copyright (C) 2015 Christoph Cullmann <[email protected]> - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) version 3, or any - later version accepted by the membership of KDE e.V. (or its - successor approved by the membership of KDE e.V.), which shall - act as a proxy defined in Section 6 of version 3 of the license. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library. If not, see <http://www.gnu.org/licenses/>. - - */ - -#ifndef NOTIFCATION_DEBUG_P_H -#define NOTIFCATION_DEBUG_P_H - -#include <QDebug> -#include <QLoggingCategory> - -Q_DECLARE_LOGGING_CATEGORY(LOG_KNOTIFICATIONS) - -#endif
