diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-12-24 16:22:56 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-12-24 16:24:16 +0100 |
commit | c9120aa101cd4b881ac078acd6484bf3c5c431cc (patch) | |
tree | d1842f40522d7780c3e1be5363d78750f6555b02 /gnu/packages/mail.scm | |
parent | f6e06e8b15d1fa6c17d8fd21f95b26985b4e1674 (diff) | |
download | guix-c9120aa101cd4b881ac078acd6484bf3c5c431cc.tar guix-c9120aa101cd4b881ac078acd6484bf3c5c431cc.tar.gz |
gnu: opensmtpd: Update to 6.8.0p2.
* gnu/packages/mail.scm (opensmtpd): Update to 6.8.0p2.
[arguments]: Remove 'fix-man-page-detection phase again thanks to
excellent upstream fanservice.
Diffstat (limited to 'gnu/packages/mail.scm')
-rw-r--r-- | gnu/packages/mail.scm | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index a6de501b78..9bbf567aef 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -2877,14 +2877,14 @@ from the Cyrus IMAP project.") (define-public opensmtpd (package (name "opensmtpd") - (version "6.8.0p1") + (version "6.8.0p2") (source (origin (method url-fetch) (uri (string-append "https://www.opensmtpd.org/archives/" "opensmtpd-" version ".tar.gz")) (sha256 - (base32 "10095dskwmrnsjkqvm2d08pws9jig7b88prbfr0qc5am49ggl8gm")))) + (base32 "05sd7bmq29ibnqbl2z53hiyprfxzf0qydfdaixs68rz55wqhbgsi")))) (build-system gnu-build-system) (inputs `(("bdb" ,bdb) @@ -2924,14 +2924,6 @@ from the Cyrus IMAP project.") (substitute* "usr.sbin/smtpd/mda_unpriv.c" (("/bin/sh") (which "sh"))) #t)) - (add-after 'unpack 'fix-man-page-detection - ;; XXX Remove when https://github.com/OpenSMTPD/OpenSMTPD/pull/1113 - ;; or similar fix is released. - (lambda _ - (substitute* "configure" - (("smtpd/smtpd.8" match) - (string-append "usr.sbin/" match))) - #t)) ;; OpenSMTPD provides a single smtpctl utility to control both the ;; daemon and the local submission subsystem. To accomodate systems ;; that require historical interfaces such as sendmail, newaliases or |