This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 18ccd72418 gnu: libesmtp: Update to 1.1.0-0.335ee8d.
18ccd72418 is described below

commit 18ccd72418dc990393666ec3e8779b9193867870
Author: Aaron Covrig <[email protected]>
AuthorDate: Sun Aug 17 17:50:45 2025 -0400

    gnu: libesmtp: Update to 1.1.0-0.335ee8d.
    
    This also fixes the build.
    
    * gnu/packages/mail.scm (libesmtp): Update to 1.1.0-0.335ee8d.
    [source]: Change to git-fetch.
    [home-page]: Change to new github.io website.
    
    Change-Id: I601e326ae122bd5ffbb152d9eccf1cd336e3fd29
    Signed-off-by: Andreas Enge <[email protected]>
---
 gnu/packages/mail.scm | 22 ++++++++++++----------
 1 file changed, 12 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 1c8d0e7db4..2b5915fce4 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -2684,22 +2684,24 @@ format and headers.")
     (license license:perl-license)))
 
 (define-public libesmtp
+  (let ((commit "335ee8d2fa5cb7d30db7b818ec05563ad139ee2f")
+        (revision "0"))
   (package
     (name "libesmtp")
-    (version "1.1.0")
+    (version (git-version "1.1.0" revision commit))
     (source
      (origin
-       (method git-fetch)
-       (uri (git-reference
-             (url "https://github.com/libesmtp/libESMTP";)
-             (commit (string-append "v" version))))
-       (file-name (git-file-name name version))
-       (sha256
-        (base32 "1bhh8hlsl9597x0bnfl563k2c09b61qnkb9mfyqcmzlq63m1zw5y"))))
+      (method git-fetch)
+      (uri (git-reference
+            (url "https://github.com/libesmtp/libESMTP";)
+            (commit commit)))
+      (file-name (git-file-name name version))
+      (sha256
+       (base32 "1b6s6xyap9g4irw6wl9rhkvjjn7cc5q7xkxx5z0r1x1ab6fxn6p0"))))
     (build-system meson-build-system)
     (propagated-inputs
      (list openssl))
-    (home-page "http://www.stafford.uklinux.net/libesmtp/";)
+    (home-page "https://libesmtp.github.io/";)
     (synopsis "Library for sending mail via remote hosts using SMTP")
     (description
      "libESMTP is an @acronym{SMTP, Simple Mail Transfer Protocol} client that
@@ -2715,7 +2717,7 @@ transparently handles many SMTP extensions including 
authentication,
 @acronym{TLS, Transport-Level Security}, and PIPELINING for performance.  Even
 without a pipelining server, libESMTP offers much better performance than would
 be expected from a simple client.")
-    (license (list license:lgpl2.1+ license:gpl2+))))
+    (license (list license:lgpl2.1+ license:gpl2+)))))
 
 (define-public esmtp
   (package

Reply via email to