Hello community, here is the log from the commit of package kdeclarative for openSUSE:Factory checked in at 2016-04-12 19:13:37 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kdeclarative (Old) and /work/SRC/openSUSE:Factory/.kdeclarative.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kdeclarative" Changes: -------- --- /work/SRC/openSUSE:Factory/kdeclarative/kdeclarative.changes 2016-03-16 10:28:34.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.kdeclarative.new/kdeclarative.changes 2016-04-12 19:13:39.000000000 +0200 @@ -1,0 +2,10 @@ +Mon Apr 4 14:19:41 UTC 2016 - [email protected] + +- Update to 5.21.0 (boo#974793) + * Uniform use of std::numeric_limits + * [DeclarativeDragArea] Don't override "text" of mime data + * Upgrade Qt version requirement to 5.4.0 + * For more details please see: + https://www.kde.org/announcements/kde-frameworks-5.21.0.php + +------------------------------------------------------------------- Old: ---- kdeclarative-5.20.0.tar.xz New: ---- kdeclarative-5.21.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kdeclarative.spec ++++++ --- /var/tmp/diff_new_pack.Vs3QLF/_old 2016-04-12 19:13:40.000000000 +0200 +++ /var/tmp/diff_new_pack.Vs3QLF/_new 2016-04-12 19:13:40.000000000 +0200 @@ -18,9 +18,9 @@ %bcond_without lang %define lname libKF5Declarative5 -%define _tar_path 5.20 +%define _tar_path 5.21 Name: kdeclarative -Version: 5.20.0 +Version: 5.21.0 Release: 0 %define kf5_version %{version} BuildRequires: cmake >= 2.8.12 @@ -38,11 +38,11 @@ BuildRequires: kwidgetsaddons-devel >= %{_tar_path} BuildRequires: kwindowsystem-devel >= %{_tar_path} BuildRequires: libepoxy-devel -BuildRequires: cmake(Qt5Core) >= 5.3.0 -BuildRequires: cmake(Qt5Gui) >= 5.3.0 -BuildRequires: cmake(Qt5Qml) >= 5.3.0 -BuildRequires: cmake(Qt5Quick) >= 5.3.0 -BuildRequires: cmake(Qt5Test) >= 5.3.0 +BuildRequires: cmake(Qt5Core) >= 5.4.0 +BuildRequires: cmake(Qt5Gui) >= 5.4.0 +BuildRequires: cmake(Qt5Qml) >= 5.4.0 +BuildRequires: cmake(Qt5Quick) >= 5.4.0 +BuildRequires: cmake(Qt5Test) >= 5.4.0 Summary: Integration of QML and KDE workspaces License: LGPL-2.1+ Group: System/GUI/KDE @@ -106,7 +106,7 @@ Requires: kpackage-devel >= %{_tar_path} Requires: libKF5CalendarEvents5 = %{version} Requires: libKF5QuickAddons5 = %{version} -Requires: cmake(Qt5Qml) >= 5.3.0 +Requires: cmake(Qt5Qml) >= 5.4.0 %description devel KDeclarative provides integration of QML and KDE workspaces. ++++++ kdeclarative-5.20.0.tar.xz -> kdeclarative-5.21.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdeclarative-5.20.0/CMakeLists.txt new/kdeclarative-5.21.0/CMakeLists.txt --- old/kdeclarative-5.20.0/CMakeLists.txt 2016-03-05 19:51:32.000000000 +0100 +++ new/kdeclarative-5.21.0/CMakeLists.txt 2016-04-03 22:48:31.000000000 +0200 @@ -4,15 +4,15 @@ # Dependencies include(FeatureSummary) -find_package(ECM 5.20.0 NO_MODULE) +find_package(ECM 5.21.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.3.0") -set(KF5_VERSION "5.20.0") # handled by release scripts -set(KF5_DEP_VERSION "5.20.0") # handled by release scripts +set(REQUIRED_QT_VERSION 5.4.0) +set(KF5_VERSION "5.21.0") # handled by release scripts +set(KF5_DEP_VERSION "5.21.0") # handled by release scripts 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.20.0/src/qmlcontrols/draganddrop/DeclarativeDragArea.cpp new/kdeclarative-5.21.0/src/qmlcontrols/draganddrop/DeclarativeDragArea.cpp --- old/kdeclarative-5.20.0/src/qmlcontrols/draganddrop/DeclarativeDragArea.cpp 2016-03-05 19:51:32.000000000 +0100 +++ new/kdeclarative-5.21.0/src/qmlcontrols/draganddrop/DeclarativeDragArea.cpp 2016-04-03 22:48:31.000000000 +0200 @@ -292,7 +292,6 @@ QDrag *drag = new QDrag(parent()); DeclarativeMimeData *dataCopy = new DeclarativeMimeData(m_data); //Qt will take ownership of this copy and delete it. - dataCopy->setText(objectName()); drag->setMimeData(dataCopy); const qreal devicePixelRatio = window() ? window()->devicePixelRatio() : 1; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdeclarative-5.20.0/src/qmlcontrols/kquickcontrolsaddons/plotter.cpp new/kdeclarative-5.21.0/src/qmlcontrols/kquickcontrolsaddons/plotter.cpp --- old/kdeclarative-5.20.0/src/qmlcontrols/kquickcontrolsaddons/plotter.cpp 2016-03-05 19:51:32.000000000 +0100 +++ new/kdeclarative-5.21.0/src/qmlcontrols/kquickcontrolsaddons/plotter.cpp 2016-04-03 22:48:31.000000000 +0200 @@ -888,7 +888,7 @@ qreal adjust; //this should never happen, remove? - if (qFuzzyCompare(adjustedMax - adjustedMin, 0)) { + if (qFuzzyCompare(adjustedMax - adjustedMin, std::numeric_limits<qreal>::min())) { adjust = 1; } else { adjust = (height() / (adjustedMax - adjustedMin));
