me
/
guix
Archived
1
0
Fork 0

distro: mpc: Update to 1.0.1.

* distro/packages/multiprecision.scm (mpc): Update to 1.0.1.
master
Andreas Enge 2012-12-12 20:03:07 +01:00 committed by Ludovic Courtès
parent d7e2841b9d
commit 8e1cd71376
1 changed files with 9 additions and 6 deletions

View File

@ -95,14 +95,13 @@ double-precision floating-point arithmetic (53-bit mantissa).")
(define-public mpc (define-public mpc
(package (package
(name "mpc") (name "mpc")
(version "1.0") (version "1.0.1")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append (uri (string-append
"http://www.multiprecision.org/mpc/download/mpc-" "mirror://gnu/mpc/mpc-" version ".tar.gz"))
version ".tar.gz"))
(sha256 (base32 (sha256 (base32
"00rxjmkpqnv6zzcyw9aa5w6rzaav32ys87km25zgfcv9i32km5cw")))) "1zq0fidp1jii2j5k5n9hmx55a6wwid33gjzhimvxq9d5zrf82npd"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs `(("gmp" ,gmp) (inputs `(("gmp" ,gmp)
("mpfr" ,mpfr))) ("mpfr" ,mpfr)))
@ -110,7 +109,11 @@ double-precision floating-point arithmetic (53-bit mantissa).")
with exact rounding") with exact rounding")
(description (description
"GNU MPC is a C library for the arithmetic of complex numbers with "GNU MPC is a C library for the arithmetic of complex numbers with
arbitrarily high precision and correct rounding of the result. It is built arbitrarily high precision and correct rounding of the result. It extends
upon and follows the same principles as GNU MPFR.") the principles of the IEEE-754 standard for fixed precision real floating
point numbers to complex numbers, providing well-defined semantics for
every operation. At the same time, speed of operation at high precision
is a major design goal. The library is built upon and follows the same
principles as GNU MPFR.")
(license "LGPLv3+") (license "LGPLv3+")
(home-page "http://mpc.multiprecision.org/"))) (home-page "http://mpc.multiprecision.org/")))