Hello community,

here is the log from the commit of package syndication for openSUSE:Factory 
checked in at 2020-08-12 12:27:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/syndication (Old)
 and      /work/SRC/openSUSE:Factory/.syndication.new.3399 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "syndication"

Wed Aug 12 12:27:39 2020 rev:62 rq:825125 version:5.73.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/syndication/syndication.changes  2020-07-14 
07:57:39.877473942 +0200
+++ /work/SRC/openSUSE:Factory/.syndication.new.3399/syndication.changes        
2020-08-12 12:29:39.400188090 +0200
@@ -1,0 +2,11 @@
+Sun Aug  2 07:14:01 UTC 2020 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 5.73.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.73.0
+- Changes since 5.72.0:
+  * Use KF-standardized Qt logging categories
+  * Use camelcase include. (scripted)
+
+-------------------------------------------------------------------

Old:
----
  syndication-5.72.0.tar.xz
  syndication-5.72.0.tar.xz.sig

New:
----
  syndication-5.73.0.tar.xz
  syndication-5.73.0.tar.xz.sig

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

Other differences:
------------------
++++++ syndication.spec ++++++
--- /var/tmp/diff_new_pack.uOUyJn/_old  2020-08-12 12:29:39.932188376 +0200
+++ /var/tmp/diff_new_pack.uOUyJn/_new  2020-08-12 12:29:39.932188376 +0200
@@ -17,14 +17,14 @@
 
 
 %define lname libKF5Syndication5
-%define _tar_path 5.72
+%define _tar_path 5.73
 # 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:           syndication
-Version:        5.72.0
+Version:        5.73.0
 Release:        0
 Summary:        RSS/Atom parsing library
 License:        LGPL-2.1-or-later
@@ -83,6 +83,7 @@
 %license COPYING*
 %{_kf5_libdir}/libKF5Syndication.so.*
 %{_kf5_debugdir}/syndication.categories
+%{_kf5_debugdir}/*.renamecategories
 
 %files devel
 %license COPYING*


++++++ syndication-5.72.0.tar.xz -> syndication-5.73.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/syndication-5.72.0/CMakeLists.txt 
new/syndication-5.73.0/CMakeLists.txt
--- old/syndication-5.72.0/CMakeLists.txt       2020-07-04 12:00:22.000000000 
+0200
+++ new/syndication-5.73.0/CMakeLists.txt       2020-08-01 21:22:16.000000000 
+0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.72.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.72.0") # handled by release scripts
+set(KF5_VERSION "5.73.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.73.0") # handled by release scripts
 
 project(Syndication VERSION ${KF5_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/syndication-5.72.0/src/CMakeLists.txt 
new/syndication-5.73.0/src/CMakeLists.txt
--- old/syndication-5.72.0/src/CMakeLists.txt   2020-07-04 12:00:22.000000000 
+0200
+++ new/syndication-5.73.0/src/CMakeLists.txt   2020-08-01 21:22:16.000000000 
+0200
@@ -108,7 +108,8 @@
 ecm_qt_declare_logging_category(syndication_SRCS
     HEADER syndication_debug.h
     IDENTIFIER SYNDICATION_LOG
-    CATEGORY_NAME kf5.syndication
+    CATEGORY_NAME kf.syndication
+    OLD_CATEGORY_NAMES kf5.syndication
     DESCRIPTION "syndication"
     EXPORT SYNDICATION
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/syndication-5.72.0/src/tools.cpp 
new/syndication-5.73.0/src/tools.cpp
--- old/syndication-5.72.0/src/tools.cpp        2020-07-04 12:00:22.000000000 
+0200
+++ new/syndication-5.73.0/src/tools.cpp        2020-08-01 21:22:16.000000000 
+0200
@@ -23,7 +23,7 @@
 #include "tools.h"
 #include "personimpl.h"
 
-#include <kcharsets.h>
+#include <KCharsets>
 
 #include <QByteArray>
 #include <QCryptographicHash>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/syndication-5.72.0/tests/testloader.cpp 
new/syndication-5.73.0/tests/testloader.cpp
--- old/syndication-5.72.0/tests/testloader.cpp 2020-07-04 12:00:22.000000000 
+0200
+++ new/syndication-5.73.0/tests/testloader.cpp 2020-08-01 21:22:16.000000000 
+0200
@@ -33,9 +33,9 @@
 #include "rss2/parser.h"
 #include "syndication_version.h"
 
-#include <qapplication.h>
+#include <QApplication>
 
-#include <qurl.h>
+#include <QUrl>
 
 #include <QCommandLineParser>
 #include <QCommandLineOption>


Reply via email to