diff options
author | Ludovic Courtès <ludovic.courtes@inria.fr> | 2024-09-05 09:30:56 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-09-05 10:14:24 +0200 |
commit | ed1b4f56fccb048fe6bcd5db0cb6420b8c7525f0 (patch) | |
tree | 225de266c89236abac7d527074ae4798afde1183 /gnu/packages | |
parent | 6bf70cf9a60464701ca0741d9f63f5ace9810fc9 (diff) | |
download | guix-ed1b4f56fccb048fe6bcd5db0cb6420b8c7525f0.tar.gz guix-ed1b4f56fccb048fe6bcd5db0cb6420b8c7525f0.zip |
gnu: hypre: Use gexps.
* gnu/packages/maths.scm (hypre)[arguments]: Use gexps.
(hypre-openmpi)[arguments]: Likewise.
Change-Id: I3064b7606b97076e2fb2947b1fb93319eeb184c9
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/maths.scm | 117 |
1 files changed, 60 insertions, 57 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index f2d826d5a9..b6d25bdbb8 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -7222,59 +7222,63 @@ set.") (inputs (list openblas)) (arguments - `(#:modules ((srfi srfi-1) - ,@%default-gnu-modules) - #:configure-flags '("--enable-shared" - "--disable-fortran" - "--without-MPI" - "--with-openmp" - "--with-fei" - "--with-lapack" - "--with-blas") - #:phases - (modify-phases %standard-phases - (add-before 'configure 'chdir-src - (lambda _ (chdir "src"))) - (replace 'configure - (lambda* (#:key build target configure-flags + (list #:modules `((srfi srfi-1) + ,@%default-gnu-modules) + #:configure-flags #~'("--enable-shared" + "--disable-fortran" + "--without-MPI" + "--with-openmp" + "--with-fei" + "--with-lapack" + "--with-blas") + #:phases + #~(modify-phases %standard-phases + (add-before 'configure 'chdir-src + (lambda _ + (chdir "src"))) + (replace 'configure + (lambda* (#:key build target configure-flags #:allow-other-keys #:rest args) - (let* ((configure (assoc-ref %standard-phases 'configure))) - (apply configure - (append args - (list #:configure-flags - (cons (string-append - "--host=" (or target build)) - configure-flags))))))) - (add-after 'build 'build-docs - (lambda _ - (invoke "make" "-C" "docs"))) - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (setenv "LD_LIBRARY_PATH" - (string-append (getcwd) "/hypre/lib")) - (setenv "PATH" - (string-append "." ":" - (getenv "PATH"))) - (invoke "make" "check" "CHECKRUN=") - (for-each (lambda (filename) - (let ((size (stat:size (stat filename)))) - (when (positive? size) - (error (format #f - "~a size ~d; error indication~%" - filename size))))) - (find-files "test" ".*\\.err$"))))) - (add-after 'install 'install-docs - (lambda* (#:key outputs #:allow-other-keys) - ;; Custom install because docs/Makefile doesn't honor ${docdir}. - (let* ((doc (assoc-ref outputs "doc")) - (docdir (string-append doc "/share/doc/hypre-" ,version))) - (with-directory-excursion "docs" - (for-each (lambda (base) - (install-file (string-append base ".pdf") docdir) - (copy-recursively (string-append base "-html") - (string-append docdir "/" base))) - '("usr-manual" "ref-manual"))))))))) + (let* ((configure (assoc-ref %standard-phases 'configure))) + (apply configure + (append args + (list #:configure-flags + (cons (string-append "--host=" + (or target build)) + configure-flags))))))) + (add-after 'build 'build-docs + (lambda _ + (invoke "make" "-C" "docs"))) + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (setenv "LD_LIBRARY_PATH" + (string-append (getcwd) "/hypre/lib")) + (setenv "PATH" + (string-append "." ":" (getenv "PATH"))) + (invoke "make" "check" "CHECKRUN=") + (for-each (lambda (filename) + (let ((size (stat:size (stat filename)))) + (when (positive? size) + (error (format #f + "~a size ~d; error indication~%" + filename size))))) + (find-files "test" ".*\\.err$"))))) + (add-after 'install 'install-docs + (lambda* (#:key outputs #:allow-other-keys) + ;; Custom install because docs/Makefile doesn't honor ${docdir}. + (let* ((doc (assoc-ref outputs "doc")) + (docdir (string-append doc "/share/doc/hypre-" + #$version))) + (with-directory-excursion "docs" + (for-each (lambda (base) + (install-file (string-append base + ".pdf") docdir) + (copy-recursively (string-append base + "-html") + (string-append docdir + "/" base))) + '("usr-manual" "ref-manual"))))))))) (home-page "https://computing.llnl.gov/projects\ /hypre-scalable-linear-solvers-multigrid-methods") (synopsis "Library of solvers and preconditioners for linear equations") @@ -7295,12 +7299,11 @@ problems.") (arguments (substitute-keyword-arguments (package-arguments hypre) ((#:configure-flags flags) - ``("--with-MPI" - ,@(delete "--without-MPI" ,flags))) + #~`("--with-MPI" ,@(delete "--without-MPI" #$flags))) ((#:phases phases) - `(modify-phases ,phases - (add-before 'check 'mpi-setup - ,%openmpi-setup))))) + #~(modify-phases #$phases + (add-before 'check 'mpi-setup + #$%openmpi-setup))))) (synopsis "Parallel solvers and preconditioners for linear equations") (description "HYPRE is a software library of high performance preconditioners and |