gnu: nullmailer: Remove obsolete trailing #t.
* gnu/packages/mail.scm (nullmailer)[arguments]: Don't explicitly return #t from phases.
This commit is contained in:
parent
16d77b31c5
commit
0c9f663cd2
1 changed files with 4 additions and 8 deletions
|
|
@ -513,8 +513,7 @@ messages) using IDLE. Implemented in Go.")
|
||||||
(substitute* (list "functions.in"
|
(substitute* (list "functions.in"
|
||||||
"tests/send")
|
"tests/send")
|
||||||
;; Fix some shebangs later generated on the fly.
|
;; Fix some shebangs later generated on the fly.
|
||||||
(("/bin/sh") (which "bash"))))
|
(("/bin/sh") (which "bash"))))))
|
||||||
#t))
|
|
||||||
(add-before 'check 'pass-PATH-to-tests
|
(add-before 'check 'pass-PATH-to-tests
|
||||||
;; ‘runtest’ launches each test through ‘env -’, clearing $PATH. The
|
;; ‘runtest’ launches each test through ‘env -’, clearing $PATH. The
|
||||||
;; tests then source ‘functions’, which first demands a working $PATH
|
;; tests then source ‘functions’, which first demands a working $PATH
|
||||||
|
|
@ -526,8 +525,7 @@ messages) using IDLE. Implemented in Go.")
|
||||||
(("env - bash")
|
(("env - bash")
|
||||||
(string-append "env - PATH=\"" (getenv "PATH") "\" bash")))
|
(string-append "env - PATH=\"" (getenv "PATH") "\" bash")))
|
||||||
(substitute* "functions.in"
|
(substitute* "functions.in"
|
||||||
(("export PATH=.*") "")))
|
(("export PATH=.*") "")))))
|
||||||
#t))
|
|
||||||
(add-before 'check 'delete-failing-tests
|
(add-before 'check 'delete-failing-tests
|
||||||
(lambda _
|
(lambda _
|
||||||
(with-directory-excursion "test/tests"
|
(with-directory-excursion "test/tests"
|
||||||
|
|
@ -536,14 +534,12 @@ messages) using IDLE. Implemented in Go.")
|
||||||
;; XXX ‘nullmailer-inject: nullmailer-queue failed: 15’
|
;; XXX ‘nullmailer-inject: nullmailer-queue failed: 15’
|
||||||
"inject/queue"
|
"inject/queue"
|
||||||
;; XXX These require the not-yet-packaged tcpserver.
|
;; XXX These require the not-yet-packaged tcpserver.
|
||||||
"protocols" "smtp-auth")))
|
"protocols" "smtp-auth")))))
|
||||||
#t))
|
|
||||||
(add-before 'install 'skip-install-data-local
|
(add-before 'install 'skip-install-data-local
|
||||||
;; Don't attempt to install run-time files outside of the store.
|
;; Don't attempt to install run-time files outside of the store.
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "Makefile"
|
(substitute* "Makefile"
|
||||||
((" install-data-local") ""))
|
((" install-data-local") "")))))))
|
||||||
#t)))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
;; For tests.
|
;; For tests.
|
||||||
(list daemontools)) ; for svc
|
(list daemontools)) ; for svc
|
||||||
|
|
|
||||||
Reference in a new issue