mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
gnu: hdf5-1.8: Delete trailing #t.
* gnu/packages/maths.scm (hdf5-1.8) [arguments]: Delete trailing #t.
This commit is contained in:
parent
8af64f3963
commit
3fa69a8d5d
1 changed files with 4 additions and 8 deletions
|
@ -1444,8 +1444,7 @@ (define-public hdf5-1.8
|
||||||
(substitute* "hl/fortran/src/Makefile.in"
|
(substitute* "hl/fortran/src/Makefile.in"
|
||||||
(("libhdf5hl_fortran_la_LDFLAGS =")
|
(("libhdf5hl_fortran_la_LDFLAGS =")
|
||||||
(string-append "libhdf5hl_fortran_la_LDFLAGS = -Wl,-rpath="
|
(string-append "libhdf5hl_fortran_la_LDFLAGS = -Wl,-rpath="
|
||||||
(assoc-ref outputs "fortran") "/lib")))
|
(assoc-ref outputs "fortran") "/lib")))))
|
||||||
#t))
|
|
||||||
(add-after 'configure 'patch-settings
|
(add-after 'configure 'patch-settings
|
||||||
(lambda _
|
(lambda _
|
||||||
;; libhdf5.settings contains the full path of the
|
;; libhdf5.settings contains the full path of the
|
||||||
|
@ -1458,16 +1457,14 @@ (define-public hdf5-1.8
|
||||||
;; Don't record the build-time kernel version to make the
|
;; Don't record the build-time kernel version to make the
|
||||||
;; settings file reproducible.
|
;; settings file reproducible.
|
||||||
(("Uname information:.*")
|
(("Uname information:.*")
|
||||||
"Uname information: Linux\n"))
|
"Uname information: Linux\n"))))
|
||||||
#t))
|
|
||||||
(add-after 'install 'patch-references
|
(add-after 'install 'patch-references
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
(let ((bin (string-append (assoc-ref outputs "out") "/bin"))
|
(let ((bin (string-append (assoc-ref outputs "out") "/bin"))
|
||||||
(zlib (assoc-ref inputs "zlib")))
|
(zlib (assoc-ref inputs "zlib")))
|
||||||
(substitute* (find-files bin "h5p?cc")
|
(substitute* (find-files bin "h5p?cc")
|
||||||
(("-lz" lib)
|
(("-lz" lib)
|
||||||
(string-append "-L" zlib "/lib " lib)))
|
(string-append "-L" zlib "/lib " lib))))))
|
||||||
#t)))
|
|
||||||
(add-after 'install 'split
|
(add-after 'install 'split
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
;; Move all fortran-related files
|
;; Move all fortran-related files
|
||||||
|
@ -1502,8 +1499,7 @@ (define-public hdf5-1.8
|
||||||
(rename-file file
|
(rename-file file
|
||||||
(string-append fex "/" (basename file))))
|
(string-append fex "/" (basename file))))
|
||||||
(find-files ex ".*"))
|
(find-files ex ".*"))
|
||||||
(delete-file-recursively ex))
|
(delete-file-recursively ex)))))))
|
||||||
#t)))))
|
|
||||||
(home-page "https://www.hdfgroup.org")
|
(home-page "https://www.hdfgroup.org")
|
||||||
(synopsis "Management suite for extremely large and complex data")
|
(synopsis "Management suite for extremely large and complex data")
|
||||||
(description "HDF5 is a suite that makes possible the management of
|
(description "HDF5 is a suite that makes possible the management of
|
||||||
|
|
Loading…
Reference in a new issue