diff options
author | Paul A. Patience <paul@apatience.com> | 2022-04-28 18:19:35 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-05-03 18:02:28 +0200 |
commit | 8b2d26660717a0f352da54acd68e0d61a7c697df (patch) | |
tree | 525f784114186fdb8bbce1e07f3a585551bc4863 /gnu/packages/maths.scm | |
parent | 240b604eda8dd2b4d89ebfdfe19f98e029835816 (diff) | |
download | guix-8b2d26660717a0f352da54acd68e0d61a7c697df.tar.gz |
gnu: dealii: Update to 9.3.3.
* gnu/packages/maths.scm (dealii): Update to 9.3.3. * gnu/packages/patches/dealii-fix-compiliation-with-boost-1.78.patch: Delete file. * gnu/packages/patches/dealii-fix-sundials.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/maths.scm')
-rw-r--r-- | gnu/packages/maths.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index c4e1ef59a3..cc89ef75f3 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -5179,16 +5179,14 @@ A unique design feature of Trilinos is its focus on packages.") (define-public dealii (package (name "dealii") - (version "9.3.2") + (version "9.3.3") (source (origin (method url-fetch) (uri (string-append "https://github.com/dealii/dealii/releases/" "download/v" version "/dealii-" version ".tar.gz")) (sha256 - (base32 "1s0kawnljg24jj6nibwrif5gxdgg2daqfylhqqpl1lvmzmmxfhak")) - (patches (search-patches "dealii-fix-compiliation-with-boost-1.78.patch" - "dealii-fix-sundials.patch")) + (base32 "0a8s4yxcbvzmfgv5qcg27h2ss4fcnyhrhhs35glqj59l9cbmkysx")) (modules '((guix build utils))) (snippet ;; Remove bundled boost, muparser, TBB and UMFPACK. |