Hello community,

here is the log from the commit of package kplotting for openSUSE:Factory 
checked in at 2015-12-29 12:54:15
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kplotting (Old)
 and      /work/SRC/openSUSE:Factory/.kplotting.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kplotting"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kplotting/kplotting.changes      2015-11-24 
22:24:48.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.kplotting.new/kplotting.changes 2015-12-29 
12:54:16.000000000 +0100
@@ -1,0 +2,7 @@
+Thu Dec 10 23:08:51 UTC 2015 - [email protected]
+
+- Update to 5.17.0
+  * For more details please see:
+    https://www.kde.org/announcements/kde-frameworks-5.17.0.php
+
+-------------------------------------------------------------------

Old:
----
  kplotting-5.16.0.tar.xz

New:
----
  kplotting-5.17.0.tar.xz

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

Other differences:
------------------
++++++ kplotting.spec ++++++
--- /var/tmp/diff_new_pack.DcI4Qd/_old  2015-12-29 12:54:17.000000000 +0100
+++ /var/tmp/diff_new_pack.DcI4Qd/_new  2015-12-29 12:54:17.000000000 +0100
@@ -17,9 +17,9 @@
 
 
 %define lname   libKF5Plotting5
-%define _tar_path 5.16
+%define _tar_path 5.17
 Name:           kplotting
-Version:        5.16.0
+Version:        5.17.0
 Release:        0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++++++ kplotting-5.16.0.tar.xz -> kplotting-5.17.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kplotting-5.16.0/CMakeLists.txt 
new/kplotting-5.17.0/CMakeLists.txt
--- old/kplotting-5.16.0/CMakeLists.txt 2015-11-08 12:14:43.000000000 +0100
+++ new/kplotting-5.17.0/CMakeLists.txt 2015-12-06 15:56:06.000000000 +0100
@@ -3,7 +3,7 @@
 project(KPlotting)
 
 include(FeatureSummary)
-find_package(ECM 5.16.0  NO_MODULE)
+find_package(ECM 5.17.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)
 
@@ -23,7 +23,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION "5.16.0") # handled by release scripts
+set(KF5_VERSION "5.17.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KPLOTTING
                         VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kplotting_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kplotting-5.16.0/autotests/kplotaxistest.cpp 
new/kplotting-5.17.0/autotests/kplotaxistest.cpp
--- old/kplotting-5.16.0/autotests/kplotaxistest.cpp    2015-11-08 
12:14:43.000000000 +0100
+++ new/kplotting-5.17.0/autotests/kplotaxistest.cpp    2015-12-06 
15:56:06.000000000 +0100
@@ -28,7 +28,7 @@
 private Q_SLOTS:
     void initTestCase()
     {
-        m_kPlotAxis = new KPlotAxis(QLatin1String("label"));
+        m_kPlotAxis = new KPlotAxis(QStringLiteral("label"));
     }
 
     void cleanupTestCase()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kplotting-5.16.0/autotests/kplotobjecttest.cpp 
new/kplotting-5.17.0/autotests/kplotobjecttest.cpp
--- old/kplotting-5.16.0/autotests/kplotobjecttest.cpp  2015-11-08 
12:14:43.000000000 +0100
+++ new/kplotting-5.17.0/autotests/kplotobjecttest.cpp  2015-12-06 
15:56:06.000000000 +0100
@@ -178,7 +178,7 @@
         QCOMPARE(p1->barWidth(), 1.0);
 
         // test void KPlotObject::addPoint( KPlotPoint *p )
-        KPlotPoint *p2 = new KPlotPoint(2, 2, QLatin1String("label2"), 2.0);
+        KPlotPoint *p2 = new KPlotPoint(2, 2, QStringLiteral("label2"), 2.0);
         m_kPlotObject->addPoint(p2);
         QCOMPARE(m_kPlotObject->points().size(), 2);
         KPlotPoint *p2List = m_kPlotObject->points().at(1);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kplotting-5.16.0/autotests/kplotpointtest.cpp 
new/kplotting-5.17.0/autotests/kplotpointtest.cpp
--- old/kplotting-5.16.0/autotests/kplotpointtest.cpp   2015-11-08 
12:14:43.000000000 +0100
+++ new/kplotting-5.17.0/autotests/kplotpointtest.cpp   2015-12-06 
15:56:06.000000000 +0100
@@ -29,8 +29,8 @@
 
     void testConstructor()
     {
-        KPlotPoint *p1 = new KPlotPoint(2.0, 3.0, QLatin1String("label"), 5.0);
-        KPlotPoint *p2 = new KPlotPoint(QPointF(2.0, 3.0), 
QLatin1String("label"), 5.0);
+        KPlotPoint *p1 = new KPlotPoint(2.0, 3.0, QStringLiteral("label"), 
5.0);
+        KPlotPoint *p2 = new KPlotPoint(QPointF(2.0, 3.0), 
QStringLiteral("label"), 5.0);
 
         QCOMPARE(p1->x(), 2.0);
         QCOMPARE(p2->x(), 2.0);
@@ -50,7 +50,7 @@
 
     void testPosition()
     {
-        KPlotPoint *p1 = new KPlotPoint(2.0, 3.0, QLatin1String("label"), 5.0);
+        KPlotPoint *p1 = new KPlotPoint(2.0, 3.0, QStringLiteral("label"), 
5.0);
 
         p1->setX(4.0);
         QCOMPARE(p1->x(), 4.0);
@@ -70,7 +70,7 @@
 
     void testLabel()
     {
-        KPlotPoint *p1 = new KPlotPoint(2.0, 3.0, QLatin1String("label"), 5.0);
+        KPlotPoint *p1 = new KPlotPoint(2.0, 3.0, QStringLiteral("label"), 
5.0);
 
         p1->setLabel(QStringLiteral("newLabel"));
         QCOMPARE(p1->label(), QString::fromLatin1("newLabel"));
@@ -80,7 +80,7 @@
 
     void testBarWidth()
     {
-        KPlotPoint *p1 = new KPlotPoint(2.0, 3.0, QLatin1String("label"), 5.0);
+        KPlotPoint *p1 = new KPlotPoint(2.0, 3.0, QStringLiteral("label"), 
5.0);
 
         p1->setBarWidth(5.0);
         QCOMPARE(p1->barWidth(), 5.0);


Reply via email to