Hello community,

here is the log from the commit of package kdeclarative for openSUSE:Factory 
checked in at 2018-12-19 13:40:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kdeclarative (Old)
 and      /work/SRC/openSUSE:Factory/.kdeclarative.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kdeclarative"

Wed Dec 19 13:40:00 2018 rev:62 rq:658553 version:5.53.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kdeclarative/kdeclarative.changes        
2018-11-14 14:32:53.735355145 +0100
+++ /work/SRC/openSUSE:Factory/.kdeclarative.new.28833/kdeclarative.changes     
2018-12-19 13:40:12.292059334 +0100
@@ -1,0 +2,10 @@
+Sun Dec 09 19:43:43 UTC 2018 - [email protected]
+
+- Update to 5.53.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.53.0.php
+- Changes since 5.52.0:
+  * Normalize signal/slot
+
+-------------------------------------------------------------------

Old:
----
  kdeclarative-5.52.0.tar.xz

New:
----
  kdeclarative-5.53.0.tar.xz

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

Other differences:
------------------
++++++ kdeclarative.spec ++++++
--- /var/tmp/diff_new_pack.MKKYcw/_old  2018-12-19 13:40:12.784058639 +0100
+++ /var/tmp/diff_new_pack.MKKYcw/_new  2018-12-19 13:40:12.784058639 +0100
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5Declarative5
-%define _tar_path 5.52
+%define _tar_path 5.53
 # 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:           kdeclarative
-Version:        5.52.0
+Version:        5.53.0
 Release:        0
 Summary:        Integration of QML and KDE workspaces
 License:        LGPL-2.1-or-later

++++++ kdeclarative-5.52.0.tar.xz -> kdeclarative-5.53.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeclarative-5.52.0/CMakeLists.txt 
new/kdeclarative-5.53.0/CMakeLists.txt
--- old/kdeclarative-5.52.0/CMakeLists.txt      2018-11-03 18:59:30.000000000 
+0100
+++ new/kdeclarative-5.53.0/CMakeLists.txt      2018-12-01 15:53:53.000000000 
+0100
@@ -1,18 +1,18 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.52.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.52.0") # handled by release scripts
+set(KF5_VERSION "5.53.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.53.0") # handled by release scripts
 project(KDeclarative VERSION ${KF5_VERSION})
 
 # Dependencies
 include(FeatureSummary)
-find_package(ECM 5.52.0  NO_MODULE)
+find_package(ECM 5.53.0  NO_MODULE)
 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)
 
 set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake ${ECM_MODULE_PATH} 
${ECM_KDE_MODULE_DIR})
 
-set(REQUIRED_QT_VERSION 5.8.0)
+set(REQUIRED_QT_VERSION 5.9.0)
 
 find_package(Qt5 ${REQUIRED_QT_VERSION} NO_MODULE REQUIRED Qml Quick Gui)
 include(KDEInstallDirs)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdeclarative-5.52.0/autotests/columnproxymodeltest.cpp 
new/kdeclarative-5.53.0/autotests/columnproxymodeltest.cpp
--- old/kdeclarative-5.52.0/autotests/columnproxymodeltest.cpp  2018-11-03 
18:59:30.000000000 +0100
+++ new/kdeclarative-5.53.0/autotests/columnproxymodeltest.cpp  2018-12-01 
15:53:53.000000000 +0100
@@ -30,7 +30,7 @@
     qRegisterMetaType<QModelIndex>("QModelIndex");
     
     ColumnProxyModel* listify = new ColumnProxyModel;
-    QSignalSpy spy(listify, SIGNAL(rowsInserted(QModelIndex, int, int)));
+    QSignalSpy spy(listify, SIGNAL(rowsInserted(QModelIndex,int,int)));
     
     new ModelTest(listify, listify);
     QStandardItemModel* m = new QStandardItemModel(listify);
@@ -67,7 +67,7 @@
 void ColumnProxyModelTest::testSet()
 {
     ColumnProxyModel* listify = new ColumnProxyModel;
-    QSignalSpy spy(listify, SIGNAL(rowsInserted(QModelIndex, int, int)));
+    QSignalSpy spy(listify, SIGNAL(rowsInserted(QModelIndex,int,int)));
 
     new ModelTest(listify, listify);
     QStandardItemModel* m = new QStandardItemModel(listify);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeclarative-5.52.0/po/zh_CN/kdeclarative5.po 
new/kdeclarative-5.53.0/po/zh_CN/kdeclarative5.po
--- old/kdeclarative-5.52.0/po/zh_CN/kdeclarative5.po   2018-11-03 
18:59:30.000000000 +0100
+++ new/kdeclarative-5.53.0/po/zh_CN/kdeclarative5.po   2018-12-01 
15:53:53.000000000 +0100
@@ -15,7 +15,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-08-16 09:05+0200\n"
-"PO-Revision-Date: 2018-10-09 18:38\n"
+"PO-Revision-Date: 2018-11-12 09:13\n"
 "Last-Translator: guoyunhe <[email protected]>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


Reply via email to