Hello community,

here is the log from the commit of package virt-manager for openSUSE:Factory
checked in at Mon Aug 8 15:19:42 CEST 2011.



--------
--- virt-manager/virt-manager.changes   2011-07-09 00:29:49.000000000 +0200
+++ /mounts/work_src_done/STABLE/virt-manager/virt-manager.changes      
2011-08-05 22:38:25.000000000 +0200
@@ -1,0 +2,17 @@
+Wed Jul 20 09:02:38 MDT 2011 - carn...@novell.com
+
+- Fix gconf_schemas_prereq in virt-manager.spec file
+
+-------------------------------------------------------------------
+Mon Jul 18 15:27:22 MDT 2011 - carn...@novell.com
+
+- KVM: Add support for the qed file format
+
+-------------------------------------------------------------------
+Fri Jul 15 15:44:31 MDT 2011 - carn...@novell.com
+
+- KVM now supports the eepro100.  Add support in virt-manager for 
+  this nic 
+  virtman-eepro100.diff
+
+-------------------------------------------------------------------
@@ -128,0 +146,6 @@
+
+-------------------------------------------------------------------
+Wed May  5 09:29:36 MDT 2010 - carn...@novell.com
+
+- bnc#602775 - An icon lost in "virt-manager"
+  virtman-icon.diff

calling whatdependson for head-i586


New:
----
  virtman-eepro100.diff
  virtman-qed.diff

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

Other differences:
------------------
++++++ virt-manager.spec ++++++
--- /var/tmp/diff_new_pack.e5dAgX/_old  2011-08-08 15:19:24.000000000 +0200
+++ /var/tmp/diff_new_pack.e5dAgX/_new  2011-08-08 15:19:24.000000000 +0200
@@ -30,7 +30,7 @@
 Name:           virt-manager
 Summary:        Virtual Machine Manager
 Version:        0.8.7
-Release:        3
+Release:        5
 Group:          System/Monitoring
 License:        LGPLv2.1+
 Url:            http://virt-manager.et.redhat.com
@@ -54,6 +54,8 @@
 Patch60:        virtman-device-flags.diff
 Patch61:        virtman-autorestart.diff
 Patch62:        virtman-storage-pool.diff
+Patch63:        virtman-eepro100.diff
+Patch64:        virtman-qed.diff
 Patch81:        virtinst-cdrom.diff
 Patch82:        virtinst-storage-ocfs2.diff
 ExclusiveArch:  %{ix86} x86_64
@@ -153,6 +155,8 @@
 %patch60 -p1
 %patch61 -p1
 #%patch62 -p1
+%patch63 -p1
+%patch64 -p1
 pushd $RPM_BUILD_DIR/%{virtinst_name}
 %patch81 -p1
 %patch82 -p1

++++++ virtman-desktop.diff ++++++
--- /var/tmp/diff_new_pack.e5dAgX/_old  2011-08-08 15:19:25.000000000 +0200
+++ /var/tmp/diff_new_pack.e5dAgX/_new  2011-08-08 15:19:25.000000000 +0200
@@ -31,9 +31,10 @@
 @@ -1,9 +1,19 @@
  [Desktop Entry]
  _Name=Virtual Machine Manager
- _Comment=Manage virtual machines
+-_Comment=Manage virtual machines
 -Icon=::ICONDIR::/::PACKAGE::-icon.svg
 -Exec=::PACKAGE::
++_Comment=Manage Virtual Machines for Xen and KVM
 +Version=1.0
 +Icon=yast-vm-management
 +Exec=/usr/bin/virt-manager

++++++ virtman-eepro100.diff ++++++
Index: virt-manager-0.8.7/src/virtManager/uihelpers.py
===================================================================
--- virt-manager-0.8.7.orig/src/virtManager/uihelpers.py
+++ virt-manager-0.8.7/src/virtManager/uihelpers.py
@@ -215,6 +215,7 @@ def populate_netmodel_combo(vm, combo):
     if vm.is_hvm():
         mod_list = ["rtl8139", "ne2k_pci", "pcnet", "e1000"]
         if vm.get_hv_type() == "kvm":
+            mod_list.append("eepro100")
             mod_list.append("virtio")
         if vm.get_hv_type() == "xen":
             mod_list.append("netfront")
++++++ virtman-qed.diff ++++++
Index: virt-manager-0.8.7/src/virtManager/uihelpers.py
===================================================================
--- virt-manager-0.8.7.orig/src/virtManager/uihelpers.py
+++ virt-manager-0.8.7/src/virtManager/uihelpers.py
@@ -280,13 +280,16 @@ def build_vnc_keymap_combo(vm, combo, no
 #####################################
 
 def build_storage_format_combo(vm, combo):
-    ignore = vm
     dev_model = gtk.ListStore(str)
     combo.set_model(dev_model)
     combo.set_text_column(0)
 
-    for m in ["raw", "qcow2", "vmdk"]:
-        dev_model.append([m])
+    if vm.get_connection().is_xen():
+        for m in ["raw", "qcow2", "vmdk"]:
+            dev_model.append([m])
+    else:
+        for m in ["raw", "qcow2", "qed", "vmdk"]:
+            dev_model.append([m])
 
     combo.set_active(0)
 

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



Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to