2018-02-08 09:38:43 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
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
|
|
|
|
|
2018-01-02 13:43:08 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Jan 2 12:28:32 UTC 2018 - rguenther@suse.com
|
|
|
|
|
|
|
|
- Update to mpfr 4.0.0
|
|
|
|
* The "dinde aux marrons" release.
|
|
|
|
* MPFR now depends on GMP 5.0+ instead of 4.1+.
|
|
|
|
* API change:
|
|
|
|
Applications that call GMP's mp_set_memory_functions function to change
|
|
|
|
the allocators must first call the new function mpfr_mp_memory_cleanup
|
|
|
|
in all threads where MPFR is potentially used; this new function is
|
|
|
|
currently equivalent to mpfr_free_cache.
|
|
|
|
The reason is that the way memory allocation is done by MPFR has changed
|
|
|
|
(again), so that the current GMP allocators are used (since for some
|
|
|
|
applications, the old allocators may become invalid).
|
|
|
|
Note: Freeing the caches like this might have a performance impact on some
|
|
|
|
particular applications; if this is an issue, this could be handled for a
|
|
|
|
future MPFR version.
|
|
|
|
* Mini-gmp support via the --enable-mini-gmp configure option (experimental).
|
|
|
|
* The minimum precision MPFR_PREC_MIN is now 1, with rounding defined as
|
|
|
|
in the errata of IEEE 754-2008 and in the following IEEE 754 revision
|
|
|
|
(ties rounded away from zero).
|
|
|
|
* Shared caches for multithreaded applications.
|
|
|
|
New function mpfr_free_cache2.
|
|
|
|
* Partial support of MPFR_RNDF (faithful rounding).
|
|
|
|
* New functions: mpfr_fpif_export and mpfr_fpif_import to export and import
|
|
|
|
numbers in a floating-point interchange format, independent both on the
|
|
|
|
number of bits per word and on the endianness.
|
|
|
|
* New function mpfr_fmodquo to return the low bits of the quotient
|
|
|
|
corresponding to mpfr_fmod.
|
|
|
|
* New functions mpfr_flags_clear, mpfr_flags_set, mpfr_flags_test,
|
|
|
|
mpfr_flags_save and mpfr_flags_restore to operate on groups of flags.
|
|
|
|
* New functions mpfr_set_float128 and mpfr_get_float128 to convert from/to
|
|
|
|
the __float128 type (requires --enable-float128 and compiler support).
|
|
|
|
* New functions mpfr_buildopt_float128_p and mpfr_buildopt_sharedcache_p.
|
|
|
|
* New functions mpfr_rint_roundeven and mpfr_roundeven, completing the
|
|
|
|
other similar round-to-integer functions for rounding to nearest with
|
|
|
|
the even-rounding rule.
|
|
|
|
* New macro mpfr_round_nearest_away to add partial emulation of the
|
|
|
|
rounding to nearest-away (as defined in IEEE 754-2008).
|
|
|
|
* New functions mpfr_nrandom and mpfr_erandom to generate random numbers
|
|
|
|
following normal and exponential distributions respectively.
|
|
|
|
* New functions mpfr_fmma and mpfr_fmms to compute a*b+c*d and a*b-c*d.
|
|
|
|
* New function mpfr_rootn_ui, similar to mpfr_root, but agreeing with the
|
|
|
|
rootn function of the IEEE 754-2008 standard.
|
|
|
|
* New functions mpfr_log_ui to compute the logarithm of an integer,
|
|
|
|
mpfr_gamma_inc for the incomplete Gamma function.
|
|
|
|
* New function mpfr_beta for the Beta function (incomplete, experimental).
|
|
|
|
* New function mpfr_get_q to convert a floating-point number into rational.
|
|
|
|
* The mpfr_dump function is now described in the manual; its output format
|
|
|
|
has slightly changed.
|
|
|
|
* The mpfr_eint function now returns the value of the E1/eint1 function
|
|
|
|
for negative argument.
|
|
|
|
* The behavior of the mpfr_set_exp function changed, as it could easily
|
|
|
|
yield undefined behavior in some cases (this modifies both the API and
|
|
|
|
the ABI).
|
|
|
|
* In function mpfr_urandom, the next random state no longer depends on the
|
|
|
|
current exponent range and the rounding mode. The exceptions due to the
|
|
|
|
rounding of the random number are now correctly generated, following the
|
|
|
|
uniform distribution.
|
|
|
|
* Functions mpfr_grandom and mpfr_root are deprecated and will be removed
|
|
|
|
in a future release.
|
|
|
|
* Complete rewrite of function mpfr_sum, which now works in all cases (the
|
|
|
|
old one could take all the memory and/or crash with inputs of different
|
|
|
|
magnitudes in case of huge cancellation or table maker's dilemma). The
|
|
|
|
sign of an exact zero result is now specified, and the return value is
|
|
|
|
now the usual ternary value. Note that the position of "const" in the
|
|
|
|
mpfr_sum prototype has been fixed (the manual was correct); user code
|
|
|
|
should not be affected.
|
|
|
|
* Old, deprecated macros mpfr_add_one_ulp and mpfr_sub_one_ulp removed.
|
|
|
|
The mpfr_next* functions should be used instead.
|
|
|
|
* Internally, improved caching: a minimum of 10% increase of the precision
|
|
|
|
is guaranteed to avoid too many recomputations.
|
|
|
|
* Added internal small-precision mpz_t pool, which aims to avoid the
|
|
|
|
overhead of memory allocation, in particular.
|
|
|
|
New function mpfr_free_pool.
|
|
|
|
* Added configure option --enable-assert=none to avoid checking any assertion.
|
|
|
|
* The --enable-decimal-float configure option no longer requires
|
|
|
|
--with-gmp-build, and support for decimal floats is now automatically
|
|
|
|
detected by default (similarly for support for __float128).
|
|
|
|
* Updated tuning parameters.
|
|
|
|
* Better support for Automake 1.13+ (now used to generate the tarball).
|
|
|
|
* Dropped K&R C compatibility.
|
|
|
|
* Improved MPFR manual.
|
|
|
|
* New MPFRbench program (see the tools/bench directory).
|
|
|
|
* Major speedup in mpfr_add, mpfr_sub, mpfr_mul, mpfr_div and mpfr_sqrt when
|
|
|
|
all operands have the same precision and this precision is less than twice
|
|
|
|
the number of bits per word, e.g., less than 128 on a 64-bit computer.
|
|
|
|
* Speedup by a factor of almost 2 in the double <--> mpfr conversions
|
|
|
|
(mpfr_set_d and mpfr_get_d).
|
|
|
|
* Speedup in mpfr_log1p and mpfr_atanh for small arguments.
|
|
|
|
* Speedup in the mpfr_const_euler function (contributed by Fredrik Johansson),
|
|
|
|
in the computation of Bernoulli numbers (used in mpfr_gamma, mpfr_li2,
|
|
|
|
mpfr_digamma, mpfr_lngamma and mpfr_lgamma), in mpfr_div, in mpfr_fma
|
|
|
|
and mpfr_fms.
|
|
|
|
* Test coverage: 96.3% lines of code.
|
|
|
|
* Bug fixes. In particular: a speed improvement when the --enable-assert
|
|
|
|
or --enable-assert=full configure option is used with GCC; mpfr_get_str
|
|
|
|
now sets the NaN flag on NaN input and the inexact flag when the conversion
|
|
|
|
is inexact. For a full list, see http://www.mpfr.org/mpfr-3.1.6/#fixed
|
|
|
|
and the same section for any previous 3.1.x version (follow the links
|
|
|
|
in the "Changes..." sections).
|
|
|
|
* Microsoft Windows: Added support for thread-safe DLL (shared library).
|
|
|
|
Tested with MinGW, ICC and MSVC.
|
|
|
|
* Limited pkg-config support.
|
|
|
|
* Autotools: Under Linux, make sure that the old dtags (when supported)
|
|
|
|
are used if LD_LIBRARY_PATH is defined; otherwise "make check" would
|
|
|
|
check an installed, compatible MPFR library found in LD_LIBRARY_PATH
|
|
|
|
instead of the one that has been built with "make".
|
|
|
|
* New: optional "make check-gmp-symbols", mainly for binary distributions,
|
|
|
|
to check that MPFR does not use GMP internal symbols (experimental).
|
|
|
|
|
2017-09-12 10:11:00 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Sep 12 08:03:00 UTC 2017 - rguenther@suse.com
|
|
|
|
|
|
|
|
- Update to mpfr 3.1.6 release
|
|
|
|
* Includes mpfr-3.1.5-p9.patch
|
|
|
|
|
2017-07-25 12:40:38 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Jul 25 10:40:05 UTC 2017 - rguenther@suse.com
|
|
|
|
|
|
|
|
- Add mpfr-3.1.5-p9.patch with cummulative patches to patchlevel p9,
|
|
|
|
obsoletes mpfr-3.1.5-p8.patch.
|
|
|
|
|
2017-06-07 10:19:23 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Wed Jun 7 08:18:31 UTC 2017 - rguenther@suse.com
|
|
|
|
|
|
|
|
- Add mpfr-3.1.5-p8.patch with cummulative patches to patchlevel p8.
|
|
|
|
|
2016-09-27 14:53:03 +02:00
|
|
|
-------------------------------------------------------------------
|
2016-11-14 10:57:41 +01:00
|
|
|
Fri Nov 11 16:30:49 UTC 2016 - dimstar@opensuse.org
|
|
|
|
|
|
|
|
- Follow openSUSE Packaging Guidelines: do not packae static
|
|
|
|
libraries:
|
|
|
|
+ Pass --disable-static to configure.
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
2016-09-27 14:53:03 +02:00
|
|
|
Tue Sep 27 12:50:27 UTC 2016 - rguenther@suse.com
|
|
|
|
|
2016-09-28 09:34:57 +02:00
|
|
|
- Update to mpfr 3.1.5:
|
2016-09-27 14:53:03 +02:00
|
|
|
* C++11 compatibility.
|
|
|
|
* Bug fixes (see <http://www.mpfr.org/mpfr-3.1.4/#fixed>
|
|
|
|
and ChangeLog file).
|
|
|
|
* More tests.
|
|
|
|
|
2016-03-07 10:54:01 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Sun Mar 6 19:43:32 UTC 2016 - astieger@suse.com
|
|
|
|
|
|
|
|
- mpfr 3.1.4, incorporating the cumulative patch, plus a number of
|
|
|
|
upstream fixes
|
|
|
|
- removing mpfr-3.1.3-patch1to12.patch
|
|
|
|
|
2016-02-17 12:09:26 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Wed Feb 17 09:39:33 UTC 2016 - rguenther@suse.com
|
|
|
|
|
|
|
|
- Add cummulative patch mpfr-3.1.3-patch1to12.patch
|
|
|
|
* Bug fixes (see <http://www.mpfr.org/mpfr-3.1.3/#fixed>
|
|
|
|
|
2015-06-21 18:09:53 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Sun Jun 21 15:09:38 UTC 2015 - astieger@suse.com
|
|
|
|
|
|
|
|
- update to 3.1.3:
|
|
|
|
* Better support for Automake 1.13+ (now used to generate the
|
|
|
|
tarball).
|
|
|
|
* Improved MPFR manual.
|
|
|
|
* Bug fixes (see <http://www.mpfr.org/mpfr-3.1.2/#fixed> and
|
|
|
|
ChangeLog file)
|
|
|
|
- drop upstreamed mpfr-3.1.2-patch11.diff
|
|
|
|
|
2015-03-01 13:25:00 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Sun Mar 1 10:57:39 UTC 2015 - mpluskal@suse.com
|
|
|
|
|
|
|
|
- Cleanup spec file with spec-claner
|
|
|
|
- Add gpg signature
|
|
|
|
|
2015-01-08 11:25:44 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Thu Jan 8 09:55:31 UTC 2015 - rguenther@suse.com
|
|
|
|
|
|
|
|
- Add mpfr-3.1.2-patch11.diff to fix possible buffer overflow in
|
|
|
|
mpfr_strtofr (CVE-2014-9474). [bnc#911812]
|
|
|
|
|
2013-04-16 14:51:20 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Apr 16 10:24:10 UTC 2013 - idonmez@suse.com
|
|
|
|
|
|
|
|
- Add Source URL, see https://en.opensuse.org/SourceUrls
|
|
|
|
|
2013-03-14 10:09:08 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Thu Mar 14 09:05:18 UTC 2013 - rguenther@suse.com
|
|
|
|
|
|
|
|
- Update to version 3.1.2.
|
|
|
|
* Bug fixes
|
|
|
|
* Updated examples to the MPFR 3.x API
|
|
|
|
|
2012-02-13 12:35:29 +01:00
|
|
|
-------------------------------------------------------------------
|
2012-07-04 10:51:38 +02:00
|
|
|
Wed Jul 4 08:29:16 UTC 2012 - rguenther@suse.com
|
|
|
|
|
|
|
|
- Update to version 3.1.1.
|
|
|
|
* Bug fixes
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
2012-02-13 12:35:29 +01:00
|
|
|
Mon Feb 13 10:50:39 UTC 2012 - coolo@suse.com
|
|
|
|
|
|
|
|
- patch license to follow spdx.org standard
|
|
|
|
|
2012-01-29 21:35:22 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Sun Jan 29 20:34:08 UTC 2012 - jengelh@medozas.de
|
|
|
|
|
|
|
|
- Remove redundant tags/sections per specfile guideline suggestions
|
|
|
|
|
2011-10-11 14:49:40 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Oct 11 12:28:31 UTC 2011 - rguenther@suse.com
|
|
|
|
|
|
|
|
- Update to version 3.1.0.
|
|
|
|
* The mpfr_urandom and mpfr_urandomb functions now return identical
|
|
|
|
values on processors with different word size.
|
|
|
|
* Speed improvement for the mpfr_sqr and mpfr_div functions using
|
|
|
|
Mulders' algorithm.
|
|
|
|
* Much faster formatted output (mpfr_printf, etc.) with %Rg and similar.
|
|
|
|
* New divide-by-zero exception (flag) and associated functions.
|
|
|
|
- Remove bogus provides/obsoletes for old shared library version.
|
|
|
|
- Fix license, it is LGPL v3 or later.
|
|
|
|
|
2011-04-08 15:59:32 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Fri Apr 8 13:53:10 UTC 2011 - rguenther@novell.com
|
|
|
|
|
|
|
|
- Update to version 3.0.1.
|
|
|
|
* Minor bugfixes.
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Mon Sep 6 13:34:55 UTC 2010 - rguenther@novell.com
|
|
|
|
|
|
|
|
- Update to version 3.0.0.
|
|
|
|
* Bump SO version to 4.
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Mon Jun 28 06:38:35 UTC 2010 - jengelh@medozas.de
|
|
|
|
|
|
|
|
- use %_smp_mflags
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Mon May 17 06:16:32 UTC 2010 - adrian@suse.de
|
|
|
|
|
|
|
|
- PA-Risc is not threadsafe just as sparc
|
|
|
|
|
2010-01-14 15:15:37 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Fri Dec 11 17:13:00 CET 2009 - jengelh@medozas.de
|
|
|
|
|
|
|
|
- add baselibs.conf to specfile as source
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Mon Dec 7 22:38:13 CET 2009 - jengelh@medozas.de
|
|
|
|
|
|
|
|
- Do not use --enable-thread-safe on SPARC (Fedora does the same) -
|
|
|
|
the tests segfault if TS is enabled
|
|
|
|
|
2009-12-04 09:51:45 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Mon Nov 30 13:47:17 CET 2009 - rguenther@suse.de
|
|
|
|
|
|
|
|
- Update to version 2.4.2.
|
|
|
|
* Bug and documentation fixes.
|
|
|
|
|
2009-07-23 15:31:00 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Wed Jul 22 15:11:39 CEST 2009 - rguenther@suse.de
|
|
|
|
|
|
|
|
- Add x86 baselibs entry.
|
|
|
|
|
2009-03-17 16:32:52 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Mon Mar 16 10:55:06 CET 2009 - rguenther@suse.de
|
|
|
|
|
|
|
|
- Update to version 2.4.1 (no changes).
|
|
|
|
- Apply current cummulative bugfixing patch.
|
|
|
|
* mpfr_fmod, mpfr_remainder and mpfr_remquo rounding issues.
|
|
|
|
* incorrect type in vasprintf.c.
|
|
|
|
* wrong type in mpfr_zeta_ui.
|
|
|
|
|
2009-03-03 18:34:45 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Wed Feb 25 15:57:54 CET 2009 - rguenther@suse.de
|
|
|
|
|
|
|
|
- Apply current cummulative bugfixing patch.
|
|
|
|
* Fixes mpfr_snprintf and mpfr_vsnprintf buffer overflows.
|
|
|
|
|
2009-01-29 22:29:08 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Jan 27 10:43:32 CET 2009 - rguenther@suse.de
|
|
|
|
|
|
|
|
- Update to version 2.4.0.
|
|
|
|
* Function mpfr_init_gmp_rand is no longer defined.
|
|
|
|
* New functions:
|
|
|
|
- between a MPFR number and a double: mpfr_add_d, mpfr_sub_d, mpfr_d_sub,
|
|
|
|
mpfr_mul_d, mpfr_div_d, mpfr_d_div;
|
|
|
|
- formatted input/output: mpfr_printf, mpfr_fprintf, mpfr_vprintf,
|
|
|
|
mpfr_vfprintf, mpfr_sprintf, mpfr_snprintf, mpfr_vsprintf,
|
|
|
|
mpfr_vsnprintf, mpfr_asprintf, mpfr_vasprintf;
|
|
|
|
- mpfr_sinh_cosh, mpfr_li2, mpfr_modf, mpfr_fmod, mpfr_rec_sqrt.
|
|
|
|
* Documented the fact that mpfr_random and mpfr_random2 will be suppressed
|
|
|
|
in the next release, and that the specification of mpfr_eq may change in
|
|
|
|
the next release (for compatibility with the mpf layer of GMP).
|
|
|
|
* Bug fixes.
|
|
|
|
|
2008-11-28 15:40:00 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Thu Nov 27 14:14:56 CET 2008 - ro@suse.de
|
|
|
|
|
|
|
|
- update baselibs.conf
|
|
|
|
|
2008-10-23 01:27:56 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Wed Oct 22 16:17:34 CEST 2008 - mrueckert@suse.de
|
|
|
|
|
|
|
|
- fix debug_packages_requires define
|
|
|
|
|
2008-09-13 13:23:51 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Sat Sep 13 12:38:22 CEST 2008 - rguenther@suse.de
|
|
|
|
|
|
|
|
- Update to version 2.3.2. Includes fixes for
|
|
|
|
* Functions mpfr_pow_ui, mpfr_pow_si and mpfr_pow_z (but not mpfr_pow)
|
|
|
|
on NaN^0 return NaN instead of 1.
|
|
|
|
* Underflow bug in function mpfr_div.
|
|
|
|
* Underflow bug due to double-rounding in functions mpfr_mul_2si,
|
|
|
|
mpfr_div_2si and mpfr_div_2ui.
|
|
|
|
* mpfr_exp problems.
|
|
|
|
* The overflow flag can be lost in many functions called with the
|
|
|
|
maximum exponent equal to MPFR_EMAX_MAX.
|
|
|
|
* assertion/overflow/underflow issues with MPFR's power functions
|
|
|
|
(mpfr_pow, mpfr_pow_ui, mpfr_pow_si, mpfr_pow_z).
|
|
|
|
* Inifinite looping in mpfr_hypot.
|
|
|
|
* Hide internal symbol mpfr_init_gmp_rand.
|
|
|
|
|
2008-08-08 17:22:44 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Sat Aug 2 17:21:09 CEST 2008 - rguenther@suse.de
|
|
|
|
|
|
|
|
- make mpfr-debuginfo depend on libmpfr1 instead of mpfr
|
|
|
|
|
2008-05-01 15:15:17 +02:00
|
|
|
-------------------------------------------------------------------
|
2008-07-18 21:42:31 +02:00
|
|
|
Tue Jul 15 17:17:07 CEST 2008 - rguenther@suse.de
|
|
|
|
|
|
|
|
- allow build on SLES9 by disabling TLS usage there
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
2008-05-01 15:15:17 +02:00
|
|
|
Tue Apr 29 16:56:50 CEST 2008 - cthiel@suse.de
|
|
|
|
|
|
|
|
- obsolete mpfr-<arch> via baselibs.conf
|
|
|
|
|
2008-04-10 13:18:04 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Thu Apr 10 12:54:45 CEST 2008 - ro@suse.de
|
|
|
|
|
|
|
|
- added baselibs.conf file to build xxbit packages
|
|
|
|
for multilib support
|
|
|
|
|
2008-02-01 19:48:02 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Jan 29 15:18:35 CET 2008 - rguenther@suse.de
|
|
|
|
|
|
|
|
- Update to final version 2.3.1.
|
|
|
|
* Changes in the behavior of mpfr_strtofr and in its documentation
|
|
|
|
concerning particular cases where the code and the documentation
|
|
|
|
did not match.
|
|
|
|
* Bug fixes; see <http://www.mpfr.org/mpfr-2.3.0/#bugs>.
|
|
|
|
* Configure test for TLS support.
|
|
|
|
* Improved MPFR manual.
|
|
|
|
|
2008-01-17 23:53:30 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Sun Jan 13 13:28:54 CET 2008 - rguenther@suse.de
|
|
|
|
|
|
|
|
- Update to 2.3.1 release candidate 1.
|
|
|
|
* Fixes various bugs.
|
|
|
|
|
2007-12-12 18:15:53 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Wed Dec 12 14:11:58 CET 2007 - rguenther@suse.de
|
|
|
|
|
|
|
|
- Apply bugfixes from upstream, up to patch 4. [#343720]
|
|
|
|
|
2007-10-03 01:07:23 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Oct 2 10:10:32 CEST 2007 - ro@suse.de
|
|
|
|
|
|
|
|
- added provides mpfr to libmpfr1 package
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Wed Aug 29 15:44:37 CEST 2007 - rguenther@suse.de
|
|
|
|
|
|
|
|
- New upstream version 2.3.0.
|
|
|
|
* New functions mpfr_j0, mpfr_j1, mpfr_jn, mpfr_y0, mpfr_y1, mpfr_yn,
|
|
|
|
mpfr_lgamma, mpfr_remainder, mpfr_remquo, mpfr_fms, mpfr_signbit,
|
|
|
|
mpfr_setsign, mpfr_copysign, mpfr_get_patches.
|
|
|
|
* Improved testsuite.
|
|
|
|
* Bug fixes.
|
|
|
|
- Rename shared library package to libmfpr1 according to policy.
|
|
|
|
- Move AUTHORS and NEWS to mpfr-devel package.
|
|
|
|
- Package COPYING.LIB.
|
|
|
|
- Do not package CVS ChangeLog and README files.
|
|
|
|
|
2007-01-16 00:25:46 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
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.
|
|
|
|
|