[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/13: gnu: dune-common: Update to 2.7.1.
From: |
guix-commits |
Subject: |
02/13: gnu: dune-common: Update to 2.7.1. |
Date: |
Thu, 20 Jan 2022 09:29:37 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit 3bfcc63c310e022e806a101e3f67aa87ba709409
Author: Felix Gruber <felgru@posteo.net>
AuthorDate: Sat Dec 18 13:36:50 2021 +0000
gnu: dune-common: Update to 2.7.1.
* gnu/packages/maths.scm (dune-common): 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 13a917e0fd..b7497e7050 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -6362,7 +6362,7 @@ linear algebra primitives specifically targeting graph
analytics.")
(define-public dune-common
(package
(name "dune-common")
- (version "2.7.0")
+ (version "2.7.1")
(source
(origin
(method url-fetch)
@@ -6370,14 +6370,18 @@ linear algebra primitives specifically targeting graph
analytics.")
version "/dune-common-" version ".tar.gz"))
(sha256
(base32
- "140q1zh44cr5yrjwg4b5ga803rkqv55vk30l2cqm29aklj1wb0rw"))))
+ "0sidwdkyrrqjkqhpvrlc991pzi5xzlvxk91s2n7qk3widwy7fch2"))))
(build-system cmake-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(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 gmp metis openblas python superlu))
(native-inputs
- branch master updated (d99e42d7f6 -> ee6bf00b2d), guix-commits, 2022/01/20
- 02/13: gnu: dune-common: Update to 2.7.1.,
guix-commits <=
- 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, 2022/01/20
- 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