guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: botan: Update to 2.17.3 [fixes CVE-2021-2411


From: guix-commits
Subject: branch master updated: gnu: botan: Update to 2.17.3 [fixes CVE-2021-24115].
Date: Wed, 10 Mar 2021 05:22:29 -0500

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

lle_bout pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 47ce296  gnu: botan: Update to 2.17.3 [fixes CVE-2021-24115].
47ce296 is described below

commit 47ce29666b0b66de906dcfebf24776f3e06f1572
Author: Léo Le Bouter <lle-bout@zaclys.net>
AuthorDate: Wed Mar 10 11:17:53 2021 +0100

    gnu: botan: Update to 2.17.3 [fixes CVE-2021-24115].
    
    * gnu/packages/crypto.scm (botan): Update to 2.17.3.
    [arguments]: Add 'library-path-for-tests phase to fix 'check phase by 
setting
    LD_LIBRARY_PATH to intermediate build directory so tests can find libbotan.
---
 gnu/packages/crypto.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm
index 5c8e4d6..0000e7f 100644
--- a/gnu/packages/crypto.scm
+++ b/gnu/packages/crypto.scm
@@ -887,14 +887,14 @@ SHA256, SHA512, SHA3, AICH, ED2K, Tiger, DC++ TTH, 
BitTorrent BTIH, GOST R
 (define-public botan
   (package
     (name "botan")
-    (version "2.12.1")
+    (version "2.17.3")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://botan.randombit.net/releases/";
                                   "Botan-" version ".tar.xz"))
               (sha256
                (base32
-                "1ada3ga7b0z4m0vjmxlvfi4nsic2l8kjcy85jwss3z2i58a5y0vy"))))
+                "121vn1aryk36cpks70kk4c4cfic5g0qs82bf92xap9258ijkn4kr"))))
     (build-system gnu-build-system)
     (arguments
      '(#:phases
@@ -916,6 +916,8 @@ SHA256, SHA512, SHA3, AICH, ED2K, Tiger, DC++ TTH, 
BitTorrent BTIH, GOST R
 
                        ;; Recommended by upstream
                        "--with-zlib" "--with-bzip2" "--with-sqlite3"))))
+         (add-before 'check 'library-path-for-tests
+           (lambda _ (setenv "LD_LIBRARY_PATH" (getcwd))))
          (replace 'check
            (lambda _ (invoke "./botan-test"))))))
     (native-inputs



reply via email to

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