Hello community,

here is the log from the commit of package virt-manager for openSUSE:Factory 
checked in at 2016-06-14 23:07:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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-05-19 12:15:11.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.virt-manager.new/virt-manager.changes   
2016-06-14 23:07:12.000000000 +0200
@@ -1,0 +2,16 @@
+Tue Jun  7 14:18:32 MDT 2016 - carn...@suse.com
+
+- bsc#983241 - Using eepro1000 emulated driver leads to 'eepro100'
+  is not a valid device model name
+  Drop virtman-eepro100.patch
+- Remove unecessary hyphen '-' from tumbleweed name
+  virtinst-fix-tumbleweed-detection.patch
+
+-------------------------------------------------------------------
+Tue Jun  7 12:14:23 UTC 2016 - mvet...@suse.com
+
+- boo#983482: Virt-Manager 1.3.2 cannot create screenshot.
+  Use upstream patch from revision f454798b337aedb881671f62fe3b25fad703b768
+- Add f454798b-virtman-fix-making-screenshot.patch
+
+-------------------------------------------------------------------

Old:
----
  virtman-eepro100.patch

New:
----
  f454798b-virtman-fix-making-screenshot.patch

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

Other differences:
------------------
++++++ virt-manager.spec ++++++
--- /var/tmp/diff_new_pack.R6XWVe/_old  2016-06-14 23:07:13.000000000 +0200
+++ /var/tmp/diff_new_pack.R6XWVe/_new  2016-06-14 23:07:13.000000000 +0200
@@ -43,6 +43,7 @@
 Patch4:         1c221fd0-suse-ovmf-paths.patch
 Patch5:         
f11eb00b-virt-convert-decompress-gz-files-before-converting.patch
 Patch6:         8ba48f52-add-virtio-device-model-and-accel3d-attribute.patch
+Patch7:         f454798b-virtman-fix-making-screenshot.patch
 # SUSE Only
 Patch70:        virtman-desktop.patch
 Patch71:        virtman-kvm.patch
@@ -53,7 +54,6 @@
 Patch76:        virtinst-pvgrub2-bootloader.patch
 Patch77:        virtinst-nfs-install-sanitize.patch
 # Features or Enhancements
-Patch100:       virtman-eepro100.patch
 Patch101:       virtman-default-guest-from-host-os.patch
 Patch102:       virtman-default-to-xen-pv.patch
 Patch103:       virtman-packages.patch
@@ -168,6 +168,7 @@
 %patch4 -p1
 %patch5 -p1
 %patch6 -p1
+%patch7 -p1
 # SUSE Only
 %patch70 -p1
 %patch71 -p1
@@ -178,7 +179,6 @@
 %patch76 -p1
 %patch77 -p1
 # Enhancements
-%patch100 -p1
 %patch101 -p1
 %patch102 -p1
 %patch103 -p1

++++++ f454798b-virtman-fix-making-screenshot.patch ++++++
>From f454798b337aedb881671f62fe3b25fad703b768 Mon Sep 17 00:00:00 2001
From: Cole Robinson <crobi...@redhat.com>
Date: Fri, 15 Jan 2016 15:07:58 -0500
Subject: [PATCH] details: Fix screenshot on F24 rawhide (bz 1297988)

---
 virtManager/details.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/virtManager/details.py b/virtManager/details.py
index 0bd2569..3dbd82f 100644
--- a/virtManager/details.py
+++ b/virtManager/details.py
@@ -1486,6 +1486,9 @@ class vmmDetails(vmmGObjectUI):
         # and future proof it a bit
         if type(ret) is tuple and len(ret) >= 2:
             ret = ret[1]
+        # F24 rawhide, ret[1] is a named tuple with a 'buffer' element...
+        if hasattr(ret, "buffer"):
+            ret = ret.buffer
 
         import datetime
         now = str(datetime.datetime.now()).split(".")[0].replace(" ", "_")
-- 
2.8.3

++++++ virtinst-fix-tumbleweed-detection.patch ++++++
--- /var/tmp/diff_new_pack.R6XWVe/_old  2016-06-14 23:07:14.000000000 +0200
+++ /var/tmp/diff_new_pack.R6XWVe/_new  2016-06-14 23:07:14.000000000 +0200
@@ -24,7 +24,7 @@
 -                self.os_variant += distro_version
 +                # Tumbleweed 8 digit date
 +                if len(version) == 8:
-+                    self.os_variant += "-tumbleweed"
++                    self.os_variant += "tumbleweed"
 +                else:
 +                    self.os_variant += distro_version
          else:


Reply via email to