diff options
| author | Andreas Enge <andreas@enge.fr> | 2018-05-25 19:52:15 +0200 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2018-05-25 19:52:15 +0200 |
| commit | 43a776e294dc1995bcaa1a988d76cf5e092c6a4a (patch) | |
| tree | 7408ea442f1cc7a5811676979818e6c9ffe46011 /gnu/packages | |
| parent | c53fa8c83af82c528fab993fb22dbe5da9a33c44 (diff) | |
gnu: mpfrcx: Update to 0.5.
* gnu/packages/algebra.scm (mpfrcx): Update to 0.5 and change licence to
lgpl3+.
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/algebra.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm index 03a61be47..210b734b9 100644 --- a/gnu/packages/algebra.scm +++ b/gnu/packages/algebra.scm @@ -60,15 +60,15 @@ (define-public mpfrcx (package (name "mpfrcx") - (version "0.4.2") + (version "0.5") (source (origin (method url-fetch) (uri (string-append - "http://www.multiprecision.org/mpfrcx/download/mpfrcx-" + "http://www.multiprecision.org/downloads/mpfrcx-" version ".tar.gz")) (sha256 (base32 - "0grw66b255r574lvll1bqccm5myj2m8ajzsjaygcyq9zjnnbnhhy")))) + "1s968480ymv6w0rnvfp9mxvx98hvi29fkvw8nk4ggzc6azxgwybs")))) (build-system gnu-build-system) (propagated-inputs `(("gmp" ,gmp) @@ -82,7 +82,7 @@ on the rounding. For the time being, only the few functions needed to implement the floating point approach to complex multiplication are implemented. On the other hand, these comprise asymptotically fast multiplication routines such as Toom–Cook and the FFT.") - (license license:lgpl2.1+) + (license license:lgpl3+) (home-page "http://mpfrcx.multiprecision.org/"))) (define-public cm |