guix_mirror_bot pushed a commit to branch mesa-updates
in repository guix.

commit f70660200e66556509aed9d0345a68590750ef57
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Mon Sep 29 20:57:00 2025 +0900

    gnu: mbedtls: Update to 3.5.2.
    
    * gnu/packages/tls.scm (mbedtls): Update to 3.5.2.
    [source]: Switch to url-fetch (otherwise there are git submodules to pull).
    
    Change-Id: I8e7402fd24049defb922a4ceae64d099abbf5bfb
---
 gnu/packages/tls.scm | 24 +++++++++++++-----------
 1 file changed, 13 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index 3eeda094bd..c168037cf1 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -15,7 +15,7 @@
 ;;; Copyright © 2018 Clément Lassieur <[email protected]>
 ;;; Copyright © 2019 Mathieu Othacehe <[email protected]>
 ;;; Copyright © 2020, 2023, 2025 Janneke Nieuwenhuizen <[email protected]>
-;;; Copyright © 2020, 2021, 2023, 2024 Maxim Cournoyer <[email protected]>
+;;; Copyright © 2020, 2021, 2023-2025 Maxim Cournoyer <[email protected]>
 ;;; Copyright © 2021 Solene Rapenne <[email protected]>
 ;;; Copyright © 2021 Brice Waegeneire <[email protected]>
 ;;; Copyright © 2021 Maxime Devos <[email protected]>
@@ -971,6 +971,8 @@ correct OpenSSL include path.  It is intended for use in 
your
 number generator")
   (license license:perl-license)))
 
+;;; TODO: No longer maintained, migrate dependents to current mbedtls v3
+;;; (which is the new LTS).
 (define-public mbedtls-lts
   (package
     (name "mbedtls")
@@ -1011,16 +1013,16 @@ coding footprint.")
   (package
     (inherit mbedtls-lts)
     (name "mbedtls")
-    (version "3.5.2")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "https://github.com/ARMmbed/mbedtls";)
-                    (commit (string-append "mbedtls-" version))))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "1wsjrx98h74q0q4zqwsghiqvjz4aqgvigpxb9f8xjw0w4sfsclcm"))))))
+    (version "3.6.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/Mbed-TLS/mbedtls/releases";
+                           "/download/mbedtls-" version
+                           "/mbedtls-" version ".tar.bz2"))
+       (sha256
+        (base32
+         "0441cwfh3z0xnik0wsafih599s4kzyc8pnrh7s6gjg2rdj5b2dgc"))))))
 
 (define-public mbedtls-apache
   (deprecated-package "mbedtls-apache" mbedtls-lts))

Reply via email to