From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:56100) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ic8Hg-00085A-Gj for guix-patches@gnu.org; Tue, 03 Dec 2019 08:32:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ic8Ha-0008Pu-K2 for guix-patches@gnu.org; Tue, 03 Dec 2019 08:32:08 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:33445) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ic8Ha-0008P5-6K for guix-patches@gnu.org; Tue, 03 Dec 2019 08:32:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ic8Ha-0003dt-1R for guix-patches@gnu.org; Tue, 03 Dec 2019 08:32:02 -0500 Subject: [bug#38470] [PATCH] gnu: bitcoin-abc: Update to 0.20.7. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:53474) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ic8H2-0007aw-15 for guix-patches@gnu.org; Tue, 03 Dec 2019 08:31:30 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ic8Gy-00073m-Hr for guix-patches@gnu.org; Tue, 03 Dec 2019 08:31:26 -0500 Received: from mout01.posteo.de ([185.67.36.65]:42778) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ic8Gv-0006xw-UD for guix-patches@gnu.org; Tue, 03 Dec 2019 08:31:22 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id A5988160060 for ; Tue, 3 Dec 2019 14:31:15 +0100 (CET) From: Guillaume Le Vaillant Date: Tue, 3 Dec 2019 14:30:53 +0100 Message-Id: <20191203133053.22647-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: 38470@debbugs.gnu.org Cc: Guillaume Le Vaillant * gnu/packages/finance.scm (bitcoin-abc): Update to 0.20.7. [native-inputs]: Add autoconf, automake and libtool. [inputs]: Add qrencode and zlib. [arguments]: Remove fix-tests phase. --- gnu/packages/finance.scm | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index 76805f9ca5..e372bb97c2 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -43,6 +43,8 @@ #:use-module (guix build-system go) #:use-module (guix utils) #:use-module (gnu packages) + #:use-module (gnu packages aidc) + #:use-module (gnu packages autotools) #:use-module (gnu packages base) #:use-module (gnu packages boost) #:use-module (gnu packages check) @@ -1167,7 +1169,7 @@ Trezor wallet.") (package (inherit bitcoin-core) (name "bitcoin-abc") - (version "0.20.4") + (version "0.20.7") (source (origin (method url-fetch) (uri (string-append "https://download.bitcoinabc.org/" @@ -1175,7 +1177,15 @@ Trezor wallet.") version ".tar.gz")) (sha256 (base32 - "0fld54z3l7z7k5n35rrjichjnx37j9xp0rv8i69m3x4qfj1xk2np"))= )) + "0py5ilfi4r8qh5r9637vwch27sqrrn0dg9rz8bccnj3lp2xpzw27"))= )) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("libtool" ,libtool) + ("pkg-config" ,pkg-config) + ("python" ,python) ; for the tests + ("util-linux" ,util-linux) ; provides the hexdump command f= or tests + ("qttools" ,qttools))) (inputs `(("bdb" ,bdb-5.3) ("boost" ,boost) @@ -1183,19 +1193,9 @@ Trezor wallet.") ("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)))))) + ("qrencode" ,qrencode) + ("qtbase" ,qtbase) + ("zlib" ,zlib))) (home-page "https://www.bitcoinabc.org/") (synopsis "Bitcoin ABC peer-to-peer full node for the Bitcoin Cash p= rotocol") (description --=20 2.24.0