guix-commits
[Top][All Lists]
Advanced

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

03/05: gnu: i2pd: Update to 2.29.0.


From: guix-commits
Subject: 03/05: gnu: i2pd: Update to 2.29.0.
Date: Mon, 9 Dec 2019 12:32:12 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit 9a05da36b5945c49f17de846b50eb55d5ab7ff52
Author: Guillaume Le Vaillant <address@hidden>
Date:   Tue Dec 3 19:00:35 2019 +0100

    gnu: i2pd: Update to 2.29.0.
    
    * gnu/packages/i2p.scm (i2pd): Update to 2.29.0.
      [arguments]: Disable x25519 test in the 'check' phase.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/i2p.scm | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/i2p.scm b/gnu/packages/i2p.scm
index 075f1f4..f8c3f3b 100644
--- a/gnu/packages/i2p.scm
+++ b/gnu/packages/i2p.scm
@@ -30,7 +30,7 @@
 (define-public i2pd
   (package
     (name "i2pd")
-    (version "2.27.0")
+    (version "2.29.0")
     (source
      (origin
        (method git-fetch)
@@ -39,7 +39,7 @@
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "00y0y57z84gakwa88zzm0g3ixgc6y7zm35rjiysiajzvmdq5w1wf"))))
+        (base32 "1issg3aidwikk4g12sa8q81zzp0hd0g8wdy2dx4899z8yrscl300"))))
     (build-system cmake-build-system)
     (inputs `(("boost" ,boost)
               ("miniupnpc" ,miniupnpc)
@@ -68,7 +68,12 @@
                                            "./tests")
                          (with-directory-excursion "tests"
                            (substitute* "Makefile"
-                             (("../libi2pd/") (string-append source 
"/libi2pd/")))
+                             (("../libi2pd/") (string-append source 
"/libi2pd/"))
+                             ;; Disable the x25519 test, which only compiles if
+                             ;; openssl doesn't have X25519 support, but the
+                             ;; version we use has it.
+                             (("test-base-64 test-x25519 
test-aeadchacha20poly1305")
+                              "test-base-64 test-aeadchacha20poly1305"))
                            (apply invoke "make" "all"
                                   `(,@(if parallel-tests?
                                           `("-j" ,(number->string



reply via email to

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