mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 15:26:47 +01:00
gnu: i2pd: Update to 2.29.0.
* gnu/packages/i2p.scm (i2pd): Update to 2.29.0. [arguments]: Disable x25519 test in the 'check' phase. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
4427417bd7
commit
9a05da36b5
1 changed files with 8 additions and 3 deletions
|
@ -30,7 +30,7 @@ (define-module (gnu packages i2p)
|
||||||
(define-public i2pd
|
(define-public i2pd
|
||||||
(package
|
(package
|
||||||
(name "i2pd")
|
(name "i2pd")
|
||||||
(version "2.27.0")
|
(version "2.29.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -39,7 +39,7 @@ (define-public i2pd
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "00y0y57z84gakwa88zzm0g3ixgc6y7zm35rjiysiajzvmdq5w1wf"))))
|
(base32 "1issg3aidwikk4g12sa8q81zzp0hd0g8wdy2dx4899z8yrscl300"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(inputs `(("boost" ,boost)
|
(inputs `(("boost" ,boost)
|
||||||
("miniupnpc" ,miniupnpc)
|
("miniupnpc" ,miniupnpc)
|
||||||
|
@ -68,7 +68,12 @@ (define-public i2pd
|
||||||
"./tests")
|
"./tests")
|
||||||
(with-directory-excursion "tests"
|
(with-directory-excursion "tests"
|
||||||
(substitute* "Makefile"
|
(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"
|
(apply invoke "make" "all"
|
||||||
`(,@(if parallel-tests?
|
`(,@(if parallel-tests?
|
||||||
`("-j" ,(number->string
|
`("-j" ,(number->string
|
||||||
|
|
Loading…
Reference in a new issue