summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/mpfr/mpfr_4.2.0.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2023-01-09 13:14:57 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-01-12 23:08:59 +0000
commit3a4b9c845f2dbe823c47b2e760ed5a33a8e8be63 (patch)
treedaf3d3611d5ed5982217d157d70a7ddf6e57b15d /meta/recipes-support/mpfr/mpfr_4.2.0.bb
parentc91cc96a1a71c50ff51b37a9353914270a572d1e (diff)
downloadpoky-3a4b9c845f2dbe823c47b2e760ed5a33a8e8be63.tar.gz
mpfr: upgrade 4.1.1 -> 4.2.0
Changelog: ========== - The "fondue savoyarde" release. - Binary compatible with MPFR 4.0.* and 4.1.*, though some minor changes in the behavior of the formatted output functions may be visible, regarded as underspecified behavior or bug fixes (see below). - New functions mpfr_cosu, mpfr_sinu, mpfr_tanu, mpfr_acosu, mpfr_asinu, mpfr_atanu and mpfr_atan2u. - New functions mpfr_cospi, mpfr_sinpi, mpfr_tanpi, mpfr_acospi, mpfr_asinpi, mpfr_atanpi and mpfr_atan2pi. - New functions mpfr_log2p1, mpfr_log10p1, mpfr_exp2m1, mpfr_exp10m1 and mpfr_compound_si. - New functions mpfr_fmod_ui, mpfr_powr, mpfr_pown, mpfr_pow_uj, mpfr_pow_sj and mpfr_rootn_si (mpfr_pown is actually a macro defined as an alias for mpfr_pow_sj). - Bug fixes. In particular, for the formatted output functions (mpfr_printf, etc.), the case where the precision consists only of a period has been fixed to be like ".0" as specified in the ISO C standard, and the manual has been corrected and clarified. The macros of the custom interface have also been fixed: they now behave like functions (except a minor limitation for mpfr_custom_init_set). (From OE-Core rev: 7df43a56b0146ac2a73f7bb97aeac8f11629878f) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/mpfr/mpfr_4.2.0.bb')
-rw-r--r--meta/recipes-support/mpfr/mpfr_4.2.0.bb19
1 files changed, 19 insertions, 0 deletions
diff --git a/meta/recipes-support/mpfr/mpfr_4.2.0.bb b/meta/recipes-support/mpfr/mpfr_4.2.0.bb
new file mode 100644
index 0000000000..fead5c3833
--- /dev/null
+++ b/meta/recipes-support/mpfr/mpfr_4.2.0.bb
@@ -0,0 +1,19 @@
1SUMMARY = "C library for multiple-precision floating-point computations with exact rounding"
2DESCRIPTION = "The GNU Multiple Precision Floating-Point Reliable Library (GNU MPFR) is a GNU portable C library for arbitrary-precision binary floating-point computation with correct rounding, based on GNU Multi-Precision Library. MPFR's computation is both efficient and has a well-defined semantics: the functions are completely specified on all the possible operands and the results do not depend on the platform."
3HOMEPAGE = "https://www.mpfr.org/"
4LICENSE = "LGPL-3.0-or-later"
5SECTION = "devel"
6
7inherit autotools texinfo
8
9LIC_FILES_CHKSUM = "file://COPYING;md5=1ebbd3e34237af26da5dc08a4e440464 \
10 file://COPYING.LESSER;md5=3000208d539ec061b899bce1d9ce9404 \
11 "
12DEPENDS = "gmp autoconf-archive"
13
14SRC_URI = "https://www.mpfr.org/mpfr-${PV}/mpfr-${PV}.tar.xz"
15SRC_URI[sha256sum] = "06a378df13501248c1b2db5aa977a2c8126ae849a9d9b7be2546fb4a9c26d993"
16
17UPSTREAM_CHECK_URI = "http://www.mpfr.org/mpfr-current/"
18
19BBCLASSEXTEND = "native nativesdk"