Hello community,

here is the log from the commit of package fparser for openSUSE:Factory checked 
in at 2015-09-19 06:55:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/fparser (Old)
 and      /work/SRC/openSUSE:Factory/.fparser.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "fparser"

Changes:
--------
--- /work/SRC/openSUSE:Factory/fparser/fparser.changes  2013-03-08 
09:09:43.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.fparser.new/fparser.changes     2015-09-19 
06:55:41.000000000 +0200
@@ -1,0 +2,8 @@
+Fri Sep 11 08:07:19 UTC 2015 - mplus...@suse.com
+
+- Update to 4.5.2
+  * Fixed several optimizer bugs.
+  * Fixed compilation problems with Visual Studio 2013 and gcc.
+- Use url for source
+
+-------------------------------------------------------------------

Old:
----
  fparser-4.5.1.tar.xz

New:
----
  fparser4.5.2.zip

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

Other differences:
------------------
++++++ fparser.spec ++++++
--- /var/tmp/diff_new_pack.nKidcO/_old  2015-09-19 06:55:43.000000000 +0200
+++ /var/tmp/diff_new_pack.nKidcO/_new  2015-09-19 06:55:43.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package fparser
 #
-# Copyright (c) 2013 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
@@ -17,15 +17,15 @@
 
 
 Name:           fparser
-%define lname  libfparser-4_5_1
+%define lname  libfparser-4_5_2
 Summary:        Library to evaluate strings as mathematical functions
 License:        LGPL-3.0
 Group:          Development/Libraries/C and C++
-Version:        4.5.1
+Version:        4.5.2
 Release:        0
 Url:            http://warp.povusers.org/FunctionParser/
 
-Source:         %name-%version.tar.xz
+Source:         http://warp.povusers.org/FunctionParser/%name%version.zip
 Patch1:         fparser-build-system.diff
 Patch2:         fparser-gmp-mpfr.diff
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
@@ -34,7 +34,7 @@
 BuildRequires:  libtool
 BuildRequires:  mpfr-devel >= 2.4
 BuildRequires:  pkgconfig
-BuildRequires:  xz
+BuildRequires:  unzip
 
 %description
 This C++ library offers a class which can be used to parse and
@@ -76,7 +76,7 @@
 mathematical expressions in a scripting language.
 
 %prep
-%setup -q
+%setup -q -c -n %name%version
 ln -s mpfr fparser;
 %patch -P 1 -P 2 -p1
 
@@ -93,7 +93,7 @@
 
 %files -n %lname
 %defattr(-,root,root)
-%_libdir/libfparser-%version.so
+%_libdir/libfparser-*.so
 
 %files devel
 %defattr(-,root,root)

++++++ fparser-build-system.diff ++++++
--- /var/tmp/diff_new_pack.nKidcO/_old  2015-09-19 06:55:43.000000000 +0200
+++ /var/tmp/diff_new_pack.nKidcO/_new  2015-09-19 06:55:43.000000000 +0200
@@ -29,7 +29,7 @@
 --- /dev/null
 +++ fparser-4.5.0/configure.ac
 @@ -0,0 +1,8 @@
-+AC_INIT([fparser], [4.5.1])
++AC_INIT([fparser], [4.5.2])
 +AC_CONFIG_SRCDIR([extrasrc/fpaux.hh])
 +AM_INIT_AUTOMAKE([-Wall foreign])
 +AC_DISABLE_STATIC

++++++ fparser-gmp-mpfr.diff ++++++
--- /var/tmp/diff_new_pack.nKidcO/_old  2015-09-19 06:55:43.000000000 +0200
+++ /var/tmp/diff_new_pack.nKidcO/_new  2015-09-19 06:55:43.000000000 +0200
@@ -10,10 +10,10 @@
  fparser_mpfr.hh   |    2 +-
  4 files changed, 29 insertions(+), 4 deletions(-)
 
-Index: fparser-4.5.1/Makefile.am
+Index: fparser4.5.2/Makefile.am
 ===================================================================
---- fparser-4.5.1.orig/Makefile.am
-+++ fparser-4.5.1/Makefile.am
+--- fparser4.5.2.orig/Makefile.am
++++ fparser4.5.2/Makefile.am
 @@ -1,11 +1,29 @@
  # -*- Makefile -*-
  
@@ -45,12 +45,12 @@
  
  pkgconfigdir = ${libdir}/pkgconfig
  pkgconfig_DATA = fparser.pc
-Index: fparser-4.5.1/configure.ac
+Index: fparser4.5.2/configure.ac
 ===================================================================
---- fparser-4.5.1.orig/configure.ac
-+++ fparser-4.5.1/configure.ac
+--- fparser4.5.2.orig/configure.ac
++++ fparser4.5.2/configure.ac
 @@ -1,8 +1,15 @@
- AC_INIT([fparser], [4.5.1])
+ AC_INIT([fparser], [4.5.2])
  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.1/fparser_gmpint.hh
+Index: fparser4.5.2/fparser_gmpint.hh
 ===================================================================
---- fparser-4.5.1.orig/fparser_gmpint.hh
-+++ fparser-4.5.1/fparser_gmpint.hh
+--- fparser4.5.2.orig/fparser_gmpint.hh
++++ fparser4.5.2/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.1/fparser_mpfr.hh
+Index: fparser4.5.2/fparser_mpfr.hh
 ===================================================================
---- fparser-4.5.1.orig/fparser_mpfr.hh
-+++ fparser-4.5.1/fparser_mpfr.hh
+--- fparser4.5.2.orig/fparser_mpfr.hh
++++ fparser4.5.2/fparser_mpfr.hh
 @@ -8,7 +8,7 @@
  #define ONCE_FPARSER_MPFR_H_
  


Reply via email to