GNU bug report logs - #28155
Update electrum to 2.9.3

Previous Next

Package: guix-patches;

Reported by: Carlo Zancanaro <carlo <at> zancanaro.id.au>

Date: Sun, 20 Aug 2017 05:16:02 UTC

Severity: normal

Done: Thomas Danckaert <post <at> thomasdanckaert.be>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 28155 in the body.
You can then email your comments to 28155 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#28155; Package guix-patches. (Sun, 20 Aug 2017 05:16:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Carlo Zancanaro <carlo <at> zancanaro.id.au>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sun, 20 Aug 2017 05:16:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Carlo Zancanaro <carlo <at> zancanaro.id.au>
To: guix-patches <at> gnu.org
Subject: Update electrum to 2.9.3
Date: Sun, 20 Aug 2017 15:15:15 +1000
[Message part 1 (text/plain, inline)]
Our version of electrum is somewhat out of date (from November last
year). I'm about to send through some patches to update it (which
includes adding some python dependencies).
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#28155; Package guix-patches. (Sun, 20 Aug 2017 05:42:02 GMT) Full text and rfc822 format available.

Message #8 received at 28155 <at> debbugs.gnu.org (full text, mbox):

From: Carlo Zancanaro <carlo <at> zancanaro.id.au>
To: 28155 <at> debbugs.gnu.org
Subject: [PATCH 1/3] gnu: Add python-pysocks.
Date: Sun, 20 Aug 2017 15:40:55 +1000
* gnu/packages/python.scm (python-pysocks, python2-pysocks): New variables.
---
 gnu/packages/python.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 2b3820221..d85838d3c 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -15842,3 +15842,25 @@ thread-local variable.")
 
 (define-public python2-flask-principal
   (package-with-python2 python-flask-principal))
+
+(define-public python-pysocks
+  (package
+    (name "python-pysocks")
+    (version "1.6.7")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "PySocks" version))
+       (sha256
+        (base32
+         "1krkiss578zqwcg4c8iqz1hwscwhsvy2djp3xyvps5gsgvr2j0yh"))))
+    (build-system python-build-system)
+    (arguments `(#:tests? #f))
+    (home-page "https://github.com/Anorov/PySocks")
+    (synopsis "SOCKS client module")
+    (description "@code{pysocks} is an updated and semi-actively maintained
+version of @code{SocksiPy} with bug fixes and extra features.")
+    (license license:bsd-3)))
+
+(define-public python2-pysocks
+  (package-with-python2 python-pysocks))
-- 
2.13.3





Information forwarded to guix-patches <at> gnu.org:
bug#28155; Package guix-patches. (Sun, 20 Aug 2017 05:42:02 GMT) Full text and rfc822 format available.

Message #11 received at 28155 <at> debbugs.gnu.org (full text, mbox):

From: Carlo Zancanaro <carlo <at> zancanaro.id.au>
To: 28155 <at> debbugs.gnu.org
Subject: [PATCH 2/3] gnu: Add python-pyaes.
Date: Sun, 20 Aug 2017 15:40:56 +1000
* gnu/packages/python.scm (python-pyaes, python2-pyaes): New variables.
---
 gnu/packages/python.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index d85838d3c..8785d2d7c 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -15864,3 +15864,25 @@ version of @code{SocksiPy} with bug fixes and extra features.")
 
 (define-public python2-pysocks
   (package-with-python2 python-pysocks))
+
+(define-public python-pyaes
+  (package
+    (name "python-pyaes")
+    (version "1.6.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "pyaes" version))
+       (sha256
+        (base32
+         "0bp9bjqy1n6ij1zb86wz9lqa1dhla8qr1d7w2kxyn7jbj56sbmcw"))))
+    (build-system python-build-system)
+    (home-page "https://github.com/ricmoo/pyaes")
+    (synopsis "Implementation of AES in Python")
+    (description "This package contains a pure-Python implementation of the
+AES block cipher algorithm and the common modes of operation (CBC, CFB, CTR,
+ECB and OFB).")
+    (license license:expat)))
+
+(define-public python2-pyaes
+  (package-with-python2 python-pyaes))
-- 
2.13.3





Information forwarded to guix-patches <at> gnu.org:
bug#28155; Package guix-patches. (Sun, 20 Aug 2017 05:42:02 GMT) Full text and rfc822 format available.

Message #14 received at 28155 <at> debbugs.gnu.org (full text, mbox):

From: Carlo Zancanaro <carlo <at> zancanaro.id.au>
To: 28155 <at> debbugs.gnu.org
Subject: [PATCH 3/3] gnu: electrum: Update to 2.9.3.
Date: Sun, 20 Aug 2017 15:40:57 +1000
* gnu/packages/finance.scm (electrum): Update to 2.9.3.
[inputs]: Add python2-pyaes, python2-pysocks. Remove python2-slowaes.
---
 gnu/packages/finance.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm
index 748b59c9e..6d6844fa7 100644
--- a/gnu/packages/finance.scm
+++ b/gnu/packages/finance.scm
@@ -246,7 +246,7 @@ do so.")
 (define-public electrum
   (package
     (name "electrum")
-    (version "2.7.12")
+    (version "2.9.3")
     (source
      (origin
        (method url-fetch)
@@ -255,7 +255,7 @@ do so.")
                            version ".tar.gz"))
        (sha256
         (base32
-         "0vxdfl208if7mdsnva1jg37bnay2dsz3ww157aqwcv1j6512fi1n"))
+         "0d0fzb653g7b8ka3x90nl21md4g3n1fv11czdxpdq3s9yr6js6f2"))
        (modules '((guix build utils)))
        (snippet
         '(begin
@@ -264,7 +264,8 @@ do so.")
            #t))))
     (build-system python-build-system)
     (inputs
-     `(("python-slowaes" ,python2-slowaes)
+     `(("python-pyaes" ,python2-pyaes)
+       ("python-pysocks" ,python2-pysocks)
        ("python-sip" ,python2-sip)
        ("python-pyqt" ,python2-pyqt-4)
        ("python-ecdsa" ,python2-ecdsa)
-- 
2.13.3





Information forwarded to guix-patches <at> gnu.org:
bug#28155; Package guix-patches. (Sun, 27 Aug 2017 11:09:02 GMT) Full text and rfc822 format available.

Message #17 received at 28155 <at> debbugs.gnu.org (full text, mbox):

From: Thomas Danckaert <post <at> thomasdanckaert.be>
To: Carlo Zancanaro <carlo <at> zancanaro.id.au>
Cc: 28155 <at> debbugs.gnu.org
Subject: Re: [bug#28155] Update electrum to 2.9.3
Date: Sun, 27 Aug 2017 13:08:39 +0200
Hi,

all 3 commits look good.  I'll push as soon as I've verified everything
builds on current master (takes a while due to recent core-updates
merge).

thank you!

Thomas




Information forwarded to guix-patches <at> gnu.org:
bug#28155; Package guix-patches. (Wed, 30 Aug 2017 07:29:01 GMT) Full text and rfc822 format available.

Message #20 received at 28155 <at> debbugs.gnu.org (full text, mbox):

From: Thomas Danckaert <post <at> thomasdanckaert.be>
To: Carlo Zancanaro <carlo <at> zancanaro.id.au>
Cc: 28155-done <at> debbugs.gnu.org, 28155 <at> debbugs.gnu.org
Subject: Re: [bug#28155] Update electrum to 2.9.3
Date: Wed, 30 Aug 2017 09:28:03 +0200
Pushed (commit 13035eb2d and parents).

Thomas




Reply sent to Thomas Danckaert <post <at> thomasdanckaert.be>:
You have taken responsibility. (Wed, 30 Aug 2017 07:29:02 GMT) Full text and rfc822 format available.

Notification sent to Carlo Zancanaro <carlo <at> zancanaro.id.au>:
bug acknowledged by developer. (Wed, 30 Aug 2017 07:29:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 27 Sep 2017 11:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 7 years and 265 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.