[Pkg-bitcoin-commits] [electrum] 01/02: Backport upstream patch fixing wallet wizard (closes: #764138).

Tristan Seligmann mithrandi at moszumanska.debian.org
Tue Jan 13 17:18:35 UTC 2015


This is an automated email from the git hooks/post-receive script.

mithrandi pushed a commit to branch master
in repository electrum.

commit 2508bc76645623dbf642749e09c5c23d24fd8262
Author: Tristan Seligmann <mithrandi at debian.org>
Date:   Tue Jan 13 14:00:39 2015 +0200

    Backport upstream patch fixing wallet wizard (closes: #764138).
---
 debian/changelog                           |  7 +++++++
 debian/patches/1002_qt_compatibility.patch | 24 ++++++++++++++++++++++++
 debian/patches/series                      |  1 +
 3 files changed, 32 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index ac7ef9a..13d0254 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+electrum (1.9.8-4) unstable; urgency=medium
+
+  [ Tristan Seligmann ]
+  * Backport upstream patch fixing wallet wizard (closes: #764138).
+
+ -- Tristan Seligmann <mithrandi at debian.org>  Tue, 13 Jan 2015 13:29:08 +0200
+
 electrum (1.9.8-3) unstable; urgency=medium
 
   * Backport upstream change to use PROTOCOL_SSL23 instead of
diff --git a/debian/patches/1002_qt_compatibility.patch b/debian/patches/1002_qt_compatibility.patch
new file mode 100644
index 0000000..15eb487
--- /dev/null
+++ b/debian/patches/1002_qt_compatibility.patch
@@ -0,0 +1,24 @@
+Description: Fix Qt usage
+ Fix an issue where the wallet creation / restoration wizard would not work
+ properly on Qt 4.11 or higher.
+Author: ThomasV
+Origin: upstream, https://github.com/spesmilo/electrum/commit/fde5dd577a221aa3c5c159b885caa3aa653b7d9c
+Bug: https://github.com/spesmilo/electrum/issues/849
+Bug-Debian: https://bugs.debian.org/764138
+Applied-Upstream: fde5dd577a221aa3c5c159b885caa3aa653b7d9c
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+Index: electrum/gui/qt/installwizard.py
+===================================================================
+--- electrum.orig/gui/qt/installwizard.py	2014-05-04 10:38:01.524676062 +0200
++++ electrum/gui/qt/installwizard.py	2015-01-13 13:22:57.566593548 +0200
+@@ -31,7 +31,8 @@
+     def set_layout(self, layout):
+         w = QWidget()
+         w.setLayout(layout)
+-        self.stack.setCurrentIndex(self.stack.addWidget(w))
++        self.stack.addWidget(w)
++        self.stack.setCurrentWidget(w)
+ 
+ 
+     def restore_or_create(self):
diff --git a/debian/patches/series b/debian/patches/series
index d331e3f..f17c3c3 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -2,3 +2,4 @@
 2001_add_tailing_semicolon.patch
 2002_dont_use_local_share.patch
 1001_use_sslv23_method.patch
+1002_qt_compatibility.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-bitcoin/electrum.git



More information about the Pkg-bitcoin-commits mailing list