[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/08: gnu: hypre: Remove input labels.
From: |
guix-commits |
Subject: |
07/08: gnu: hypre: Remove input labels. |
Date: |
Wed, 2 Mar 2022 13:27:08 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit 96bc9420cb83b8a600cff3a2f3ec390802f648c6
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Wed Mar 2 18:55:54 2022 +0100
gnu: hypre: Remove input labels.
* gnu/packages/maths.scm (hypre)[native-inputs, inputs]: Remove labels.
(hypre-openmpi)[inputs]: Use 'modify-inputs'.
---
gnu/packages/maths.scm | 99 +++++++++++++++++++++++++-------------------------
1 file changed, 49 insertions(+), 50 deletions(-)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 16050f8840..4c0ce93eef 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -5371,53 +5371,52 @@ set.")
(outputs '("out" ;5.3 MiB of headers and libraries
"doc")) ;12 MiB of documentation
(native-inputs
- `(("doc++" ,doc++)
- ("doxygen" ,doxygen)
- ("python" ,python)
- ("python-breathe" ,python-breathe)
- ("python-sphinx" ,python-sphinx)
- ("texlive" ,(texlive-updmap.cfg (list texlive-adjustbox
- texlive-amsfonts
- texlive-bibtex
- texlive-capt-of
- texlive-caption
- texlive-cm
- texlive-etoolbox
- texlive-jknappen
- texlive-sectsty
- texlive-tex-gyre
- texlive-wasy
- texlive-xcolor
- texlive-xypic
- texlive-generic-listofitems
- texlive-latex-cmap
- texlive-latex-colortbl
- texlive-latex-etoc
- texlive-latex-fancyhdr
- texlive-latex-fancyvrb
- texlive-latex-float
- texlive-latex-fncychap
- texlive-latex-framed
- texlive-latex-geometry
- texlive-latex-hanging
- texlive-hyperref
- texlive-latex-multirow
- texlive-latex-natbib
- texlive-latex-needspace
- texlive-latex-newunicodechar
- texlive-latex-parskip
- texlive-latex-stackengine
- texlive-latex-tabulary
- texlive-latex-titlesec
- texlive-latex-tocloft
- texlive-latex-upquote
- texlive-latex-varwidth
- texlive-ulem
- texlive-wasysym
- texlive-wrapfig)))))
+ (list doc++
+ doxygen
+ python
+ python-breathe
+ python-sphinx
+ (texlive-updmap.cfg (list texlive-adjustbox
+ texlive-amsfonts
+ texlive-bibtex
+ texlive-capt-of
+ texlive-caption
+ texlive-cm
+ texlive-etoolbox
+ texlive-jknappen
+ texlive-sectsty
+ texlive-tex-gyre
+ texlive-wasy
+ texlive-xcolor
+ texlive-xypic
+ texlive-generic-listofitems
+ texlive-latex-cmap
+ texlive-latex-colortbl
+ texlive-latex-etoc
+ texlive-latex-fancyhdr
+ texlive-latex-fancyvrb
+ texlive-latex-float
+ texlive-latex-fncychap
+ texlive-latex-framed
+ texlive-latex-geometry
+ texlive-latex-hanging
+ texlive-hyperref
+ texlive-latex-multirow
+ texlive-latex-natbib
+ texlive-latex-needspace
+ texlive-latex-newunicodechar
+ texlive-latex-parskip
+ texlive-latex-stackengine
+ texlive-latex-tabulary
+ texlive-latex-titlesec
+ texlive-latex-tocloft
+ texlive-latex-upquote
+ texlive-latex-varwidth
+ texlive-ulem
+ texlive-wasysym
+ texlive-wrapfig))))
(inputs
- `(("blas" ,openblas)
- ("lapack" ,lapack)))
+ (list openblas lapack))
(arguments
`(#:modules ((srfi srfi-1)
,@%gnu-build-system-modules)
@@ -5478,11 +5477,11 @@ problems.")
(license license:lgpl2.1)))
(define-public hypre-openmpi
- (package (inherit hypre)
+ (package
+ (inherit hypre)
(name "hypre-openmpi")
- (inputs
- `(("mpi" ,openmpi)
- ,@(package-inputs hypre)))
+ (inputs (modify-inputs (package-inputs hypre)
+ (prepend openmpi)))
(arguments
(substitute-keyword-arguments (package-arguments hypre)
((#:configure-flags flags)
- branch master updated (209a3274f8 -> be84fb701b), guix-commits, 2022/03/02
- 01/08: shell: Disable caching when '-p' is passed., guix-commits, 2022/03/02
- 08/08: doc: Publish the Slovak translation of the cookbook., guix-commits, 2022/03/02
- 04/08: gnu: texlive-latex-listings: Rename to "texlive-listings"., guix-commits, 2022/03/02
- 03/08: gnu: texlive-latex-pgf: Rename to "texlive-pgf"., guix-commits, 2022/03/02
- 06/08: doc: Add "Using TeX and LaTeX" chapter., guix-commits, 2022/03/02
- 02/08: gnu: texlive-bin: Skip faulty tests on armhf-linux., guix-commits, 2022/03/02
- 05/08: gnu: texlive-latex-wrapfig: Rename to "texlive-wrapfig"., guix-commits, 2022/03/02
- 07/08: gnu: hypre: Remove input labels.,
guix-commits <=