Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package syndication for openSUSE:Factory 
checked in at 2022-01-11 21:17:01
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/syndication (Old)
 and      /work/SRC/openSUSE:Factory/.syndication.new.1892 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "syndication"

Tue Jan 11 21:17:01 2022 rev:79 rq:945102 version:5.90.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/syndication/syndication.changes  2021-12-13 
20:45:28.212492971 +0100
+++ /work/SRC/openSUSE:Factory/.syndication.new.1892/syndication.changes        
2022-01-11 21:20:17.661002074 +0100
@@ -1,0 +2,11 @@
+Mon Jan  3 12:48:09 UTC 2022 - Christophe Giboudeaux <[email protected]>
+
+- Update to 5.90.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/5/5.90.0
+- Changes since 5.89.0:
+  * Change the build system to enable building with Qt6
+  * It compiles fine without deprecated methods
+
+-------------------------------------------------------------------

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

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

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

Other differences:
------------------
++++++ syndication.spec ++++++
--- /var/tmp/diff_new_pack.BkiSVc/_old  2022-01-11 21:20:18.317002535 +0100
+++ /var/tmp/diff_new_pack.BkiSVc/_new  2022-01-11 21:20:18.317002535 +0100
@@ -17,21 +17,21 @@
 
 
 %define lname libKF5Syndication5
-%define _tar_path 5.89
+%define _tar_path 5.90
 # 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
+%bcond_without released
 Name:           syndication
-Version:        5.89.0
+Version:        5.90.0
 Release:        0
 Summary:        RSS/Atom parsing library
 License:        LGPL-2.1-or-later
 Group:          Development/Libraries/KDE
 URL:            https://www.kde.org
 Source:         %{name}-%{version}.tar.xz
-%if %{with lang}
+%if %{with released}
 Source1:        %{name}-%{version}.tar.xz.sig
 Source2:        frameworks.keyring
 %endif


++++++ syndication-5.89.0.tar.xz -> syndication-5.90.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/syndication-5.89.0/CMakeLists.txt 
new/syndication-5.90.0/CMakeLists.txt
--- old/syndication-5.89.0/CMakeLists.txt       2021-12-04 18:07:19.000000000 
+0100
+++ new/syndication-5.90.0/CMakeLists.txt       2022-01-01 13:22:10.000000000 
+0100
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "5.89.0") # handled by release scripts
-set(KF_DEP_VERSION "5.89.0") # handled by release scripts
+set(KF_VERSION "5.90.0") # handled by release scripts
+set(KF_DEP_VERSION "5.90.0") # handled by release scripts
 
 project(Syndication VERSION ${KF_VERSION})
 
@@ -31,12 +31,12 @@
 )
 
 ########### Find packages ###########
-find_package(Qt5Xml ${REQUIRED_QT_VERSION} CONFIG REQUIRED)
+find_package(Qt${QT_MAJOR_VERSION}Xml ${REQUIRED_QT_VERSION} CONFIG REQUIRED)
 
 find_package(KF5Codecs ${KF_DEP_VERSION} CONFIG REQUIRED)
 
 add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050f02)
-add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x055100)
+add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x055900)
 
 option(BUILD_QCH "Build API documentation in QCH format (for e.g. Qt 
Assistant, Qt Creator & KDevelop)" OFF)
 add_feature_info(QCH ${BUILD_QCH} "API documentation in QCH format (for e.g. 
Qt Assistant, Qt Creator & KDevelop)")
@@ -82,7 +82,7 @@
 
 install(FILES
    ${CMAKE_CURRENT_BINARY_DIR}/syndication_version.h
-  DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5} COMPONENT Devel
+  DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF} COMPONENT Devel
 )
 
 feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/syndication-5.89.0/autotests/CMakeLists.txt 
new/syndication-5.90.0/autotests/CMakeLists.txt
--- old/syndication-5.89.0/autotests/CMakeLists.txt     2021-12-04 
18:07:19.000000000 +0100
+++ new/syndication-5.90.0/autotests/CMakeLists.txt     2022-01-01 
13:22:10.000000000 +0100
@@ -2,7 +2,7 @@
 
 include(ECMMarkAsTest)
 
-find_package(Qt5Test CONFIG REQUIRED)
+find_package(Qt${QT_MAJOR_VERSION}Test CONFIG REQUIRED)
 
 ########### next target ###############
 
@@ -14,18 +14,18 @@
 add_executable(testpersonimpl testpersonimpl.cpp)
 add_test(NAME testpersonimpl COMMAND testpersonimpl)
 ecm_mark_as_test(testpersonimpl)
-target_link_libraries(testpersonimpl KF5Syndication Qt5::Test)
+target_link_libraries(testpersonimpl KF5Syndication 
Qt${QT_MAJOR_VERSION}::Test)
 
 #########
 add_executable(syndicationtest syndicationtest.cpp)
 target_compile_definitions(syndicationtest PRIVATE 
-DSYNDICATION_DATA_DIR="${CMAKE_CURRENT_SOURCE_DIR}")
 add_test(NAME syndicationtest COMMAND syndicationtest)
 ecm_mark_as_test(syndicationtest)
-target_link_libraries(syndicationtest KF5Syndication Qt5::Test)
+target_link_libraries(syndicationtest KF5Syndication 
Qt${QT_MAJOR_VERSION}::Test)
 
 #########
 add_executable(loaderutiltest loaderutiltest.cpp)
 target_compile_definitions(loaderutiltest PRIVATE 
-DSYNDICATION_DATA_FEEDPARSING_DIR="${CMAKE_CURRENT_SOURCE_DIR}/feeds/")
 add_test(NAME loaderutiltest COMMAND loaderutiltest)
 ecm_mark_as_test(loaderutiltest)
-target_link_libraries(loaderutiltest KF5Syndication Qt5::Test)
+target_link_libraries(loaderutiltest KF5Syndication 
Qt${QT_MAJOR_VERSION}::Test)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/syndication-5.89.0/src/CMakeLists.txt 
new/syndication-5.90.0/src/CMakeLists.txt
--- old/syndication-5.89.0/src/CMakeLists.txt   2021-12-04 18:07:19.000000000 
+0100
+++ new/syndication-5.90.0/src/CMakeLists.txt   2022-01-01 13:22:10.000000000 
+0100
@@ -111,7 +111,7 @@
 
 target_include_directories(KF5Syndication
     INTERFACE
-        
"$<INSTALL_INTERFACE:${KDE_INSTALL_INCLUDEDIR_KF5}/Syndication;${KDE_INSTALL_INCLUDEDIR_KF5}/Syndication/syndication>"
+        
"$<INSTALL_INTERFACE:${KDE_INSTALL_INCLUDEDIR_KF}/Syndication;${KDE_INSTALL_INCLUDEDIR_KF}/Syndication/syndication>"
     PUBLIC
         
"$<BUILD_INTERFACE:${Syndication_SOURCE_DIR}/src;${Syndication_BINARY_DIR}/src;${Syndication_BINARY_DIR}>"
 )
@@ -120,9 +120,9 @@
 
 target_link_libraries(KF5Syndication
 PUBLIC
-    Qt5::Core
+    Qt${QT_MAJOR_VERSION}::Core
 PRIVATE
-    Qt5::Xml
+    Qt${QT_MAJOR_VERSION}::Xml
     KF5::Codecs
 )
 
@@ -164,13 +164,13 @@
 install(FILES
     ${CMAKE_CURRENT_BINARY_DIR}/syndication_export.h
     ${Syndication_HEADERS}
-    DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5}/Syndication/syndication
+    DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF}/Syndication/syndication
     COMPONENT Devel
 )
 
 install(FILES
     ${Syndication_CamelCase_HEADERS}
-    DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5}/Syndication/Syndication
+    DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF}/Syndication/Syndication
     COMPONENT Devel
 
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/syndication-5.89.0/src/atom/CMakeLists.txt 
new/syndication-5.90.0/src/atom/CMakeLists.txt
--- old/syndication-5.89.0/src/atom/CMakeLists.txt      2021-12-04 
18:07:19.000000000 +0100
+++ new/syndication-5.90.0/src/atom/CMakeLists.txt      2022-01-01 
13:22:10.000000000 +0100
@@ -21,14 +21,14 @@
 
 install(FILES
     ${Syndication_Atom_CamelCase_HEADERS}
-    DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5}/Syndication/Syndication/Atom
+    DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF}/Syndication/Syndication/Atom
     COMPONENT Devel
 
 )
 
 install(FILES
     ${Syndication_Atom_HEADERS}
-        DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5}/Syndication/syndication/atom
+        DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF}/Syndication/syndication/atom
         COMPONENT Devel
 )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/syndication-5.89.0/src/elementwrapper.cpp 
new/syndication-5.90.0/src/elementwrapper.cpp
--- old/syndication-5.89.0/src/elementwrapper.cpp       2021-12-04 
18:07:19.000000000 +0100
+++ new/syndication-5.90.0/src/elementwrapper.cpp       2022-01-01 
13:22:10.000000000 +0100
@@ -12,6 +12,7 @@
 
 #include <QDomDocument>
 #include <QDomElement>
+#include <QIODevice>
 #include <QStringList>
 #include <QTextStream>
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/syndication-5.89.0/src/rdf/CMakeLists.txt 
new/syndication-5.90.0/src/rdf/CMakeLists.txt
--- old/syndication-5.89.0/src/rdf/CMakeLists.txt       2021-12-04 
18:07:19.000000000 +0100
+++ new/syndication-5.90.0/src/rdf/CMakeLists.txt       2022-01-01 
13:22:10.000000000 +0100
@@ -33,14 +33,14 @@
 
 install(FILES
     ${Syndication_Rdf_CamelCase_HEADERS}
-    DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5}/Syndication/Syndication/Rdf
+    DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF}/Syndication/Syndication/Rdf
     COMPONENT Devel
 
 )
 
 install(FILES
     ${Syndication_Rdf_HEADERS}
-        DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5}/Syndication/syndication/rdf
+        DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF}/Syndication/syndication/rdf
         COMPONENT Devel
 )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/syndication-5.89.0/src/rdf/dublincore.h 
new/syndication-5.90.0/src/rdf/dublincore.h
--- old/syndication-5.89.0/src/rdf/dublincore.h 2021-12-04 18:07:19.000000000 
+0100
+++ new/syndication-5.90.0/src/rdf/dublincore.h 2022-01-01 13:22:10.000000000 
+0100
@@ -10,10 +10,11 @@
 
 #include <syndication/rdf/resourcewrapper.h>
 
+#include <QStringList>
+
 #include <ctime>
 
 class QString;
-class QStringList;
 
 namespace Syndication
 {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/syndication-5.89.0/src/rdf/rssvocab.h 
new/syndication-5.90.0/src/rdf/rssvocab.h
--- old/syndication-5.89.0/src/rdf/rssvocab.h   2021-12-04 18:07:19.000000000 
+0100
+++ new/syndication-5.90.0/src/rdf/rssvocab.h   2022-01-01 13:22:10.000000000 
+0100
@@ -9,11 +9,11 @@
 #define SYNDICATION_RDF_RSSVOCAB_H
 
 #include <QSharedPointer>
+#include <QStringList>
 
 #include <syndication_export.h>
 
 class QString;
-class QStringList;
 
 namespace Syndication
 {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/syndication-5.89.0/src/rss2/CMakeLists.txt 
new/syndication-5.90.0/src/rss2/CMakeLists.txt
--- old/syndication-5.89.0/src/rss2/CMakeLists.txt      2021-12-04 
18:07:19.000000000 +0100
+++ new/syndication-5.90.0/src/rss2/CMakeLists.txt      2022-01-01 
13:22:10.000000000 +0100
@@ -20,14 +20,14 @@
 
 install(FILES
     ${Syndication_Rss2_CamelCase_HEADERS}
-    DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5}/Syndication/Syndication/Rss2
+    DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF}/Syndication/Syndication/Rss2
     COMPONENT Devel
 
 )
 
 install(FILES
     ${Syndication_Rss2_HEADERS}
-        DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5}/Syndication/syndication/rss2
+        DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF}/Syndication/syndication/rss2
         COMPONENT Devel
 )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/syndication-5.89.0/tests/CMakeLists.txt 
new/syndication-5.90.0/tests/CMakeLists.txt
--- old/syndication-5.89.0/tests/CMakeLists.txt 2021-12-04 18:07:19.000000000 
+0100
+++ new/syndication-5.90.0/tests/CMakeLists.txt 2022-01-01 13:22:10.000000000 
+0100
@@ -2,10 +2,10 @@
 
 include(ECMMarkAsTest)
 
-find_package(Qt5Network ${REQUIRED_QT_VERSION} CONFIG REQUIRED) # for 
testloader
+find_package(Qt${QT_MAJOR_VERSION}Network ${REQUIRED_QT_VERSION} CONFIG 
REQUIRED) # for testloader
 
 ########### next target ###############
 
 add_executable(testloader testloader.cpp)
-target_link_libraries(testloader KF5Syndication Qt5::Core Qt5::Network)
+target_link_libraries(testloader KF5Syndication Qt${QT_MAJOR_VERSION}::Core 
Qt${QT_MAJOR_VERSION}::Network)
 

Reply via email to