From debbugs-submit-bounces@debbugs.gnu.org Tue Jul 02 18:39:26 2019 Received: (at 36406) by debbugs.gnu.org; 2 Jul 2019 22:39:26 +0000 Received: from localhost ([127.0.0.1]:48122 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hiRQs-0004t3-8v for submit@debbugs.gnu.org; Tue, 02 Jul 2019 18:39:26 -0400 Received: from eggs.gnu.org ([209.51.188.92]:49472) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hiRQr-0004sp-9D for 36406@debbugs.gnu.org; Tue, 02 Jul 2019 18:39:25 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:57664) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hiRQk-00038w-1S; Tue, 02 Jul 2019 18:39:18 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=34936 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1hiRQh-0008KV-FU; Tue, 02 Jul 2019 18:39:16 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: swedebugia Subject: Re: [bug#36406] [PATCH] gnu: Add bitcoin-abc. References: <7db680ab-ff53-9569-3835-dd28f4889b8e@riseup.net> Date: Wed, 03 Jul 2019 00:39:13 +0200 In-Reply-To: <7db680ab-ff53-9569-3835-dd28f4889b8e@riseup.net> (swedebugia@riseup.net's message of "Thu, 27 Jun 2019 22:11:52 +0200") Message-ID: <87d0is3vu6.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 36406 Cc: 36406@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hi swedebugia, swedebugia skribis: >>From 1ce83b0ceabac0260f6a9dc43d4df1cc75236aa7 Mon Sep 17 00:00:00 2001 > From: swedebugia > Date: Thu, 27 Jun 2019 22:06:33 +0200 > Subject: [PATCH] gnu: Add bitcoin-abc. > > * gnu/packages/finance.scm (bitcoin-abc): New variable. [...] > +(define-public bitcoin-abc > + ;; This is a fork of bitcoin-core and identical to upstream. > + (package > + (name "bitcoin-abc") Since everything except =E2=80=98source=E2=80=99 is identical, I think we s= hould write it as: (package (inherit bitcoin-core) =E2=80=A6) > + (synopsis "Bitcoin ABC peer-to-peer full node for the Bitcoin Cash p= rotocol") > + (description > + "Bitcoin Cash is a digital currency that enables instant payments t= o anyone > +anywhere in the world. It uses peer-to-peer technology to operate witho= ut > +central authority: managing transactions and issuing money are carried o= ut > +collectively by the network. Bitcoin ABC is the reference implementation > +of the Bitcoin Cash protocol. This package provides the Bitcoin Cash co= mmand > +line client and a client based on Qt. This is a fork of bitcoin-core.") Could you make the description a bit more specific to Bitcoin ABC? Otherwise it=E2=80=99s hard to tell how it differs from bitcoin-core. Thanks in advance! Ludo=E2=80=99.