mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Replace versioned gfortran inputs with just "gfortran".
* gnu/packages/julia.scm (julia)[inputs]: Replace "gfortran-4.8" with "gfortran". * gnu/packages/machine-learning.scm (randomjungle)[native-inputs]: Likewise. * gnu/packages/maths.scm (arpack-ng, lapack, petsc, superlu) (superlu-dist, openblas, openspecfun, atlas)[inputs]: Likewise. (octave)[native-inputs]: Likewise. (gmsh)[propagated-inputs]: Likewise. * gnu/packages/mpi.scm (openmpi)[inputs]: Likewise. * gnu/packages/python.scm (python-numpy-bootstrap)[native-inputs]: Likewise. * gnu/packages/python.scm (python-scipy)[native-inputs]: Likewise. * gnu/packages/statistics.scm (r)[inputs]: Replace "gfortran-4.9" with "gfortran".
This commit is contained in:
parent
eed67cbb8f
commit
19afbea136
6 changed files with 16 additions and 16 deletions
|
@ -171,7 +171,7 @@ (define-public julia
|
|||
("double-conversion" ,double-conversion)
|
||||
("fftw" ,fftw)
|
||||
("fftwf" ,fftwf)
|
||||
("fortran" ,gfortran-4.8)
|
||||
("fortran" ,gfortran)
|
||||
("pcre" ,pcre)
|
||||
("utf8proc" ,utf8proc)
|
||||
("git" ,git)
|
||||
|
|
|
@ -133,7 +133,7 @@ (define-public randomjungle
|
|||
("libxml2" ,libxml2)
|
||||
("zlib" ,zlib)))
|
||||
(native-inputs
|
||||
`(("gfortran" ,gfortran-4.8)))
|
||||
`(("gfortran" ,gfortran)))
|
||||
(home-page "http://www.imbs-luebeck.de/imbs/de/node/227/")
|
||||
(synopsis "Implementation of the Random Forests machine learning method")
|
||||
(description
|
||||
|
|
|
@ -265,7 +265,7 @@ (define-public arpack-ng
|
|||
(home-page "https://github.com/opencollab/arpack-ng")
|
||||
(inputs
|
||||
`(("lapack" ,lapack)
|
||||
("fortran" ,gfortran-4.8)))
|
||||
("fortran" ,gfortran)))
|
||||
(synopsis "Fortran subroutines for solving eigenvalue problems")
|
||||
(description
|
||||
"ARPACK-NG is a collection of Fortran77 subroutines designed to solve
|
||||
|
@ -287,7 +287,7 @@ (define-public lapack
|
|||
"0lk3f97i9imqascnlf6wr5mjpyxqcdj73pgj97dj2mgvyg9z1n4s"))))
|
||||
(build-system cmake-build-system)
|
||||
(home-page "http://www.netlib.org/lapack/")
|
||||
(inputs `(("fortran" ,gfortran-4.8)
|
||||
(inputs `(("fortran" ,gfortran)
|
||||
("python" ,python-2)))
|
||||
(arguments
|
||||
`(#:configure-flags '("-DBUILD_SHARED_LIBS:BOOL=YES")
|
||||
|
@ -400,7 +400,7 @@ (define-public octave
|
|||
("glu" ,glu)
|
||||
("zlib" ,zlib)))
|
||||
(native-inputs
|
||||
`(("gfortran" ,gfortran-4.8)
|
||||
`(("gfortran" ,gfortran)
|
||||
("pkg-config" ,pkg-config)
|
||||
("perl" ,perl)
|
||||
;; The following inputs are not actually used in the build process.
|
||||
|
@ -445,7 +445,7 @@ (define-public gmsh
|
|||
(build-system cmake-build-system)
|
||||
(propagated-inputs
|
||||
`(("fltk" ,fltk)
|
||||
("gfortran" ,gfortran-4.8)
|
||||
("gfortran" ,gfortran)
|
||||
("gmp" ,gmp)
|
||||
("hdf5" ,hdf5)
|
||||
("lapack" ,lapack)
|
||||
|
@ -487,7 +487,7 @@ (define-public petsc
|
|||
`(("python" ,python-2)
|
||||
("perl" ,perl)))
|
||||
(inputs
|
||||
`(("gfortran" ,gfortran-4.8)
|
||||
`(("gfortran" ,gfortran)
|
||||
("lapack" ,lapack)
|
||||
("superlu" ,superlu)
|
||||
;; leaving out hdf5 and fftw, as petsc expects them to be built with mpi
|
||||
|
@ -615,7 +615,7 @@ (define-public superlu
|
|||
`(("tcsh" ,tcsh)))
|
||||
(inputs
|
||||
`(("lapack" ,lapack)
|
||||
("gfortran" ,gfortran-4.8)))
|
||||
("gfortran" ,gfortran)))
|
||||
(arguments
|
||||
`(#:parallel-build? #f
|
||||
#:tests? #f ;tests are run as part of `make all`
|
||||
|
@ -697,7 +697,7 @@ (define-public superlu-dist
|
|||
(native-inputs
|
||||
`(("tcsh" ,tcsh)))
|
||||
(inputs
|
||||
`(("gfortran" ,gfortran-4.8)))
|
||||
`(("gfortran" ,gfortran)))
|
||||
(propagated-inputs
|
||||
`(("openmpi" ,openmpi) ;headers include MPI heades
|
||||
("lapack" ,lapack) ;required to link with output library
|
||||
|
@ -1103,7 +1103,7 @@ (define-public openblas
|
|||
;; no configure script
|
||||
#:phases (alist-delete 'configure %standard-phases)))
|
||||
(inputs
|
||||
`(("fortran" ,gfortran-4.8)))
|
||||
`(("fortran" ,gfortran)))
|
||||
(native-inputs
|
||||
`(("cunit" ,cunit)
|
||||
("perl" ,perl)))
|
||||
|
@ -1171,7 +1171,7 @@ (define-public openspecfun
|
|||
;; no configure script
|
||||
#:phases (alist-delete 'configure %standard-phases)))
|
||||
(inputs
|
||||
`(("fortran" ,gfortran-4.8)))
|
||||
`(("fortran" ,gfortran)))
|
||||
(home-page "https://github.com/JuliaLang/openspecfun")
|
||||
(synopsis "Collection of special mathematical functions")
|
||||
(description
|
||||
|
@ -1254,7 +1254,7 @@ (define-public atlas
|
|||
"0bqh4bdnjdyww4mcpg6kn0x7338mfqbdgysn97dzrwwb26di7ars"))))
|
||||
(build-system gnu-build-system)
|
||||
(home-page "http://math-atlas.sourceforge.net/")
|
||||
(inputs `(("gfortran" ,gfortran-4.8)
|
||||
(inputs `(("gfortran" ,gfortran)
|
||||
("lapack-tar" ,(package-source lapack))))
|
||||
(outputs '("out" "doc"))
|
||||
;; For the moment we drop support for MIPS at it fails to compile. See
|
||||
|
|
|
@ -97,7 +97,7 @@ (define-public openmpi
|
|||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
`(("hwloc" ,hwloc)
|
||||
("gfortran" ,gfortran-4.8)
|
||||
("gfortran" ,gfortran)
|
||||
("valgrind" ,valgrind)))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
|
|
|
@ -2275,7 +2275,7 @@ (define python-numpy-bootstrap
|
|||
("openblas" ,openblas)
|
||||
("lapack" ,lapack)))
|
||||
(native-inputs
|
||||
`(("gfortran" ,gfortran-4.8)))
|
||||
`(("gfortran" ,gfortran)))
|
||||
(arguments
|
||||
`(#:phases
|
||||
(alist-cons-before
|
||||
|
@ -2620,7 +2620,7 @@ (define-public python-scipy
|
|||
("lapack" ,lapack)
|
||||
("openblas" ,openblas)))
|
||||
(native-inputs
|
||||
`(("gfortran" ,gfortran-4.8)
|
||||
`(("gfortran" ,gfortran)
|
||||
("texlive" ,texlive)
|
||||
("perl" ,perl)))
|
||||
(outputs '("out" "doc"))
|
||||
|
|
|
@ -90,7 +90,7 @@ (define-public r
|
|||
(inputs
|
||||
`(("atlas" ,atlas) ; --with-blas
|
||||
("cairo" ,cairo)
|
||||
("gfortran" ,gfortran-4.9)
|
||||
("gfortran" ,gfortran)
|
||||
("icu4c" ,icu4c)
|
||||
("icedtea6" ,icedtea6 "jdk")
|
||||
("lapack" ,lapack)
|
||||
|
|
Loading…
Reference in a new issue