Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package syndication for openSUSE:Factory 
checked in at 2021-04-12 12:34:55
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/syndication (Old)
 and      /work/SRC/openSUSE:Factory/.syndication.new.2401 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "syndication"

Mon Apr 12 12:34:55 2021 rev:70 rq:884304 version:5.81.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/syndication/syndication.changes  2021-03-16 
15:42:58.544899999 +0100
+++ /work/SRC/openSUSE:Factory/.syndication.new.2401/syndication.changes        
2021-04-12 12:37:16.793363361 +0200
@@ -1,0 +2,10 @@
+Mon Apr  5 07:12:59 UTC 2021 - Christophe Giboudeaux <[email protected]>
+
+- Update to 5.81.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/5/5.81.0
+- Changes since 5.80.0:
+  * Port away from QtWidgets
+
+-------------------------------------------------------------------

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

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

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

Other differences:
------------------
++++++ syndication.spec ++++++
--- /var/tmp/diff_new_pack.S6YjlU/_old  2021-04-12 12:37:17.757364481 +0200
+++ /var/tmp/diff_new_pack.S6YjlU/_new  2021-04-12 12:37:17.761364486 +0200
@@ -17,14 +17,14 @@
 
 
 %define lname libKF5Syndication5
-%define _tar_path 5.80
+%define _tar_path 5.81
 # 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.80.0
+Version:        5.81.0
 Release:        0
 Summary:        RSS/Atom parsing library
 License:        LGPL-2.1-or-later
@@ -40,7 +40,6 @@
 BuildRequires:  pkgconfig
 BuildRequires:  cmake(Qt5Network) >= 5.14.0
 BuildRequires:  cmake(Qt5Test) >= 5.14.0
-BuildRequires:  cmake(Qt5Widgets) >= 5.14.0
 BuildRequires:  cmake(Qt5Xml) >= 5.14.0
 
 %description


++++++ syndication-5.80.0.tar.xz -> syndication-5.81.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/syndication-5.80.0/CMakeLists.txt 
new/syndication-5.81.0/CMakeLists.txt
--- old/syndication-5.80.0/CMakeLists.txt       2021-03-01 20:05:38.000000000 
+0100
+++ new/syndication-5.81.0/CMakeLists.txt       2021-04-03 11:40:19.000000000 
+0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF_VERSION "5.80.0") # handled by release scripts
-set(KF_DEP_VERSION "5.80.0") # handled by release scripts
+set(KF_VERSION "5.81.0") # handled by release scripts
+set(KF_DEP_VERSION "5.81.0") # handled by release scripts
 
 project(Syndication VERSION ${KF_VERSION})
 
@@ -37,7 +37,7 @@
 find_package(KF5Codecs ${KF_DEP_VERSION} CONFIG REQUIRED)
 
 add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050e00)
-add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x054F00)
+add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x055000)
 
 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)")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/syndication-5.80.0/tests/CMakeLists.txt 
new/syndication-5.81.0/tests/CMakeLists.txt
--- old/syndication-5.80.0/tests/CMakeLists.txt 2021-03-01 20:05:38.000000000 
+0100
+++ new/syndication-5.81.0/tests/CMakeLists.txt 2021-04-03 11:40:19.000000000 
+0200
@@ -3,11 +3,10 @@
 include(ECMMarkAsTest)
 
 find_package(Qt5Network ${REQUIRED_QT_VERSION} CONFIG REQUIRED) # for 
testloader
-find_package(Qt5Widgets ${REQUIRED_QT_VERSION} CONFIG REQUIRED)
 
 ########### next target ###############
 
 set(testloader_SRCS testloader.cpp)
 add_executable(testloader ${testloader_SRCS})
-target_link_libraries(testloader KF5Syndication Qt5::Widgets Qt5::Network)
+target_link_libraries(testloader KF5Syndication Qt5::Core Qt5::Network)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/syndication-5.80.0/tests/testloader.cpp 
new/syndication-5.81.0/tests/testloader.cpp
--- old/syndication-5.80.0/tests/testloader.cpp 2021-03-01 20:05:38.000000000 
+0100
+++ new/syndication-5.81.0/tests/testloader.cpp 2021-04-03 11:40:19.000000000 
+0200
@@ -15,7 +15,7 @@
 #include "specificdocument.h"
 #include "syndication_version.h"
 
-#include <QApplication>
+#include <QCoreApplication>
 
 #include <QUrl>
 
@@ -107,7 +107,7 @@
         return 1;
     }
 
-    QApplication app(argc, argv);
+    QCoreApplication app(argc, argv);
 
     QCommandLineParser parser;
     app.setApplicationVersion(QStringLiteral(SYNDICATION_VERSION_STRING));

Reply via email to