From 8413ad129f5d7050a1825a03731510ae1ff08d480392f2a2b523d4b85af4af49 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Sat, 6 Jul 2019 10:38:54 +0000 Subject: [PATCH] - Trim bias from descriptions. OBS-URL: https://build.opensuse.org/package/show/science/muparser?expand=0&rev=21 --- muparser.changes | 5 +++++ muparser.spec | 19 +++++++++---------- prepare-tar.sh | 11 ----------- 3 files changed, 14 insertions(+), 21 deletions(-) delete mode 100644 prepare-tar.sh diff --git a/muparser.changes b/muparser.changes index 0f14e4b..c3e6284 100644 --- a/muparser.changes +++ b/muparser.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Sat Jul 6 10:37:33 UTC 2019 - Jan Engelhardt + +- Trim bias from descriptions. + ------------------------------------------------------------------- Mon Oct 22 13:11:56 UTC 2018 - badshah400@gmail.com diff --git a/muparser.spec b/muparser.spec index a7bfc64..661a7d9 100644 --- a/muparser.spec +++ b/muparser.spec @@ -1,7 +1,7 @@ # # spec file for package muparser # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 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 @@ -12,7 +12,7 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # @@ -26,7 +26,6 @@ Group: Productivity/Scientific/Math Url: http://muparser.beltoforion.de/ Source: https://github.com/beltoforion/muparser/archive/v%{version}.tar.gz -Source9: prepare-tar.sh Source1: baselibs.conf Patch1: muparser-optflags.patch Patch2: muparser-abiversion.diff @@ -38,8 +37,8 @@ BuildRequires: libtool BuildRequires: pkg-config %description -muParser is an extensible high performance math parser library written in -C++. It works by transforming a mathematical expression into bytecode and +muParser is an extensible math parser library written in C++. It +works by transforming a mathematical expression into bytecode and precalculating constant parts of the expression. %package -n %lname @@ -47,8 +46,8 @@ Summary: Library to evaluate strings as mathematical functions Group: System/Libraries %description -n %lname -muParser is an extensible high performance math parser library written in -C++. It works by transforming a mathematical expression into bytecode and +muParser is an extensible math parser library written in C++. It +works by transforming a mathematical expression into bytecode and precalculating constant parts of the expression. %package devel @@ -57,8 +56,8 @@ Group: Development/Libraries/C and C++ Requires: %lname = %version %description devel -muParser is an extensible high performance math parser library written in -C++. It works by transforming a mathematical expression into bytecode and +muParser is an extensible math parser library written in C++. It +works by transforming a mathematical expression into bytecode and precalculating constant parts of the expression. %prep @@ -72,7 +71,7 @@ sh build/autoconf/acregen.sh make -j1 %install -make install DESTDIR="%buildroot" +%make_install rm -f "%buildroot/%_libdir"/*.la %post -n %lname -p /sbin/ldconfig diff --git a/prepare-tar.sh b/prepare-tar.sh deleted file mode 100644 index e0a23d3..0000000 --- a/prepare-tar.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -ex - -in="2_2_4"; -out="2.2.4"; -unzip "muparser_v$in.zip"; -mv "muparser_v$in" "muparser-$out"; -find "muparser-$out" -type f "(" -iname "*.dll" -o -iname "*.lib" ")" \ - -print -delete; -tar --owner=root --group=root --use=xz -cf \ - "muparser-$out.tar.xz" "muparser-$out"; -rm -Rf "muparser-$out";