me
/
guix
Archived
1
0
Fork 0

gnu: dovecot: Update to 2.2.26.0.

* gnu/packages/mail.scm (dovecot): Update to 2.2.26.0.
[arguments]: Patch shebangs in test file.
master
Efraim Flashner 2016-11-29 19:45:04 +02:00
parent 683c5ab70a
commit 072f1e22cc
No known key found for this signature in database
GPG Key ID: F4C1D3917EACEE93
1 changed files with 11 additions and 2 deletions

View File

@ -933,7 +933,7 @@ facilities for checking incoming mail.")
(define-public dovecot
(package
(name "dovecot")
(version "2.2.25")
(version "2.2.26.0")
(source
(origin
(method url-fetch)
@ -941,7 +941,7 @@ facilities for checking incoming mail.")
(version-major+minor version) "/"
name "-" version ".tar.gz"))
(sha256 (base32
"0rwn5wc5b8j9fzqcjggdgpzmb77myrf4ra294z1gg5v3hhng7nfq"))))
"01bgj8b2whi35ghbxb19nmr3xvx2zgjzxxw1crgx2v73kprs34pn"))))
(build-system gnu-build-system)
(native-inputs
`(("pkg-config" ,pkg-config)))
@ -963,6 +963,15 @@ facilities for checking incoming mail.")
"doc/example-config/Makefile.in")
(("pkgsysconfdir = .*")
"pkgsysconfdir = /tmp/etc"))
#t))
(add-after
'unpack 'patch-other-shebangs
(lambda _
(substitute*
"src/lib-program-client/test-program-client-local.c"
(("/bin/echo") (which "echo"))
(("/bin/cat") (which "cat"))
(("/bin/false") (which "false")))
#t)))))
(home-page "http://www.dovecot.org")
(synopsis "Secure POP3/IMAP server")