Hello community, here is the log from the commit of package paraview for openSUSE:Factory checked in at 2016-06-25 02:22:27 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/paraview (Old) and /work/SRC/openSUSE:Factory/.paraview.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "paraview" Changes: -------- --- /work/SRC/openSUSE:Factory/paraview/paraview.changes 2016-04-28 16:56:30.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.paraview.new/paraview.changes 2016-06-25 02:22:40.000000000 +0200 @@ -1,0 +2,15 @@ +Tue Jun 21 11:45:20 UTC 2016 - [email protected] + +- update to version 5.1.0 + + add OSPRay ray tracing renderer + + interpolating point clouds + + generic arrays + + x-ray view + + resampling to image + + List of changes at + http://www.paraview.org/Bug/changelog_page.php?version_id=122 +- adjust patch paraview-default-qtstyle.patch +- add require-only-cmake-3_0.patch to lower required CMake verstion + to 3.0 + +------------------------------------------------------------------- Old: ---- ParaView-v5.0.1-source.tar.gz New: ---- ParaView-v5.1.0.tar.gz require-only-cmake-3_0.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ paraview.spec ++++++ --- /var/tmp/diff_new_pack.9GKRCk/_old 2016-06-25 02:22:43.000000000 +0200 +++ /var/tmp/diff_new_pack.9GKRCk/_new 2016-06-25 02:22:43.000000000 +0200 @@ -16,15 +16,15 @@ # -%define major_ver 5.0 +%define major_ver 5.1 Name: paraview -Version: 5.0.1 +Version: 5.1.0 Release: 0 Summary: Data analysis and visualization application License: BSD-3-Clause Group: Productivity/Scientific/Physics Url: http://www.paraview.org -Source0: http://www.paraview.org/files/v%{major_ver}/ParaView-v%{version}-source.tar.gz +Source0: http://www.paraview.org/files/v%{major_ver}/ParaView-v%{version}.tar.gz Source1: %{name}-rpmlintrc # PATCH-FIX-OPENSUSE paraview-default-qtstyle.patch [email protected] -- Make paraview inherit default qt gui look and feel, instead of using the Plastique theme Patch0: paraview-default-qtstyle.patch @@ -32,9 +32,10 @@ Patch1: paraview-desktop-entry-fix.patch # PATCH-FIX-UPSTREAM paraview-fix-file-contains-date-time.patch [email protected] -- Remove reference to __DATE__ and __TIME__ from source Patch2: paraview-fix-file-contains-date-time.patch +Patch3: require-only-cmake-3_0.patch BuildRequires: Mesa-devel BuildRequires: boost-devel -BuildRequires: cmake >= 2.8.8 +BuildRequires: cmake >= 3.0 BuildRequires: desktop-file-utils BuildRequires: doxygen BuildRequires: gnuplot @@ -110,10 +111,11 @@ %prep -%setup -q -n ParaView-v%{version}-source +%setup -q -n ParaView-v%{version} %patch0 -p1 %patch1 -p1 %patch2 -p1 +%patch3 -p1 %build # Prepare for gcc 4.9.0: work around gcc 4.9.0 regression ++++++ ParaView-v5.0.1-source.tar.gz -> ParaView-v5.1.0.tar.gz ++++++ /work/SRC/openSUSE:Factory/paraview/ParaView-v5.0.1-source.tar.gz /work/SRC/openSUSE:Factory/.paraview.new/ParaView-v5.1.0.tar.gz differ: char 5, line 1 ++++++ paraview-default-qtstyle.patch ++++++ --- /var/tmp/diff_new_pack.9GKRCk/_old 2016-06-25 02:22:43.000000000 +0200 +++ /var/tmp/diff_new_pack.9GKRCk/_new 2016-06-25 02:22:43.000000000 +0200 @@ -1,28 +1,20 @@ -Index: ParaView-v4.2.0-source/CMake/branded_paraview_main.cxx.in -=================================================================== ---- ParaView-v4.2.0-source.orig/CMake/branded_paraview_main.cxx.in -+++ ParaView-v4.2.0-source/CMake/branded_paraview_main.cxx.in -@@ -48,7 +48,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBI - #endif - - #ifdef Q_WS_X11 --#include <QPlastiqueStyle> -+#include <QStyle> - #endif - - #include <stdlib.h> -@@ -72,12 +72,12 @@ static bool checkenv(const char* vname) +--- ParaView-v5.1.0_old/CMake/branded_paraview_main.cxx.in 2016-06-18 11:39:09.000000000 -0400 ++++ ParaView-v5.1.0/CMake/branded_paraview_main.cxx.in 2016-06-21 08:01:39.384393053 -0400 +@@ -72,15 +72,15 @@ int main(int argc, char* argv[]) { --#ifdef Q_WS_X11 -+// #ifdef Q_WS_X11 +-#if defined(Q_WS_X11) || defined(Q_OS_LINUX) ++// #if defined(Q_WS_X11) || defined(Q_OS_LINUX) // Using motif style gives us test failures (and its ugly). // Using cleanlooks style gives us errors when using valgrind (Trolltech's bug #179200) // let's just use plastique for now -- QApplication::setStyle(new QPlastiqueStyle); + + // "plastique" is only available on Qt4, but this works just fine with Qt5 too. Qt5 just uses the + // default style when QStyleFactory::create("plastique") return nullptr. +- QApplication::setStyle(QStyleFactory::create("plastique")); -#endif -+ // QApplication::setStyle(new QPlastiqueStyle); ++// QApplication::setStyle(QStyleFactory::create("plastique")); +// #endif // When playing tests, disable all effects. ++++++ require-only-cmake-3_0.patch ++++++ --- ParaView-v5.1.0_old/CMakeLists.txt 2016-06-18 11:39:09.000000000 -0400 +++ ParaView-v5.1.0/CMakeLists.txt 2016-06-21 04:42:25.261364363 -0400 @@ -28,7 +28,7 @@ # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # #========================================================================== -cmake_minimum_required(VERSION 3.5) +cmake_minimum_required(VERSION 3.0) project(ParaView)
