mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
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>
This commit is contained in:
parent
a143e92446
commit
ada42a4292
1 changed files with 8 additions and 4 deletions
|
@ -32,6 +32,7 @@ (define-module (gnu packages gnunet)
|
||||||
#:use-module (gnu packages aidc)
|
#:use-module (gnu packages aidc)
|
||||||
#:use-module (gnu packages autotools)
|
#:use-module (gnu packages autotools)
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
|
#:use-module (gnu packages crypto)
|
||||||
#:use-module (gnu packages curl)
|
#:use-module (gnu packages curl)
|
||||||
#:use-module (gnu packages gettext)
|
#:use-module (gnu packages gettext)
|
||||||
#:use-module (gnu packages glib)
|
#:use-module (gnu packages glib)
|
||||||
|
@ -250,7 +251,7 @@ (define-public gnurl
|
||||||
(define-public gnunet
|
(define-public gnunet
|
||||||
(package
|
(package
|
||||||
(name "gnunet")
|
(name "gnunet")
|
||||||
(version "0.12.2")
|
(version "0.13.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -258,7 +259,7 @@ (define-public gnunet
|
||||||
".tar.gz"))
|
".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1mwcy7fj1rpd39w7j7k3jdwlil5s889b2qlhfdggqmhigl28na5c"))))
|
"0g2zp8rj4yzz9xj4b5k9bdflmmpqxdgxvkr1vk5cq0jlz3vqmxx3"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
`(("bluez" ,bluez)
|
`(("bluez" ,bluez)
|
||||||
|
@ -274,6 +275,7 @@ (define-public gnunet
|
||||||
("libltdl" ,libltdl)
|
("libltdl" ,libltdl)
|
||||||
("libmicrohttpd" ,libmicrohttpd)
|
("libmicrohttpd" ,libmicrohttpd)
|
||||||
("libogg" ,libogg)
|
("libogg" ,libogg)
|
||||||
|
("libsodium" ,libsodium)
|
||||||
("libunistring" ,libunistring)
|
("libunistring" ,libunistring)
|
||||||
("miniupnpc" ,miniupnpc)
|
("miniupnpc" ,miniupnpc)
|
||||||
("opus" ,opus)
|
("opus" ,opus)
|
||||||
|
@ -282,7 +284,8 @@ (define-public gnunet
|
||||||
("zbar" ,zbar)
|
("zbar" ,zbar)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)
|
`(("curl" ,curl)
|
||||||
|
("pkg-config" ,pkg-config)
|
||||||
("python" ,python)
|
("python" ,python)
|
||||||
("xxd" ,xxd)
|
("xxd" ,xxd)
|
||||||
("which" ,(@ (gnu packages base) which))))
|
("which" ,(@ (gnu packages base) which))))
|
||||||
|
@ -311,8 +314,9 @@ (define-public gnunet
|
||||||
(("test_transport_blacklisting_multiple_plugins\\$\\(EXEEXT\\) \\\\\n") ""))
|
(("test_transport_blacklisting_multiple_plugins\\$\\(EXEEXT\\) \\\\\n") ""))
|
||||||
(substitute* "src/testbed/Makefile"
|
(substitute* "src/testbed/Makefile"
|
||||||
(("test_testbed_api_2peers_1controller\\$\\(EXEEXT\\) \\\\\n") "")
|
(("test_testbed_api_2peers_1controller\\$\\(EXEEXT\\) \\\\\n") "")
|
||||||
(("test_testbed_api_test\\$\\(EXEEXT\\) \\\\\n") "")
|
|
||||||
(("test_testbed_api_statistics\\$\\(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\\$\\(EXEEXT\\) \\\\\n") "")
|
||||||
(("test_testbed_api_topology_clique\\$\\(EXEEXT\\) \\\\\n") ""))
|
(("test_testbed_api_topology_clique\\$\\(EXEEXT\\) \\\\\n") ""))
|
||||||
(substitute* "src/topology/Makefile"
|
(substitute* "src/topology/Makefile"
|
||||||
|
|
Loading…
Reference in a new issue