gnu: gawk: Upgrade to 4.1.0.
* gnu/packages/gawk.scm (gawk): Update to 4.1.0. Remove wrong-headed comments.
This commit is contained in:
parent
2a511f7a1a
commit
d16368cf41
|
@ -27,13 +27,13 @@
|
||||||
(define-public gawk
|
(define-public gawk
|
||||||
(package
|
(package
|
||||||
(name "gawk")
|
(name "gawk")
|
||||||
(version "4.0.2")
|
(version "4.1.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnu/gawk/gawk-" version
|
(uri (string-append "mirror://gnu/gawk/gawk-" version
|
||||||
".tar.xz"))
|
".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "04vd0axif762mf781pj3days6ilv2333b9zi9c50y5mma66g5q91"))))
|
(base32 "0hin2hswbbd6kd6i4zzvgciwpl5fba8d2s524z8y5qagyz3x010q"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:parallel-tests? #f ; test suite fails in parallel
|
`(#:parallel-tests? #f ; test suite fails in parallel
|
||||||
|
@ -45,7 +45,6 @@
|
||||||
'configure 'set-shell-file-name
|
'configure 'set-shell-file-name
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
;; Refer to the right shell.
|
;; Refer to the right shell.
|
||||||
;; FIXME: Remove `else' arm upon core-updates.
|
|
||||||
(let ((bash (assoc-ref inputs "bash")))
|
(let ((bash (assoc-ref inputs "bash")))
|
||||||
(substitute* "io.c"
|
(substitute* "io.c"
|
||||||
(("/bin/sh")
|
(("/bin/sh")
|
||||||
|
@ -53,7 +52,6 @@
|
||||||
%standard-phases)))
|
%standard-phases)))
|
||||||
(inputs `(("libsigsegv" ,libsigsegv)
|
(inputs `(("libsigsegv" ,libsigsegv)
|
||||||
|
|
||||||
;; TODO: On next core-updates, make Bash input unconditional.
|
|
||||||
,@(if (%current-target-system)
|
,@(if (%current-target-system)
|
||||||
`(("bash" ,bash))
|
`(("bash" ,bash))
|
||||||
'())))
|
'())))
|
||||||
|
|
Loading…
Reference in New Issue