mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: coreutils: Update to 8.32.
* gnu/packages/base.scm (coreutils): Update to 8.32. [arguments]: Remove obsolete phase.
This commit is contained in:
parent
44a33ee90d
commit
d7ca0f73ff
1 changed files with 2 additions and 12 deletions
|
@ -290,14 +290,14 @@ (define-public findutils
|
||||||
(define-public coreutils
|
(define-public coreutils
|
||||||
(package
|
(package
|
||||||
(name "coreutils")
|
(name "coreutils")
|
||||||
(version "8.31")
|
(version "8.32")
|
||||||
(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
|
||||||
"1zg9m79x1i2nifj4kb0waf9x3i5h6ydkypkjnbsb9rnwis8rqypz"))))
|
"1yjcrh5hw70c0yn8zw55pd6j51dj90anpq8mmg649ps9g3gdhn24"))))
|
||||||
(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!
|
||||||
|
@ -329,16 +329,6 @@ (define-public coreutils
|
||||||
(("/bin/sh") (which "sh")))
|
(("/bin/sh") (which "sh")))
|
||||||
(substitute* (find-files "tests" "\\.sh$")
|
(substitute* (find-files "tests" "\\.sh$")
|
||||||
(("#!/bin/sh") (string-append "#!" (which "sh"))))
|
(("#!/bin/sh") (string-append "#!" (which "sh"))))
|
||||||
#t))
|
|
||||||
(add-before 'check 'disable-broken-test
|
|
||||||
(lambda _
|
|
||||||
;; This test hits the 127 character shebang limit in the build
|
|
||||||
;; environment due to the way "env -S" splits arguments into
|
|
||||||
;; shebangs. Note that "env-S-script.sh" works around this
|
|
||||||
;; specific issue, but "env-S.pl" is not adjusted for build
|
|
||||||
;; environments with long prefixes (/tmp/guix-build-...).
|
|
||||||
(substitute* "Makefile"
|
|
||||||
(("^.*tests/misc/env-S.pl.*$") ""))
|
|
||||||
#t)))))
|
#t)))))
|
||||||
(synopsis "Core GNU utilities (file, text, shell)")
|
(synopsis "Core GNU utilities (file, text, shell)")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue