[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/13: gnu: dune-functions: Update to 2.7.1.
From: |
guix-commits |
Subject: |
11/13: gnu: dune-functions: Update to 2.7.1. |
Date: |
Thu, 20 Jan 2022 09:29:58 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit ad0a7a16d91911fcee46dfe62d8206a7721f024b
Author: Felix Gruber <felgru@posteo.net>
AuthorDate: Sat Dec 18 13:36:59 2021 +0000
gnu: dune-functions: Update to 2.7.1.
* gnu/packages/maths.scm (dune-functions): Update to 2.7.1.
[arguments]: Parallelize build-tests phase.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/maths.scm | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 7db9bc8f01..9248f7fadf 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -6789,7 +6789,7 @@ operating on statically typed trees of objects.")
(define-public dune-functions
(package
(name "dune-functions")
- (version "2.7.0")
+ (version "2.7.1")
(source
(origin
(method git-fetch)
@@ -6799,7 +6799,7 @@ operating on statically typed trees of objects.")
(file-name (git-file-name name version))
(sha256
(base32
- "1na4gcih0kin37ksj2xj07ds04v7zx53pjdhm1hzy55jjfqdjk8h"))))
+ "04dhr4asnl38bf1gp8hrk31maav33m7q71lhl2n5yk1q1x6i77nw"))))
(build-system cmake-build-system)
(arguments
`(#:phases
@@ -6811,8 +6811,12 @@ operating on statically typed trees of objects.")
"--exclude-regex gridviewfunctionspacebasistest")
#t))
(add-after 'build 'build-tests
- (lambda* (#:key make-flags #:allow-other-keys)
- (apply invoke "make" "build_tests" make-flags))))))
+ (lambda* (#:key make-flags parallel-build? #:allow-other-keys)
+ (apply invoke "make" "build_tests"
+ `(,@(if parallel-build?
+ `("-j" ,(number->string (parallel-job-count)))
+ '())
+ ,@make-flags)))))))
(inputs
(list dune-common
dune-istl
- branch master updated (d99e42d7f6 -> ee6bf00b2d), guix-commits, 2022/01/20
- 02/13: gnu: dune-common: Update to 2.7.1., guix-commits, 2022/01/20
- 04/13: gnu: dune-uggrid: Update to 2.7.1., guix-commits, 2022/01/20
- 03/13: gnu: dune-geometry: Update to 2.7.1., guix-commits, 2022/01/20
- 01/13: gnu: Modernize add-openmpi-to-dune-package, guix-commits, 2022/01/20
- 05/13: gnu: dune-grid: Update to 2.7.1., guix-commits, 2022/01/20
- 13/13: gnu: Add uftrace., guix-commits, 2022/01/20
- 10/13: gnu: dune-typetree: Update to 2.7.1., guix-commits, 2022/01/20
- 09/13: gnu: dune-subgrid: Update to 2.7.1., guix-commits, 2022/01/20
- 11/13: gnu: dune-functions: Update to 2.7.1.,
guix-commits <=
- 07/13: gnu: dune-localfunctions: Update to 2.7.1., guix-commits, 2022/01/20
- 06/13: gnu: dune-istl: Update to 2.7.1., guix-commits, 2022/01/20
- 12/13: gnu: dune-pdelab: Update to 2.7.1., guix-commits, 2022/01/20
- 08/13: gnu: dune-alugrid: Update to 2.7.1., guix-commits, 2022/01/20