diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-11-11 21:29:56 +0900 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-11-12 17:41:38 +0900 |
commit | 847a7284a89d3b226eba5ea7d2b8f02f762c0339 (patch) | |
tree | def304382fa8c2e3c05b22725f71797516fb8f63 /gnu | |
parent | 0a9040a51b35a4373910d99124fc83812f244d05 (diff) | |
download | guix-847a7284a89d3b226eba5ea7d2b8f02f762c0339.tar.gz |
gnu: sendmail: Remove trailing #t from phases.
* gnu/packages/mail.scm (sendmail) [arguments] <#:phases>: Remove trailing #t and re-indent some expressions. Change-Id: I1557b07f53f4f7f4aad6850d98973570d1d2a8cc
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/mail.scm | 46 |
1 files changed, 19 insertions, 27 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index dca313925e..636961aae7 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -3138,11 +3138,9 @@ powerful user customization features.") (add-after 'unpack 'remove-build-timestamps ;; Avoid embedding timestamps for reproducible build (lambda _ - (substitute* - (list - "devtools/bin/configure.sh" - "cf/sh/makeinfo.sh") - (("on `date`") "")))) + (substitute* '("devtools/bin/configure.sh" + "cf/sh/makeinfo.sh") + (("on `date`") "")))) (add-before 'build 'replace-/bin/sh (lambda _ (substitute* @@ -3154,14 +3152,13 @@ powerful user customization features.") (("/bin/sh") (which "sh"))) (substitute* "devtools/bin/Build" - (("SHELL=/bin/sh") (string-append "SHELL=" (which "sh")))) - #t)) + (("SHELL=/bin/sh") (string-append "SHELL=" (which "sh")))))) (add-before 'build 'replace-/usr (lambda _ (substitute* - '("devtools/OS/Linux" - "cf/ostype/mklinux.m4" - "cf/ostype/linux.m4") + '("devtools/OS/Linux" + "cf/ostype/mklinux.m4" + "cf/ostype/linux.m4") (("/usr/sbin") "/sbin")))) (replace 'configure (lambda _ @@ -3185,15 +3182,13 @@ define(`confLIBS', `-lresolv') define(`confINSTALL', `~a/devtools/bin/install.sh') define(`confDEPEND_TYPE', `CC-M') define(`confINST_DEP', `') -" (getcwd)))) - #t)) +" (getcwd)))))) (replace 'build (lambda _ (invoke "sh" "Build") (with-directory-excursion "cf/cf" (copy-file "generic-linux.mc" "sendmail.mc") - (invoke "sh" "Build" "sendmail.cf")) - #t)) + (invoke "sh" "Build" "sendmail.cf")))) (add-before 'install 'pre-install (lambda _ (let ((out (assoc-ref %outputs "out"))) @@ -3202,24 +3197,21 @@ define(`confINST_DEP', `') (mkdir-p (string-append out "/etc/mail")) (setenv "DESTDIR" out) (with-directory-excursion "cf/cf" - (invoke "sh" "Build" "install-cf")) - #t))) + (invoke "sh" "Build" "install-cf"))))) (add-after 'install 'post-install (lambda _ - ;; Make symbolic links manually, because build script uses - ;; absolute paths for them and ignores DESTDIR. - (for-each - (lambda (name) - (symlink "../sbin/sendmail" (string-append %output "/bin/" name))) - '("hoststat" "newaliases" "mailq" "purgestat"))))) + ;; Make symbolic links manually, because build script uses + ;; absolute paths for them and ignores DESTDIR. + (for-each + (lambda (name) + (symlink "../sbin/sendmail" (string-append %output "/bin/" name))) + '("hoststat" "newaliases" "mailq" "purgestat"))))) ;; There is no make check. There are some post installation tests, but those - ;; require root privileges + ;; require root privileges. #:tests? #f)) - (inputs - (list m4 perl)) + (inputs (list m4 perl)) (home-page "https://sendmail.org") - (synopsis - "Highly configurable Mail Transfer Agent (MTA)") + (synopsis "Highly configurable Mail Transfer Agent (MTA)") (description "Sendmail is a mail transfer agent (MTA) originally developed by Eric Allman. It is highly configurable and supports many delivery methods and many |