Accepting request 915769 from science
- Switch on _multibuild with the separate test step (to minimize dependencies). - Add a basic baselibs.conf. OBS-URL: https://build.opensuse.org/request/show/915769 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/mpdecimal?expand=0&rev=2
This commit is contained in:
commit
3850592eba
3
_multibuild
Normal file
3
_multibuild
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<multibuild>
|
||||||
|
<package>test</package>
|
||||||
|
</multibuild>
|
3
baselibs.conf
Normal file
3
baselibs.conf
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
libmpdec++3
|
||||||
|
libmpdec3
|
||||||
|
mpdecimal-devel
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 2 13:07:52 UTC 2021 - Matej Cepl <mcepl@suse.com>
|
||||||
|
|
||||||
|
- Switch on _multibuild with the separate test step (to minimize
|
||||||
|
dependencies).
|
||||||
|
- Add a basic baselibs.conf.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 10 00:04:52 UTC 2021 - Stefan Krah <skrah@bytereef.org>
|
Tue Aug 10 00:04:52 UTC 2021 - Stefan Krah <skrah@bytereef.org>
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package mpdecimal
|
# spec file
|
||||||
#
|
#
|
||||||
# Copyright (c) 2021 SUSE LLC
|
# Copyright (c) 2021 SUSE LLC
|
||||||
#
|
#
|
||||||
@ -16,7 +16,15 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
Name: mpdecimal
|
%global flavor @BUILD_FLAVOR@%{nil}
|
||||||
|
%if "%{flavor}" == "test"
|
||||||
|
%define psuffix -test
|
||||||
|
%bcond_without test
|
||||||
|
%else
|
||||||
|
%define psuffix %{nil}
|
||||||
|
%bcond_with test
|
||||||
|
%endif
|
||||||
|
Name: mpdecimal%{psuffix}
|
||||||
Version: 2.5.1
|
Version: 2.5.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: C/C++ libraries for arbitrary precision decimal floating point arithmetic
|
Summary: C/C++ libraries for arbitrary precision decimal floating point arithmetic
|
||||||
@ -25,11 +33,14 @@ Group: Development/Libraries/C and C++
|
|||||||
URL: https://www.bytereef.org/mpdecimal/index.html
|
URL: https://www.bytereef.org/mpdecimal/index.html
|
||||||
Source0: https://www.bytereef.org/software/mpdecimal/releases/mpdecimal-%{version}.tar.gz
|
Source0: https://www.bytereef.org/software/mpdecimal/releases/mpdecimal-%{version}.tar.gz
|
||||||
Source1: http://speleotrove.com/decimal/dectest.zip
|
Source1: http://speleotrove.com/decimal/dectest.zip
|
||||||
|
Source99: baselibs.conf
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
BuildRequires: make
|
BuildRequires: make
|
||||||
|
%if %{with test}
|
||||||
BuildRequires: unzip
|
BuildRequires: unzip
|
||||||
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
libmpdec is a C implementation of the General Decimal Arithmetic
|
libmpdec is a C implementation of the General Decimal Arithmetic
|
||||||
@ -78,8 +89,11 @@ The package contains documentation and development headers for
|
|||||||
libmpdec and libmpdec++.
|
libmpdec and libmpdec++.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup
|
%autosetup -p1 -n mpdecimal-%{version}
|
||||||
|
|
||||||
|
%if %{with test}
|
||||||
unzip -d tests/testdata %{SOURCE1}
|
unzip -d tests/testdata %{SOURCE1}
|
||||||
|
%endif
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# NOTE: without -ffat-lto-objects the inline assembly tests in ./configure
|
# NOTE: without -ffat-lto-objects the inline assembly tests in ./configure
|
||||||
@ -89,14 +103,19 @@ export CXXFLAGS="$CFLAGS"
|
|||||||
%configure --docdir="%{_defaultdocdir}/%{name}"
|
%configure --docdir="%{_defaultdocdir}/%{name}"
|
||||||
%make_build
|
%make_build
|
||||||
|
|
||||||
%check
|
|
||||||
%make_build check
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
|
%if !%{with test}
|
||||||
%make_install
|
%make_install
|
||||||
rm -f "%{buildroot}/%{_libdir}"/*.a
|
rm -f "%{buildroot}/%{_libdir}"/*.a
|
||||||
%fdupes -s %{buildroot}/%{_docdir}/%{name}
|
%fdupes -s %{buildroot}/%{_docdir}/%{name}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%check
|
||||||
|
%if %{with test}
|
||||||
|
%make_build check
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if !%{with test}
|
||||||
%post -n libmpdec3 -p /sbin/ldconfig
|
%post -n libmpdec3 -p /sbin/ldconfig
|
||||||
%post -n libmpdec++3 -p /sbin/ldconfig
|
%post -n libmpdec++3 -p /sbin/ldconfig
|
||||||
%postun -n libmpdec3 -p /sbin/ldconfig
|
%postun -n libmpdec3 -p /sbin/ldconfig
|
||||||
@ -118,5 +137,6 @@ rm -f "%{buildroot}/%{_libdir}"/*.a
|
|||||||
%{_libdir}/libmpdec++.so
|
%{_libdir}/libmpdec++.so
|
||||||
%{_includedir}/mpdecimal.h
|
%{_includedir}/mpdecimal.h
|
||||||
%{_includedir}/decimal.hh
|
%{_includedir}/decimal.hh
|
||||||
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user