Hello community,

here is the log from the commit of package virt-manager for openSUSE:Factory 
checked in at 2016-02-03 10:19:55
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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        
2016-01-22 01:09:12.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.virt-manager.new/virt-manager.changes   
2016-02-03 10:19:56.000000000 +0100
@@ -1,0 +2,16 @@
+Fri Jan 29 16:44:17 UTC 2016 - jfeh...@suse.com
+
+- bsc#961853 - virt-install doesn't work with option -boot uefi
+  1c221fd0-suse-ovmf-paths.patch
+
+-------------------------------------------------------------------
+Wed Jan 27 11:19:48 MST 2016 - carn...@suse.com
+
+- bsc#963692 - libvirtError: unsupported configuration: unknown
+  driver format value 'block'
+  virtinst-xen-drive-type.patch
+- bsc#963173 - virt-manager - dependencies for VNC client are not
+  met on PPC
+  virt-manager.spec
+
+-------------------------------------------------------------------

New:
----
  1c221fd0-suse-ovmf-paths.patch

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

Other differences:
------------------
++++++ virt-manager.spec ++++++
--- /var/tmp/diff_new_pack.bczobK/_old  2016-02-03 10:19:57.000000000 +0100
+++ /var/tmp/diff_new_pack.bczobK/_new  2016-02-03 10:19:57.000000000 +0100
@@ -39,6 +39,7 @@
 # Upstream Patches
 Patch1:         89c3638b-fix-detection-that-libvirtd-is-stopped.patch
 Patch2:         
eae7dc06-fix-URL-installs-when-content-length-header-missing.patch
+Patch3:         1c221fd0-suse-ovmf-paths.patch
 # SUSE Only
 Patch70:        virtman-desktop.patch
 Patch71:        virtman-kvm.patch
@@ -121,15 +122,10 @@
 Requires:       python-libxml2
 Requires:       python-urlgrabber
 Requires:       typelib(LibvirtGLib)
-%if 0%{?is_opensuse}
 BuildRequires:  gobject-introspection
-%else
-Recommends:     typelib(AppIndicator3)
-Requires:       typelib(GVnc)
-Requires:       typelib(GtkVnc)
-Requires:       typelib(Libosinfo)
-Requires:       typelib(SpiceClientGtk)
-Requires:       typelib(Vte)
+# No AppIndicator package on SLE
+%if %{?is_opensuse:0}%{!?is_opensuse:1}
+%define __requires_exclude typelib\\(AppIndicator3\\)
 %endif
 
 %description common
@@ -161,6 +157,7 @@
 # Upstream Patches
 %patch1 -p1
 %patch2 -p1
+%patch3 -p1
 # SUSE Only
 %patch70 -p1
 %patch71 -p1

++++++ 1c221fd0-suse-ovmf-paths.patch ++++++
commit 1c221fd0349b993e8ee2eabbf227239d6e989d90
Author: Jim Fehlig <jfeh...@suse.com>
Date:   Wed Jan 27 19:51:32 2016 -0700

    virtinst: Support paths to SUSE OVMF firmwares
    
    Extend the domcapabilities regex to include SUSE's OVMF
    file naming convention.
    
    Signed-off-by: Jim Fehlig <jfeh...@suse.com>

Index: virt-manager-1.3.2/virtinst/domcapabilities.py
===================================================================
--- virt-manager-1.3.2.orig/virtinst/domcapabilities.py
+++ virt-manager-1.3.2/virtinst/domcapabilities.py
@@ -101,6 +101,7 @@ class DomainCapabilities(XMLBuilder):
         "x86_64": [
             ".*OVMF_CODE\.fd",  # RHEL
             ".*ovmf-x64/OVMF.*\.fd",  # gerd's firmware repo
+            ".*ovmf-x86_64-.*", # SUSE
         ],
         "aarch64": [
             ".*AAVMF_CODE\.fd",  # RHEL
++++++ virtinst-xen-drive-type.patch ++++++
--- /var/tmp/diff_new_pack.bczobK/_old  2016-02-03 10:19:57.000000000 +0100
+++ /var/tmp/diff_new_pack.bczobK/_new  2016-02-03 10:19:57.000000000 +0100
@@ -2,15 +2,17 @@
 Virt-manager on Xen doesn't fill in any type thereby defaulting to
 'raw'. This patch will generate the correct XML on Xen.
 
-Index: virt-manager-1.3.0/virtinst/devicedisk.py
+Index: virt-manager-1.3.2/virtinst/devicedisk.py
 ===================================================================
---- virt-manager-1.3.0.orig/virtinst/devicedisk.py
-+++ virt-manager-1.3.0/virtinst/devicedisk.py
-@@ -557,6 +557,8 @@ class VirtualDisk(VirtualDevice):
+--- virt-manager-1.3.2.orig/virtinst/devicedisk.py
++++ virt-manager-1.3.2/virtinst/devicedisk.py
+@@ -557,6 +557,10 @@ class VirtualDisk(VirtualDevice):
          http://lists.gnu.org/archive/html/qemu-devel/2008-04/msg00675.html
          """
          if self.driver_name != self.DRIVER_NAME_QEMU:
-+            if self.driver_name and self.type != 'file':
++            if self.driver_name and \
++               self.driver_name != self.DRIVER_NAME_PHY and \
++               self.type != 'file':
 +                return self.type
              return None
  

++++++ virtinst-xenbus-disk-index-fix.patch ++++++
--- /var/tmp/diff_new_pack.bczobK/_old  2016-02-03 10:19:57.000000000 +0100
+++ /var/tmp/diff_new_pack.bczobK/_new  2016-02-03 10:19:57.000000000 +0100
@@ -6,11 +6,11 @@
 passed to qemu where it error'ed out with the disks having the same
 index (in this case both are 0).
 
-Index: virt-manager-1.3.0/virtinst/devicedisk.py
+Index: virt-manager-1.3.2/virtinst/devicedisk.py
 ===================================================================
---- virt-manager-1.3.0.orig/virtinst/devicedisk.py
-+++ virt-manager-1.3.0/virtinst/devicedisk.py
-@@ -976,6 +976,17 @@ class VirtualDisk(VirtualDevice):
+--- virt-manager-1.3.2.orig/virtinst/devicedisk.py
++++ virt-manager-1.3.2/virtinst/devicedisk.py
+@@ -978,6 +978,17 @@ class VirtualDisk(VirtualDevice):
          @rtype C{str}
          """
          prefix, maxnode = self.get_target_prefix(skip_targets)
@@ -28,7 +28,7 @@
          skip_targets = [t for t in skip_targets if t and t.startswith(prefix)]
          skip_targets.sort()
  
-@@ -989,7 +1000,12 @@ class VirtualDisk(VirtualDevice):
+@@ -991,7 +1002,12 @@ class VirtualDisk(VirtualDevice):
                  ran = range(pref_ctrl * 7, (pref_ctrl + 1) * 7)
  
              for i in ran:


Reply via email to