Hello community,

here is the log from the commit of package virt-manager for openSUSE:Factory 
checked in at 2014-10-25 08:33:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/virt-manager (Old)
 and      /work/SRC/openSUSE:Factory/.virt-manager.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "virt-manager"

Changes:
--------
--- /work/SRC/openSUSE:Factory/virt-manager/virt-manager.changes        
2014-10-11 19:27:22.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.virt-manager.new/virt-manager.changes   
2014-10-25 08:33:24.000000000 +0200
@@ -1,0 +2,9 @@
+Mon Oct 20 06:40:47 UTC 2014 - [email protected]
+
+- Add virt-manager-Gtk-30.patch: Specify in the code that we expect
+  Gtk 3.0 typelibs. The sumbold typelib(Gtk), as auto-detected by
+  go-find-deps, is provided by Gtk2 and Gtk3. As we also pull in
+  Vte, though, we are certain that we DO require the Gtk 3.0
+  variant (boo#901869).
+
+-------------------------------------------------------------------

New:
----
  virt-manager-Gtk-30.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ virt-manager.spec ++++++
--- /var/tmp/diff_new_pack.b9w5Ql/_old  2014-10-25 08:33:25.000000000 +0200
+++ /var/tmp/diff_new_pack.b9w5Ql/_new  2014-10-25 08:33:25.000000000 +0200
@@ -129,6 +129,7 @@
 Patch165:       virtinst-nfs-install-sanitize.patch
 Patch166:       virtinst-ppc64le.patch
 Patch167:       virtinst-ignore-error-403-on-directories.patch
+Patch168:       virt-manager-Gtk-30.patch
 BuildArch:      noarch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
@@ -300,6 +301,7 @@
 %patch165 -p1
 %patch166 -p1
 %patch167 -p1
+%patch168 -p1
 
 %build
 %if %{qemu_user}

++++++ virt-manager-Gtk-30.patch ++++++
Index: virt-manager-1.0.1/virtManager/config.py
===================================================================
--- virt-manager-1.0.1.orig/virtManager/config.py
+++ virt-manager-1.0.1/virtManager/config.py
@@ -21,8 +21,10 @@ import os
 import logging
 
 # pylint: disable=E0611
+import gi
 from gi.repository import Gio
 from gi.repository import GLib
+gi.require_version('Gtk', '3.0')
 from gi.repository import Gtk
 # pylint: enable=E0611
 
Index: virt-manager-1.0.1/virtManager/console.py
===================================================================
--- virt-manager-1.0.1.orig/virtManager/console.py
+++ virt-manager-1.0.1/virtManager/console.py
@@ -21,10 +21,13 @@
 #
 
 # pylint: disable=E0611
+import gi
 from gi.repository import GObject
 from gi.repository import Gtk
 from gi.repository import Gdk
+gi.require_version('GtkVnc', '2.0')
 from gi.repository import GtkVnc
+gi.require_version('SpiceClientGtk', '3.0')
 from gi.repository import SpiceClientGtk
 from gi.repository import SpiceClientGLib
 # pylint: enable=E0611
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to