guix_mirror_bot pushed a commit to branch crypto-team
in repository guix.
commit e28001df6c1c8926ffe85f8c9b9134a9fa9db5e0
Author: Ashish SHUKLA <[email protected]>
AuthorDate: Wed Jun 10 10:44:54 2026 +0200
gnu: openssl: Ungraft and update to 3.5.7.
* gnu/packages/tls.scm (openssl-3.5): Update to 3.5.7. Remove replacement.
(openssl-3.5.7): Delete variable.
Change-Id: I2a4063c6fb200cb46165f023b90ee6156c8bbc53
Signed-off-by: Andreas Enge <[email protected]>
---
gnu/packages/tls.scm | 25 +++----------------------
1 file changed, 3 insertions(+), 22 deletions(-)
diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index ee4283283e..ab805d3b10 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -22,7 +22,7 @@
;;; Copyright © 2021 Matthew James Kraai <[email protected]>
;;; Copyright © 2021 John Kehayias <[email protected]>
;;; Copyright © 2022 Greg Hogan <[email protected]>
-;;; Copyright © 2024, 2025 Ashish SHUKLA <[email protected]>
+;;; Copyright © 2024-2026 Ashish SHUKLA <[email protected]>
;;; Copyright © 2026 Junker <[email protected]>
;;;
;;; This file is part of GNU Guix.
@@ -551,8 +551,7 @@ OpenSSL for TARGET."
;; LTS series with EOL 2030-04-08
(package
(name "openssl")
- (version "3.5.5")
- (replacement openssl-3.5.7)
+ (version "3.5.7")
(source (origin
(method url-fetch)
(uri (list (string-append
"https://www.openssl.org/source/openssl-"
@@ -565,7 +564,7 @@ OpenSSL for TARGET."
(patches (search-patches "openssl-3.0-c-rehash-in.patch"))
(sha256
(base32
- "129aphl9yy5xd67cwacf000llkhpi1s8phmlhgws2rcb599r335j"))))
+ "1s4qmjp33ai43ahlm3iw59aq86fj5hp7kxbcygwq194waa5d5h58"))))
(build-system gnu-build-system)
(outputs '("out"
"doc"
@@ -674,24 +673,6 @@ OpenSSL for TARGET."
(description "OpenSSL is an implementation of SSL/TLS.")
(license license:asl2.0)))
-(define-public openssl-3.5.7
- (package
- (inherit openssl-3.5)
- (version "3.5.7")
- (source
- (origin
- (inherit (package-source openssl-3.5))
- (uri (list (string-append "https://www.openssl.org/source/openssl-"
- version ".tar.gz")
- (string-append "ftp://ftp.openssl.org/source/"
- "openssl-" version ".tar.gz")
- (string-append "ftp://ftp.openssl.org/source/old/"
- (string-trim-right version char-set:letter)
- "/openssl-" version ".tar.gz")))
- (sha256
- (base32
- "1s4qmjp33ai43ahlm3iw59aq86fj5hp7kxbcygwq194waa5d5h58"))))))
-
(define-public openssl-3.0
;; LTS series with EOL 2026-09-07
(package