Hello community,

here is the log from the commit of package fparser for openSUSE:Factory checked 
in at 2012-11-17 07:21:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/fparser (Old)
 and      /work/SRC/openSUSE:Factory/.fparser.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "fparser", Maintainer is ""

Changes:
--------
--- /work/SRC/openSUSE:Factory/fparser/fparser.changes  2012-09-04 
12:44:02.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.fparser.new/fparser.changes     2012-11-17 
07:21:09.000000000 +0100
@@ -1,0 +2,10 @@
+Wed Nov 14 21:19:06 UTC 2012 - jeng...@inai.de
+
+- Update to new upstream release 4.5.1
+* Reverted the automatic C++11 detection to a precompiler macro
+  setting (FP_SUPPORT_CPLUSPLUS11_MATH_FUNCS) because not all
+  compilers yet fully support the C++11 math functions.
+* Fixed a potential duplicate symbol problem that happens with
+  explicit template instantiations.
+
+-------------------------------------------------------------------

Old:
----
  fparser-4.5.0.tar.xz

New:
----
  fparser-4.5.1.tar.xz

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

Other differences:
------------------
++++++ fparser.spec ++++++
--- /var/tmp/diff_new_pack.WeB5J3/_old  2012-11-17 07:21:12.000000000 +0100
+++ /var/tmp/diff_new_pack.WeB5J3/_new  2012-11-17 07:21:12.000000000 +0100
@@ -17,11 +17,11 @@
 
 
 Name:           fparser
-%define lname  libfparser-4_5_0
+%define lname  libfparser-4_5_1
 Summary:        Library to evaluate strings as mathematical functions
 License:        LGPL-3.0
 Group:          Development/Libraries/C and C++
-Version:        4.5.0
+Version:        4.5.1
 Release:        0
 Url:            http://warp.povusers.org/FunctionParser/
 
@@ -88,7 +88,7 @@
 make %{?_smp_mflags};
 
 %install
-%make_install
+make install DESTDIR="%buildroot";
 rm -f "%buildroot/%_libdir"/*.la;
 
 %files -n %lname

++++++ fparser-build-system.diff ++++++
--- /var/tmp/diff_new_pack.WeB5J3/_old  2012-11-17 07:21:12.000000000 +0100
+++ /var/tmp/diff_new_pack.WeB5J3/_new  2012-11-17 07:21:12.000000000 +0100
@@ -12,7 +12,7 @@
 ===================================================================
 --- /dev/null
 +++ fparser-4.5.0/Makefile.am
-@@ -0,0 +1,13 @@
+@@ -0,0 +1,11 @@
 +# -*- Makefile -*-
 +
 +lib_LTLIBRARIES = libfparser.la
@@ -24,14 +24,12 @@
 +
 +pkgconfigdir = ${libdir}/pkgconfig
 +pkgconfig_DATA = fparser.pc
-+
-+fparser.pc: ${top_builddir}/config.status
 Index: fparser-4.5.0/configure.ac
 ===================================================================
 --- /dev/null
 +++ fparser-4.5.0/configure.ac
 @@ -0,0 +1,8 @@
-+AC_INIT([fparser], [4.5.0])
++AC_INIT([fparser], [4.5.1])
 +AC_CONFIG_SRCDIR([extrasrc/fpaux.hh])
 +AM_INIT_AUTOMAKE([-Wall foreign])
 +AC_DISABLE_STATIC

++++++ fparser-gmp-mpfr.diff ++++++
--- /var/tmp/diff_new_pack.WeB5J3/_old  2012-11-17 07:21:12.000000000 +0100
+++ /var/tmp/diff_new_pack.WeB5J3/_new  2012-11-17 07:21:12.000000000 +0100
@@ -10,10 +10,10 @@
  fparser_mpfr.hh   |    2 +-
  4 files changed, 29 insertions(+), 4 deletions(-)
 
-Index: fparser-4.5.0/Makefile.am
+Index: fparser-4.5.1/Makefile.am
 ===================================================================
---- fparser-4.5.0.orig/Makefile.am
-+++ fparser-4.5.0/Makefile.am
+--- fparser-4.5.1.orig/Makefile.am
++++ fparser-4.5.1/Makefile.am
 @@ -1,11 +1,29 @@
  # -*- Makefile -*-
  
@@ -45,12 +45,12 @@
  
  pkgconfigdir = ${libdir}/pkgconfig
  pkgconfig_DATA = fparser.pc
-Index: fparser-4.5.0/configure.ac
+Index: fparser-4.5.1/configure.ac
 ===================================================================
---- fparser-4.5.0.orig/configure.ac
-+++ fparser-4.5.0/configure.ac
+--- fparser-4.5.1.orig/configure.ac
++++ fparser-4.5.1/configure.ac
 @@ -1,8 +1,15 @@
- AC_INIT([fparser], [4.5.0])
+ AC_INIT([fparser], [4.5.1])
  AC_CONFIG_SRCDIR([extrasrc/fpaux.hh])
 -AM_INIT_AUTOMAKE([-Wall foreign])
 +AM_INIT_AUTOMAKE([-Wall foreign 1.10])
@@ -66,10 +66,10 @@
 +
  AC_CONFIG_FILES([Makefile fparser.pc])
  AC_OUTPUT
-Index: fparser-4.5.0/fparser_gmpint.hh
+Index: fparser-4.5.1/fparser_gmpint.hh
 ===================================================================
---- fparser-4.5.0.orig/fparser_gmpint.hh
-+++ fparser-4.5.0/fparser_gmpint.hh
+--- fparser-4.5.1.orig/fparser_gmpint.hh
++++ fparser-4.5.1/fparser_gmpint.hh
 @@ -8,7 +8,7 @@
  #define ONCE_FPARSER_GMPINT_H_
  
@@ -79,10 +79,10 @@
  
  class FunctionParser_gmpint: public FunctionParserBase<GmpInt> {};
  
-Index: fparser-4.5.0/fparser_mpfr.hh
+Index: fparser-4.5.1/fparser_mpfr.hh
 ===================================================================
---- fparser-4.5.0.orig/fparser_mpfr.hh
-+++ fparser-4.5.0/fparser_mpfr.hh
+--- fparser-4.5.1.orig/fparser_mpfr.hh
++++ fparser-4.5.1/fparser_mpfr.hh
 @@ -8,7 +8,7 @@
  #define ONCE_FPARSER_MPFR_H_
  

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to