* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/speedtest-cli/files/, net-analyzer/speedtest-cli/
@ 2016-02-24 0:25 Jason Donenfeld
0 siblings, 0 replies; only message in thread
From: Jason Donenfeld @ 2016-02-24 0:25 UTC (permalink / raw
To: gentoo-commits
commit: fda9977267fc1afe379130af17048354a8fcd8a4
Author: Louis Sautier <sautier.louis <AT> gmail <DOT> com>
AuthorDate: Tue Feb 16 19:08:52 2016 +0000
Commit: Jason Donenfeld <zx2c4 <AT> gentoo <DOT> org>
CommitDate: Wed Feb 24 00:25:15 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fda99772
net-analyzer/speedtest-cli: Fix output with Python 3
Upstream will not fix this until the next release
https://github.com/sivel/speedtest-cli/pull/233
Package-Manager: portage-2.2.27
.../speedtest-cli-0.3.4-fix-unicode-py3.patch | 36 ++++++++++++++++++++++
...-0.3.4.ebuild => speedtest-cli-0.3.4-r1.ebuild} | 2 ++
2 files changed, 38 insertions(+)
diff --git a/net-analyzer/speedtest-cli/files/speedtest-cli-0.3.4-fix-unicode-py3.patch b/net-analyzer/speedtest-cli/files/speedtest-cli-0.3.4-fix-unicode-py3.patch
new file mode 100644
index 0000000..2bd809f
--- /dev/null
+++ b/net-analyzer/speedtest-cli/files/speedtest-cli-0.3.4-fix-unicode-py3.patch
@@ -0,0 +1,36 @@
+diff --git a/speedtest_cli.py b/speedtest_cli.py
+index d93d5c3..930e42b 100755
+--- a/speedtest_cli.py
++++ b/speedtest_cli.py
+@@ -108,6 +108,8 @@ except ImportError:
+ def write(data):
+ if not isinstance(data, basestring):
+ data = str(data)
++ if isinstance(data, unicode):
++ data = data.encode('utf-8', 'ignore')
+ fp.write(data)
+
+ want_unicode = False
+@@ -635,7 +637,7 @@ def speedtest():
+ line = ('%(id)4s) %(sponsor)s (%(name)s, %(country)s) '
+ '[%(d)0.2f km]' % server)
+ serverList.append(line)
+- print_('\n'.join(serverList).encode('utf-8', 'ignore'))
++ print_('\n'.join(serverList))
+ sys.exit(0)
+ else:
+ servers = closestServers(config['client'])
+@@ -703,8 +705,8 @@ def speedtest():
+ best = getBestServer(servers)
+
+ if not args.simple:
+- print_(('Hosted by %(sponsor)s (%(name)s) [%(d)0.2f km]: '
+- '%(latency)s ms' % best).encode('utf-8', 'ignore'))
++ print_('Hosted by %(sponsor)s (%(name)s) [%(d)0.2f km]: '
++ '%(latency)s ms' % best)
+ else:
+ print_('Ping: %(latency)s ms' % best)
+
+--
+2.7.1
+
diff --git a/net-analyzer/speedtest-cli/speedtest-cli-0.3.4.ebuild b/net-analyzer/speedtest-cli/speedtest-cli-0.3.4-r1.ebuild
similarity index 91%
rename from net-analyzer/speedtest-cli/speedtest-cli-0.3.4.ebuild
rename to net-analyzer/speedtest-cli/speedtest-cli-0.3.4-r1.ebuild
index a27f02d..444654d 100644
--- a/net-analyzer/speedtest-cli/speedtest-cli-0.3.4.ebuild
+++ b/net-analyzer/speedtest-cli/speedtest-cli-0.3.4-r1.ebuild
@@ -21,6 +21,8 @@ DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
DOCS=( CONTRIBUTING.md README.rst )
+PATCHES=( "${FILESDIR}/${PN}-0.3.4-fix-unicode-py3.patch" )
+
python_install_all() {
doman ${PN}.1
distutils-r1_python_install_all
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2016-02-24 0:25 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-24 0:25 [gentoo-commits] repo/gentoo:master commit in: net-analyzer/speedtest-cli/files/, net-analyzer/speedtest-cli/ Jason Donenfeld
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox