Hello community, here is the log from the commit of package gnome-tweak-tool for openSUSE:Factory checked in at 2013-10-23 10:08:01 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnome-tweak-tool (Old) and /work/SRC/openSUSE:Factory/.gnome-tweak-tool.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-tweak-tool" Changes: -------- --- /work/SRC/openSUSE:Factory/gnome-tweak-tool/gnome-tweak-tool.changes 2013-09-27 17:30:41.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.gnome-tweak-tool.new/gnome-tweak-tool.changes 2013-10-23 10:08:04.000000000 +0200 @@ -1,0 +2,6 @@ +Tue Oct 22 07:28:34 UTC 2013 - [email protected] + +- Add gnome-tweak-tool-threading-crashes.patch: Fix crashes due to + threading locks (bnc#846754, bgo#710530). + +------------------------------------------------------------------- New: ---- gnome-tweak-tool-threading-crashes.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnome-tweak-tool.spec ++++++ --- /var/tmp/diff_new_pack.yDznyu/_old 2013-10-23 10:08:05.000000000 +0200 +++ /var/tmp/diff_new_pack.yDznyu/_new 2013-10-23 10:08:05.000000000 +0200 @@ -25,6 +25,8 @@ Group: System/GUI/GNOME Url: http://live.gnome.org/GnomeTweakTool Source0: http://download.gnome.org/sources/gnome-tweak-tool/3.10/%{name}-%{version}.tar.xz +# PATCH-FIX-UPSTREAM gnome-tweak-tool-threading-crashes.patch bnc#846754 bgo#710530 [email protected] -- Fix crashes due to threading locks +Patch0: gnome-tweak-tool-threading-crashes.patch BuildRequires: fdupes # Needed to have typelib() Requires BuildRequires: gobject-introspection @@ -51,6 +53,7 @@ %lang_package %prep %setup -q +%patch0 -p1 translation-update-upstream %build ++++++ gnome-tweak-tool-threading-crashes.patch ++++++ Index: gnome-tweak-tool-3.10.0/gnome-tweak-tool =================================================================== --- gnome-tweak-tool-3.10.0.orig/gnome-tweak-tool +++ gnome-tweak-tool-3.10.0/gnome-tweak-tool @@ -20,6 +20,12 @@ import locale import gettext import sys +# Hack to force GIL creation +# See: https://bugzilla.gnome.org/show_bug.cgi?id=709223 +import threading +threading.Thread(target=lambda: None).start() + + import gi gi.require_version("Gtk", "3.0") -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
