From unknown Sat Jun 21 12:31:09 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#42308] [PATCH] gnu: gnunet: Update to 0.13.0. Resent-From: Tanguy Le Carrour Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 10 Jul 2020 13:41:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 42308 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 42308@debbugs.gnu.org Cc: Tanguy Le Carrour X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.159438841212074 (code B ref -1); Fri, 10 Jul 2020 13:41:02 +0000 Received: (at submit) by debbugs.gnu.org; 10 Jul 2020 13:40:12 +0000 Received: from localhost ([127.0.0.1]:42505 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jttG8-00038g-CF for submit@debbugs.gnu.org; Fri, 10 Jul 2020 09:40:12 -0400 Received: from lists.gnu.org ([209.51.188.17]:52446) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jttG7-00038Z-Cp for submit@debbugs.gnu.org; Fri, 10 Jul 2020 09:40:12 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:57700) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jttG7-0007jd-5J for guix-patches@gnu.org; Fri, 10 Jul 2020 09:40:11 -0400 Received: from relay11.mail.gandi.net ([217.70.178.231]:57467) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jttG5-0006j3-5T for guix-patches@gnu.org; Fri, 10 Jul 2020 09:40:10 -0400 Received: from rafflesia.easter-eggs.fr (176-159-32-89.abo.bbox.fr [176.159.32.89]) (Authenticated sender: tanguy@bioneland.org) by relay11.mail.gandi.net (Postfix) with ESMTPA id 5A528100014; Fri, 10 Jul 2020 13:40:04 +0000 (UTC) From: Tanguy Le Carrour Date: Fri, 10 Jul 2020 15:39:54 +0200 Message-Id: <20200710133954.23996-1-tanguy@bioneland.org> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: none client-ip=217.70.178.231; envelope-from=tanguy@bioneland.org; helo=relay11.mail.gandi.net X-detected-operating-system: by eggs.gnu.org: First seen = 2020/07/10 09:40:04 X-ACL-Warn: Detected OS = Linux 3.11 and newer X-Spam_score_int: -35 X-Spam_score: -3.6 X-Spam_bar: --- X-Spam_report: (-3.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H2=-1, SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) * gnu/packages/gnunet.scm (gnunet): Update to 0.13.0. [native-inputs] Add curl. [arguments] Disable one failing test. --- gnu/packages/gnunet.scm | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/gnu/packages/gnunet.scm b/gnu/packages/gnunet.scm index f2ab3a1c27..8ff719a542 100644 --- a/gnu/packages/gnunet.scm +++ b/gnu/packages/gnunet.scm @@ -32,6 +32,7 @@ #:use-module (gnu packages aidc) #:use-module (gnu packages autotools) #:use-module (gnu packages compression) + #:use-module (gnu packages crypto) #:use-module (gnu packages curl) #:use-module (gnu packages gettext) #:use-module (gnu packages glib) @@ -250,7 +251,7 @@ supports HTTP, HTTPS and GnuTLS.") (define-public gnunet (package (name "gnunet") - (version "0.12.2") + (version "0.13.0") (source (origin (method url-fetch) @@ -258,7 +259,7 @@ supports HTTP, HTTPS and GnuTLS.") ".tar.gz")) (sha256 (base32 - "1mwcy7fj1rpd39w7j7k3jdwlil5s889b2qlhfdggqmhigl28na5c")))) + "0g2zp8rj4yzz9xj4b5k9bdflmmpqxdgxvkr1vk5cq0jlz3vqmxx3")))) (build-system gnu-build-system) (inputs `(("bluez" ,bluez) @@ -274,6 +275,7 @@ supports HTTP, HTTPS and GnuTLS.") ("libltdl" ,libltdl) ("libmicrohttpd" ,libmicrohttpd) ("libogg" ,libogg) + ("libsodium" ,libsodium) ("libunistring" ,libunistring) ("miniupnpc" ,miniupnpc) ("opus" ,opus) @@ -282,7 +284,8 @@ supports HTTP, HTTPS and GnuTLS.") ("zbar" ,zbar) ("zlib" ,zlib))) (native-inputs - `(("pkg-config" ,pkg-config) + `(("curl" ,curl) + ("pkg-config" ,pkg-config) ("python" ,python) ("xxd" ,xxd) ("which" ,(@ (gnu packages base) which)))) @@ -311,8 +314,9 @@ supports HTTP, HTTPS and GnuTLS.") (("test_transport_blacklisting_multiple_plugins\\$\\(EXEEXT\\) \\\\\n") "")) (substitute* "src/testbed/Makefile" (("test_testbed_api_2peers_1controller\\$\\(EXEEXT\\) \\\\\n") "") - (("test_testbed_api_test\\$\\(EXEEXT\\) \\\\\n") "") (("test_testbed_api_statistics\\$\\(EXEEXT\\) \\\\\n") "") + (("test_testbed_api_test\\$\\(EXEEXT\\) \\\\\n") "") + (("test_testbed_api_test_timeout\\$\\(EXEEXT\\) \\\\\n") "") (("test_testbed_api_topology\\$\\(EXEEXT\\) \\\\\n") "") (("test_testbed_api_topology_clique\\$\\(EXEEXT\\) \\\\\n") "")) (substitute* "src/topology/Makefile" -- 2.27.0 From unknown Sat Jun 21 12:31:09 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Tanguy Le Carrour Subject: bug#42308: closed (Re: [bug#42308] [PATCH] gnu: gnunet: Update to 0.13.0.) Message-ID: References: <87imestjxk.fsf@gnu.org> <20200710133954.23996-1-tanguy@bioneland.org> X-Gnu-PR-Message: they-closed 42308 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 42308@debbugs.gnu.org Date: Sun, 12 Jul 2020 23:05:01 +0000 Content-Type: multipart/mixed; boundary="----------=_1594595101-17933-1" This is a multi-part message in MIME format... ------------=_1594595101-17933-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #42308: [PATCH] gnu: gnunet: Update to 0.13.0. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 42308@debbugs.gnu.org. --=20 42308: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D42308 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1594595101-17933-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 42308-done) by debbugs.gnu.org; 12 Jul 2020 23:04:04 +0000 Received: from localhost ([127.0.0.1]:47124 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jul0t-0004e1-VE for submit@debbugs.gnu.org; Sun, 12 Jul 2020 19:04:04 -0400 Received: from eggs.gnu.org ([209.51.188.92]:48026) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jul0r-0004d6-Rr for 42308-done@debbugs.gnu.org; Sun, 12 Jul 2020 19:04:03 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:49944) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jul0l-000280-CO; Sun, 12 Jul 2020 19:03:55 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=33898 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1jul0k-0005XA-Sl; Sun, 12 Jul 2020 19:03:55 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Tanguy Le Carrour Subject: Re: [bug#42308] [PATCH] gnu: gnunet: Update to 0.13.0. References: <20200710133954.23996-1-tanguy@bioneland.org> Date: Mon, 13 Jul 2020 01:03:51 +0200 In-Reply-To: <20200710133954.23996-1-tanguy@bioneland.org> (Tanguy Le Carrour's message of "Fri, 10 Jul 2020 15:39:54 +0200") Message-ID: <87imestjxk.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 42308-done Cc: 42308-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hi Tanguy, Tanguy Le Carrour skribis: > * gnu/packages/gnunet.scm (gnunet): Update to 0.13.0. [native-inputs] Add= curl. > [arguments] Disable one failing test. Pushed, followed by an update to 0.13.1. Thanks, Ludo=E2=80=99. ------------=_1594595101-17933-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 10 Jul 2020 13:40:12 +0000 Received: from localhost ([127.0.0.1]:42505 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jttG8-00038g-CF for submit@debbugs.gnu.org; Fri, 10 Jul 2020 09:40:12 -0400 Received: from lists.gnu.org ([209.51.188.17]:52446) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jttG7-00038Z-Cp for submit@debbugs.gnu.org; Fri, 10 Jul 2020 09:40:12 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:57700) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jttG7-0007jd-5J for guix-patches@gnu.org; Fri, 10 Jul 2020 09:40:11 -0400 Received: from relay11.mail.gandi.net ([217.70.178.231]:57467) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jttG5-0006j3-5T for guix-patches@gnu.org; Fri, 10 Jul 2020 09:40:10 -0400 Received: from rafflesia.easter-eggs.fr (176-159-32-89.abo.bbox.fr [176.159.32.89]) (Authenticated sender: tanguy@bioneland.org) by relay11.mail.gandi.net (Postfix) with ESMTPA id 5A528100014; Fri, 10 Jul 2020 13:40:04 +0000 (UTC) From: Tanguy Le Carrour To: guix-patches@gnu.org Subject: [PATCH] gnu: gnunet: Update to 0.13.0. Date: Fri, 10 Jul 2020 15:39:54 +0200 Message-Id: <20200710133954.23996-1-tanguy@bioneland.org> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: none client-ip=217.70.178.231; envelope-from=tanguy@bioneland.org; helo=relay11.mail.gandi.net X-detected-operating-system: by eggs.gnu.org: First seen = 2020/07/10 09:40:04 X-ACL-Warn: Detected OS = Linux 3.11 and newer X-Spam_score_int: -35 X-Spam_score: -3.6 X-Spam_bar: --- X-Spam_report: (-3.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H2=-1, SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit Cc: Tanguy Le Carrour X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) * gnu/packages/gnunet.scm (gnunet): Update to 0.13.0. [native-inputs] Add curl. [arguments] Disable one failing test. --- gnu/packages/gnunet.scm | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/gnu/packages/gnunet.scm b/gnu/packages/gnunet.scm index f2ab3a1c27..8ff719a542 100644 --- a/gnu/packages/gnunet.scm +++ b/gnu/packages/gnunet.scm @@ -32,6 +32,7 @@ #:use-module (gnu packages aidc) #:use-module (gnu packages autotools) #:use-module (gnu packages compression) + #:use-module (gnu packages crypto) #:use-module (gnu packages curl) #:use-module (gnu packages gettext) #:use-module (gnu packages glib) @@ -250,7 +251,7 @@ supports HTTP, HTTPS and GnuTLS.") (define-public gnunet (package (name "gnunet") - (version "0.12.2") + (version "0.13.0") (source (origin (method url-fetch) @@ -258,7 +259,7 @@ supports HTTP, HTTPS and GnuTLS.") ".tar.gz")) (sha256 (base32 - "1mwcy7fj1rpd39w7j7k3jdwlil5s889b2qlhfdggqmhigl28na5c")))) + "0g2zp8rj4yzz9xj4b5k9bdflmmpqxdgxvkr1vk5cq0jlz3vqmxx3")))) (build-system gnu-build-system) (inputs `(("bluez" ,bluez) @@ -274,6 +275,7 @@ supports HTTP, HTTPS and GnuTLS.") ("libltdl" ,libltdl) ("libmicrohttpd" ,libmicrohttpd) ("libogg" ,libogg) + ("libsodium" ,libsodium) ("libunistring" ,libunistring) ("miniupnpc" ,miniupnpc) ("opus" ,opus) @@ -282,7 +284,8 @@ supports HTTP, HTTPS and GnuTLS.") ("zbar" ,zbar) ("zlib" ,zlib))) (native-inputs - `(("pkg-config" ,pkg-config) + `(("curl" ,curl) + ("pkg-config" ,pkg-config) ("python" ,python) ("xxd" ,xxd) ("which" ,(@ (gnu packages base) which)))) @@ -311,8 +314,9 @@ supports HTTP, HTTPS and GnuTLS.") (("test_transport_blacklisting_multiple_plugins\\$\\(EXEEXT\\) \\\\\n") "")) (substitute* "src/testbed/Makefile" (("test_testbed_api_2peers_1controller\\$\\(EXEEXT\\) \\\\\n") "") - (("test_testbed_api_test\\$\\(EXEEXT\\) \\\\\n") "") (("test_testbed_api_statistics\\$\\(EXEEXT\\) \\\\\n") "") + (("test_testbed_api_test\\$\\(EXEEXT\\) \\\\\n") "") + (("test_testbed_api_test_timeout\\$\\(EXEEXT\\) \\\\\n") "") (("test_testbed_api_topology\\$\\(EXEEXT\\) \\\\\n") "") (("test_testbed_api_topology_clique\\$\\(EXEEXT\\) \\\\\n") "")) (substitute* "src/topology/Makefile" -- 2.27.0 ------------=_1594595101-17933-1--