Hello community, here is the log from the commit of package kplotting for openSUSE:Factory checked in at 2017-03-03 17:17:12 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kplotting (Old) and /work/SRC/openSUSE:Factory/.kplotting.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kplotting" Fri Mar 3 17:17:12 2017 rev:38 rq:461453 version:5.31.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kplotting/kplotting.changes 2017-02-03 17:45:59.646272986 +0100 +++ /work/SRC/openSUSE:Factory/.kplotting.new/kplotting.changes 2017-03-03 17:17:13.284805889 +0100 @@ -1,0 +2,7 @@ +Thu Feb 9 09:32:18 UTC 2017 - [email protected] + +- Update to 5.31.0 + * For more details please see: + https://www.kde.org/announcements/kde-frameworks-5.31.0.php + +------------------------------------------------------------------- Old: ---- kplotting-5.30.0.tar.xz New: ---- kplotting-5.31.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kplotting.spec ++++++ --- /var/tmp/diff_new_pack.PAuioD/_old 2017-03-03 17:17:13.872722732 +0100 +++ /var/tmp/diff_new_pack.PAuioD/_new 2017-03-03 17:17:13.876722165 +0100 @@ -17,16 +17,16 @@ %define lname libKF5Plotting5 -%define _tar_path 5.30 +%define _tar_path 5.31 Name: kplotting -Version: 5.30.0 +Version: 5.31.0 Release: 0 BuildRequires: cmake >= 3.0 BuildRequires: extra-cmake-modules >= %{_tar_path} BuildRequires: fdupes BuildRequires: kf5-filesystem -BuildRequires: cmake(Qt5Test) >= 5.5.0 -BuildRequires: cmake(Qt5Widgets) >= 5.5.0 +BuildRequires: cmake(Qt5Test) >= 5.6.0 +BuildRequires: cmake(Qt5Widgets) >= 5.6.0 Summary: KDE Data plotting License: LGPL-2.1+ Group: System/GUI/KDE @@ -59,7 +59,7 @@ Group: Development/Libraries/KDE Requires: %lname = %{version} Requires: extra-cmake-modules -Requires: cmake(Qt5Widgets) >= 5.5.0 +Requires: cmake(Qt5Widgets) >= 5.6.0 %description devel KPlotWidget is a QWidget-derived class that provides a virtual base class ++++++ kplotting-5.30.0.tar.xz -> kplotting-5.31.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kplotting-5.30.0/CMakeLists.txt new/kplotting-5.31.0/CMakeLists.txt --- old/kplotting-5.30.0/CMakeLists.txt 2017-01-08 16:40:17.000000000 +0100 +++ new/kplotting-5.31.0/CMakeLists.txt 2017-02-04 19:28:20.000000000 +0100 @@ -1,10 +1,10 @@ cmake_minimum_required(VERSION 3.0) -set(KF5_VERSION "5.30.0") # handled by release scripts +set(KF5_VERSION "5.31.0") # handled by release scripts project(KPlotting VERSION ${KF5_VERSION}) include(FeatureSummary) -find_package(ECM 5.30.0 NO_MODULE) +find_package(ECM 5.31.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) @@ -15,7 +15,7 @@ include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE) include(KDECMakeSettings) -set(REQUIRED_QT_VERSION 5.5.0) +set(REQUIRED_QT_VERSION 5.6.0) find_package(Qt5Widgets ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kplotting-5.30.0/examples/testplot_main.cpp new/kplotting-5.31.0/examples/testplot_main.cpp --- old/kplotting-5.30.0/examples/testplot_main.cpp 2017-01-08 16:40:17.000000000 +0100 +++ new/kplotting-5.31.0/examples/testplot_main.cpp 2017-02-04 19:28:20.000000000 +0100 @@ -21,7 +21,7 @@ int main(int argc, char *argv[]) { QApplication a(argc, argv); - TestPlot *tp = new TestPlot(0); + TestPlot *tp = new TestPlot(nullptr); tp->show(); QObject::connect(qApp, SIGNAL(lastWindowClosed()), qApp, SLOT(quit())); return a.exec(); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kplotting-5.30.0/examples/testplot_widget.cpp new/kplotting-5.31.0/examples/testplot_widget.cpp --- old/kplotting-5.30.0/examples/testplot_widget.cpp 2017-01-08 16:40:17.000000000 +0100 +++ new/kplotting-5.31.0/examples/testplot_widget.cpp 2017-02-04 19:28:20.000000000 +0100 @@ -26,7 +26,7 @@ #include "kplotaxis.h" #include "testplot_widget.h" -TestPlot::TestPlot(QWidget *p) : QMainWindow(p), po1(0), po2(0) +TestPlot::TestPlot(QWidget *p) : QMainWindow(p), po1(nullptr), po2(nullptr) { QWidget *w = new QWidget(this); vlay = new QVBoxLayout(w); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kplotting-5.30.0/examples/testplot_widget.h new/kplotting-5.31.0/examples/testplot_widget.h --- old/kplotting-5.30.0/examples/testplot_widget.h 2017-01-08 16:40:17.000000000 +0100 +++ new/kplotting-5.31.0/examples/testplot_widget.h 2017-02-04 19:28:20.000000000 +0100 @@ -30,7 +30,7 @@ Q_OBJECT public: - TestPlot(QWidget *parent = 0); + TestPlot(QWidget *parent = nullptr); ~TestPlot() {} public Q_SLOTS: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kplotting-5.30.0/src/kplotwidget.cpp new/kplotting-5.31.0/src/kplotwidget.cpp --- old/kplotting-5.30.0/src/kplotwidget.cpp 2017-01-08 16:40:17.000000000 +0100 +++ new/kplotting-5.31.0/src/kplotwidget.cpp 2017-02-04 19:28:20.000000000 +0100 @@ -386,13 +386,13 @@ KPlotAxis *KPlotWidget::axis(Axis type) { QHash<Axis, KPlotAxis *>::Iterator it = d->axes.find(type); - return it != d->axes.end() ? it.value() : 0; + return it != d->axes.end() ? it.value() : nullptr; } const KPlotAxis *KPlotWidget::axis(Axis type) const { QHash<Axis, KPlotAxis *>::ConstIterator it = d->axes.constFind(type); - return it != d->axes.constEnd() ? it.value() : 0; + return it != d->axes.constEnd() ? it.value() : nullptr; } QRect KPlotWidget::pixRect() const diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kplotting-5.30.0/src/kplotwidget.h new/kplotting-5.31.0/src/kplotwidget.h --- old/kplotting-5.30.0/src/kplotwidget.h 2017-01-08 16:40:17.000000000 +0100 +++ new/kplotting-5.31.0/src/kplotwidget.h 2017-02-04 19:28:20.000000000 +0100 @@ -94,7 +94,7 @@ *@short Constructor. *@param parent the parent widget */ - explicit KPlotWidget(QWidget *parent = 0); + explicit KPlotWidget(QWidget *parent = nullptr); /** *@short Destructor.
