This commit is contained in:
commit
9c203e91a6
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
3
mpfr-2.2.1.tar.bz2
Normal file
3
mpfr-2.2.1.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:92e2fea0eefd3d50b8e762334326657bfc5be9a6bda58cfa724b2a5cba9f65e4
|
||||
size 787634
|
36
mpfr.changes
Normal file
36
mpfr.changes
Normal file
@ -0,0 +1,36 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 29 12:06:59 CET 2006 - rguenther@suse.de
|
||||
|
||||
- New upstream version 2.2.1.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 9 12:37:15 CEST 2006 - rguenther@suse.de
|
||||
|
||||
- Apply bugfixes from upstream, up to patch 16.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jun 7 10:50:15 CEST 2006 - rguenther@suse.de
|
||||
|
||||
- Apply bugfixes from upstream, up to patch 12.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri May 26 15:20:09 CEST 2006 - rguenther@suse.de
|
||||
|
||||
- Fix the real bug, re-enable testsuite on s390.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri May 26 12:38:05 CEST 2006 - rguenther@suse.de
|
||||
|
||||
- Skip testsuite for s390.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 15 14:27:36 CEST 2006 - rguenther@suse.de
|
||||
|
||||
- Add provides to mpfr-devel to fix updating from gmp-devel.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat May 13 18:40:51 CEST 2006 - rguenther@suse.de
|
||||
|
||||
- New packages mpfr and mpfr-devel split from the gmp package as
|
||||
gmp no longer comes with the mpfr library included. Version 2.2.0.
|
||||
|
118
mpfr.spec
Normal file
118
mpfr.spec
Normal file
@ -0,0 +1,118 @@
|
||||
#
|
||||
# spec file for package mpfr (Version 2.2.1)
|
||||
#
|
||||
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
|
||||
Name: mpfr
|
||||
BuildRequires: gmp-devel
|
||||
License: GNU Library General Public License v. 2.0 and 2.1 (LGPL)
|
||||
Group: Development/Libraries/C and C++
|
||||
Autoreqprov: on
|
||||
Requires: gmp
|
||||
Version: 2.2.1
|
||||
Release: 2
|
||||
Summary: The MPFR library for multiple-precision floating-point computations with exact rounding
|
||||
URL: http://www.mpfr.org/
|
||||
Source: mpfr-%{version}.tar.bz2
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
|
||||
%description
|
||||
The MPFR library is a C library for multiple-precision floating-point
|
||||
computations with exact rounding (also called correct rounding). It is
|
||||
based on the GMP multiple-precision library.
|
||||
|
||||
The main goal of MPFR is to provide a library for multiple-precision
|
||||
floating-point computation which is both efficient and has a
|
||||
well-defined semantics. It copies the good ideas from the ANSI/IEEE-754
|
||||
standard for double-precision floating-point arithmetic (53-bit
|
||||
mantissa).
|
||||
|
||||
|
||||
|
||||
Authors:
|
||||
--------
|
||||
Guillaume Hanrot
|
||||
Paul Zimmermann
|
||||
Vincent Lefèvre
|
||||
Patrick Pélissier
|
||||
|
||||
%package devel
|
||||
Summary: Development package for the MPFR multiple-precision floating-point computation library
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: mpfr = %{version} gmp-devel
|
||||
Provides: gmp-devel:/usr/lib/libmpfr.a
|
||||
Autoreqprov: on
|
||||
PreReq: %install_info_prereq
|
||||
|
||||
%description devel
|
||||
Development package for the MPFR multiple-precision floating-point computation library
|
||||
|
||||
Authors:
|
||||
--------
|
||||
Guillaume Hanrot
|
||||
Paul Zimmermann
|
||||
Vincent Lefèvre
|
||||
Patrick Pélissier
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%configure --enable-shared --enable-thread-safe
|
||||
make %{?jobs:-j%jobs}
|
||||
make check %{?jobs:-j%jobs}
|
||||
|
||||
%install
|
||||
%makeinstall
|
||||
rm ${RPM_BUILD_ROOT}/%{_libdir}/lib*.la
|
||||
|
||||
%post
|
||||
%run_ldconfig
|
||||
|
||||
%post devel
|
||||
%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
||||
|
||||
%postun
|
||||
%run_ldconfig
|
||||
|
||||
%postun devel
|
||||
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc AUTHORS README NEWS ChangeLog
|
||||
%{_libdir}/lib*.so.*
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root)
|
||||
%doc %{_infodir}/mpfr.info*.gz
|
||||
%{_libdir}/lib*.a
|
||||
%{_libdir}/lib*.so
|
||||
/usr/include/*
|
||||
|
||||
%changelog -n mpfr
|
||||
* Wed Nov 29 2006 - rguenther@suse.de
|
||||
- New upstream version 2.2.1.
|
||||
* Mon Oct 09 2006 - rguenther@suse.de
|
||||
- Apply bugfixes from upstream, up to patch 16.
|
||||
* Wed Jun 07 2006 - rguenther@suse.de
|
||||
- Apply bugfixes from upstream, up to patch 12.
|
||||
* Fri May 26 2006 - rguenther@suse.de
|
||||
- Fix the real bug, re-enable testsuite on s390.
|
||||
* Fri May 26 2006 - rguenther@suse.de
|
||||
- Skip testsuite for s390.
|
||||
* Mon May 15 2006 - rguenther@suse.de
|
||||
- Add provides to mpfr-devel to fix updating from gmp-devel.
|
||||
* Sat May 13 2006 - rguenther@suse.de
|
||||
- New packages mpfr and mpfr-devel split from the gmp package as
|
||||
gmp no longer comes with the mpfr library included. Version 2.2.0.
|
Loading…
Reference in New Issue
Block a user