Hello community,

here is the log from the commit of package python-virtinst for openSUSE:12.3 
checked in at 2013-02-05 11:20:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:12.3/python-virtinst (Old)
 and      /work/SRC/openSUSE:12.3/.python-virtinst.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-virtinst", Maintainer is "carn...@suse.com"

Changes:
--------
--- /work/SRC/openSUSE:12.3/python-virtinst/python-virtinst.changes     
2013-01-31 01:35:27.000000000 +0100
+++ /work/SRC/openSUSE:12.3/.python-virtinst.new/python-virtinst.changes        
2013-02-05 11:20:05.000000000 +0100
@@ -1,0 +2,8 @@
+Thu Jan 31 15:32:00 MST 2013 - carn...@suse.com
+
+- fate##314135: Support PVSCSI on XEN and VirtioSCSI on KVM -
+  Implement pass through block device
+- fate##313076: HBA passthrough for kvm
+  virtinst-git-lun.diff
+
+-------------------------------------------------------------------

New:
----
  virtinst-git-lun.diff

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

Other differences:
------------------
++++++ python-virtinst.spec ++++++
--- /var/tmp/diff_new_pack.btQBIP/_old  2013-02-05 11:20:06.000000000 +0100
+++ /var/tmp/diff_new_pack.btQBIP/_new  2013-02-05 11:20:06.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-virtinst
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -40,6 +40,7 @@
 Version:        0.600.3
 Release:        0
 Source0:        %{appname}-%{version}.tar.bz2
+Patch0:         virtinst-git-lun.diff
 Patch10:        virtinst-cdrom.diff
 Patch12:        virtinst-storage-ocfs2.diff
 Patch13:        virtinst-qed.diff
@@ -75,6 +76,7 @@
 
 %prep
 %setup -q -n %{appname}-%{version}
+%patch0 -p1
 %patch10 -p1
 %patch12 -p1
 %patch13 -p1

++++++ virtinst-add-cache-modes.diff ++++++
--- /var/tmp/diff_new_pack.btQBIP/_old  2013-02-05 11:20:06.000000000 +0100
+++ /var/tmp/diff_new_pack.btQBIP/_new  2013-02-05 11:20:06.000000000 +0100
@@ -1,7 +1,7 @@
-Index: virtinst-0.600.2/virtinst/VirtualDisk.py
+Index: virtinst-0.600.3/virtinst/VirtualDisk.py
 ===================================================================
---- virtinst-0.600.2.orig/virtinst/VirtualDisk.py
-+++ virtinst-0.600.2/virtinst/VirtualDisk.py
+--- virtinst-0.600.3.orig/virtinst/VirtualDisk.py
++++ virtinst-0.600.3/virtinst/VirtualDisk.py
 @@ -301,10 +301,13 @@ class VirtualDisk(VirtualDevice):
      driver_types = [DRIVER_TAP_RAW, DRIVER_TAP_QCOW,
          DRIVER_TAP_QED, DRIVER_TAP_VMDK, DRIVER_TAP_VDISK]
@@ -17,7 +17,7 @@
          CACHE_MODE_WRITEBACK]
  
      DEVICE_DISK = "disk"
-@@ -585,7 +588,7 @@ class VirtualDisk(VirtualDevice):
+@@ -586,7 +589,7 @@ class VirtualDisk(VirtualDevice):
          @type bus: C{str}
          @param shareable: If disk can be shared among VMs
          @type shareable: C{bool}

++++++ virtinst-cdrom.diff ++++++
--- /var/tmp/diff_new_pack.btQBIP/_old  2013-02-05 11:20:06.000000000 +0100
+++ /var/tmp/diff_new_pack.btQBIP/_new  2013-02-05 11:20:06.000000000 +0100
@@ -1,8 +1,8 @@
-Index: virtinst-0.600.2/virtinst/VirtualDisk.py
+Index: virtinst-0.600.3/virtinst/VirtualDisk.py
 ===================================================================
---- virtinst-0.600.2.orig/virtinst/VirtualDisk.py
-+++ virtinst-0.600.2/virtinst/VirtualDisk.py
-@@ -1735,7 +1735,7 @@ class VirtualDisk(VirtualDevice):
+--- virtinst-0.600.3.orig/virtinst/VirtualDisk.py
++++ virtinst-0.600.3/virtinst/VirtualDisk.py
+@@ -1736,7 +1736,7 @@ class VirtualDisk(VirtualDevice):
          if maxnode > (26 * 26 * 26):
              raise RuntimeError("maxnode value is too high")
  
@@ -11,7 +11,7 @@
          for i in range(1, maxnode + 1):
              gen_t = prefix
  
-@@ -1761,8 +1761,14 @@ class VirtualDisk(VirtualDevice):
+@@ -1762,8 +1762,14 @@ class VirtualDisk(VirtualDevice):
              if gen_t in except_targets:
                  continue
              if gen_t not in skip_targets:

++++++ virtinst-git-lun.diff ++++++

Subject: Introduce device type 'lun'
From: Chen Hanxiao chenhanx...@cn.fujitsu.com Tue Dec 11 17:07:59 2012 +0800
Date: Fri Dec 14 19:23:01 2012 -0500:
Git: a52591410065db25617c4de2e722896b644cd8ef

 Supporting SG_IO commands pass though,
 introduce a new device type 'lun'
 to keep pace with libvirt.

(crobinso: Add Chen to AUTHORS, whitespace tweak)

Signed-off-by: Chen Hanxiao <chenhanx...@cn.fujitsu.com>

Index: virtinst-0.600.3/AUTHORS
===================================================================
--- virtinst-0.600.3.orig/AUTHORS
+++ virtinst-0.600.3/AUTHORS
@@ -65,6 +65,7 @@ Patches also received from
     Guannan Ren <gren-at-redhat-dot-com>
     Qing Lin <qinglbj-at-linux-dot-vnet-dot-ibm-dot-com>
     Yuri Chornoivan <yurchor-at-ukr-dot-net>
+    Chen Hanxiao <chenhanxiao-at-cn-dot-fujitsu-dot-com>
 
     ...send patches and get your name here...
 
Index: virtinst-0.600.3/virtinst/VirtualDisk.py
===================================================================
--- virtinst-0.600.3.orig/virtinst/VirtualDisk.py
+++ virtinst-0.600.3/virtinst/VirtualDisk.py
@@ -307,9 +307,10 @@ class VirtualDisk(VirtualDevice):
         CACHE_MODE_WRITEBACK]
 
     DEVICE_DISK = "disk"
+    DEVICE_LUN = "lun"
     DEVICE_CDROM = "cdrom"
     DEVICE_FLOPPY = "floppy"
-    devices = [DEVICE_DISK, DEVICE_CDROM, DEVICE_FLOPPY]
+    devices = [DEVICE_DISK, DEVICE_LUN, DEVICE_CDROM, DEVICE_FLOPPY]
 
     TYPE_FILE = "file"
     TYPE_BLOCK = "block"
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to