gnu: trilinos-for-dealii-openmpi: Remove input labels.
* gnu/packages/maths.scm (trilinos-for-dealii-openmpi)[native-inputs, inputs, propagated-inputs]: Remove labels. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
a42730183a
commit
32bcadc98c
1 changed files with 27 additions and 26 deletions
|
@ -5152,34 +5152,35 @@ revised simplex and the branch-and-bound methods.")
|
||||||
(base32 "0fnwlhzsh85qj38cq3igbs8nm1b2jdgr2z734sapmyyzsy21mkgp"))))
|
(base32 "0fnwlhzsh85qj38cq3igbs8nm1b2jdgr2z734sapmyyzsy21mkgp"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(;; The build fails with the current gcc.
|
(list
|
||||||
;; Use the version from when Trilinos was added.
|
;; The build fails with the current gcc.
|
||||||
("gcc" ,gcc-7)
|
;; Use the version from when Trilinos was added.
|
||||||
("gfortran" ,gfortran)
|
gcc-7
|
||||||
;; Trilinos's repository contains several C-shell scripts, but adding
|
gfortran
|
||||||
;; tcsh to the native inputs does not result in the check phase running
|
;; Trilinos's repository contains several C-shell scripts, but adding
|
||||||
;; any more tests than without it (nor is tcsh required to build
|
;; tcsh to the native inputs does not result in the check phase running
|
||||||
;; Trilinos).
|
;; any more tests than without it (nor is tcsh required to build
|
||||||
;; It seems that Trilinos has replaced its use of C-shell test scripts
|
;; Trilinos).
|
||||||
;; with CMake's testing facilities.
|
;; It seems that Trilinos has replaced its use of C-shell test scripts
|
||||||
;; For example,
|
;; with CMake's testing facilities.
|
||||||
;; packages/zoltan/doc/Zoltan_html/dev_html/dev_test_script.html [1]
|
;; For example,
|
||||||
;; states that Zoltan's C-shell test script
|
;; packages/zoltan/doc/Zoltan_html/dev_html/dev_test_script.html [1]
|
||||||
;; packages/zoltan/test/test_zoltan has been obsoleted by the tests now
|
;; states that Zoltan's C-shell test script
|
||||||
;; performed through CMake.
|
;; packages/zoltan/test/test_zoltan has been obsoleted by the tests now
|
||||||
;;
|
;; performed through CMake.
|
||||||
;; Perl is required for some Zoltan tests and Python 2 for one ML test.
|
;;
|
||||||
;;
|
;; Perl is required for some Zoltan tests and Python 2 for one ML test.
|
||||||
;; [1]: https://cs.sandia.gov/zoltan/dev_html/dev_test_script.html
|
;;
|
||||||
("perl" ,perl)
|
;; [1]: https://cs.sandia.gov/zoltan/dev_html/dev_test_script.html
|
||||||
("python" ,python-2)))
|
perl
|
||||||
|
python-2))
|
||||||
(inputs
|
(inputs
|
||||||
`(("blas" ,openblas)
|
(list openblas
|
||||||
("lapack" ,lapack)
|
lapack
|
||||||
("mumps" ,mumps-openmpi)
|
mumps-openmpi
|
||||||
("scalapack" ,scalapack)))
|
scalapack))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("mpi" ,openmpi)))
|
(list openmpi))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:build-type "Release"
|
`(#:build-type "Release"
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
|
|
Reference in a new issue