diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-08-20 02:41:48 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-08-20 05:14:15 +0200 |
commit | c28f242b441d98d3af5d5bb57f72c09490ce725f (patch) | |
tree | da5e29dcce5d297ecbd1780eaa586aabe7f4f15c /gnu | |
parent | 8502974c3487f8571424f80b377ffe29d4c9eee4 (diff) |
gnu: mailutils: Update to 3.10.
* gnu/packages/mail.scm (mailutils): Update to 3.10.
[arguments]: Patch a failing moderator test.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/mail.scm | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index e3211690e1..02c760a8c7 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -185,14 +185,14 @@ example, modify the message headers or body, or encrypt or sign the message.") (define-public mailutils (package (name "mailutils") - (version "3.9") + (version "3.10") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/mailutils/mailutils-" version ".tar.xz")) (sha256 (base32 - "1g1xf2lal04nsnf1iym9n9n0wxjpqbcr9nysxpm98v4pniinqwsz")))) + "17smrxjdgbbzbzakik30vj46q4iib85ksqhb82jr4vjp57akszh9")))) (build-system gnu-build-system) (arguments `(#:phases @@ -231,6 +231,13 @@ example, modify the message headers or body, or encrypt or sign the message.") (("\\$\\(SHELL\\) \\$\\(TESTSUITE\\)" all) (string-append "-" all))) + ;; XXX: The ‘moderator: program discard’ test does not specify + ;; an explicit From: but does expect an exact match. But why are + ;; all other tests unaffected? + (substitute* "sieve/tests/testsuite" + (("gray@") + "nixbld@")) + ;; 'frm' tests expect write access to $HOME. (setenv "HOME" (getcwd)) |