From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:60053) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gl0OF-0003Ve-9c for guix-patches@gnu.org; Sat, 19 Jan 2019 18:51:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gl0OE-0000nK-6z for guix-patches@gnu.org; Sat, 19 Jan 2019 18:51:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:38874) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gl0OE-0000mo-33 for guix-patches@gnu.org; Sat, 19 Jan 2019 18:51:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gl0OD-00081V-Oi for guix-patches@gnu.org; Sat, 19 Jan 2019 18:51:01 -0500 Subject: [bug#34139] Update electrum, add python-aiohttp-socks and python-aiorpcx Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:59872) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gl0ND-0003O5-Oh for guix-patches@gnu.org; Sat, 19 Jan 2019 18:50:00 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gl0NC-00081b-Mu for guix-patches@gnu.org; Sat, 19 Jan 2019 18:49:59 -0500 Received: from cascadia.aikidev.net ([173.255.214.101]:57746) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gl0NC-0007yw-Cl for guix-patches@gnu.org; Sat, 19 Jan 2019 18:49:58 -0500 Received: from localhost (unknown [IPv6:2600:3c01:e000:21:21:21:0:100e]) (Authenticated sender: vagrant@cascadia.debian.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id 39A9D1AAC0 for ; Sat, 19 Jan 2019 15:49:55 -0800 (PST) From: Vagrant Cascadian Date: Sat, 19 Jan 2019 15:49:49 -0800 Message-ID: <87ef98nr6q.fsf@ponder> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="==-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" 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: 34139@debbugs.gnu.org --==-=-= Content-Type: multipart/mixed; boundary="=-=-=" --=-=-= Content-Type: text/plain The following patches update electrum, requring updated inputs, and two new packages, python-aiohttp-socks and python-aiorpcx. finance.scm | 8 ++++++-- python-web.scm | 45 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+), 2 deletions(-) Thanks in advance for the review! live well, vagrant --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-Add-python-aiohttp-socks.patch Content-Transfer-Encoding: quoted-printable From=203564dce5223f99397864c90a6080ad82fa4441ce Mon Sep 17 00:00:00 2001 From: Vagrant Cascadian Date: Thu, 17 Jan 2019 00:17:11 +0000 Subject: [PATCH 1/3] gnu: Add python-aiohttp-socks. * gnu/packages/python-web.scm (python-aiohttp-socks): New variable. =2D-- gnu/packages/python-web.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index af0595b36..3141600c6 100644 =2D-- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -102,6 +102,27 @@ Callback Hell. @end itemize") (license license:asl2.0))) =20 +(define-public python-aiohttp-socks +(package + (name "python-aiohttp-socks") + (version "0.2.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "aiohttp_socks" version)) + (sha256 + (base32 + "0473702jk66xrgpm28wbdgpnak4v0dh2qmdjw7ky7hf3lwwqkggf")))) + (build-system python-build-system) + (propagated-inputs + `(("python-aiohttp" ,python-aiohttp))) + (home-page + "https://github.com/romis2012/aiohttp-socks") + (synopsis "SOCKS proxy connector for aiohttp") + (description "SOCKS proxy connector for aiohttp. SOCKS4(a) and SOCKS5 are +supported.") + (license license:asl2.0))) + (define-public python-aiodns (package (name "python-aiodns") =2D-=20 2.20.1 --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0002-gnu-Add-python-aiorpcx.patch Content-Transfer-Encoding: quoted-printable From=20415058c95d1568c2677a424084d78d0f12e0eca8 Mon Sep 17 00:00:00 2001 From: Vagrant Cascadian Date: Thu, 17 Jan 2019 00:18:41 +0000 Subject: [PATCH 2/3] gnu: Add python-aiorpcx. * gnu/packages/python-web.scm (python-aiorpcx): New variable. =2D-- gnu/packages/python-web.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 3141600c6..3caba6637 100644 =2D-- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -146,6 +146,30 @@ asynchronous DNS resolutions with a synchronous lookin= g interface by using @url{https://github.com/saghul/pycares,pycares}.") (license license:expat))) =20 +(define-public python-aiorpcx +(package + (name "python-aiorpcx") + (version "0.10.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "aiorpcX" version)) + (sha256 + (base32 + "1p88k15jh0d2a18pnnbfcamsqi2bxvmmhpizmdlxfdxf8vy5ggyj")))) + (build-system python-build-system) + (propagated-inputs + `(("python-attrs" ,python-attrs))) + (home-page + "https://github.com/kyuupichan/aiorpcX") + (synopsis + "Generic async RPC implementation, including JSON-RPC") + (description + "A generic asyncio library implementation of RPC suitable for an applic= ation that is a client, server or both. + +The package includes a module with full coverage of JSON RPC versions 1.0 = and 2.0, JSON RPC protocol auto-detection, and arbitrary message framing. I= t also comes with a SOCKS proxy client.") + (license (list license:expat license:bsd-2)))) + (define-public python-falcon (package (name "python-falcon") =2D-=20 2.20.1 --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0003-gnu-electrum-Update-to-3.3.2.patch Content-Transfer-Encoding: quoted-printable From=209256c2bbea5d79b2ad827f9a570932be2b38acdb Mon Sep 17 00:00:00 2001 From: Vagrant Cascadian Date: Tue, 15 Jan 2019 04:51:34 +0000 Subject: [PATCH 3/3] gnu: electrum: Update to 3.3.2. * gnu/packages/finance.scm (electrum): Update to 3.2.2. [inputs]: Add python-aiohttp, python-aiohttp-socks, python-aiorpcx and python-certifi. =2D-- gnu/packages/finance.scm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index 468388797..293aa1f7d 100644 =2D-- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -293,7 +293,7 @@ do so.") (define-public electrum (package (name "electrum") =2D (version "3.2.2") + (version "3.3.2") (source (origin (method url-fetch) @@ -302,7 +302,7 @@ do so.") version ".tar.gz")) (sha256 (base32 =2D "1fxaxlf5vm2zydj678ls3pazyriym188iwzk60kyk26cz2p3xk39")) + "0vgfdhwvrrl6dr4rd4hhxr8304bxm00sh7fw4nalm4hf7gfsbcji")) (modules '((guix build utils))) (snippet '(begin @@ -320,6 +320,10 @@ do so.") ("python-requests" ,python-requests) ("python-qrcode" ,python-qrcode) ("python-protobuf" ,python-protobuf) + ("python-aiohttp" ,python-aiohttp) + ("python-aiohttp-socks" ,python-aiohttp-socks) + ("python-aiorpcx" ,python-aiorpcx) + ("python-certifi" ,python-certifi) ("python-dnspython" ,python-dnspython) ("python-jsonrpclib-pelix" ,python-jsonrpclib-pelix))) (arguments =2D-=20 2.20.1 --=-=-=-- --==-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEARYKAB0WIQRlgHNhO/zFx+LkXUXcUY/If5cWqgUCXEO3ngAKCRDcUY/If5cW qp6qAP0ZrwX7GYv+ZXkINGlQZISdSYuI7wQlVTWqYQOvmKJhawEAp7hi1hqaR73l wCnrZPy4iSiUGt3C+jNiCuXFfdkNewA= =qB0G -----END PGP SIGNATURE----- --==-=-=--