From unknown Fri Jun 20 05:25:45 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#32130 <32130@debbugs.gnu.org> To: bug#32130 <32130@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Add electron-cash. Reply-To: bug#32130 <32130@debbugs.gnu.org> Date: Fri, 20 Jun 2025 12:25:45 +0000 retitle 32130 [PATCH] gnu: Add electron-cash. reassign 32130 guix-patches submitter 32130 Vagrant Cascadian severity 32130 normal tag 32130 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Thu Jul 12 01:05:38 2018 Received: (at submit) by debbugs.gnu.org; 12 Jul 2018 05:05:38 +0000 Received: from localhost ([127.0.0.1]:56221 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fdTnO-0002Ik-4D for submit@debbugs.gnu.org; Thu, 12 Jul 2018 01:05:38 -0400 Received: from eggs.gnu.org ([208.118.235.92]:36290) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fdTnM-0002IX-QS for submit@debbugs.gnu.org; Thu, 12 Jul 2018 01:05:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fdTnG-0002Vc-EC for submit@debbugs.gnu.org; Thu, 12 Jul 2018 01:05:31 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.0 required=5.0 tests=BAYES_40 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:59329) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fdTnG-0002VS-AQ for submit@debbugs.gnu.org; Thu, 12 Jul 2018 01:05:30 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55473) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fdTnF-0001qy-3L for guix-patches@gnu.org; Thu, 12 Jul 2018 01:05:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fdTnE-0002Tn-0x for guix-patches@gnu.org; Thu, 12 Jul 2018 01:05:29 -0400 Received: from cascadia.aikidev.net ([2600:3c01:e000:267:0:a171:de7:c]:39042) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fdTnD-0002QV-Od for guix-patches@gnu.org; Thu, 12 Jul 2018 01:05:27 -0400 Received: from localhost (unknown [IPv6:2600:3c01:e000:21:21:21:0:100b]) (Authenticated sender: vagrant@cascadia.debian.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id AC7791A9C3 for ; Wed, 11 Jul 2018 22:05:24 -0700 (PDT) From: Vagrant Cascadian To: guix-patches@gnu.org Subject: [PATCH] gnu: Add electron-cash. Date: Wed, 11 Jul 2018 22:05:13 -0700 Message-ID: <87d0vtjb7a.fsf@aikidev.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: submit 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: -6.0 (------) --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable * gnu/packages/finance.scm (electron-cash): New variable. =2D-- gnu/packages/finance.scm | 52 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index 1d3e6a7a6..594c835d3 100644 =2D-- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -279,6 +279,58 @@ It's not clear at the moment whether one day it will b= e possible to do so.") (license license:agpl3+))) =20 +(define-public electron-cash + (package + (name "electron-cash") + (version "3.3") + (source + (origin + (method url-fetch) + (uri (string-append "https://electroncash.org/downloads/" + version + "/win-linux/ElectronCash-" + version + ".tar.gz")) + (sha256 + (base32 + "1x487hyacdm1qhik1mhfimr4jwcwz7sgsbkh11awrb6j19sxdxym")) + (modules '((guix build utils))) + (snippet + '(begin + ;; Delete the bundled dependencies. + (delete-file-recursively "packages") + #t)))) + (build-system python-build-system) + (inputs + `(("python-pyaes" ,python-pyaes) + ("python-pysocks" ,python-pysocks) + ("python-sip" ,python-sip) + ("python-pyqt" ,python-pyqt) + ("python-ecdsa" ,python-ecdsa) + ("python-pbkdf2" ,python-pbkdf2) + ("python-requests" ,python-requests) + ("python-qrcode" ,python-qrcode) + ("python-protobuf" ,python-protobuf) + ("python-dnspython" ,python-dnspython) + ("python-jsonrpclib-pelix" ,python-jsonrpclib-pelix))) + (arguments + `(#:tests? #f ;; package doesn't have any tests + #:phases + (modify-phases %standard-phases + (add-before 'build 'patch-home + (lambda* (#:key outputs #:allow-other-keys) + (substitute* "setup.py" + (("~/.local/share") + (string-append (assoc-ref outputs "out") "/local/share")))= ))))) + (home-page "https://electroncash.org/") + (synopsis "Bitcoin Cash wallet") + (description + "Electroncash is a lightweight Bitcoin Cash client, based on a client= -server +protocol. It supports Simple Payment Verification (SPV) and deterministic= key +generation from a seed. Your secret keys are encrypted and are never sent= to +other machines/servers. Electroncash does not download the Bitcoin Cash b= lockchain.") + (license license:expat))) + (define-public electrum (package (name "electrum") =2D-=20 2.18.0 --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEcDardHbDotegGFCHt4uC1IFLkbYFAltG4YkACgkQt4uC1IFL kbbz4A/8CzktGQCOV+uwwoPfY8kSuTYvcIo74xrqtrlnnrF4DDXtTVu+fJtx+zF5 eROT026VqOWZ0bJX6hPFqUnd9bJeosRQ8KzXTwHMeNHhMwPjJsuyFa4UT1JqXoS/ oHerGljfLps6NJ4weTVnR9LXVOXwVA+uRFMQB1iqOGRxkWfgN6mXBoxqksscR1sY KASDFdSbJ5jv5QHOjxow6H9DoF+yb34XJTlD5sGjb9jvLn8seOK8JGcFVjAYTI7T a5zmZ2DpYLIyLhP4AosrTlDMJF+Isr4b/GtTtmcv4YkWjUPPrZwjqkhd1OyEedgV kpPrSrfTPrXBYVNmykelqlG8GXsloqXHgQyuRz6XiPpw6jgi1kwrqJr5qPJpIxrh Wei4/tSNTTxAPo3Jdq7XIYr+9n3Zrf5SCcC3C4SlvCx0gnpJZtBdcCp8SUa+WQ0P GwsxiE4bHmFCkTlLkkC/Awgr4Efyg0hdORqW0fAGck32Vkk1qLIcIczNyIN2mACz GqtosU+8DZ0mEsBCck1CvocFYfptn1EhM3mT2gJszgWd2Ucj5MqcY2hKiFvfnxYh Gu3eZafpLpYvpsfZnZ/Q8WFEEaeYpaNfWgnjFcwCgl1/Qr4ta32V+vWSnUcChuUf vrJuYh4+hOo9sUIA8dzHR0tWpJF3GMasRKAtBATSwMjigTagNLU= =813U -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Thu Jul 12 18:03:30 2018 Received: (at 32130) by debbugs.gnu.org; 12 Jul 2018 22:03:30 +0000 Received: from localhost ([127.0.0.1]:57471 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fdjgQ-0007XM-0a for submit@debbugs.gnu.org; Thu, 12 Jul 2018 18:03:30 -0400 Received: from eggs.gnu.org ([208.118.235.92]:60331) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fdjgO-0007X7-Ek for 32130@debbugs.gnu.org; Thu, 12 Jul 2018 18:03:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fdjgI-0002et-Do for 32130@debbugs.gnu.org; Thu, 12 Jul 2018 18:03:23 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:52948) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fdjgI-0002ej-9X; Thu, 12 Jul 2018 18:03:22 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=45354 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1fdjgH-0002B5-Qm; Thu, 12 Jul 2018 18:03:22 -0400 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) To: Vagrant Cascadian Subject: Re: [bug#32130] [PATCH] gnu: Add electron-cash. References: <87d0vtjb7a.fsf@aikidev.net> Date: Fri, 13 Jul 2018 00:03:20 +0200 In-Reply-To: <87d0vtjb7a.fsf@aikidev.net> (Vagrant Cascadian's message of "Wed, 11 Jul 2018 22:05:13 -0700") Message-ID: <87lgagqfh3.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (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-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 32130 Cc: 32130@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: -6.0 (------) Hello, Vagrant Cascadian skribis: > * gnu/packages/finance.scm (electron-cash): New variable. [...] > + (build-system python-build-system) > + (inputs > + `(("python-pyaes" ,python-pyaes) > + ("python-pysocks" ,python-pysocks) > + ("python-sip" ,python-sip) > + ("python-pyqt" ,python-pyqt) > + ("python-ecdsa" ,python-ecdsa) > + ("python-pbkdf2" ,python-pbkdf2) > + ("python-requests" ,python-requests) > + ("python-qrcode" ,python-qrcode) > + ("python-protobuf" ,python-protobuf) > + ("python-dnspython" ,python-dnspython) > + ("python-jsonrpclib-pelix" ,python-jsonrpclib-pelix))) > + (arguments > + `(#:tests? #f ;; package doesn't have any tests > + #:phases > + (modify-phases %standard-phases > + (add-before 'build 'patch-home > + (lambda* (#:key outputs #:allow-other-keys) > + (substitute* "setup.py" > + (("~/.local/share") > + (string-append (assoc-ref outputs "out") "/local/share")= ))))))) > + (home-page "https://electroncash.org/") This seems to be pretty much the same thing as =E2=80=98electrum=E2=80=99. = Should we define it as: (package (inherit electrum) (name "electron-cash") =E2=80=A6) ? Thanks, Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Thu Jul 12 18:41:05 2018 Received: (at 32130) by debbugs.gnu.org; 12 Jul 2018 22:41:05 +0000 Received: from localhost ([127.0.0.1]:57519 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fdkGn-00021d-Hr for submit@debbugs.gnu.org; Thu, 12 Jul 2018 18:41:05 -0400 Received: from cascadia.aikidev.net ([173.255.214.101]:43764) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fdkGl-00020a-Bt for 32130@debbugs.gnu.org; Thu, 12 Jul 2018 18:41:03 -0400 Received: from localhost (unknown [IPv6:2600:3c01:e000:21:21:21:0:100b]) (Authenticated sender: vagrant@cascadia.debian.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id 2FE171A9C3; Thu, 12 Jul 2018 15:40:56 -0700 (PDT) From: Vagrant Cascadian To: Ludovic =?utf-8?Q?Court=C3=A8s?= Subject: Re: [bug#32130] [PATCH] gnu: Add electron-cash. In-Reply-To: <87lgagqfh3.fsf@gnu.org> References: <87d0vtjb7a.fsf@aikidev.net> <87lgagqfh3.fsf@gnu.org> Date: Thu, 12 Jul 2018 15:40:44 -0700 Message-ID: <87tvp4hyc3.fsf@aikidev.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 32130 Cc: 32130@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: -1.0 (-) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 2018-07-12, Ludovic Court=C3=A8s wrote: > Vagrant Cascadian skribis: > >> * gnu/packages/finance.scm (electron-cash): New variable. > > [...] > >> + (build-system python-build-system) >> + (inputs >> + `(("python-pyaes" ,python-pyaes) >> + ("python-pysocks" ,python-pysocks) >> + ("python-sip" ,python-sip) >> + ("python-pyqt" ,python-pyqt) >> + ("python-ecdsa" ,python-ecdsa) >> + ("python-pbkdf2" ,python-pbkdf2) >> + ("python-requests" ,python-requests) >> + ("python-qrcode" ,python-qrcode) >> + ("python-protobuf" ,python-protobuf) >> + ("python-dnspython" ,python-dnspython) >> + ("python-jsonrpclib-pelix" ,python-jsonrpclib-pelix))) >> + (arguments >> + `(#:tests? #f ;; package doesn't have any tests >> + #:phases >> + (modify-phases %standard-phases >> + (add-before 'build 'patch-home >> + (lambda* (#:key outputs #:allow-other-keys) >> + (substitute* "setup.py" >> + (("~/.local/share") >> + (string-append (assoc-ref outputs "out") "/local/share"= )))))))) >> + (home-page "https://electroncash.org/") > > This seems to be pretty much the same thing as =E2=80=98electrum=E2=80=99= . Should we > define it as: > > (package > (inherit electrum) > (name "electron-cash") > =E2=80=A6) Yes, it is a fork of electrum. The release cycles are independent and possibly the needed inputs may differ over time. But for now that will probably work fine. live well, vagrant --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEcDardHbDotegGFCHt4uC1IFLkbYFAltH2O0ACgkQt4uC1IFL kbZHiw//W9cMXCmDHQLqrBCEHYKxaxRqJdCufLCVsv2ebdiogCPCqCl7JBw/Fj6a YWORub2BM1dHsN/rXocrQuO49p/dwJ9Gwb8WrEx01t/MX+XgrhnaMWSZGwaP9EFY c1GfeRoL/UwpM3OlEECNvSd9hSCb3kqdF1RNASiOHCWBX1xXiV4+IOZcts3CibWP JMlJT10oYJUlrZAvEP2SKbjK9Ri+Flt/GAxxcne077smG8akgfvkUv1Ke0ALii3n TZEJW8m1/C9I0gzJ08mqB3dG7+DLJwUIp3yL+zYA/Y7sc261OwoD/DrIOJcBKwPf /fYiuGtS2dkfwWVZPi4LTYE9ODWWh3jHP0zMpBJIZlSzQOnzGTcJBuZ7fovE96uk D+GFSu3q4SDZxgAtWR+19U2QOODCpN98O6f5xoQLZxU3KWhDJui2fYQC2+VaJQQ9 5X3LigIDrM8KG7YczQYwNeztewMadJ+X/+itN1PNUaqUX0vXWbZ6yEwN5kpBHRBb jppVOVvWF0Smgg7sXpgGnoulpLdgHxPI7OM4qG1BB5GwWSoUGjw1BogDH1Hq5/Kv QvoXAc7ka3K5nT+2/JFX1RxMmDtOj8IjgSm8l9EmASSqcTj27kEex0r5j8iqxpmP 1o23RZ3gkywCfzBvVPEkQ86LLc2MOp64F4cKR228aB1VbmHRio8= =cXKH -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Fri Jul 13 18:56:52 2018 Received: (at 32130) by debbugs.gnu.org; 13 Jul 2018 22:56:52 +0000 Received: from localhost ([127.0.0.1]:59337 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fe6zc-0000um-16 for submit@debbugs.gnu.org; Fri, 13 Jul 2018 18:56:52 -0400 Received: from cascadia.aikidev.net ([173.255.214.101]:45180) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fe6za-0000uX-2y for 32130@debbugs.gnu.org; Fri, 13 Jul 2018 18:56:50 -0400 Received: from localhost (unknown [IPv6:2600:3c01:e000:21:21:21:0:100b]) (Authenticated sender: vagrant@cascadia.debian.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id F16521A9C3 for <32130@debbugs.gnu.org>; Fri, 13 Jul 2018 15:56:43 -0700 (PDT) Resent-To: 32130@debbugs.gnu.org Resent-From: Vagrant Cascadian Resent-Date: Fri, 13 Jul 2018 15:56:43 -0700 Resent-Message-ID: <87r2k6hhhw.fsf@aikidev.net> From: Vagrant Cascadian To: Ludovic =?utf-8?Q?Court=C3=A8s?= Subject: Re: [bug#32130] [PATCH] gnu: Add electron-cash. In-Reply-To: <87lgagqfh3.fsf@gnu.org> References: <87d0vtjb7a.fsf@aikidev.net> <87lgagqfh3.fsf@gnu.org> Date: Fri, 13 Jul 2018 15:55:40 -0700 Message-ID: <87tvp2hhjn.fsf@aikidev.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="==-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 32130 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: -1.0 (-) --==-=-= Content-Type: multipart/mixed; boundary="=-=-=" --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 2018-07-12, Ludovic Court=C3=A8s wrote: > Vagrant Cascadian skribis: > >> * gnu/packages/finance.scm (electron-cash): New variable. ... > This seems to be pretty much the same thing as =E2=80=98electrum=E2=80=99= . Should we > define it as: > > (package > (inherit electrum) > (name "electron-cash") > =E2=80=A6) Updated patch attached inheriting from electrum. live well, vagrant --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=electron-cash-3.3-v2.patch Content-Transfer-Encoding: quoted-printable From=209e655d9cb2898b3ccdf2350b49ab75e6e542c297 Mon Sep 17 00:00:00 2001 From: Vagrant Cascadian Date: Fri, 13 Jul 2018 22:39:16 +0000 Subject: [PATCH] gnu: Add electron-cash. * gnu/packages/finance.scm (electron-cash): New variable. =2D-- gnu/packages/finance.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index 1d3e6a7a6..29bf3040e 100644 =2D-- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -329,6 +329,37 @@ generation from a seed. Your secret keys are encrypte= d and are never sent to other machines/servers. Electrum does not download the Bitcoin blockchain= .") (license license:expat))) =20 +(define-public electron-cash + (package + (inherit electrum) + (name "electron-cash") + (version "3.3") + (source + (origin + (method url-fetch) + (uri (string-append "https://electroncash.org/downloads/" + version + "/win-linux/ElectronCash-" + version + ".tar.gz")) + (sha256 + (base32 + "1x487hyacdm1qhik1mhfimr4jwcwz7sgsbkh11awrb6j19sxdxym")) + (modules '((guix build utils))) + (snippet + '(begin + ;; Delete the bundled dependencies. + (delete-file-recursively "packages") + #t)))) + (home-page "https://electroncash.org/") + (synopsis "Bitcoin Cash wallet") + (description + "Electroncash is a lightweight Bitcoin Cash client, based on a client= -server +protocol. It supports Simple Payment Verification (SPV) and deterministic= key +generation from a seed. Your secret keys are encrypted and are never sent= to +other machines/servers. Electroncash does not download the Bitcoin Cash b= lockchain.") + (license license:expat))) + (define-public monero ;; This package bundles easylogging++ and lmdb. ;; The bundled easylogging++ is modified, and the changes will not be up= streamed. =2D-=20 2.18.0 --=-=-=-- --==-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEcDardHbDotegGFCHt4uC1IFLkbYFAltJLfgACgkQt4uC1IFL kbb/0g/+LRImsivBpTb5rf9s/rBgus2wBOWg1G8mrSTGOOYCXJgFYcKSQ2MwEl6j quSLdn+Adkpkqe6EyL0Nz8dSh7av8XEnc+WyzbttRvx9xkfg8mCwPa+i8Umca60C wFlV4wfFbyYhTDd1V9R5vkPBKlsy3iOpTzEmItYeUl85mBjfB9UTwWqYwfx0OHfA XvVOPbvmd1dr9+JU7oNjMQHAPoD7VQ1qBUVHC6sNG9QsKc1Sh2Sdoh9P3Psd2mS6 1EIrgHEllPRtWGvbZ8+nW7buoTC1f7JIJkcKGgP0wfq99XsK/3EVaBUa9GjqY1j6 W0GZbWozoECr+h+0DlWOShCP8lPGelWALqrRohdxNKs8nDdjs+UFPMxcOMvrB/tM +ST8JvMiGVj4GQw9R1ErYIt3c1IiVtB4qkyjErIyR90iMSpSHiMtfVcbMjB+2CCk O6PoZmbYqvvh7LNGR7cvYzgpQOEqPkVlDyeE/rVG9tY1LQtT28KlkojL79N1fov5 cqMW4R4tcIimz4RtXWP3Xb01MyVw11h7nwQc6sTv5mVSyBWGtrSGtuetHBoL/jIO pY5qUz574V1CxQpriJc9ir7XgyWpS3M0WdxfUgdgMFp9tWyD3znLtagsIlrMksbr B6w2UZyfSbhuHb6vSiAFmSUh7Otk7ZnIa6V2j6V+wChCM12iK5M= =N06F -----END PGP SIGNATURE----- --==-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Mon Jul 16 09:36:37 2018 Received: (at 32130-done) by debbugs.gnu.org; 16 Jul 2018 13:36:37 +0000 Received: from localhost ([127.0.0.1]:42390 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ff3g5-0005es-Gc for submit@debbugs.gnu.org; Mon, 16 Jul 2018 09:36:37 -0400 Received: from eggs.gnu.org ([208.118.235.92]:36775) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ff3g3-0005eg-Gd for 32130-done@debbugs.gnu.org; Mon, 16 Jul 2018 09:36:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ff3fv-0003vF-Ba for 32130-done@debbugs.gnu.org; Mon, 16 Jul 2018 09:36:30 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:45846) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ff3fv-0003vA-6o; Mon, 16 Jul 2018 09:36:27 -0400 Received: from [193.50.110.117] (port=44266 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1ff3fu-00048Y-O5; Mon, 16 Jul 2018 09:36:27 -0400 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) To: Vagrant Cascadian Subject: Re: [bug#32130] [PATCH] gnu: Add electron-cash. References: <87d0vtjb7a.fsf@aikidev.net> <87lgagqfh3.fsf@gnu.org> <87tvp2hhjn.fsf@aikidev.net> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 28 Messidor an 226 de la =?utf-8?Q?R=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-pc-linux-gnu Date: Mon, 16 Jul 2018 15:36:25 +0200 In-Reply-To: <87tvp2hhjn.fsf@aikidev.net> (Vagrant Cascadian's message of "Fri, 13 Jul 2018 15:55:40 -0700") Message-ID: <87in5fuwti.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 32130-done Cc: 32130-done@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: -6.0 (------) Vagrant Cascadian skribis: > From 9e655d9cb2898b3ccdf2350b49ab75e6e542c297 Mon Sep 17 00:00:00 2001 > From: Vagrant Cascadian > Date: Fri, 13 Jul 2018 22:39:16 +0000 > Subject: [PATCH] gnu: Add electron-cash. > > * gnu/packages/finance.scm (electron-cash): New variable. Applied, thanks! Ludo'. From unknown Fri Jun 20 05:25:45 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 14 Aug 2018 11:24:05 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator