Compare commits
45 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ebdaaedf86 | ||
|
|
830dbbe0e0 |
||
|
|
d9e96fd5fb | ||
|
|
ec4720d961 | ||
|
|
62bd2cdcc2 | ||
|
|
0cf369ae90 | ||
|
|
45cb3e8d14 | ||
|
|
5922b52bac | ||
|
|
d1f3ce8df4 | ||
|
|
c7d501bb84 | ||
|
|
af7310239e | ||
|
|
1d54b0b669 | ||
|
|
820b49a7d3 | ||
|
|
b8d86e27c1 | ||
|
|
30b564b576 | ||
|
|
cca6e934e8 | ||
|
|
2fb321653b | ||
|
|
ed735e8d2c | ||
|
|
4290d28595 | ||
|
|
d80e858fdc | ||
|
|
4a657d6045 | ||
|
|
f1eb89ef0d | ||
|
|
08cf430d59 | ||
|
|
d89286dc3e | ||
|
|
9acef3eea7 | ||
|
|
c0016c7cad | ||
|
|
cbfeb6f663 | ||
|
|
ab6fce68a6 | ||
|
|
28c128f927 | ||
|
|
40d31d2798 | ||
|
|
9637b73146 | ||
|
|
be947c1e21 | ||
|
|
4f066edbc4 | ||
|
|
acb6838241 | ||
|
|
aaf4648ad5 | ||
|
|
6fea43f235 | ||
|
|
715bcf1e4e | ||
|
|
22423e7314 |
||
|
|
f4dc0f3ecf | ||
|
|
14044d1ec9 | ||
|
|
981068def2 | ||
|
|
f422ddcf5e | ||
|
|
c66a201ca3 | ||
|
|
f027070a12 | ||
|
|
f91aec678a |
9 changed files with 2433 additions and 57 deletions
1
.fmf/version
Normal file
1
.fmf/version
Normal file
|
|
@ -0,0 +1 @@
|
|||
1
|
||||
8
.gitignore
vendored
8
.gitignore
vendored
|
|
@ -1,6 +1,2 @@
|
|||
/mpfr-3.1.1.tar.xz
|
||||
/mpfr-3.1.2.zip
|
||||
/mpfr-3.1.2.tar.xz
|
||||
/mpfr-3.1.3.tar.xz
|
||||
/mpfr-3.1.4.tar.xz
|
||||
/mpfr-3.1.5.tar.xz
|
||||
/mpfr-*.zip
|
||||
/mpfr-*.tar.xz
|
||||
|
|
|
|||
16
README.md
Normal file
16
README.md
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
# mpfr
|
||||
|
||||
The [MPFR library](https://www.mpfr.org/) is a C library for
|
||||
multiple-precision floating-point computations with _correct rounding_. MPFR
|
||||
has continuously been supported by [INRIA](https://www.inria.fr/) and the
|
||||
current main authors come from the [Caramba](https://caramba.loria.fr/) and
|
||||
[AriC](http://www.ens-lyon.fr/LIP/AriC/) project teams at
|
||||
[Loria](https://www.loria.fr/) (Nancy, France) and
|
||||
[LIP](http://www.ens-lyon.fr/LIP/) (Lyon, France) respectively; see more on
|
||||
the [credit page](https://www.mpfr.org/credit.html). MPFR is based on the
|
||||
[GMP](https://gmplib.org/) 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 significand).
|
||||
2194
allpatches
Normal file
2194
allpatches
Normal file
File diff suppressed because it is too large
Load diff
248
mpfr.spec
248
mpfr.spec
|
|
@ -1,87 +1,235 @@
|
|||
Summary: A C library for multiple-precision floating-point computations
|
||||
Summary: C library for multiple-precision floating-point computations
|
||||
Name: mpfr
|
||||
Version: 3.1.5
|
||||
Release: 3%{?dist}
|
||||
URL: http://www.mpfr.org/
|
||||
Source0: http://www.mpfr.org/mpfr-current/%{name}-%{version}.tar.xz
|
||||
# GFDL (mpfr.texi, mpfr.info and fdl.texi)
|
||||
License: LGPLv3+ and GPLv3+ and GFDL
|
||||
Version: 4.2.2
|
||||
Release: 2%{?dist}
|
||||
URL: https://www.mpfr.org/
|
||||
VCS: git:https://gitlab.inria.fr/mpfr/mpfr.git
|
||||
|
||||
BuildRequires: autoconf libtool gmp-devel
|
||||
Requires(post): /sbin/ldconfig
|
||||
Requires(postun): /sbin/ldconfig
|
||||
Requires: gmp >= 4.2.1
|
||||
License: LGPL-3.0-or-later
|
||||
BuildRequires: gcc
|
||||
BuildRequires: gmp-devel
|
||||
BuildRequires: make
|
||||
BuildRequires: texinfo
|
||||
|
||||
Source: https://www.mpfr.org/%{name}-%{version}/%{name}-%{version}.tar.xz
|
||||
|
||||
# Upstream post-release patches. This currently contains:
|
||||
#Patch0: https://www.mpfr.org/%%{name}-%%{version}/allpatches
|
||||
|
||||
%description
|
||||
The MPFR library is a C library for multiple-precision floating-point
|
||||
computations with "correct rounding". The MPFR is efficient and
|
||||
also has a well-defined semantics. It copies the good ideas from the
|
||||
ANSI/IEEE-754 standard for double-precision floating-point arithmetic
|
||||
computations with "correct rounding". The MPFR is efficient and
|
||||
also 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). MPFR is based on the GMP multiple-precision library.
|
||||
|
||||
%package devel
|
||||
Summary: Development tools A C library for mpfr library
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Requires(post): /sbin/install-info
|
||||
Requires(preun): /sbin/install-info
|
||||
Requires: gmp-devel
|
||||
Summary: Development files for the MPFR library
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
Requires: gmp-devel%{?_isa}
|
||||
|
||||
%description devel
|
||||
Header files and documentation for using the MPFR
|
||||
Header files and documentation for using the MPFR
|
||||
multiple-precision floating-point library in applications.
|
||||
|
||||
If you want to develop applications which will use the MPFR library,
|
||||
you'll need to install the mpfr-devel package. You'll also need to
|
||||
you'll need to install the mpfr-devel package. You'll also need to
|
||||
install the mpfr package.
|
||||
|
||||
%package doc
|
||||
Summary: Documentation for the MPFR library
|
||||
License: GFDL-1.2-no-invariants-or-later
|
||||
BuildArch: noarch
|
||||
|
||||
%description doc
|
||||
Documentation for the MPFR library.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%autosetup -p1
|
||||
|
||||
%build
|
||||
%configure --disable-assert --disable-static
|
||||
make %{?_smp_mflags}
|
||||
|
||||
# Get rid of undesirable hardcoded rpaths; workaround libtool reordering
|
||||
# -Wl,--as-needed after all the libraries.
|
||||
sed -e 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' \
|
||||
-e 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' \
|
||||
-e 's|CC="\(g..\)"|CC="\1 -Wl,--as-needed"|' \
|
||||
-i libtool
|
||||
|
||||
%make_build
|
||||
|
||||
%install
|
||||
iconv -f iso-8859-1 -t utf-8 doc/mpfr.info > doc/mpfr.info.aux
|
||||
mv doc/mpfr.info.aux doc/mpfr.info
|
||||
make install DESTDIR=$RPM_BUILD_ROOT
|
||||
rm -f $RPM_BUILD_ROOT%{_libdir}/libmpfr.la
|
||||
rm -f $RPM_BUILD_ROOT%{_infodir}/dir
|
||||
%make_install
|
||||
cp -p ChangeLog PATCHES README %{buildroot}%{_pkgdocdir}
|
||||
rm -f %{buildroot}%{_libdir}/*.la
|
||||
rm -f %{buildroot}%{_infodir}/dir
|
||||
|
||||
#these go into licenses, not doc
|
||||
rm -f $RPM_BUILD_ROOT%{_pkgdocdir}/COPYING $RPM_BUILD_ROOT%{_pkgdocdir}/COPYING.LESSER
|
||||
rm -f %{buildroot}%{_pkgdocdir}/COPYING{,.LESSER}
|
||||
|
||||
%check
|
||||
make %{?_smp_mflags} check
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
%post devel
|
||||
if [ -f %{_infodir}/mpfr.info.gz ]; then
|
||||
/sbin/install-info %{_infodir}/mpfr.info.gz %{_infodir}/dir || :
|
||||
fi
|
||||
|
||||
%preun devel
|
||||
if [ "$1" = 0 ]; then
|
||||
if [ -f %{_infodir}/mpfr.info.gz ]; then
|
||||
/sbin/install-info --delete %{_infodir}/mpfr.info.gz %{_infodir}/dir || :
|
||||
fi
|
||||
fi
|
||||
export LD_LIBRARY_PATH=%{buildroot}%{_libdir}
|
||||
%make_build check
|
||||
|
||||
%files
|
||||
%license COPYING COPYING.LESSER
|
||||
%doc NEWS README AUTHORS BUGS TODO doc/FAQ.html
|
||||
%{_libdir}/libmpfr.so.*
|
||||
%dir %{_pkgdocdir}
|
||||
%{_pkgdocdir}/NEWS
|
||||
%{_pkgdocdir}/README
|
||||
%{_libdir}/libmpfr.so.6*
|
||||
|
||||
%files devel
|
||||
%{_pkgdocdir}/examples
|
||||
%{_libdir}/libmpfr.so
|
||||
%{_includedir}/*.h
|
||||
%{_includedir}/mpfr.h
|
||||
%{_includedir}/mpf2mpfr.h
|
||||
%{_libdir}/pkgconfig/mpfr.pc
|
||||
|
||||
%files doc
|
||||
%license COPYING COPYING.LESSER
|
||||
%dir %{_pkgdocdir}
|
||||
%{_pkgdocdir}/AUTHORS
|
||||
%{_pkgdocdir}/BUGS
|
||||
%{_pkgdocdir}/ChangeLog
|
||||
%{_pkgdocdir}/FAQ.html
|
||||
%{_pkgdocdir}/PATCHES
|
||||
%{_pkgdocdir}/TODO
|
||||
%{_pkgdocdir}/examples
|
||||
%{_infodir}/mpfr.info*
|
||||
|
||||
%changelog
|
||||
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Thu Mar 20 2025 Jerry James <loganjerry@gmail.com> - 4.2.2-1
|
||||
- Update to MPFR 4.2.2
|
||||
|
||||
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.1-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.1-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Thu May 9 2024 Jerry James <loganjerry@gmail.com> - 4.2.1-4
|
||||
- Own the documentation directory (bz 2279758)
|
||||
|
||||
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Wed Oct 4 2023 Jerry James <loganjerry@gmail.com> - 4.2.1-1
|
||||
- Update to MPFR 4.2.1
|
||||
|
||||
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Tue Jul 18 2023 Jerry James <loganjerry@gmail.com> - 4.2.0-2
|
||||
- Update to MPFR 4.2.0-p12
|
||||
|
||||
* Wed Jul 12 2023 Jerry James <loganjerry@gmail.com> - 4.2.0-1
|
||||
- Update to MPFR 4.2.0-p9
|
||||
|
||||
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Wed Nov 23 2022 Jerry James <loganjerry@gmail.com> - 4.1.1-2
|
||||
- Update to MPFR 4.1.1-p1
|
||||
|
||||
* Thu Nov 17 2022 Jerry James <loganjerry@gmail.com> - 4.1.1-1
|
||||
- Update to MPFR version 4.1.1
|
||||
- Drop all patches
|
||||
- Convert License tags to SPDX
|
||||
|
||||
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.0-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.0-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Fri Jan 14 2022 Jerry James <loganjerry@gmail.com> - 4.1.0-8
|
||||
- Remove old obsoletes used in the 3.x to 4.x transition
|
||||
|
||||
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.0-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Sat May 22 2021 Jerry James <loganjerry@gmail.com> - 4.1.0-7
|
||||
- Add upstream patches 12-13
|
||||
|
||||
* Tue Apr 13 2021 Jerry James <loganjerry@gmail.com> - 4.1.0-6
|
||||
- Add upstream patches 10-11
|
||||
|
||||
* Tue Mar 9 2021 Jerry James <loganjerry@gmail.com> - 4.1.0-5
|
||||
- Add upstream patches 8-9
|
||||
|
||||
* Wed Feb 17 2021 Jerry James <loganjerry@gmail.com> - 4.1.0-4
|
||||
- Add upstream patches 1-7
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Sat Jul 11 2020 Jerry James <loganjerry@gmail.com> - 4.1.0-1
|
||||
- Update to MPFR version 4.1.0
|
||||
- Drop all patches
|
||||
|
||||
* Mon Jun 29 2020 Jerry James <loganjerry@gmail.com> - 4.0.2-5
|
||||
- Add upstream patches 8 and 9
|
||||
|
||||
* Thu Apr 16 2020 Jerry James <loganjerry@gmail.com> - 4.0.2-4
|
||||
- Add upstream patches 2 through 7
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.2-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Fri Oct 11 2019 Jerry James <loganjerry@gmail.com> - 4.0.2-2
|
||||
- Drop the mpfr3 and mpfr3-devel subpackages
|
||||
|
||||
* Tue Oct 8 2019 Jerry James <loganjerry@gmail.com> - 4.0.2-1
|
||||
- Update to MPFR version 4.0.2 plus patch01
|
||||
- Make mpfr3 and mpfr3-devel subpackages for version 3.1.6
|
||||
- Add a -doc subpackage to hold the GFDL-licensed content
|
||||
- The main package license is LGPLv3+; the GPLv3+ content is not packaged
|
||||
- Drop unnecessary autoconf and libtool BRs
|
||||
- Drop explicit R on gmp; it is autogenerated
|
||||
- Drop info scriptlets; this version can never appear in Fedora < 32 or RHEL < 9
|
||||
- Drop ldconfig_scriptlets for the same reason
|
||||
- Make sure there are no rpaths and that -Wl,--as-needed takes effect
|
||||
- Do not use the %%doc macro; the files have already been copied
|
||||
|
||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.6-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.6-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Tue Oct 30 2018 Rex Dieter <rdieter@fedoraproject.org> - 3.1.6-3
|
||||
- update scriptlets (#1644106)
|
||||
- use %%make_build %%make_install
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.6-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Sun Feb 25 2018 James Paul Turner <jamesturner246@fedoraproject.org> - 3.1.6-1
|
||||
- Update to MPFR version 3.1.6
|
||||
- Use autosetup specfile macro for applying patches (patches 1 and 2 applied)
|
||||
- Removed iconv calls, as they were breaking .info files, which are now unicode
|
||||
resolves #1299649
|
||||
- Other minor cleanups
|
||||
- BuildRequire gcc per https://fedoraproject.org/wiki/Packaging:C_and_C%2B%2B#BuildRequires_and_Requires
|
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.5-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.5-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.5-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Sat Mar 4 2017 Peter Robinson <pbrobinson@fedoraproject.org> 3.1.5-3
|
||||
- Examples should be in devel
|
||||
- Minor cleanups
|
||||
|
|
|
|||
5
plans/ci.fmf
Normal file
5
plans/ci.fmf
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
summary: Basic smoke test
|
||||
discover:
|
||||
how: fmf
|
||||
execute:
|
||||
how: tmt
|
||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
c4ac246cf9795a4491e7766002cd528f mpfr-3.1.5.tar.xz
|
||||
SHA512 (mpfr-4.2.2.tar.xz) = eb9e7f51b5385fb349cc4fba3a45ffdf0dd53be6dfc74932dc01258158a10514667960c530c47dd9dfc5aa18be2bd94859d80499844c5713710581e6ac6259a9
|
||||
|
|
|
|||
6
tests/silvester-number/main.fmf
Normal file
6
tests/silvester-number/main.fmf
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
summary: Calculate Silvester Number
|
||||
framework: shell
|
||||
test: ./test.sh
|
||||
component: mpfr
|
||||
recommends:
|
||||
- gawk
|
||||
10
tests/silvester-number/test.sh
Executable file
10
tests/silvester-number/test.sh
Executable file
|
|
@ -0,0 +1,10 @@
|
|||
#!/bin/sh -eux
|
||||
|
||||
OUT="$(gawk -M 'BEGIN {
|
||||
s = 2
|
||||
for (i = 1; i <= 7; i++)
|
||||
s = s * (s - 1) + 1
|
||||
print s
|
||||
}')"
|
||||
|
||||
test "$OUT" = "113423713055421844361000443"
|
||||
Loading…
Add table
Add a link
Reference in a new issue