2006-12-19 00:16:39 +01:00
|
|
|
#
|
2011-04-19 13:50:39 +02:00
|
|
|
# spec file for package gmp
|
2006-12-19 00:16:39 +01:00
|
|
|
#
|
- Update to GMP 6.0.0 release.
* includes powerpc64le support and obsoletes
gmp-support-powerpc64le-linux.patch and gmp-ppc64le-mod.patch
* The function mpz_invert now considers any number invertible in Z/1Z
* The mpn multiply code now handles operands of more than 2^31 limbs
correctly
* Plain division of large operands is faster and more monotonous in
operand size
* Major speedup for ARM, in particular ARM Cortex-A15, thanks to improved
assembly.
* Speedup for Intel Sandy Bridge, Ivy Bridge, Haswell, thanks to rewritten
and vastly expanded assembly support. Speedup also for the older Core 2
and Nehalem.
* Faster mixed arithmetic between mpq_class and double.
* With g++, optimise more operations when one argument is a simple
constant.
* Support for ARM64 alias Aarch64 alias ARMv8.
* New public functions mpn_sec_mul and mpn_sec_sqr, implementing
side-channel
silent multiplication and squaring.
* New public functions mpn_sec_div_qr and mpn_sec_div_r, implementing
side-channel silent division.
* New public functions mpn_cnd_add_n and mpn_cnd_sub_n. Side-channel
silent conditional addition and subtraction.
* New public function mpn_sec_powm, implementing side-channel silent
modexp.
* New public function mpn_sec_invert, implementing side-channel silent
modular inversion.
* Better support for applications which use the mpz_t type, but
nevertheless need to call some of the lower-level mpn functions. See
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/gmp?expand=0&rev=50
2014-03-26 10:51:20 +01:00
|
|
|
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2006-12-19 00:16:39 +01:00
|
|
|
#
|
2008-08-21 17:46:27 +02:00
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2006-12-19 00:16:39 +01:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
2012-05-07 11:12:04 +02:00
|
|
|
|
2006-12-19 00:16:39 +01:00
|
|
|
Name: gmp
|
|
|
|
BuildRequires: gcc-c++
|
2008-11-28 15:01:57 +01:00
|
|
|
# bug437293
|
|
|
|
%ifarch ppc64
|
|
|
|
Obsoletes: gmp-64bit
|
|
|
|
%endif
|
2014-11-17 12:10:18 +01:00
|
|
|
Version: 6.0.0
|
2012-01-30 10:16:08 +01:00
|
|
|
Release: 0
|
2006-12-19 00:16:39 +01:00
|
|
|
Summary: The GNU MP Library
|
2012-09-13 16:33:07 +02:00
|
|
|
License: GPL-3.0+ and LGPL-3.0+
|
2012-01-30 10:16:08 +01:00
|
|
|
Group: System/Libraries
|
2007-12-12 20:13:54 +01:00
|
|
|
Url: http://gmplib.org/
|
2014-11-17 12:10:18 +01:00
|
|
|
Source: ftp://ftp.gmplib.org/pub/%{name}/%{name}-%{version}a.tar.bz2
|
2010-01-14 15:21:37 +01:00
|
|
|
Source2: baselibs.conf
|
2007-12-12 20:13:54 +01:00
|
|
|
Patch0: gmp-noexec.diff
|
2014-03-26 13:22:06 +01:00
|
|
|
Patch1: gmp-6.0.0-ppc64-gcd.diff
|
2006-12-19 00:16:39 +01:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
|
|
|
|
%description
|
|
|
|
A library for calculating huge numbers (integer and floating point).
|
|
|
|
|
|
|
|
|
2010-09-20 16:31:58 +02:00
|
|
|
%package -n libgmp10
|
2009-04-23 14:59:42 +02:00
|
|
|
Summary: Shared library for the GNU MP Library
|
|
|
|
Group: System/Libraries
|
|
|
|
|
2010-09-20 16:31:58 +02:00
|
|
|
%description -n libgmp10
|
2009-04-23 14:59:42 +02:00
|
|
|
Shared library for the GNU MP Library.
|
|
|
|
|
|
|
|
|
|
|
|
%package -n libgmpxx4
|
|
|
|
Summary: C++ bindings for the GNU MP Library
|
|
|
|
Group: System/Libraries
|
2012-12-19 11:11:52 +01:00
|
|
|
Requires: libgmp10 >= %{version}
|
2009-04-23 14:59:42 +02:00
|
|
|
|
|
|
|
%description -n libgmpxx4
|
|
|
|
C++ bindings for the GNU MP Library.
|
|
|
|
|
|
|
|
|
2006-12-19 00:16:39 +01:00
|
|
|
%package devel
|
|
|
|
Summary: Include Files and Libraries for Development with the GNU MP Library
|
|
|
|
Group: Development/Languages/C and C++
|
2010-09-20 16:31:58 +02:00
|
|
|
Requires: libgmp10 = %{version}
|
2009-04-23 14:59:42 +02:00
|
|
|
Requires: libgmpxx4 = %{version}
|
2008-11-28 15:01:57 +01:00
|
|
|
# bug437293
|
|
|
|
%ifarch ppc64
|
|
|
|
Obsoletes: gmp-devel-64bit
|
|
|
|
%endif
|
2006-12-19 00:16:39 +01:00
|
|
|
PreReq: %install_info_prereq
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
These libraries are needed to develop programs which calculate with
|
|
|
|
huge numbers (integer and floating point).
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
2014-11-17 12:10:18 +01:00
|
|
|
%setup -q
|
2006-12-19 00:16:39 +01:00
|
|
|
%patch0
|
2014-03-26 13:22:06 +01:00
|
|
|
%patch1 -p1
|
2006-12-19 00:16:39 +01:00
|
|
|
|
|
|
|
%build
|
2014-03-26 13:22:06 +01:00
|
|
|
export CFLAGS="$RPM_OPT_FLAGS -fexceptions"
|
2014-03-26 13:38:23 +01:00
|
|
|
# Do not use %%configure here, that will break build on SLE11 because
|
2014-03-26 13:39:11 +01:00
|
|
|
# there we pass a mismatched --target. See bnc#870358.
|
2014-03-26 13:22:06 +01:00
|
|
|
./configure \
|
2014-03-26 13:38:23 +01:00
|
|
|
--host=%{_host} --build=%{_build} \
|
2014-03-26 13:22:06 +01:00
|
|
|
--prefix=%{_prefix} \
|
|
|
|
--libdir=%{_libdir} \
|
2011-06-20 11:28:16 +02:00
|
|
|
--enable-cxx \
|
- Update to GMP 6.0.0 release.
* includes powerpc64le support and obsoletes
gmp-support-powerpc64le-linux.patch and gmp-ppc64le-mod.patch
* The function mpz_invert now considers any number invertible in Z/1Z
* The mpn multiply code now handles operands of more than 2^31 limbs
correctly
* Plain division of large operands is faster and more monotonous in
operand size
* Major speedup for ARM, in particular ARM Cortex-A15, thanks to improved
assembly.
* Speedup for Intel Sandy Bridge, Ivy Bridge, Haswell, thanks to rewritten
and vastly expanded assembly support. Speedup also for the older Core 2
and Nehalem.
* Faster mixed arithmetic between mpq_class and double.
* With g++, optimise more operations when one argument is a simple
constant.
* Support for ARM64 alias Aarch64 alias ARMv8.
* New public functions mpn_sec_mul and mpn_sec_sqr, implementing
side-channel
silent multiplication and squaring.
* New public functions mpn_sec_div_qr and mpn_sec_div_r, implementing
side-channel silent division.
* New public functions mpn_cnd_add_n and mpn_cnd_sub_n. Side-channel
silent conditional addition and subtraction.
* New public function mpn_sec_powm, implementing side-channel silent
modexp.
* New public function mpn_sec_invert, implementing side-channel silent
modular inversion.
* Better support for applications which use the mpz_t type, but
nevertheless need to call some of the lower-level mpn functions. See
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/gmp?expand=0&rev=50
2014-03-26 10:51:20 +01:00
|
|
|
--enable-fat
|
2012-02-04 18:32:54 +01:00
|
|
|
make %{?_smp_mflags}
|
2007-12-12 20:13:54 +01:00
|
|
|
|
|
|
|
%check
|
2007-01-15 00:48:10 +01:00
|
|
|
# do not disable "make check", FIX THE BUGS!
|
|
|
|
make check
|
2006-12-19 00:16:39 +01:00
|
|
|
|
|
|
|
%install
|
|
|
|
make install DESTDIR=${RPM_BUILD_ROOT}
|
2007-12-12 20:13:54 +01:00
|
|
|
rm $RPM_BUILD_ROOT%{_libdir}/libgmp.la
|
|
|
|
rm $RPM_BUILD_ROOT%{_libdir}/libgmpxx.la
|
|
|
|
rm $RPM_BUILD_ROOT%{_libdir}/libgmpxx.a
|
2006-12-19 00:16:39 +01:00
|
|
|
|
2010-09-20 16:31:58 +02:00
|
|
|
%post -n libgmp10 -p /sbin/ldconfig
|
2009-04-23 14:59:42 +02:00
|
|
|
|
|
|
|
%post -n libgmpxx4 -p /sbin/ldconfig
|
2008-01-03 17:36:34 +01:00
|
|
|
|
|
|
|
%post devel
|
2006-12-19 00:16:39 +01:00
|
|
|
%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
|
|
|
|
2010-09-20 16:31:58 +02:00
|
|
|
%postun -n libgmp10 -p /sbin/ldconfig
|
2009-04-23 14:59:42 +02:00
|
|
|
|
|
|
|
%postun -n libgmpxx4 -p /sbin/ldconfig
|
2006-12-19 00:16:39 +01:00
|
|
|
|
|
|
|
%postun devel
|
|
|
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
|
|
|
|
2010-09-20 16:31:58 +02:00
|
|
|
%files -n libgmp10
|
2009-04-23 14:59:42 +02:00
|
|
|
%defattr(-,root,root)
|
2010-09-20 16:31:58 +02:00
|
|
|
%{_libdir}/libgmp.so.10*
|
2009-04-23 14:59:42 +02:00
|
|
|
|
|
|
|
%files -n libgmpxx4
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_libdir}/libgmpxx.so.4*
|
2006-12-19 00:16:39 +01:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root)
|
2009-04-23 14:59:42 +02:00
|
|
|
%doc AUTHORS README NEWS
|
2006-12-19 00:16:39 +01:00
|
|
|
%doc demos
|
|
|
|
%doc %{_infodir}/gmp.info*.gz
|
2007-12-12 20:13:54 +01:00
|
|
|
%{_libdir}/libgmp.a
|
|
|
|
%{_libdir}/libgmp.so
|
|
|
|
%{_libdir}/libgmpxx.so
|
|
|
|
/usr/include/gmp.h
|
|
|
|
/usr/include/gmpxx.h
|
2006-12-19 00:16:39 +01:00
|
|
|
|
2007-05-23 16:19:37 +02:00
|
|
|
%changelog
|