From 19c782b3cab617f6d628c342308632e1dde44a22 Mon Sep 17 00:00:00 2001 From: Andreas Enge Date: Sun, 13 Dec 2020 15:07:40 +0100 Subject: gnu: gp2c: Update to 0.0.12. * gnu/packages/algebra.scm (gp2c): Update to 0.0.12. --- gnu/packages/algebra.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/algebra.scm') diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm index 5b391449a0..f82c839ed3 100644 --- a/gnu/packages/algebra.scm +++ b/gnu/packages/algebra.scm @@ -276,7 +276,7 @@ (define-public pari-gp (define-public gp2c (package (name "gp2c") - (version "0.0.11pl4") + (version "0.0.12") (source (origin (method url-fetch) (uri (string-append @@ -284,7 +284,7 @@ (define-public gp2c version ".tar.gz")) (sha256 (base32 - "1cnnh7diqc97q76q5pyhpbljbhc0sz8mlrbqgiwi0sjkgh8iqsj0")))) + "039ip7qkwwv46wrcdrz7y12m30kazzkjr44kqbc0h137g4wzd7zf")))) (build-system gnu-build-system) (native-inputs `(("perl" ,perl))) (inputs `(("pari-gp" ,pari-gp))) -- cgit v1.2.3 From 885fe927e7648e6a7349acff163c0015bc3ab732 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Thu, 17 Dec 2020 21:45:54 +0200 Subject: gnu: glpk: Update to 5.0. * gnu/packages/maths.scm (glpk): Update to 5.0. (glpk-4.65): New variable. * gnu/packages/algebra.scm (giac)[inputs]: Replace glpk with glpk-4. --- gnu/packages/algebra.scm | 2 +- gnu/packages/maths.scm | 18 ++++++++++++++++-- 2 files changed, 17 insertions(+), 3 deletions(-) (limited to 'gnu/packages/algebra.scm') diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm index f82c839ed3..d60f53a7f9 100644 --- a/gnu/packages/algebra.scm +++ b/gnu/packages/algebra.scm @@ -410,7 +410,7 @@ (define-public giac (inputs ;; TODO: Add libnauty, unbundle "libmicropython.a". `(("fltk" ,fltk) - ("glpk" ,glpk) + ("glpk" ,glpk-4) ("gmp" ,gmp) ("gsl" ,gsl) ("lapack" ,lapack) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index c118e9e25c..794111afc4 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -562,7 +562,7 @@ (define-public sleef (define-public glpk (package (name "glpk") - (version "4.65") + (version "5.0") (source (origin (method url-fetch) @@ -570,7 +570,7 @@ (define-public glpk version ".tar.gz")) (sha256 (base32 - "040sfaa9jclg2nqdh83w71sv9rc1sznpnfiripjdyr48cady50a2")))) + "05bgxidxj8d9xdp82niy7cy36w181cxq7p8vc3y2ixshpgp1642a")))) (build-system gnu-build-system) (inputs `(("gmp" ,gmp))) @@ -586,6 +586,20 @@ (define-public glpk LP/MIP solver is included in the package.") (license license:gpl3+))) +(define-public glpk-4 + (package + (inherit glpk) + (name "glpk") + (version "4.65") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://gnu/glpk/glpk-" + version ".tar.gz")) + (sha256 + (base32 + "040sfaa9jclg2nqdh83w71sv9rc1sznpnfiripjdyr48cady50a2")))))) + (define-public 4ti2 (package (name "4ti2") -- cgit v1.2.3 From 2f4dcff4c231bc41c3fe02c75c351f6a6923f71c Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sat, 19 Dec 2020 15:58:01 +0100 Subject: gnu: arb: Use HTTPS home page URI. * gnu/packages/algebra.scm (arb)[home-page]: Use HTTPS URI. Move above synopsis. --- gnu/packages/algebra.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/algebra.scm') diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm index d60f53a7f9..a5eef508cd 100644 --- a/gnu/packages/algebra.scm +++ b/gnu/packages/algebra.scm @@ -533,14 +533,14 @@ (define-public arb (string-append "--with-flint=" flint) (string-append "--with-gmp=" gmp) (string-append "--with-mpfr=" mpfr)))))))) + (home-page "https://arblib.org") (synopsis "Arbitrary precision floating-point ball arithmetic") (description "Arb is a C library for arbitrary-precision floating-point ball arithmetic. It supports efficient high-precision computation with polynomials, power series, matrices and special functions over the real and complex numbers, with automatic, rigorous error control.") - (license license:lgpl2.1+) - (home-page "http://arblib.org"))) + (license license:lgpl2.1+))) (define-public python-flint (package -- cgit v1.2.3 From 28f15b985fde85b06858157ccacd04abfc8c9e96 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sat, 2 Jan 2021 21:12:18 +0100 Subject: gnu: giac: Update to 1.6.0-41. * gnu/packages/algebra.scm (giac): Update to 1.6.0-41. --- gnu/packages/algebra.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gnu/packages/algebra.scm') diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm index a5eef508cd..214878949e 100644 --- a/gnu/packages/algebra.scm +++ b/gnu/packages/algebra.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Andreas Enge ;;; Copyright © 2013, 2015, 2017, 2018 Ludovic Courtès -;;; Copyright © 2016, 2017, 2018, 2019, 2020 Nicolas Goaziou +;;; Copyright © 2016, 2017, 2018, 2019, 2020, 2021 Nicolas Goaziou ;;; Copyright © 2014, 2018 Mark H Weaver ;;; Copyright © 2016, 2018, 2019 Ricardo Wurmus ;;; Copyright © 2017, 2020 Efraim Flashner @@ -355,7 +355,7 @@ (define-public cmh (define-public giac (package (name "giac") - (version "1.6.0-31") + (version "1.6.0-41") (source (origin (method url-fetch) @@ -367,7 +367,7 @@ (define-public giac "~parisse/debian/dists/stable/main/source/" "giac_" version ".tar.gz")) (sha256 - (base32 "1dr1y88sx2gzldn0zl6p8b1ngjjcmh89iv4kzyhi2cf74j3yw85m")))) + (base32 "1z5b3jm6ffxk3yvdqzwn9icbna68brkrz5kspgacq823d03jfklc")))) (build-system gnu-build-system) (arguments `(#:modules ((ice-9 ftw) -- cgit v1.2.3