wok rev 24922
updated mpfr and mpfr-dev (4.0.2 -> 4.1.0)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Apr 11 07:23:35 2022 +0100 (2022-04-11) |
parents | 599ac1affa58 |
children | 91ffa413683d |
files | mpfr-dev/receipt mpfr/description.txt mpfr/receipt |
line diff
1.1 --- a/mpfr-dev/receipt Sun Apr 10 17:48:38 2022 +0000 1.2 +++ b/mpfr-dev/receipt Mon Apr 11 07:23:35 2022 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt 1.5 1.6 PACKAGE="mpfr-dev" 1.7 -VERSION="4.0.2" 1.8 +VERSION="4.1.0" 1.9 CATEGORY="development" 1.10 SHORT_DESC="GNU Multiple Precision Arithmetic - development files." 1.11 MAINTAINER="pankso@slitaz.org" 1.12 @@ -16,5 +16,6 @@ 1.13 # Rules to gen a SliTaz package suitable for Tazpkg. 1.14 genpkg_rules() 1.15 { 1.16 - cook_copy_files *.*a *.h 1.17 + cook_copy_files *.*a 1.18 + cook_copy_files *.h 1.19 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/mpfr/description.txt Mon Apr 11 07:23:35 2022 +0100 2.3 @@ -0,0 +1,12 @@ 2.4 +The MPFR library is a C library for multiple-precision floating-point 2.5 +computations with correct rounding. 2.6 +MPFR has continuously been supported by the INRIA and the current main 2.7 +authors come from the Caramba and AriC project-teams at Loria 2.8 +(Nancy, France) and LIP (Lyon, France) respectively. 2.9 +MPFR is based on the GMP multiple-precision library. 2.10 + 2.11 +The main goal of MPFR is to provide a library for multiple-precision 2.12 +floating-point computation which is both efficient and has a 2.13 +well-defined semantics. 2.14 +It copies the good ideas from the ANSI/IEEE-754 standard for 2.15 +double-precision floating-point arithmetic (53-bit significand).
3.1 --- a/mpfr/receipt Sun Apr 10 17:48:38 2022 +0000 3.2 +++ b/mpfr/receipt Mon Apr 11 07:23:35 2022 +0100 3.3 @@ -1,7 +1,7 @@ 3.4 # SliTaz package receipt 3.5 3.6 PACKAGE="mpfr" 3.7 -VERSION="4.0.2" 3.8 +VERSION="4.1.0" 3.9 CATEGORY="development" 3.10 SHORT_DESC="C library for multiple-precision floating-point computations." 3.11 MAINTAINER="pankso@slitaz.org" 3.12 @@ -30,24 +30,26 @@ 3.13 compile_rules() 3.14 { 3.15 case "$ARCH" in 3.16 - i?86) 3.17 + (i?86) 3.18 ./configure \ 3.19 --enable-thread-safe \ 3.20 $CONFIGURE_ARGS && 3.21 make && 3.22 make check && 3.23 - make install ;; 3.24 - *) 3.25 + make install 3.26 + ;; 3.27 + (*) 3.28 ./configure \ 3.29 --enable-thread-safe \ 3.30 $CONFIGURE_ARGS && 3.31 make && 3.32 - make install ;; 3.33 + make install 3.34 + ;; 3.35 esac 3.36 } 3.37 3.38 # Rules to gen a SliTaz package suitable for Tazpkg. 3.39 genpkg_rules() 3.40 { 3.41 - cook_copy_files *.so* 3.42 + cook_copy_files *.so* 3.43 }