Hello community,

here is the log from the commit of package virt-manager for openSUSE:Factory 
checked in at 2015-04-02 16:04:51
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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        
2015-01-24 22:20:31.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.virt-manager.new/virt-manager.changes   
2015-04-02 16:04:52.000000000 +0200
@@ -1,0 +2,16 @@
+Thu Feb 26 10:39:17 UTC 2015 - [email protected]
+
+- virtman-allow-creating-i686-vm.patch: Allow creating i686 VM on x86_64
+  (bsc#919692)
+
+-------------------------------------------------------------------
+Wed Feb 25 14:10:15 MST 2015 - [email protected]
+
+- Revert the last commit 
+
+-------------------------------------------------------------------
+Tue Feb 24 16:30:03 UTC 2015 - [email protected]
+
+- virtman-allow-creating-i686-vm.patch: Allow creating i686 VM on x86_64
+
+-------------------------------------------------------------------

New:
----
  virtman-allow-creating-i686-vm.patch

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

Other differences:
------------------
++++++ virt-manager.spec ++++++
--- /var/tmp/diff_new_pack.vYmFFz/_old  2015-04-02 16:04:53.000000000 +0200
+++ /var/tmp/diff_new_pack.vYmFFz/_new  2015-04-02 16:04:53.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package virt-manager
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -84,6 +84,7 @@
 Patch160:       virtinst-ignore-error-403-on-directories.patch
 Patch161:       virt-manager-Gtk-30.patch
 Patch162:       activate-default-console.patch
+Patch163:       virtman-allow-creating-i686-vm.patch
 BuildArch:      noarch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
@@ -210,6 +211,7 @@
 %patch160 -p1
 %patch161 -p1
 %patch162 -p1
+%patch163 -p1
 
 %build
 %if %{qemu_user}

++++++ virtman-allow-creating-i686-vm.patch ++++++
Index: virt-manager-1.1.0/virtManager/create.py
===================================================================
--- virt-manager-1.1.0.orig/virtManager/create.py
+++ virt-manager-1.1.0/virtManager/create.py
@@ -694,11 +694,6 @@ class vmmCreate(vmmGObjectUI):
         for guest in self.conn.caps.guests:
             if guest.os_type == self.capsguest.os_type:
                 archs.append(guest.arch)
-
-        # Combine x86/i686 to avoid confusion
-        if (self.conn.caps.host.cpu.arch == "x86_64" and
-            "x86_64" in archs and "i686" in archs):
-            archs.remove("i686")
         archs.sort()
 
         prios = ["x86_64", "i686", "armv7l", "ppc64", "s390x"]

Reply via email to