emacs-bug-tracker
[Top][All Lists]
Advanced

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

bug#71241: closed ([PATCH] gnu: exim: Update to 4.97.1.)


From: GNU bug Tracking System
Subject: bug#71241: closed ([PATCH] gnu: exim: Update to 4.97.1.)
Date: Mon, 24 Jun 2024 02:58:02 +0000

Your message dated Sun, 23 Jun 2024 22:56:51 -0400
with message-id <87le2v59qk.fsf@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@gnu.org.)


-- 
71241: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=71241
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: exim: Update to 4.97.1. Date: Tue, 28 May 2024 14:45:41 +0200
* 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




--- End Message ---
--- Begin Message --- Subject: Re: [bug#71241] [PATCH] gnu: exim: Update to 4.97.1. Date: Sun, 23 Jun 2024 22:56:51 -0400 User-agent: Gnus/5.13 (Gnus v5.13)
Hi,

Wilko Meyer <w@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


--- End Message ---

reply via email to

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