gnu: dune-localfunctions: Update to 2.7.1.
* gnu/packages/maths.scm (dune-localfunctions): Update to 2.7.1. [arguments]: Parallelize build-tests phase. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
parent
8159cd08d2
commit
ef07f19b93
|
@ -6587,7 +6587,7 @@ aggregation-based algebraic multigrid.")
|
||||||
(define-public dune-localfunctions
|
(define-public dune-localfunctions
|
||||||
(package
|
(package
|
||||||
(name "dune-localfunctions")
|
(name "dune-localfunctions")
|
||||||
(version "2.7.0")
|
(version "2.7.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -6595,7 +6595,7 @@ aggregation-based algebraic multigrid.")
|
||||||
version "/dune-localfunctions-" version ".tar.gz"))
|
version "/dune-localfunctions-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1yih59h6vngii696bx1c2vil02lriij4kz0nc583mjn9kiaqxfqd"))))
|
"031i42anrhi0ngpvp42rdjbkic7v3008fwild9xg7flffwvnpshg"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
@ -6613,8 +6613,12 @@ aggregation-based algebraic multigrid.")
|
||||||
":"))
|
":"))
|
||||||
#t)))
|
#t)))
|
||||||
(add-after 'build 'build-tests
|
(add-after 'build 'build-tests
|
||||||
(lambda* (#:key make-flags #:allow-other-keys)
|
(lambda* (#:key make-flags parallel-build? #:allow-other-keys)
|
||||||
(apply invoke "make" "build_tests" make-flags))))))
|
(apply invoke "make" "build_tests"
|
||||||
|
`(,@(if parallel-build?
|
||||||
|
`("-j" ,(number->string (parallel-job-count)))
|
||||||
|
'())
|
||||||
|
,@make-flags)))))))
|
||||||
(inputs
|
(inputs
|
||||||
(list dune-common
|
(list dune-common
|
||||||
dune-geometry
|
dune-geometry
|
||||||
|
|
Reference in New Issue