From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:41960) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iLtng-000812-20 for guix-patches@gnu.org; Sat, 19 Oct 2019 14:50:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iLtne-0006a3-S5 for guix-patches@gnu.org; Sat, 19 Oct 2019 14:50:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:44736) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iLtne-0006Zw-PM for guix-patches@gnu.org; Sat, 19 Oct 2019 14:50:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iLtne-0006AV-Jz for guix-patches@gnu.org; Sat, 19 Oct 2019 14:50:02 -0400 Subject: [bug#37825] [PATCH] gnu: bitcoin-abc: Update to 0.20.4. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:41751) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iLtmg-0007FQ-RK for guix-patches@gnu.org; Sat, 19 Oct 2019 14:49:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iLtmf-0005x8-ED for guix-patches@gnu.org; Sat, 19 Oct 2019 14:49:02 -0400 Received: from mout02.posteo.de ([185.67.36.66]:47469) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iLtme-0005w4-RP for guix-patches@gnu.org; Sat, 19 Oct 2019 14:49:01 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 397482400FC for ; Sat, 19 Oct 2019 20:48:58 +0200 (CEST) From: Guillaume Le Vaillant Date: Sat, 19 Oct 2019 20:48:37 +0200 Message-Id: <20191019184837.21457-1-glv@posteo.net> 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: 37825@debbugs.gnu.org Cc: Guillaume Le Vaillant * gnu/packages/finance.scm (bitcoin-abc): Update to 0.20.4. [source]: Fix uri. [inputs]: Use bdb-5.3 (bdb-4.8 is not supported). [arguments]: Add 'fix-tests' phase. --- gnu/packages/finance.scm | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index 960e3adeb3..0ab6489aeb 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -1133,15 +1133,35 @@ Trezor wallet.") (package (inherit bitcoin-core) (name "bitcoin-abc") - (version "0.19.8") + (version "0.20.4") (source (origin (method url-fetch) (uri (string-append "https://download.bitcoinabc.org/" - version "/linux/src/bitcoin-abc-" + version "/src/bitcoin-abc-" version ".tar.gz")) (sha256 (base32 - "0ndvkxv5m8346bdhfqzgdiz1k9wyjycj05jp7daf9pml3cw79sz5"))= )) + "0fld54z3l7z7k5n35rrjichjnx37j9xp0rv8i69m3x4qfj1xk2np"))= )) + (inputs + `(("bdb" ,bdb-5.3) + ("boost" ,boost) + ("libevent" ,libevent) + ("miniupnpc" ,miniupnpc) + ("openssl" ,openssl) + ("protobuf" ,protobuf) + ("qtbase" ,qtbase))) + (arguments + (substitute-keyword-arguments (package-arguments bitcoin-core) + ((#:phases phases) + `(modify-phases ,phases + (add-after 'unpack 'fix-tests + ;; Disable 'check-devtools' test which tries to run a + ;; python script that doesn't exist. + (lambda _ + (substitute* "Makefile.in" + (("^check-local: check-devtools") + "check-local:")) + #t)))))) (home-page "https://www.bitcoinabc.org/") (synopsis "Bitcoin ABC peer-to-peer full node for the Bitcoin Cash p= rotocol") (description --=20 2.23.0