[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/07: gnu: gnunet: Update to 0.13.0.
From: |
guix-commits |
Subject: |
06/07: gnu: gnunet: Update to 0.13.0. |
Date: |
Sun, 12 Jul 2020 19:03:26 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit ada42a4292652c417697e2adf264ea3d97498a26
Author: Tanguy Le Carrour <tanguy@bioneland.org>
AuthorDate: Fri Jul 10 15:39:54 2020 +0200
gnu: gnunet: Update to 0.13.0.
* gnu/packages/gnunet.scm (gnunet): Update to 0.13.0. [native-inputs] Add
curl.
[arguments] Disable one failing test.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
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 f2ab3a1..8ff719a 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"
- branch master updated (c54b9af -> bea2134), guix-commits, 2020/07/12
- 01/07: services: mumi: Run in a UTF-8 locale., guix-commits, 2020/07/12
- 02/07: gnu: Add xssproxy., guix-commits, 2020/07/12
- 03/07: lint: source: Validate URLs of Git references., guix-commits, 2020/07/12
- 05/07: services: web: Do not export record type descriptors., guix-commits, 2020/07/12
- 04/07: gnu: Remove ".git" from "https://github/…/….git"., guix-commits, 2020/07/12
- 07/07: gnu: gnunet: Update to 0.13.1., guix-commits, 2020/07/12
- 06/07: gnu: gnunet: Update to 0.13.0.,
guix-commits <=