2014-10-29 18:03:15 +01:00
|
|
|
Index: virt-manager-1.1.0/virtManager/config.py
|
2014-10-20 19:26:18 +02:00
|
|
|
===================================================================
|
2014-10-29 18:03:15 +01:00
|
|
|
--- virt-manager-1.1.0.orig/virtManager/config.py
|
|
|
|
+++ virt-manager-1.1.0/virtManager/config.py
|
|
|
|
@@ -20,8 +20,10 @@
|
|
|
|
import os
|
2014-10-20 19:26:18 +02:00
|
|
|
import logging
|
|
|
|
|
|
|
|
+import gi
|
|
|
|
from gi.repository import Gio
|
|
|
|
from gi.repository import GLib
|
|
|
|
+gi.require_version('Gtk', '3.0')
|
|
|
|
from gi.repository import Gtk
|
|
|
|
|
2014-10-29 18:03:15 +01:00
|
|
|
from virtinst import CPU
|
|
|
|
Index: virt-manager-1.1.0/virtManager/console.py
|
2014-10-20 19:26:18 +02:00
|
|
|
===================================================================
|
2014-10-29 18:03:15 +01:00
|
|
|
--- virt-manager-1.1.0.orig/virtManager/console.py
|
|
|
|
+++ virt-manager-1.1.0/virtManager/console.py
|
|
|
|
@@ -20,10 +20,13 @@
|
|
|
|
# MA 02110-1301 USA.
|
2014-10-20 19:26:18 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
+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
|
2014-10-21 05:16:40 +02:00
|
|
|
+gi.require_version('SpiceClientGtk', '3.0')
|
2014-10-20 19:26:18 +02:00
|
|
|
from gi.repository import SpiceClientGtk
|
|
|
|
from gi.repository import SpiceClientGLib
|
2014-10-29 18:03:15 +01:00
|
|
|
|