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-02-17 18:12:05 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/syndication (Old) and /work/SRC/openSUSE:Factory/.syndication.new.28504 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "syndication" Wed Feb 17 18:12:05 2021 rev:68 rq:871740 version:5.79.0 Changes: -------- --- /work/SRC/openSUSE:Factory/syndication/syndication.changes 2021-01-13 18:30:19.377770916 +0100 +++ /work/SRC/openSUSE:Factory/.syndication.new.28504/syndication.changes 2021-02-17 18:13:09.122019732 +0100 @@ -1,0 +2,9 @@ +Mon Feb 8 08:46:56 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 5.79.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/kde-frameworks-5.79.0 +- No code change since 5.78.0 + +------------------------------------------------------------------- Old: ---- syndication-5.78.0.tar.xz syndication-5.78.0.tar.xz.sig New: ---- syndication-5.79.0.tar.xz syndication-5.79.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ syndication.spec ++++++ --- /var/tmp/diff_new_pack.8j7IOp/_old 2021-02-17 18:13:09.682020191 +0100 +++ /var/tmp/diff_new_pack.8j7IOp/_new 2021-02-17 18:13:09.686020194 +0100 @@ -17,14 +17,14 @@ %define lname libKF5Syndication5 -%define _tar_path 5.78 +%define _tar_path 5.79 # 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.78.0 +Version: 5.79.0 Release: 0 Summary: RSS/Atom parsing library License: LGPL-2.1-or-later ++++++ syndication-5.78.0.tar.xz -> syndication-5.79.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/syndication-5.78.0/.gitignore new/syndication-5.79.0/.gitignore --- old/syndication-5.78.0/.gitignore 2021-01-02 13:36:54.000000000 +0100 +++ new/syndication-5.79.0/.gitignore 2021-01-30 18:45:18.000000000 +0100 @@ -20,3 +20,4 @@ CMakeLists.txt.user* *.unc-backup* .cmake/ +/.clang-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/syndication-5.78.0/CMakeLists.txt new/syndication-5.79.0/CMakeLists.txt --- old/syndication-5.78.0/CMakeLists.txt 2021-01-02 13:36:54.000000000 +0100 +++ new/syndication-5.79.0/CMakeLists.txt 2021-01-30 18:45:18.000000000 +0100 @@ -1,14 +1,14 @@ cmake_minimum_required(VERSION 3.5) -set(KF5_VERSION "5.78.0") # handled by release scripts -set(KF5_DEP_VERSION "5.78.0") # handled by release scripts +set(KF_VERSION "5.79.0") # handled by release scripts +set(KF_DEP_VERSION "5.79.0") # handled by release scripts -project(Syndication VERSION ${KF5_VERSION}) +project(Syndication VERSION ${KF_VERSION}) set(REQUIRED_QT_VERSION 5.14.0) # ECM setup -find_package(ECM ${KF5_DEP_VERSION} CONFIG REQUIRED) +find_package(ECM ${KF_DEP_VERSION} CONFIG REQUIRED) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH}) include(GenerateExportHeader) @@ -33,7 +33,7 @@ ########### Find packages ########### find_package(Qt5Xml ${REQUIRED_QT_VERSION} CONFIG REQUIRED) -find_package(KF5Codecs ${KF5_DEP_VERSION} CONFIG REQUIRED) +find_package(KF5Codecs ${KF_DEP_VERSION} CONFIG REQUIRED) add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050e00) add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x054B00) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/syndication-5.78.0/src/CMakeLists.txt new/syndication-5.79.0/src/CMakeLists.txt --- old/syndication-5.78.0/src/CMakeLists.txt 2021-01-02 13:36:54.000000000 +0100 +++ new/syndication-5.79.0/src/CMakeLists.txt 2021-01-30 18:45:18.000000000 +0100 @@ -120,7 +120,7 @@ add_library(KF5::Syndication ALIAS KF5Syndication) -target_include_directories(KF5Syndication INTERFACE "$<INSTALL_INTERFACE:${KDE_INSTALL_INCLUDEDIR_KF5}/Syndication;${KF5_INCLUDE_INSTALL_DIR}/Syndication/syndication>") +target_include_directories(KF5Syndication INTERFACE "$<INSTALL_INTERFACE:${KDE_INSTALL_INCLUDEDIR_KF5}/Syndication;${KDE_INSTALL_INCLUDEDIR_KF5}/Syndication/syndication>") target_include_directories(KF5Syndication PUBLIC "$<BUILD_INTERFACE:${Syndication_SOURCE_DIR}/src;${Syndication_BINARY_DIR}/src>") target_include_directories(KF5Syndication PUBLIC "$<BUILD_INTERFACE:${Syndication_BINARY_DIR}>") @@ -200,7 +200,7 @@ KF5Syndication_QCH NAME Syndication BASE_NAME KF5Syndication - VERSION ${KF5_VERSION} + VERSION ${KF_VERSION} ORG_DOMAIN org.kde SOURCES # using only public headers, to cover only public API ${Syndication_HEADERS} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/syndication-5.78.0/src/loader.cpp new/syndication-5.79.0/src/loader.cpp --- old/syndication-5.78.0/src/loader.cpp 2021-01-02 13:36:54.000000000 +0100 +++ new/syndication-5.79.0/src/loader.cpp 2021-01-30 18:45:18.000000000 +0100 @@ -97,7 +97,7 @@ d->retriever = nullptr; } - emit loadingComplete(this, FeedPtr(), Aborted); + Q_EMIT loadingComplete(this, FeedPtr(), Aborted); delete this; } @@ -128,7 +128,7 @@ status = OtherRetrieverError; } - emit loadingComplete(this, feed, status); + Q_EMIT loadingComplete(this, feed, status); delete this; }