287c87ccd9
'virtio1.0-input' 1d2cd306-Fix-incorrect-usage-of-virtio-input.patch - bsc#1005848 - KVM: guest can not be started on top of SLES12SP1 KVM host ppc64 5a11cf07-virt-manager-generates-invalid-guest-XML.patch - Upstream bug fixes 617b9271-dont-return-virtio1.0-net-as-valid-device-name.patch 7962672c-fix-error-checking-extra_args.patch b4858842-fix-bad-version-check-regression.patch f07a3021-fix-wait-to-behave-like-noautoconsole.patch - bsc#1005861 - virt-manager create new machine dialog box too small to display system type virtinst-expand-combobox.patch - fate#314135: Support PVSCSI on XEN and VirtioSCSI on KVM - - fate#313076: HBA passthrough for kvm OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=338
24 lines
1016 B
Diff
24 lines
1016 B
Diff
Subject: virtinst: fix bad version check regression from 55327c81b7
|
|
From: Marc-André Lureau marcandre.lureau@redhat.com Wed Nov 9 11:21:32 2016 +0400
|
|
Date: Mon Nov 14 09:03:30 2016 +0100:
|
|
Git: b4858842f9e2f4f39ca81ad596fb777d11537a0f
|
|
|
|
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
|
|
|
|
Index: virt-manager-1.4.0/virtinst/support.py
|
|
===================================================================
|
|
--- virt-manager-1.4.0.orig/virtinst/support.py
|
|
+++ virt-manager-1.4.0/virtinst/support.py
|
|
@@ -312,9 +312,9 @@ SUPPORT_CONN_MEM_STATS_PERIOD = _make(
|
|
function="virDomain.setMemoryStatsPeriod",
|
|
version="1.1.1", hv_version={"qemu": 0})
|
|
SUPPORT_CONN_SPICE_GL = _make(version="1.3.3",
|
|
- hv_version={"qemu": "2.7.92", "test": 0})
|
|
+ hv_version={"qemu": "2.6.0", "test": 0})
|
|
SUPPORT_CONN_VIDEO_VIRTIO_ACCEL3D = _make(version="1.3.0",
|
|
- hv_version={"qemu": "2.7.0", "test": 0})
|
|
+ hv_version={"qemu": "2.5.0", "test": 0})
|
|
SUPPORT_CONN_GRAPHICS_LISTEN_NONE = _make(version="2.0.0")
|
|
|
|
|