diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-03-27 18:53:05 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-03-27 19:09:30 +0100 |
commit | 7cb77b789614fbf3cd21b6c2c086e6bbbad262b4 (patch) | |
tree | 9b57c91b2b1a9cd9a77e7d7d5fd1872fe4774fcb /gnu | |
parent | 2b6fe60599d52b449bbf531cfdc4dbf18a14eb2c (diff) | |
download | patches-7cb77b789614fbf3cd21b6c2c086e6bbbad262b4.tar patches-7cb77b789614fbf3cd21b6c2c086e6bbbad262b4.tar.gz |
gnu: mailutils: Update to 3.9.
* gnu/packages/mail.scm (mailutils): Update to 3.9.
[arguments]: In 'prepare-test-suite' phase, adjust name of the mda
'testsuite' files.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/mail.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index e36e010c3e..1b69f32aa4 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -144,14 +144,14 @@ (define-public mailutils (package (name "mailutils") - (version "3.8") + (version "3.9") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/mailutils/mailutils-" version ".tar.xz")) (sha256 (base32 - "1wkn9ch664477r4d8jk9153w5msljsbj99907k7zgzpmywbs6ba7")))) + "1g1xf2lal04nsnf1iym9n9n0wxjpqbcr9nysxpm98v4pniinqwsz")))) (build-system gnu-build-system) (arguments `(#:phases @@ -166,7 +166,8 @@ ;; Tests try to invoke 'mda' such that it looks up the ;; 'root' user, which does not exist in the build ;; environment. - (substitute* "mda/tests/testsuite" + (substitute* '("mda/mda/tests/testsuite" + "mda/lmtpd/tests/testsuite") (("root <") "nobody <") (("spool/root") "spool/nobody") (("root@localhost") "nobody@localhost")) |