Hello community,

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

Package is "mathgl"

Changes:
--------
--- /work/SRC/openSUSE:Factory/mathgl/mathgl.changes    2014-11-24 
11:09:02.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.mathgl.new/mathgl.changes       2015-02-01 
12:30:19.000000000 +0100
@@ -1,0 +2,7 @@
+Sat Jan 31 16:41:17 UTC 2015 - [email protected]
+
+- Update to version 2.3.1
+  * See included ChangeLog.txt file for details
+  * Update mathgl-examples-install.patch
+
+-------------------------------------------------------------------

Old:
----
  mathgl-2.3.tar.gz

New:
----
  mathgl-2.3.1.tar.gz

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

Other differences:
------------------
++++++ mathgl.spec ++++++
--- /var/tmp/diff_new_pack.eeyZZB/_old  2015-02-01 12:30:20.000000000 +0100
+++ /var/tmp/diff_new_pack.eeyZZB/_new  2015-02-01 12:30:20.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package mathgl
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,18 +16,16 @@
 #
 
 
-%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib())")}
-%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
 %define octave_args --no-window-system --norc
 
 Name:           mathgl
 %define libname libmgl
-Version:        2.3
+Version:        2.3.1
 Release:        0
 # oct_version must be x.y.z
-%define oct_version 2.3.0
-%define somajor 7.3.0
-%define libversion 7_3_0
+%define oct_version 2.3.1
+%define somajor 7.4.0
+%define libversion 7_4_0
 Summary:        Cross-platform library for making high-quality scientific 
graphics
 License:        GPL-3.0
 Group:          Productivity/Scientific/Other
@@ -359,11 +357,6 @@
 # convert EOL encodings, maintaining timestames
 sed -i 's/\r$//' AUTHORS README
 
-# workaround for qt5 headers, not controllable by enable-qt5
-%if 0%{?suse_version} <= 1315
-sed -i '/\#include <qt5\/QtCore\/QTimer>/d' widgets/qt.cpp
-%endif
-
 %build
 cmake \
       -DCMAKE_INSTALL_PREFIX:PATH=%{_prefix}  \
@@ -372,6 +365,7 @@
       -Denable-mpi=off                        \
       -Denable-pthread=off                    \
       -Denable-openmp=on                      \
+      -Denable-ltdl=on                        \
       -Denable-gsl=on                         \
       -Denable-jpeg=on                        \
       -Denable-png=on                         \

++++++ mathgl-2.3.tar.gz -> mathgl-2.3.1.tar.gz ++++++
++++ 5696 lines of diff (skipped)

++++++ mathgl-examples-install.patch ++++++
--- /var/tmp/diff_new_pack.eeyZZB/_old  2015-02-01 12:30:21.000000000 +0100
+++ /var/tmp/diff_new_pack.eeyZZB/_new  2015-02-01 12:30:21.000000000 +0100
@@ -1,8 +1,8 @@
-Index: mathgl-2.2.1/examples/CMakeLists.txt
+Index: mathgl-2.3.1/examples/CMakeLists.txt
 ===================================================================
---- mathgl-2.2.1.orig/examples/CMakeLists.txt
-+++ mathgl-2.2.1/examples/CMakeLists.txt
-@@ -4,22 +4,38 @@ endif(MGL_HAVE_GSL)
+--- mathgl-2.3.1.orig/examples/CMakeLists.txt
++++ mathgl-2.3.1/examples/CMakeLists.txt
+@@ -4,34 +4,59 @@ endif(MGL_HAVE_GSL)
  
  add_executable(mgl_example wnd_samples.cpp full_test.cpp samples.cpp)
  target_link_libraries(mgl_example mgl)
@@ -24,7 +24,7 @@
  if(MGL_HAVE_GLUT)
        add_executable(mgl_glut_example wnd_samples.cpp glut_example.cpp)
        target_link_libraries(mgl_glut_example mgl-glut)
-+              install(
++      install(
 +              TARGETS mgl_glut_example
 +              RUNTIME DESTINATION bin
 +      )
@@ -34,27 +34,41 @@
        include(${wxWidgets_USE_FILE})
        add_executable(mgl_wx_example wnd_samples.cpp wx_example.cpp)
        target_link_libraries(mgl_wx_example mgl-wx)
-+              install(
++      install(
 +              TARGETS mgl_wx_example
 +              RUNTIME DESTINATION bin
 +      )
  endif(MGL_HAVE_WX)
  
- if(enable-qt)
-@@ -27,8 +43,16 @@ if(enable-qt)
-       if(enable-qt5)
-               include(../cmake-qt5.txt)
-               target_link_libraries(mgl_qt_example mgl-qt5)
-+              install(
-+              TARGETS mgl_qt_example
+-if(enable-qt)
+-      add_executable(mgl_qt_example wnd_samples.cpp qt_example.cpp 
${MGL_MOC_EX_FILES})
+-      if(enable-qt5)
+-              include(../cmake-qt5.txt)
+-              target_link_libraries(mgl_qt_example mgl-qt5)
+-      else(enable-qt5)
+-              include(../cmake-qt4.txt)
+-              target_link_libraries(mgl_qt_example mgl-qt4)
+-      endif(enable-qt5)
+-endif(enable-qt)
++if(enable-qt4)
++      add_executable(mgl_qt4_example wnd_samples.cpp qt_example.cpp 
${MGL_MOC_EX_FILES})
++      include(../cmake-qt4.txt)
++      target_link_libraries(mgl_qt4_example mgl-qt4)
++      install(
++              TARGETS mgl_qt4_example
 +              RUNTIME DESTINATION bin
-+              )
-       else(enable-qt5)
-               include(../cmake-qt4.txt)
-               target_link_libraries(mgl_qt_example mgl-qt4)
-+              install(
-+              TARGETS mgl_qt_example
++      )
++endif(enable-qt4)
++
++if(enable-qt5)
++      add_executable(mgl_qt5_example wnd_samples.cpp qt_example.cpp 
${MGL_MOC_EX_FILES})
++      include(../cmake-qt5.txt)
++      target_link_libraries(mgl_qt5_example mgl-qt5)
++      install(
++              TARGETS mgl_qt5_example
 +              RUNTIME DESTINATION bin
-+              )
-       endif(enable-qt5)
- endif(enable-qt)
++      )
++endif(enable-qt5)
+ 
+ if(MGL_HAVE_LTDL)
+       include_directories(${LTDL_INCLUDE_DIR})

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to