gnu: coreutils: Update to 8.31.
* gnu/packages/base.scm (coreutils): Update to 8.31. [arguments]: Remove obsolete workaround.master
parent
ea89b62a18
commit
cf82643647
|
@ -300,14 +300,14 @@ used to apply commands with arbitrarily long arguments.")
|
||||||
(define-public coreutils
|
(define-public coreutils
|
||||||
(package
|
(package
|
||||||
(name "coreutils")
|
(name "coreutils")
|
||||||
(version "8.30")
|
(version "8.31")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnu/coreutils/coreutils-"
|
(uri (string-append "mirror://gnu/coreutils/coreutils-"
|
||||||
version ".tar.xz"))
|
version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0mxhw43d4wpqmvg0l4znk1vm10fy92biyh90lzdnqjcic2lb6cg8"))))
|
"1zg9m79x1i2nifj4kb0waf9x3i5h6ydkypkjnbsb9rnwis8rqypz"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs `(("acl" ,acl) ; TODO: add SELinux
|
(inputs `(("acl" ,acl) ; TODO: add SELinux
|
||||||
("gmp" ,gmp) ;bignums in 'expr', yay!
|
("gmp" ,gmp) ;bignums in 'expr', yay!
|
||||||
|
@ -349,13 +349,7 @@ used to apply commands with arbitrarily long arguments.")
|
||||||
;; environments with long prefixes (/tmp/guix-build-...).
|
;; environments with long prefixes (/tmp/guix-build-...).
|
||||||
(substitute* "Makefile"
|
(substitute* "Makefile"
|
||||||
(("^.*tests/misc/env-S.pl.*$") ""))
|
(("^.*tests/misc/env-S.pl.*$") ""))
|
||||||
#t)))
|
#t)))))
|
||||||
|
|
||||||
;; Work around a cross-compilation bug whereby libcoreutils.a would
|
|
||||||
;; provide '__mktime_internal', which conflicts with the one in libc.a.
|
|
||||||
,@(if (%current-target-system)
|
|
||||||
`(#:configure-flags '("gl_cv_func_working_mktime=yes"))
|
|
||||||
'())))
|
|
||||||
(synopsis "Core GNU utilities (file, text, shell)")
|
(synopsis "Core GNU utilities (file, text, shell)")
|
||||||
(description
|
(description
|
||||||
"GNU Coreutils includes all of the basic command-line tools that are
|
"GNU Coreutils includes all of the basic command-line tools that are
|
||||||
|
|
Reference in New Issue