From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:51913) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1idGKA-00062W-6M for guix-patches@gnu.org; Fri, 06 Dec 2019 11:19:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1idGK6-0003Nu-Fy for guix-patches@gnu.org; Fri, 06 Dec 2019 11:19:20 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:40972) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1idGK6-000358-Av for guix-patches@gnu.org; Fri, 06 Dec 2019 11:19:18 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1idEuk-0007qh-Me for guix-patches@gnu.org; Fri, 06 Dec 2019 09:49:02 -0500 Subject: [bug#38508] [PATCH] gnu: libraft: Update to 0.9.11 (from 0.9.5) Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:57510) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1idEu9-0001Fc-9w for guix-patches@gnu.org; Fri, 06 Dec 2019 09:48:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1idEu8-0004qu-4B for guix-patches@gnu.org; Fri, 06 Dec 2019 09:48:25 -0500 Received: from mslow2.mail.gandi.net ([217.70.178.242]:54696) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1idEu7-0004oC-Tx for guix-patches@gnu.org; Fri, 06 Dec 2019 09:48:24 -0500 Received: from relay5-d.mail.gandi.net (unknown [217.70.183.197]) by mslow2.mail.gandi.net (Postfix) with ESMTP id 973D63B522B for ; Fri, 6 Dec 2019 08:38:38 +0000 (UTC) From: Andrew Miloradovsky Date: Fri, 6 Dec 2019 11:36:52 +0300 Message-Id: <20191206083652.22399-1-andrew@interpretmath.pw> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 38508@debbugs.gnu.org Cc: Andrew Miloradovsky * gnu/packages/cluster.scm (libraft)[arguments]: enable libuv I/O backend --- gnu/packages/cluster.scm | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/gnu/packages/cluster.scm b/gnu/packages/cluster.scm index 9548352d12..4e16473fa4 100644 --- a/gnu/packages/cluster.scm +++ b/gnu/packages/cluster.scm @@ -87,7 +87,7 @@ independently or together to provide resilient infrastr= uctures.") (define-public libraft (package (name "libraft") - (version "0.9.5") + (version "0.9.11") (home-page "https://github.com/canonical/raft") (source (origin (method git-fetch) @@ -96,10 +96,12 @@ independently or together to provide resilient infras= tructures.") (file-name (git-file-name name version)) (sha256 (base32 - "1q49f5mmv6nr6dxhnp044xwc6jlczgh0nj0bl6718wiqh28411x0"))= )) - (arguments '(#:configure-flags '("--disable-uv"))) - ;; The uv plugin tests fail, if libuv (or the example) is enabled, - ;; because setting up the environment requires too much privileges. + "00rsq4z9nykmf7r5rlpv1y6bvckcmg3zv57vh1h681y5pij6cch1"))= )) + (arguments '(#:configure-flags '("--enable-uv") + #:tests? #f)) + ;; The uv plugin tests fail, if libuv (or the example) is enabled. + (inputs + `(("libuv" ,libuv))) (native-inputs `(("autoconf" ,autoconf) ("automake" ,automake) --=20 2.24.0