GNU bug report logs -
#71241
[PATCH] gnu: exim: Update to 4.97.1.
Previous Next
Reported by: Wilko Meyer <w <at> wmeyer.eu>
Date: Tue, 28 May 2024 14:22:02 UTC
Severity: normal
Tags: patch
Done: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Sun, 23 Jun 2024 22:56:51 -0400
with message-id <87le2v59qk.fsf <at> gmail.com>
and subject line Re: [bug#71241] [PATCH] gnu: exim: Update to 4.97.1.
has caused the debbugs.gnu.org bug report #71241,
regarding [PATCH] gnu: exim: Update to 4.97.1.
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
71241: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=71241
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
* gnu/packages/mail.scm (exim): Update to 4.97.1.
[inputs]: Add perl-file-fcntllock.
[arguments]: Add fix-perl-file-names phase.
Change-Id: Ide1ba09368c2b23fd8ab6d6cdae8887ccb7edbeb
---
Hi Guix,
Updated Exim to the newest version till date, 4.97.1. Newer exim
versions seem to depend on perl-file-fcntllock so I added that to
inputs; also I had to add a phase that fixes the PERL_COMMAND
variable, to be able to build exim properly.
Cheers!
gnu/packages/mail.scm | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index b15d891609..686fe7bf48 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -1949,7 +1949,7 @@ (define-public msmtp
(define-public exim
(package
(name "exim")
- (version "4.96.1")
+ (version "4.97.1")
(source
(origin
(method url-fetch)
@@ -1963,7 +1963,7 @@ (define-public exim
(string-append "https://ftp.exim.org/pub/exim/exim4/old/"
file-name))))
(sha256
- (base32 "0g83cxkq3znh5b3r2a3990qxysw7d2l71jwcxaxzvq8pqdahgb4k"))))
+ (base32 "1afzxyffjqm2xm5v6b731hbfm1fi4q35ja45a29kaycsa1bj0y5x"))))
(build-system gnu-build-system)
(arguments
(list #:phases
@@ -2016,6 +2016,12 @@ (define-public exim
(substitute* "scripts/Configure-config.h"
(("\\| /bin/sh") "| sh"))
(patch-shebang "scripts/Configure-eximon")))
+ (add-before 'build 'fix-perl-file-names
+ (lambda _
+ (substitute* (list "Local/Makefile"
+ "OS/Makefile-Default")
+ (("PERL_COMMAND=/usr/bin/perl")
+ (string-append "PERL_COMMAND=" #$perl "/bin/perl")))))
(add-before 'build 'build-reproducibly
(lambda _
;; The ‘compilation number’ increments on every build in the
@@ -2040,6 +2046,7 @@ (define-public exim
libxaw
libxt
perl
+ perl-file-fcntllock
xz))
(home-page "https://www.exim.org/")
(synopsis
--
2.41.0
[Message part 3 (message/rfc822, inline)]
Hi,
Wilko Meyer <w <at> wmeyer.eu> writes:
> * gnu/packages/mail.scm (exim): Update to 4.97.1.
> [inputs]: Add perl-file-fcntllock.
> [arguments]: Add fix-perl-file-names phase.
Nitpick: no need for a hanging indent in the GNU ChangeLog style.
> Change-Id: Ide1ba09368c2b23fd8ab6d6cdae8887ccb7edbeb
> ---
> Hi Guix,
>
> Updated Exim to the newest version till date, 4.97.1. Newer exim
> versions seem to depend on perl-file-fcntllock so I added that to
> inputs; also I had to add a phase that fixes the PERL_COMMAND
> variable, to be able to build exim properly.
Sounds reasonable. Applied.
--
Thanks,
Maxim
This bug report was last modified 1 year and 24 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.