Hello community,

here is the log from the commit of package kactivities5 for openSUSE:Factory 
checked in at 2018-11-14 14:30:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kactivities5 (Old)
 and      /work/SRC/openSUSE:Factory/.kactivities5.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kactivities5"

Wed Nov 14 14:30:59 2018 rev:59 rq:648490 version:5.52.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kactivities5/kactivities5.changes        
2018-10-22 11:09:04.719985505 +0200
+++ /work/SRC/openSUSE:Factory/.kactivities5.new/kactivities5.changes   
2018-11-14 14:31:56.647410574 +0100
@@ -1,0 +2,10 @@
+Sun Nov 11 19:48:02 UTC 2018 - lbeltr...@kde.org
+
+- Update to 5.52.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.52.0.php
+- Changes since 5.51.0:
+  * Autogenerate debug categories + add categories file
+
+-------------------------------------------------------------------

Old:
----
  kactivities-5.51.0.tar.xz

New:
----
  kactivities-5.52.0.tar.xz

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

Other differences:
------------------
++++++ kactivities5.spec ++++++
--- /var/tmp/diff_new_pack.Mf2Hqc/_old  2018-11-14 14:31:57.215410023 +0100
+++ /var/tmp/diff_new_pack.Mf2Hqc/_new  2018-11-14 14:31:57.231410008 +0100
@@ -17,13 +17,13 @@
 
 
 %define lname   libKF5Activities5
-%define _tar_path 5.51
+%define _tar_path 5.52
 # 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}')}
 Name:           kactivities5
-Version:        5.51.0
+Version:        5.52.0
 Release:        0
 Summary:        KDE Plasma Activities support
 License:        GPL-2.0-or-later
@@ -108,6 +108,7 @@
 
 %files -n %{lname}
 %{_kf5_libdir}/libKF5Activities.so.*
+%{_kf5_debugdir}/kactivities.categories
 
 %files imports
 %{_kf5_qmldir}/

++++++ kactivities-5.51.0.tar.xz -> kactivities-5.52.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kactivities-5.51.0/CMakeLists.txt 
new/kactivities-5.52.0/CMakeLists.txt
--- old/kactivities-5.51.0/CMakeLists.txt       2018-10-07 12:03:32.000000000 
+0200
+++ new/kactivities-5.52.0/CMakeLists.txt       2018-11-03 12:58:34.000000000 
+0100
@@ -3,8 +3,8 @@
 cmake_minimum_required(VERSION 3.0)
 
 # KDE Frameworks
-set(KF5_VERSION "5.51.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.51.0") # handled by release scripts
+set(KF5_VERSION "5.52.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.52.0") # handled by release scripts
 project (KActivities VERSION ${KF5_VERSION})
 
 option (KACTIVITIES_LIBRARY_ONLY "If true, compiles only the KActivities 
library, without the QML imports." OFF)
@@ -24,7 +24,7 @@
 
 # Extra CMake stuff
 include(FeatureSummary)
-find_package(ECM 5.51.0  NO_MODULE)
+find_package(ECM 5.52.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)
 
@@ -35,6 +35,7 @@
 include (KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include (GenerateExportHeader)
 include (ECMGenerateHeaders)
+include (ECMQtDeclareLoggingCategory)
 include (ECMAddQch)
 
 option(BUILD_QCH "Build API documentation in QCH format (for e.g. Qt 
Assistant, Qt Creator & KDevelop)" OFF)
@@ -69,7 +70,7 @@
    SOVERSION 5
    )
 
-add_definitions(-DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT)
+
 
 add_subdirectory (src)
 if (BUILD_TESTING)
@@ -115,6 +116,8 @@
    DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5} COMPONENT Devel
    )
 
+install( FILES kactivities.categories DESTINATION ${KDE_INSTALL_CONFDIR} )
+
 # Write out the features
 feature_summary (WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kactivities-5.51.0/kactivities.categories 
new/kactivities-5.52.0/kactivities.categories
--- old/kactivities-5.51.0/kactivities.categories       1970-01-01 
01:00:00.000000000 +0100
+++ new/kactivities-5.52.0/kactivities.categories       2018-11-03 
12:58:34.000000000 +0100
@@ -0,0 +1 @@
+org.kde.kactivities.lib.core kactivities core lib DEFAULT_SEVERITY [WARNING] 
IDENTIFIDER [KAMD_CORELIB]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kactivities-5.51.0/src/lib/CMakeLists.txt 
new/kactivities-5.52.0/src/lib/CMakeLists.txt
--- old/kactivities-5.51.0/src/lib/CMakeLists.txt       2018-10-07 
12:03:32.000000000 +0200
+++ new/kactivities-5.52.0/src/lib/CMakeLists.txt       2018-11-03 
12:58:34.000000000 +0100
@@ -18,7 +18,6 @@
    mainthreadexecutor_p.cpp
    manager_p.cpp
    activitiescache_p.cpp
-   debug_p.cpp
 
    ${KACTIVITIES_CURRENT_ROOT_SOURCE_DIR}/src/utils/dbusfuture_p.cpp
 
@@ -66,6 +65,9 @@
    application_interface
    )
 
+ecm_qt_declare_logging_category(KActivities_LIB_SRCS HEADER debug_p.h 
IDENTIFIER KAMD_CORELIB CATEGORY_NAME org.kde.kactivities.lib.core 
DEFAULT_SEVERITY Warning)
+
+
 add_library (
    KF5Activities SHARED
    ${KActivities_LIB_SRCS}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kactivities-5.51.0/src/lib/debug_p.cpp 
new/kactivities-5.52.0/src/lib/debug_p.cpp
--- old/kactivities-5.51.0/src/lib/debug_p.cpp  2018-10-07 12:03:32.000000000 
+0200
+++ new/kactivities-5.52.0/src/lib/debug_p.cpp  1970-01-01 01:00:00.000000000 
+0100
@@ -1,25 +0,0 @@
-/*
- *   Copyright (C) 2013 - 2016 by Ivan Cukic <ivan.cukic(at)kde.org>
- *
- *   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"
-
-// logging category for this framework, default: log stuff >= warning
-Q_LOGGING_CATEGORY(KAMD_CORELIB, "org.kde.kactivities.lib.core", QtWarningMsg)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kactivities-5.51.0/src/lib/debug_p.h 
new/kactivities-5.52.0/src/lib/debug_p.h
--- old/kactivities-5.51.0/src/lib/debug_p.h    2018-10-07 12:03:32.000000000 
+0200
+++ new/kactivities-5.52.0/src/lib/debug_p.h    1970-01-01 01:00:00.000000000 
+0100
@@ -1,30 +0,0 @@
-/*
- *   Copyright (C) 2013 - 2016 by Ivan Cukic <ivan.cukic(at)kde.org>
- *
- *   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 ACTIVITIES_DEBUG_P_H
-#define ACTIVITIES_DEBUG_P_H
-
-#include <QLoggingCategory>
-
-Q_DECLARE_LOGGING_CATEGORY(KAMD_CORELIB)
-
-#endif /* ACTIVITIES_DEBUG_P_H */
-


Reply via email to