Hello community, here is the log from the commit of package kxmlrpcclient5 for openSUSE:Factory checked in at 2018-04-19 15:19:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kxmlrpcclient5 (Old) and /work/SRC/openSUSE:Factory/.kxmlrpcclient5.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kxmlrpcclient5" Thu Apr 19 15:19:18 2018 rev:38 rq:596908 version:5.45.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kxmlrpcclient5/kxmlrpcclient5.changes 2018-03-20 21:48:26.807420359 +0100 +++ /work/SRC/openSUSE:Factory/.kxmlrpcclient5.new/kxmlrpcclient5.changes 2018-04-19 15:19:20.839704789 +0200 @@ -1,0 +2,10 @@ +Sat Apr 14 13:19:06 CEST 2018 - [email protected] + +- Update to 5.45.0 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/kde-frameworks-5.45.0.php +- Changes since 5.44.0: + * Remove not necessary QtCore and co + +------------------------------------------------------------------- Old: ---- kxmlrpcclient-5.44.0.tar.xz New: ---- kxmlrpcclient-5.45.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kxmlrpcclient5.spec ++++++ --- /var/tmp/diff_new_pack.ctM8iJ/_old 2018-04-19 15:19:21.331685084 +0200 +++ /var/tmp/diff_new_pack.ctM8iJ/_new 2018-04-19 15:19:21.335684923 +0200 @@ -19,13 +19,13 @@ %bcond_without lang %define rname kxmlrpcclient %define lname libKF5XmlRpcClient5 -%define _tar_path 5.44 +%define _tar_path 5.45 # 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: %global _kf5_bugfix_version %(echo %{_kf5_version} | awk -F. '{print $1"."$2}')} Name: kxmlrpcclient5 -Version: 5.44.0 +Version: 5.45.0 Release: 0 %define kf5_version %{version} Summary: Library containing simple XML-RPC Client support ++++++ kxmlrpcclient-5.44.0.tar.xz -> kxmlrpcclient-5.45.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kxmlrpcclient-5.44.0/CMakeLists.txt new/kxmlrpcclient-5.45.0/CMakeLists.txt --- old/kxmlrpcclient-5.44.0/CMakeLists.txt 2018-03-03 11:07:56.000000000 +0100 +++ new/kxmlrpcclient-5.45.0/CMakeLists.txt 2018-04-07 21:40:23.000000000 +0200 @@ -1,12 +1,12 @@ cmake_minimum_required(VERSION 3.0) -set(KF5_VERSION "5.44.0") # handled by release scripts -set(KF5_DEP_VERSION "5.44.0") # handled by release scripts +set(KF5_VERSION "5.45.0") # handled by release scripts +set(KF5_DEP_VERSION "5.45.0") # handled by release scripts project(KXmlRpcClient VERSION ${KF5_VERSION}) # ECM setup include(FeatureSummary) -find_package(ECM 5.44.0 CONFIG ) +find_package(ECM 5.45.0 CONFIG ) 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) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kxmlrpcclient-5.44.0/autotests/clienttest.h new/kxmlrpcclient-5.45.0/autotests/clienttest.h --- old/kxmlrpcclient-5.44.0/autotests/clienttest.h 2018-03-03 11:07:56.000000000 +0100 +++ new/kxmlrpcclient-5.45.0/autotests/clienttest.h 2018-04-07 21:40:23.000000000 +0200 @@ -22,7 +22,7 @@ #ifndef _KXMLRPC_TEST_CLIENT_H_ #define _KXMLRPC_TEST_CLIENT_H_ -#include <QtCore/QObject> +#include <QObject> class ClientTest : public QObject { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kxmlrpcclient-5.44.0/autotests/querytest.cpp new/kxmlrpcclient-5.45.0/autotests/querytest.cpp --- old/kxmlrpcclient-5.44.0/autotests/querytest.cpp 2018-03-03 11:07:56.000000000 +0100 +++ new/kxmlrpcclient-5.45.0/autotests/querytest.cpp 2018-04-07 21:40:23.000000000 +0200 @@ -19,8 +19,8 @@ Boston, MA 02110-1301, USA. */ -#include <QtTest/QTest> -#include <QtCore/QDebug> +#include <QTest> +#include <QDebug> #include "querytest.h" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kxmlrpcclient-5.44.0/autotests/querytest.h new/kxmlrpcclient-5.45.0/autotests/querytest.h --- old/kxmlrpcclient-5.44.0/autotests/querytest.h 2018-03-03 11:07:56.000000000 +0100 +++ new/kxmlrpcclient-5.45.0/autotests/querytest.h 2018-04-07 21:40:23.000000000 +0200 @@ -22,7 +22,7 @@ #ifndef _KXMLRPC_TEST_QUERY_H_ #define _KXMLRPC_TEST_QUERY_H_ -#include <QtCore/QObject> +#include <QObject> class QueryTest : public QObject { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kxmlrpcclient-5.44.0/po/zh_CN/libkxmlrpcclient5.po new/kxmlrpcclient-5.45.0/po/zh_CN/libkxmlrpcclient5.po --- old/kxmlrpcclient-5.44.0/po/zh_CN/libkxmlrpcclient5.po 2018-03-03 11:07:56.000000000 +0100 +++ new/kxmlrpcclient-5.45.0/po/zh_CN/libkxmlrpcclient5.po 2018-04-07 21:40:23.000000000 +0200 @@ -7,7 +7,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2016-11-19 20:12+0100\n" -"PO-Revision-Date: 2018-02-28 02:23-0500\n" +"PO-Revision-Date: 2018-04-05 09:22-0400\n" "Last-Translator: guoyunhebrave <[email protected]>\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kxmlrpcclient-5.44.0/src/client.cpp new/kxmlrpcclient-5.45.0/src/client.cpp --- old/kxmlrpcclient-5.44.0/src/client.cpp 2018-03-03 11:07:56.000000000 +0100 +++ new/kxmlrpcclient-5.45.0/src/client.cpp 2018-04-07 21:40:23.000000000 +0200 @@ -26,7 +26,7 @@ #include "kxmlrpcclient_debug.h" #include <kio/job.h> -#include <QtCore/QVariant> +#include <QVariant> using namespace KXmlRpc; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kxmlrpcclient-5.44.0/src/client.h new/kxmlrpcclient-5.45.0/src/client.h --- old/kxmlrpcclient-5.44.0/src/client.h 2018-03-03 11:07:56.000000000 +0100 +++ new/kxmlrpcclient-5.45.0/src/client.h 2018-04-07 21:40:23.000000000 +0200 @@ -26,10 +26,10 @@ #include "kxmlrpcclient_export.h" -#include <QtCore/QUrl> -#include <QtCore/QList> -#include <QtCore/QObject> -#include <QtCore/QVariant> +#include <QUrl> +#include <QList> +#include <QObject> +#include <QVariant> class ClientPrivate; /** Names for XmlRpc related classes */ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kxmlrpcclient-5.44.0/src/query.h new/kxmlrpcclient-5.45.0/src/query.h --- old/kxmlrpcclient-5.44.0/src/query.h 2018-03-03 11:07:56.000000000 +0100 +++ new/kxmlrpcclient-5.45.0/src/query.h 2018-04-07 21:40:23.000000000 +0200 @@ -23,11 +23,11 @@ #include "kxmlrpcclient_export.h" -#include <QtCore/QList> -#include <QtCore/QObject> -#include <QtCore/QVariant> -#include <QtCore/QMap> -#include <QtCore/QUrl> +#include <QList> +#include <QObject> +#include <QVariant> +#include <QMap> +#include <QUrl> namespace KIO { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kxmlrpcclient-5.44.0/src/query_p.h new/kxmlrpcclient-5.45.0/src/query_p.h --- old/kxmlrpcclient-5.44.0/src/query_p.h 2018-03-03 11:07:56.000000000 +0100 +++ new/kxmlrpcclient-5.45.0/src/query_p.h 2018-04-07 21:40:23.000000000 +0200 @@ -13,10 +13,10 @@ #include "kxmlrpcclient_private_export.h" #include <KIO/Job> -#include <QtCore/QUrl> -#include <QtCore/QDateTime> -#include <QtCore/QVariant> -#include <QtXml/QDomDocument> +#include <QUrl> +#include <QDateTime> +#include <QVariant> +#include <QDomDocument> namespace KXmlRpc {
