[Python-apps-commits] r13157 - in packages/mypaint/trunk/debian (4 files)
vcheng at users.alioth.debian.org
vcheng at users.alioth.debian.org
Tue May 3 05:51:50 UTC 2016
Date: Tuesday, May 3, 2016 @ 05:51:49
Author: vcheng
Revision: 13157
add patch to fix startup crash, #822784
Added:
packages/mypaint/trunk/debian/patches/
packages/mypaint/trunk/debian/patches/fix-glib-2.48-startup-crash.patch
packages/mypaint/trunk/debian/patches/series
Modified:
packages/mypaint/trunk/debian/changelog
Modified: packages/mypaint/trunk/debian/changelog
===================================================================
--- packages/mypaint/trunk/debian/changelog 2016-05-03 05:46:24 UTC (rev 13156)
+++ packages/mypaint/trunk/debian/changelog 2016-05-03 05:51:49 UTC (rev 13157)
@@ -1,5 +1,7 @@
mypaint (1.2.0-2) unstable; urgency=medium
+ * Add debian/patches/fix-glib-2.48-startup-crash.patch to fix startup crash.
+ (Closes: #822784)
* Add myself to Uploaders.
* Update Standards version to 3.9.8.
Added: packages/mypaint/trunk/debian/patches/fix-glib-2.48-startup-crash.patch
===================================================================
--- packages/mypaint/trunk/debian/patches/fix-glib-2.48-startup-crash.patch (rev 0)
+++ packages/mypaint/trunk/debian/patches/fix-glib-2.48-startup-crash.patch 2016-05-03 05:51:49 UTC (rev 13157)
@@ -0,0 +1,64 @@
+From c03602f3d5456d59fccfc8ad7d41c8c6f1a6d593 Mon Sep 17 00:00:00 2001
+From: Andrew Chadwick <a.t.chadwick at gmail.com>
+Date: Sat, 2 Apr 2016 19:08:44 +0100
+Subject: [PATCH] Cherry-pick fixes for GLib 2.48 from master
+
+This commit backports the following changes from master:
+
+* dcfcffd1cbfeaa07dc9d2798fcdf713d5315d2ed
+* 11a128e801e5facb63e54dcbf626729cc15f5e84
+* a0ff39936a824f0677ce1dc075c77f0097edfae5
+
+Addresses mypaint/mypaint#634.
+---
+ lib/glib.py | 15 ++++++++++-----
+ 1 file changed, 10 insertions(+), 5 deletions(-)
+
+diff --git a/lib/glib.py b/lib/glib.py
+index 8fb203d..ca4f34b 100644
+--- a/lib/glib.py
++++ b/lib/glib.py
+@@ -1,5 +1,5 @@
+ # This file is part of MyPaint.
+-# Copyright (C) 2015 by Andrew Chadwick <a.t.chadwick at gmail.com>
++# Copyright (C) 2015-2016 by the MyPaint Development Team.
+ #
+ # This program is free software; you can redistribute it and/or modify
+ # it under the terms of the GNU General Public License as published by
+@@ -19,11 +19,12 @@
+ ## Imports
+
+ import sys
+-from logging import getLogger
+-logger = getLogger(__name__)
++import logging
+
+ from gi.repository import GLib
+
++logger = logging.getLogger(__name__)
++
+
+ ## File path getter functions
+
+@@ -35,7 +36,6 @@ def filename_to_unicode(opsysstring):
+ :returns: the converted filename
+ :rtype: unicode
+
+- >>> from gi.repository import GLib
+ >>> filename_to_unicode('/ascii/only/path')
+ u'/ascii/only/path'
+ >>> filename_to_unicode(None) is None
+@@ -54,7 +54,12 @@ def filename_to_unicode(opsysstring):
+ # Other systems are dependent in opaque ways on the environment.
+ if not isinstance(opsysstring, str):
+ raise TypeError("Argument must be bytes")
+- ustring = GLib.filename_to_utf8(opsysstring, -1, 0, 0)
++ # This function's annotation seems to vary quite a bit.
++ # See https://github.com/mypaint/mypaint/issues/634
++ try:
++ ustring, _, _ = GLib.filename_to_utf8(opsysstring, -1)
++ except TypeError:
++ ustring = GLib.filename_to_utf8(opsysstring, -1, 0, 0)
+ if ustring is None:
+ raise UnicodeDecodeError(
+ "GLib failed to convert %r to a UTF-8 string. "
Added: packages/mypaint/trunk/debian/patches/series
===================================================================
--- packages/mypaint/trunk/debian/patches/series (rev 0)
+++ packages/mypaint/trunk/debian/patches/series 2016-05-03 05:51:49 UTC (rev 13157)
@@ -0,0 +1 @@
+fix-glib-2.48-startup-crash.patch
More information about the Python-apps-commits
mailing list