Accepting request 573894 from home:AndreasStieger:branches:devel:libraries:c_c++
mpfr 4.0.1 OBS-URL: https://build.opensuse.org/request/show/573894 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/mpfr?expand=0&rev=49
This commit is contained in:
parent
0f7b204ad7
commit
459183fddf
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:6aa31fbf3bd1f9f95bcfa241590a9d11cb0f874e2bb93b99c9e2de8eaea6d5fd
|
|
||||||
size 1619917
|
|
@ -1,6 +0,0 @@
|
|||||||
-----BEGIN PGP SIGNATURE-----
|
|
||||||
|
|
||||||
iF0EABECAB0WIQQH89u+zBo5YFB4CU2YDBl2mMNznQUCWkDgWAAKCRCYDBl2mMNz
|
|
||||||
ncbSAKCvX7+vUiJPsyQxC3aZv2IYOONrGgCfZF5GSVvFkmf4Ra8otu9Wg/8fyXM=
|
|
||||||
=H0Ch
|
|
||||||
-----END PGP SIGNATURE-----
|
|
3
mpfr-4.0.1.tar.bz2
Normal file
3
mpfr-4.0.1.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:a4d97610ba8579d380b384b225187c250ef88cfe1d5e7226b89519374209b86b
|
||||||
|
size 1626420
|
6
mpfr-4.0.1.tar.bz2.asc
Normal file
6
mpfr-4.0.1.tar.bz2.asc
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
|
||||||
|
iF0EABECAB0WIQQH89u+zBo5YFB4CU2YDBl2mMNznQUCWnr4PgAKCRCYDBl2mMNz
|
||||||
|
nbAUAJ400b+qoWF9e4rUt9zxAax+/wOVwgCeJEBEIQAl3kLf6ylQ93BiQhh/ivM=
|
||||||
|
=b5mY
|
||||||
|
-----END PGP SIGNATURE-----
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 7 18:50:06 UTC 2018 - astieger@suse.com
|
||||||
|
|
||||||
|
- update to 4.0.1:
|
||||||
|
* Improved MPFR manual
|
||||||
|
* bug fixes, including mpfr_div_ui, mpfr_div rounding issue
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jan 2 12:28:32 UTC 2018 - rguenther@suse.com
|
Tue Jan 2 12:28:32 UTC 2018 - rguenther@suse.com
|
||||||
|
|
||||||
|
13
mpfr.spec
13
mpfr.spec
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: mpfr
|
Name: mpfr
|
||||||
Version: 4.0.0
|
Version: 4.0.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The GNU multiple-precision floating-point library
|
Summary: The GNU multiple-precision floating-point library
|
||||||
License: LGPL-3.0+
|
License: LGPL-3.0+
|
||||||
@ -28,8 +28,7 @@ Source1: http://www.mpfr.org/mpfr-%{version}/mpfr-%{version}.tar.bz2.asc
|
|||||||
Source2: %{name}.keyring
|
Source2: %{name}.keyring
|
||||||
Source3: baselibs.conf
|
Source3: baselibs.conf
|
||||||
BuildRequires: gmp-devel
|
BuildRequires: gmp-devel
|
||||||
BuildRequires: pkg-config
|
BuildRequires: pkgconfig
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
The MPFR library is a C library for multiple-precision floating-point
|
The MPFR library is a C library for multiple-precision floating-point
|
||||||
@ -70,7 +69,7 @@ based on the GMP multiple-precision library.
|
|||||||
|
|
||||||
%build
|
%build
|
||||||
%configure \
|
%configure \
|
||||||
%ifarch %sparc hppa
|
%ifarch %{sparc} hppa
|
||||||
--disable-thread-safe \
|
--disable-thread-safe \
|
||||||
%else
|
%else
|
||||||
--enable-thread-safe \
|
--enable-thread-safe \
|
||||||
@ -84,7 +83,7 @@ make %{?_smp_mflags}
|
|||||||
make check %{?_smp_mflags}
|
make check %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make %{?_smp_mflags} DESTDIR=%{buildroot} install
|
%make_install
|
||||||
find %{buildroot} -type f -name "*.la" -delete -print
|
find %{buildroot} -type f -name "*.la" -delete -print
|
||||||
|
|
||||||
%post -n libmpfr6 -p /sbin/ldconfig
|
%post -n libmpfr6 -p /sbin/ldconfig
|
||||||
@ -96,13 +95,11 @@ find %{buildroot} -type f -name "*.la" -delete -print
|
|||||||
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
||||||
|
|
||||||
%files -n libmpfr6
|
%files -n libmpfr6
|
||||||
%defattr(-,root,root)
|
|
||||||
%{_libdir}/libmpfr.so.6*
|
%{_libdir}/libmpfr.so.6*
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root)
|
|
||||||
%doc %{_docdir}/mpfr
|
%doc %{_docdir}/mpfr
|
||||||
%{_infodir}/mpfr.info.gz
|
%{_infodir}/mpfr.info%{ext_info}
|
||||||
%{_libdir}/libmpfr.so
|
%{_libdir}/libmpfr.so
|
||||||
%{_includedir}/mpf2mpfr.h
|
%{_includedir}/mpf2mpfr.h
|
||||||
%{_includedir}/mpfr.h
|
%{_includedir}/mpfr.h
|
||||||
|
Loading…
Reference in New Issue
Block a user