[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/09: gnu: opendht: Update to 2.0.0beta2.
From: |
guix-commits |
Subject: |
04/09: gnu: opendht: Update to 2.0.0beta2. |
Date: |
Sun, 1 Dec 2019 07:46:20 -0500 (EST) |
ambrevar pushed a commit to branch master
in repository guix.
commit 4fe8a9f2d1b0e39079ce7e885e8254bba422a52f
Author: Jan Wielkiewicz <address@hidden>
Date: Sat Oct 26 01:35:09 2019 +0200
gnu: opendht: Update to 2.0.0beta2.
* gnu/packages/networking.scm (opendht): Update to 2.0.0beta2.
---
gnu/packages/networking.scm | 28 +++++++++++++++++++---------
1 file changed, 19 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 96fbefb..1b31314 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -2574,7 +2574,7 @@ and targeted primarily for asynchronous processing of
HTTP-requests.")
(define-public opendht
(package
(name "opendht")
- (version "1.8.1")
+ (version "2.0.0beta2")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -2583,26 +2583,36 @@ and targeted primarily for asynchronous processing of
HTTP-requests.")
(file-name (git-file-name name version))
(sha256
(base32
- "0vninb5mak27wigajslyvr05vq7wbrwqhbr4wzl2nmqcb20wmlq2"))))
- (build-system gnu-build-system)
+ "02ix0rvvyhq22gd5djcq84qz08ji7ln93faf23b27zjzni2klzv5"))))
+ ;; Since 2.0, the gnu-build-system does not seem to work anymore, upstream
bug?
+ (build-system cmake-build-system)
(inputs
`(("gnutls" ,gnutls)
("nettle" ,nettle)
("readline" ,readline)
("jsoncpp" ,jsoncpp)
- ("restbed" ,restbed)))
+ ("openssl" ,openssl)
+ ("fmt" ,fmt-restinio)))
(propagated-inputs
- `(("argon2" ,argon2) ; TODO: Needed for the pkg-config .pc
file to work?
+ `(("argon2" ,argon2) ; TODO: Needed for the pkg-config .pc file to work?
("msgpack" ,msgpack))) ;included in several installed headers
(native-inputs
`(("autoconf" ,autoconf)
("pkg-config" ,pkg-config)
+ ("restinio" ,restinio)
("automake" ,automake)
- ("libtool" ,libtool)))
+ ("libtool" ,libtool)
+ ("cppunit" ,cppunit)))
(arguments
- `(#:configure-flags '("--disable-tools"
- "--disable-python"
- "--with-argon2")))
+ `(#:tests? #f ; Tests require network connection.
+ #:configure-flags
+ '(;; "-DOPENDHT_TESTS=on"
+ "-DOPENDHT_TOOLS=off"
+ "-DOPENDHT_PYTHON=off"
+ "-DOPENDHT_PROXY_SERVER=on"
+ "-DOPENDHT_PUSH_NOTIFICATIONS=on"
+ "-DOPENDHT_PROXY_SERVER_IDENTITY=on"
+ "-DOPENDHT_PROXY_CLIENT=on")))
(home-page "https://github.com/savoirfairelinux/opendht/")
(synopsis "Distributed Hash Table (DHT) library")
(description "OpenDHT is a Distributed Hash Table (DHT) library. It may
- branch master updated (f71b0a0 -> 5b02898), guix-commits, 2019/12/01
- 01/09: gnu: Add resample., guix-commits, 2019/12/01
- 02/09: gnu: Add sobjectizer., guix-commits, 2019/12/01
- 04/09: gnu: opendht: Update to 2.0.0beta2.,
guix-commits <=
- 05/09: gnu: pjproject: Update to 2.9., guix-commits, 2019/12/01
- 09/09: gnu: jami: Fix wrapper., guix-commits, 2019/12/01
- 03/09: gnu: Add restinio., guix-commits, 2019/12/01
- 07/09: gnu: pjproject-jami: Update to 2.9, guix-commits, 2019/12/01
- 08/09: gnu: libring: Update to 20191101., guix-commits, 2019/12/01
- 06/09: gnu: jami: Update to 20191101.3.67671e7., guix-commits, 2019/12/01