From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:34649) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1icCig-0001p7-O0 for guix-patches@gnu.org; Tue, 03 Dec 2019 13:16:20 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1icCUt-0000ag-15 for guix-patches@gnu.org; Tue, 03 Dec 2019 13:02:06 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:35056) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1icCUs-0000YX-I6 for guix-patches@gnu.org; Tue, 03 Dec 2019 13:02:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1icCUs-0002Gg-Es for guix-patches@gnu.org; Tue, 03 Dec 2019 13:02:02 -0500 Subject: [bug#38475] [PATCH 2/2] gnu: i2pd: Update to 2.29.0. Resent-Message-ID: From: Guillaume Le Vaillant Date: Tue, 3 Dec 2019 19:00:35 +0100 Message-Id: <20191203180035.23121-1-glv@posteo.net> In-Reply-To: <87blsp9u46.fsf@yamatai> References: <87blsp9u46.fsf@yamatai> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 38475@debbugs.gnu.org Cc: Guillaume Le Vaillant * gnu/packages/i2p.scm (i2pd): Update to 2.29.0. [arguments]: Disable x25519 test in the 'check' phase. --- 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 075f1f403f..f8c3f3bb5c 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 -- 2.24.0