guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/07: gnu: dovecot: Indent arguments.


From: guix-commits
Subject: 04/07: gnu: dovecot: Indent arguments.
Date: Fri, 8 Mar 2019 20:33:52 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit f762e49f28dbd2bcb0ec0717a36c16da27f9da0b
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Fri Mar 8 01:11:45 2019 +0100

    gnu: dovecot: Indent arguments.
    
    * gnu/packages/mail.scm (dovecot)[arguments]: C-M-q and tuck left.
---
 gnu/packages/mail.scm | 49 +++++++++++++++++++++++--------------------------
 1 file changed, 23 insertions(+), 26 deletions(-)

diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 69fee43..fb99037 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -1303,32 +1303,29 @@ facilities for checking incoming mail.")
     (arguments
      `(#:configure-flags '("--sysconfdir=/etc"
                            "--localstatedir=/var")
-       #:phases (modify-phases %standard-phases
-                  (add-before
-                   'configure 'pre-configure
-                   (lambda _
-                     ;; Simple hack to avoid installing in /etc.
-                     (substitute* '("doc/Makefile.in"
-                                    "doc/example-config/Makefile.in")
-                       (("pkgsysconfdir = .*")
-                        "pkgsysconfdir = /tmp/etc"))
-                     #t))
-                  (add-after
-                   'unpack 'patch-file-names
-                   (lambda _
-                     (substitute*
-                         "src/lib-program-client/test-program-client-local.c"
-                       (("(/bin/| )cat") (which "cat"))
-                       (("/bin/echo") (which "echo"))
-                       (("/bin/false") (which "false"))
-                       (("/bin/sh") (which "bash"))
-                       (("head") (which "head"))
-                       (("sleep") (which "sleep")))
-                     (substitute*
-                         (list "src/lib-smtp/test-bin/sendmail-exit-1.sh"
-                               "src/lib-smtp/test-bin/sendmail-success.sh")
-                       (("cat") (which "cat")))
-                     #t)))))
+       #:phases
+       (modify-phases %standard-phases
+         (add-before 'configure 'pre-configure
+           (lambda _
+             ;; Simple hack to avoid installing in /etc.
+             (substitute* '("doc/Makefile.in"
+                            "doc/example-config/Makefile.in")
+               (("pkgsysconfdir = .*")
+                "pkgsysconfdir = /tmp/etc"))
+             #t))
+         (add-after 'unpack 'patch-file-names
+           (lambda _
+             (substitute* "src/lib-program-client/test-program-client-local.c"
+               (("(/bin/| )cat") (which "cat"))
+               (("/bin/echo") (which "echo"))
+               (("/bin/false") (which "false"))
+               (("/bin/sh") (which "bash"))
+               (("head") (which "head"))
+               (("sleep") (which "sleep")))
+             (substitute* (list "src/lib-smtp/test-bin/sendmail-exit-1.sh"
+                                "src/lib-smtp/test-bin/sendmail-success.sh")
+               (("cat") (which "cat")))
+             #t)))))
     (home-page "https://www.dovecot.org";)
     (synopsis "Secure POP3/IMAP server")
     (description



reply via email to

[Prev in Thread] Current Thread [Next in Thread]