gnu: mailutils: Update to 3.8.

* gnu/packages/mail.scm (mailutils): Update to 3.8.
[arguments]: Adjust substitutions.
This commit is contained in:
Marius Bakke 2020-01-20 01:57:06 +01:00
parent 37f4454734
commit 43987c977c
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -141,14 +141,14 @@ (define-module (gnu packages mail)
(define-public mailutils (define-public mailutils
(package (package
(name "mailutils") (name "mailutils")
(version "3.7") (version "3.8")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "mirror://gnu/mailutils/mailutils-" (uri (string-append "mirror://gnu/mailutils/mailutils-"
version ".tar.xz")) version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"1gwajsl39f1dkzrjld0dm9px8hrj7l7rwzazz00h5rwghk9mhwhq")))) "1wkn9ch664477r4d8jk9153w5msljsbj99907k7zgzpmywbs6ba7"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
'(#:phases '(#:phases
@ -160,10 +160,10 @@ (define-public mailutils
(("/bin/cat") (("/bin/cat")
(which "cat"))) (which "cat")))
;; Tests try to invoke 'maidag' such that it looks up the ;; Tests try to invoke 'mda' such that it looks up the
;; 'root' user, which does not exist in the build ;; 'root' user, which does not exist in the build
;; environment. ;; environment.
(substitute* "maidag/tests/testsuite" (substitute* "mda/tests/testsuite"
(("root <") "nobody <") (("root <") "nobody <")
(("spool/root") "spool/nobody") (("spool/root") "spool/nobody")
(("root@localhost") "nobody@localhost")) (("root@localhost") "nobody@localhost"))