mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: gnunet: Update to 0.24.2.
* gnu/packages/gnunet.scm (gnunet): Update to 0.24.2. Restore working tests. [build-system]: Switch to meson-build-system. Change-Id: I60bc22150ba678f0bc552df4e9cbeb1c6eb1d79a Signed-off-by: Andreas Enge <andreas@enge.fr>
This commit is contained in:
parent
03ce76718c
commit
dce0759e8c
1 changed files with 12 additions and 23 deletions
|
@ -82,7 +82,8 @@
|
||||||
#:use-module (guix deprecation)
|
#:use-module (guix deprecation)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
#:use-module (guix build-system gnu))
|
#:use-module (guix build-system gnu)
|
||||||
|
#:use-module (guix build-system meson))
|
||||||
|
|
||||||
(define-public libextractor
|
(define-public libextractor
|
||||||
(package
|
(package
|
||||||
|
@ -192,7 +193,7 @@ authentication and support for SSL3 and TLS.")
|
||||||
(define-public gnunet
|
(define-public gnunet
|
||||||
(package
|
(package
|
||||||
(name "gnunet")
|
(name "gnunet")
|
||||||
(version "0.23.0")
|
(version "0.24.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -200,8 +201,8 @@ authentication and support for SSL3 and TLS.")
|
||||||
".tar.gz"))
|
".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0ypnsn81fp3iqi8rgsbcvfnz9iwmaxd1h71mphak8ska2kabdim4"))))
|
"0ixgyq331vyv1vv63jcxgqwwyb7pxb69arsdvp1z09wlgn84lkif"))))
|
||||||
(build-system gnu-build-system)
|
(build-system meson-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
(list bluez
|
(list bluez
|
||||||
glpk
|
glpk
|
||||||
|
@ -218,7 +219,6 @@ authentication and support for SSL3 and TLS.")
|
||||||
libogg
|
libogg
|
||||||
libsodium
|
libsodium
|
||||||
libunistring
|
libunistring
|
||||||
miniupnpc
|
|
||||||
opus
|
opus
|
||||||
pulseaudio
|
pulseaudio
|
||||||
sqlite
|
sqlite
|
||||||
|
@ -238,24 +238,11 @@ authentication and support for SSL3 and TLS.")
|
||||||
#:parallel-tests? #f ;parallel tests aren't supported
|
#:parallel-tests? #f ;parallel tests aren't supported
|
||||||
#:phases
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'disable-problematic-tests
|
(add-after 'unpack 'disable-network-tests
|
||||||
(lambda _
|
(lambda _
|
||||||
;; The file 'test_arm_probnat.sh' doesn't seem to exist,
|
(substitute* "src/cli/gns/meson.build"
|
||||||
;; or have a creation method specified anywhere in the source.
|
(("'test_gns_box_sbox',") "")
|
||||||
(substitute* "src/service/arm/Makefile.in"
|
(("'test_dns2gns',") ""))))
|
||||||
(("check_SCRIPTS = \\\\")
|
|
||||||
"DISABLED_check_SCRIPTS = \\"))
|
|
||||||
;; The 'test_communicator_bidirect-tcp' fails
|
|
||||||
;; non-deterministically (see:
|
|
||||||
;; https://bugs.gnunet.org/view.php?id=8689).
|
|
||||||
(substitute* "src/service/transport/Makefile.in"
|
|
||||||
(("test_communicator_bidirect-tcp\\$\\(EXEEXT) ")
|
|
||||||
""))
|
|
||||||
;; The 'test_fs_search_with_and' fails non-deterministically
|
|
||||||
;; (see: https://bugs.gnunet.org/view.php?id=8692).
|
|
||||||
(substitute* "src/service/fs/Makefile.in"
|
|
||||||
(("test_fs_search_with_and\\$\\(EXEEXT) ")
|
|
||||||
""))))
|
|
||||||
(add-before 'check 'set-env-var-for-tests
|
(add-before 'check 'set-env-var-for-tests
|
||||||
(lambda _
|
(lambda _
|
||||||
(setenv "LANG" "en_US.UTF-8")))
|
(setenv "LANG" "en_US.UTF-8")))
|
||||||
|
@ -275,7 +262,9 @@ high-level goal is to provide a strong foundation of free software for a
|
||||||
global, distributed network that provides security and privacy. GNUnet in
|
global, distributed network that provides security and privacy. GNUnet in
|
||||||
that sense aims to replace the current internet protocol stack. Along with
|
that sense aims to replace the current internet protocol stack. Along with
|
||||||
an application for secure publication of files, it has grown to include all
|
an application for secure publication of files, it has grown to include all
|
||||||
kinds of basic applications for the foundation of a GNU internet.")
|
kinds of basic applications for the foundation of a GNU internet.
|
||||||
|
|
||||||
|
For reliable NAT traversal, also install the @var{miniupnpc} package.")
|
||||||
(license license:agpl3+)
|
(license license:agpl3+)
|
||||||
(home-page "https://www.gnunet.org/en/")))
|
(home-page "https://www.gnunet.org/en/")))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue