me
/
guix
Archived
1
0
Fork 0

gnu: e2fsprogs: Update to 1.46.4.

This resolves a test failure on armhf-linux (when building on a aarch64-linux
system).

* gnu/packages/linux.scm (e2fsprogs): Update to 1.46.4.  Remove trailing #t.
master
Maxim Cournoyer 2021-10-05 21:31:13 -04:00
parent 62683f51c3
commit 55ad2f80f2
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 4 additions and 6 deletions

View File

@ -2185,7 +2185,7 @@ module.")
(define-public e2fsprogs (define-public e2fsprogs
(package (package
(name "e2fsprogs") (name "e2fsprogs")
(version "1.46.2") (version "1.46.4")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append (uri (string-append
@ -2194,7 +2194,7 @@ module.")
"e2fsprogs-" version ".tar.xz")) "e2fsprogs-" version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"0s216nn0lv7s278v933a44fv1ibi900c94743gpp2kn9jlr0kai3")))) "04wp77fg842dhribgn0xvbd77idh0n7a839ga4bwy78v7i9l445i"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs `(("util-linux" ,util-linux "lib"))) (inputs `(("util-linux" ,util-linux "lib")))
(native-inputs `(("pkg-config" ,pkg-config) (native-inputs `(("pkg-config" ,pkg-config)
@ -2236,8 +2236,7 @@ module.")
"INSTALL_SYMLINK = sh")) "INSTALL_SYMLINK = sh"))
(substitute* (find-files "." "^Makefile.in$") (substitute* (find-files "." "^Makefile.in$")
(("#!/bin/sh") (("#!/bin/sh")
(string-append "#!" (which "sh")))) (string-append "#!" (which "sh"))))))
#t))
(add-after 'install 'install-libs (add-after 'install 'install-libs
(lambda* (#:key outputs #:allow-other-keys) (lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out")) (let* ((out (assoc-ref outputs "out"))
@ -2252,8 +2251,7 @@ module.")
(let ((archives (find-files lib "\\.a$"))) (let ((archives (find-files lib "\\.a$")))
(for-each (lambda (file) (for-each (lambda (file)
(chmod file #o666)) (chmod file #o666))
archives)) archives))))))))
#t))))))
(home-page "http://e2fsprogs.sourceforge.net/") (home-page "http://e2fsprogs.sourceforge.net/")
(synopsis "Creating and checking ext2/ext3/ext4 file systems") (synopsis "Creating and checking ext2/ext3/ext4 file systems")
(description (description