Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qcustomplot for openSUSE:Factory 
checked in at 2022-11-25 13:12:09
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/qcustomplot (Old)
 and      /work/SRC/openSUSE:Factory/.qcustomplot.new.1597 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "qcustomplot"

Fri Nov 25 13:12:09 2022 rev:3 rq:1037946 version:2.1.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/qcustomplot/qcustomplot.changes  2021-05-02 
18:39:25.540101634 +0200
+++ /work/SRC/openSUSE:Factory/.qcustomplot.new.1597/qcustomplot.changes        
2022-11-25 13:22:26.203447265 +0100
@@ -1,0 +2,11 @@
+Wed Nov 23 15:33:03 UTC 2022 - Sergey Salnikov <[email protected]>
+
+- Update to version 2.1.1:
+  * Qt6.4 Compatibility
+  * In QCPAxisPainterPrivate::getTickLabelData, don't use fixed 'e',
+    but locale aware character of parent plot locale.
+  * Axis rescaling now ignores +/- Inf in data values.
+  * Slight performance improvements of QCPColorMap colorization and fills.
+  * Several bugfixes.
+
+-------------------------------------------------------------------

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

Other differences:
------------------
++++++ qcustomplot.spec ++++++
--- /var/tmp/diff_new_pack.QKeeyq/_old  2022-11-25 13:22:26.679449833 +0100
+++ /var/tmp/diff_new_pack.QKeeyq/_new  2022-11-25 13:22:26.687449877 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package qcustomplot
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2022 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           qcustomplot
-Version:        2.1.0
+Version:        2.1.1
 %define sover   2
 Release:        0
 Summary:        Qt widget for plotting and data visualization
@@ -46,8 +46,8 @@
 %package     -n lib%{name}%{sover}
 Summary:        Qt widget for plotting and data visualization
 Group:          System/Libraries
-Provides:       lib%{name} = %{version}
 Provides:       %{name} = %{version}
+Provides:       lib%{name} = %{version}
 Obsoletes:      %{name} < %{version}
 Provides:       %{name}-qt5 = %{version}
 Obsoletes:      %{name}-qt5 < %{version}
@@ -95,7 +95,7 @@
 
 %install
 pushd %{name}-sharedlib/sharedlib-compilation/build
-install -D -m 644 -t %{buildroot}%{_libdir} libqcustomplot*.so*
+install -Dm 755 -t %{buildroot}%{_libdir} libqcustomplot*.so*
 popd
 
 install -Dm 644 qcustomplot.h %{buildroot}%{_includedir}/qcustomplot.h

++++++ QCustomPlot-sharedlib.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qcustomplot-sharedlib/sharedlib-compilation/sharedlib-compilation.pro 
new/qcustomplot-sharedlib/sharedlib-compilation/sharedlib-compilation.pro
--- old/qcustomplot-sharedlib/sharedlib-compilation/sharedlib-compilation.pro   
2021-03-29 02:30:44.000000000 +0200
+++ new/qcustomplot-sharedlib/sharedlib-compilation/sharedlib-compilation.pro   
2022-11-23 17:00:26.000000000 +0100
@@ -17,7 +17,7 @@
   CONFIG += shared
 }
 
-VERSION = 2.1.0
+VERSION = 2.1.1
 
 TARGET = qcustomplot
 CONFIG(debug, debug|release) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qcustomplot-sharedlib/sharedlib-usage/sharedlib-usage.pro 
new/qcustomplot-sharedlib/sharedlib-usage/sharedlib-usage.pro
--- old/qcustomplot-sharedlib/sharedlib-usage/sharedlib-usage.pro       
2021-03-29 02:30:44.000000000 +0200
+++ new/qcustomplot-sharedlib/sharedlib-usage/sharedlib-usage.pro       
2022-11-06 12:45:57.000000000 +0100
@@ -1,34 +1,34 @@
-#
-# Example project that uses QCustomPlot as a shared library
-#
-# The compiled shared library file(s) must be in the project directory.
-# On Unix, set LD_LIBRARY_PATH to "." before launching the compiled application
-# unless the library files are installed in one of the library locations (e.g. 
/usr/lib)
-#
-# Note that the qcustomplot.h header should not be added to the project file 
in the
-# HEADERS variable, but only included in your source files with #include.
-#
-
-QT       += core gui
-greaterThan(QT_MAJOR_VERSION, 4): QT += widgets printsupport
-
-greaterThan(QT_MAJOR_VERSION, 4): CONFIG += c++11
-lessThan(QT_MAJOR_VERSION, 5): QMAKE_CXXFLAGS += -std=c++11
-
-TARGET = sharedlib-usage
-TEMPLATE = app
-
-# Tell the qcustomplot header that it will be used as library:
-DEFINES += QCUSTOMPLOT_USE_LIBRARY
-
-# Link with debug version of qcustomplot if compiling in debug mode, else with 
release library:
-CONFIG(debug, release|debug) {
-  win32:QCPLIB = qcustomplotd2
-  else: QCPLIB = qcustomplotd
-} else {
-  win32:QCPLIB = qcustomplot2
-  else: QCPLIB = qcustomplot
-}
-LIBS += -L./ -l$$QCPLIB
-
-SOURCES += main.cpp
+#
+# Example project that uses QCustomPlot as a shared library
+#
+# The compiled shared library file(s) must be in the project directory.
+# On Unix, set LD_LIBRARY_PATH to "." before launching the compiled application
+# unless the library files are installed in one of the library locations (e.g. 
/usr/lib)
+#
+# Note that the qcustomplot.h header should not be added to the project file 
in the
+# HEADERS variable, but only included in your source files with #include.
+#
+
+QT       += core gui
+greaterThan(QT_MAJOR_VERSION, 4): QT += widgets printsupport
+
+greaterThan(QT_MAJOR_VERSION, 4): CONFIG += c++11
+lessThan(QT_MAJOR_VERSION, 5): QMAKE_CXXFLAGS += -std=c++11
+
+TARGET = sharedlib-usage
+TEMPLATE = app
+
+# Tell the qcustomplot header that it will be used as library:
+DEFINES += QCUSTOMPLOT_USE_LIBRARY
+
+# Link with debug version of qcustomplot if compiling in debug mode, else with 
release library:
+CONFIG(debug, release|debug) {
+  win32:QCPLIB = qcustomplotd2
+  else: QCPLIB = qcustomplotd
+} else {
+  win32:QCPLIB = qcustomplot2
+  else: QCPLIB = qcustomplot
+}
+LIBS += -L./ -l$$QCPLIB
+
+SOURCES += main.cpp

++++++ QCustomPlot.tar.gz ++++++
++++ 7806 lines of diff (skipped)

Reply via email to