forked from pool/muparser
muparser-2.2.4
OBS-URL: https://build.opensuse.org/package/show/science/muparser?expand=0&rev=11
This commit is contained in:
parent
3b2e2e3098
commit
34b6b542fa
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:5c19d9781324f7d5c2ac2905fb3b3f56338543d4d5f2a0c5dddd4631becc99e2
|
|
||||||
size 755572
|
|
3
muparser-2.2.4.tar.xz
Normal file
3
muparser-2.2.4.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:337a875fdf42cce1e2ecce8b9d351b0ddd634c9a517471a41a6dc9bc980bdeba
|
||||||
|
size 159828
|
48
muparser-abiversion.diff
Normal file
48
muparser-abiversion.diff
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
From: Jan Engelhardt <jengelh@inai.de>
|
||||||
|
Date: 2015-02-03 00:43:03.433735818 +0100
|
||||||
|
|
||||||
|
muparser broke the ABI between 2.2.3 and 2.2.4 by changing.
|
||||||
|
The abidiff(1) report from libabigail:
|
||||||
|
|
||||||
|
[C]'method std::size_t mu::ParserError::GetPos()' has some indirect sub-type changes:
|
||||||
|
return type changed:
|
||||||
|
entity changed from typedef std::size_t to int
|
||||||
|
name changed from 'long unsigned int' to 'int'
|
||||||
|
size changed from 64 to 32 bits
|
||||||
|
alignment changed from 64 to 32 bits
|
||||||
|
|
||||||
|
Work around this messup by using the full version as unique SONAME.
|
||||||
|
---
|
||||||
|
Makefile.in | 6 +++---
|
||||||
|
build/autoconf/aclocal.m4 | 5 +++--
|
||||||
|
2 files changed, 6 insertions(+), 5 deletions(-)
|
||||||
|
|
||||||
|
Index: muparser-2.2.4/Makefile.in
|
||||||
|
===================================================================
|
||||||
|
--- muparser-2.2.4.orig/Makefile.in
|
||||||
|
+++ muparser-2.2.4/Makefile.in
|
||||||
|
@@ -143,7 +143,7 @@ COND_WINDOWS_IMPLIB_1___muParser_dll___i
|
||||||
|
@COND_PLATFORM_MACOSX_1_USE_SOVERSION_1@__muParser_dll___targetsuf3 \
|
||||||
|
@COND_PLATFORM_MACOSX_1_USE_SOVERSION_1@ = .2.2.4.$(SO_SUFFIX)
|
||||||
|
@COND_USE_SOVERSION_1_USE_SOVERSOLARIS_1@__muParser_dll___targetsuf3 \
|
||||||
|
-@COND_USE_SOVERSION_1_USE_SOVERSOLARIS_1@ = .$(SO_SUFFIX).2
|
||||||
|
+@COND_USE_SOVERSION_1_USE_SOVERSOLARIS_1@ = .$(SO_SUFFIX).2.2.4
|
||||||
|
@COND_USE_SOVERCYGWIN_1_USE_SOVERSION_1@__muParser_dll___targetsuf3 \
|
||||||
|
@COND_USE_SOVERCYGWIN_1_USE_SOVERSION_1@ = -2.$(SO_SUFFIX)
|
||||||
|
@COND_USE_SOVERSION_0@__muParser_dll___targetsuf3 = .$(SO_SUFFIX)
|
||||||
|
Index: muparser-2.2.4/build/autoconf/aclocal.m4
|
||||||
|
===================================================================
|
||||||
|
--- muparser-2.2.4.orig/build/autoconf/aclocal.m4
|
||||||
|
+++ muparser-2.2.4/build/autoconf/aclocal.m4
|
||||||
|
@@ -1317,8 +1317,9 @@ AC_DEFUN([AC_BAKEFILE_SHARED_VERSIONS],
|
||||||
|
SONAME_FLAG="-Wl,-soname,"
|
||||||
|
fi
|
||||||
|
USE_SOVERSION=1
|
||||||
|
- USE_SOVERLINUX=1
|
||||||
|
- USE_SOTWOSYMLINKS=1
|
||||||
|
+ USE_SOVERLINUX=0
|
||||||
|
+ USE_SOVERSOLARIS=1
|
||||||
|
+ USE_SOTWOSYMLINKS=0
|
||||||
|
;;
|
||||||
|
|
||||||
|
*-*-solaris2* )
|
@ -1,3 +1,13 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Feb 2 23:06:30 UTC 2015 - jengelh@inai.de
|
||||||
|
|
||||||
|
- Update to new upstream release 2.2.4
|
||||||
|
* String constants did not work properly. Using more than a single
|
||||||
|
one was impossible.
|
||||||
|
* return type of ParserError::GetPos changed to int
|
||||||
|
* Bulkmode did not evaluate properly if "=" and "," operator was
|
||||||
|
used in the expression
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jan 25 04:15:00 UTC 2013 - jengelh@inai.de
|
Fri Jan 25 04:15:00 UTC 2013 - jengelh@inai.de
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package muparser
|
# spec file for package muparser
|
||||||
#
|
#
|
||||||
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,25 +17,25 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: muparser
|
Name: muparser
|
||||||
%define lname libmuparser2
|
%define lname libmuparser2_2_4
|
||||||
|
Version: 2.2.4
|
||||||
|
Release: 0
|
||||||
Summary: A math parser library
|
Summary: A math parser library
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: Productivity/Scientific/Math
|
Group: Productivity/Scientific/Math
|
||||||
Version: 2.2.3
|
|
||||||
Release: 0
|
|
||||||
Url: http://muparser.beltoforion.de/
|
Url: http://muparser.beltoforion.de/
|
||||||
|
|
||||||
#DL-URL: http://downloads.sf.net/muparser/muparser_v2_2_3.zip
|
#DL-URL: https://doc-0g-58-docs.googleusercontent.com/docs/securesc/ha0ro937gcuc7l7deffksulhg5h7mbp1/is8u65pst36vuotrinv2c401knhailp9/1422914400000/10606444718388524723/*/0BzuB-ydOOoduejdwdTQwcF9JLTA?e=download
|
||||||
# quilt does not like zips very much. downloaded and repackaged.
|
|
||||||
Source: %name-%version.tar.xz
|
Source: %name-%version.tar.xz
|
||||||
Source9: prepare-tar.sh
|
Source9: prepare-tar.sh
|
||||||
Patch3: muparser-optflags.patch
|
Patch1: muparser-optflags.patch
|
||||||
|
Patch2: muparser-abiversion.diff
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
BuildRequires: autoconf
|
BuildRequires: autoconf
|
||||||
BuildRequires: automake
|
BuildRequires: automake
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
BuildRequires: libtool
|
BuildRequires: libtool
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkg-config
|
||||||
BuildRequires: xz
|
BuildRequires: xz
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -64,7 +64,7 @@ precalculating constant parts of the expression.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch -P 3 -p1
|
%patch -P 1 -P 2 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
sh build/autoconf/acregen.sh
|
sh build/autoconf/acregen.sh
|
||||||
@ -76,8 +76,7 @@ make -j1
|
|||||||
make install DESTDIR="%buildroot"
|
make install DESTDIR="%buildroot"
|
||||||
rm -f "%buildroot/%_libdir"/*.la
|
rm -f "%buildroot/%_libdir"/*.la
|
||||||
|
|
||||||
%post -n %lname -p /sbin/ldconfig
|
%post -n %lname -p /sbin/ldconfig
|
||||||
|
|
||||||
%postun -n %lname -p /sbin/ldconfig
|
%postun -n %lname -p /sbin/ldconfig
|
||||||
|
|
||||||
%files -n %lname
|
%files -n %lname
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
#!/bin/sh -ex
|
#!/bin/sh -ex
|
||||||
|
|
||||||
in="2_2_3";
|
in="2_2_4";
|
||||||
out="2.2.3";
|
out="2.2.4";
|
||||||
wget -c "http://downloads.sf.net/muparser/muparser_v$in.zip";
|
|
||||||
unzip "muparser_v$in.zip";
|
unzip "muparser_v$in.zip";
|
||||||
mv "muparser_v$in" "muparser-$out";
|
mv "muparser_v$in" "muparser-$out";
|
||||||
find "muparser-$out" -type f "(" -iname "*.dll" -o -iname "*.lib" ")" \
|
find "muparser-$out" -type f "(" -iname "*.dll" -o -iname "*.lib" ")" \
|
||||||
|
Loading…
Reference in New Issue
Block a user