Rebased to version 1.5.0
python3 prep work (Radostin Stoyanov, Cole Robinson, Cédric Bosdonnat) Switch --location ISO to use isoinfo (Andrew Wong) virt-install: add --cpu numa distance handling (Menno Lageman) virt-install: fix --disk for rbd volumes with auth (Rauno Väli) virt-install: add --cputune vcpupin handling (Wim ten Have) details ui: Showing attached scsi devices per controller (Lin Ma) network ui: Show details about SR-IOV VF pool (Lin Ma) Greatly expand UI test suite coverage
This commit is contained in:
parent
3ac0722bb6
commit
a07c8142b9
@ -1,34 +0,0 @@
|
|||||||
From: Cole Robinson <crobinso@redhat.com>
|
|
||||||
Date: Fri, 27 Oct 2017 09:42:54 +0200
|
|
||||||
Subject: [PATCH virt-manager] devicepanic: Don't return empty model list (bz
|
|
||||||
#1505532)
|
|
||||||
|
|
||||||
Callers don't expect it, and it breaks opening the addhardware dialog
|
|
||||||
for aarch64 VMs
|
|
||||||
|
|
||||||
https://bugzilla.redhat.com/show_bug.cgi?id=1505532
|
|
||||||
(cherry picked from commit f7c8cf9f667f2b0122f5689009d74c94c38c7316)
|
|
||||||
---
|
|
||||||
virtinst/devicepanic.py | 5 +++--
|
|
||||||
1 file changed, 3 insertions(+), 2 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/virtinst/devicepanic.py b/virtinst/devicepanic.py
|
|
||||||
index 63a88f71..9f44e93e 100644
|
|
||||||
--- a/virtinst/devicepanic.py
|
|
||||||
+++ b/virtinst/devicepanic.py
|
|
||||||
@@ -49,12 +49,13 @@ class VirtualPanicDevice(VirtualDevice):
|
|
||||||
@staticmethod
|
|
||||||
def get_models(os):
|
|
||||||
if os.is_x86():
|
|
||||||
- return [VirtualPanicDevice.MODEL_ISA, VirtualPanicDevice.MODEL_HYPERV]
|
|
||||||
+ return [VirtualPanicDevice.MODEL_ISA,
|
|
||||||
+ VirtualPanicDevice.MODEL_HYPERV]
|
|
||||||
elif os.is_pseries():
|
|
||||||
return [VirtualPanicDevice.MODEL_PSERIES]
|
|
||||||
elif os.is_s390x():
|
|
||||||
return [VirtualPanicDevice.MODEL_S390]
|
|
||||||
- return None
|
|
||||||
+ return []
|
|
||||||
|
|
||||||
@staticmethod
|
|
||||||
def get_default_model(os):
|
|
@ -19,8 +19,8 @@
|
|||||||
# End local config
|
# End local config
|
||||||
|
|
||||||
Name: virt-manager
|
Name: virt-manager
|
||||||
Version: 1.4.3
|
Version: 1.5.0
|
||||||
Release: 3%{?dist}
|
Release: 1%{?dist}
|
||||||
%global verrel %{version}-%{release}
|
%global verrel %{version}-%{release}
|
||||||
|
|
||||||
Summary: Desktop tool for managing virtual machines via libvirt
|
Summary: Desktop tool for managing virtual machines via libvirt
|
||||||
@ -30,9 +30,6 @@ BuildArch: noarch
|
|||||||
URL: http://virt-manager.org/
|
URL: http://virt-manager.org/
|
||||||
Source0: http://virt-manager.org/download/sources/%{name}/%{name}-%{version}.tar.gz
|
Source0: http://virt-manager.org/download/sources/%{name}/%{name}-%{version}.tar.gz
|
||||||
|
|
||||||
# Fix 'Add Hardware' wizard for non-x86 guests (bz #1505532)
|
|
||||||
Patch0001: 0001-devicepanic-Don-t-return-empty-model-list-bz-1505532.patch
|
|
||||||
|
|
||||||
|
|
||||||
Requires: virt-manager-common = %{verrel}
|
Requires: virt-manager-common = %{verrel}
|
||||||
Requires: pygobject3
|
Requires: pygobject3
|
||||||
@ -83,6 +80,8 @@ Requires: python-ipaddr
|
|||||||
Requires: libosinfo >= 0.2.10
|
Requires: libosinfo >= 0.2.10
|
||||||
# Required for gobject-introspection infrastructure
|
# Required for gobject-introspection infrastructure
|
||||||
Requires: pygobject3-base
|
Requires: pygobject3-base
|
||||||
|
# Required for pulling files from iso media with isoinfo
|
||||||
|
Requires: genisoimage
|
||||||
|
|
||||||
%description common
|
%description common
|
||||||
Common files used by the different virt-manager interfaces, as well as
|
Common files used by the different virt-manager interfaces, as well as
|
||||||
@ -111,9 +110,6 @@ machine).
|
|||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
# Fix 'Add Hardware' wizard for non-x86 guests (bz #1505532)
|
|
||||||
%patch0001 -p1
|
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%if %{qemu_user}
|
%if %{qemu_user}
|
||||||
@ -217,6 +213,28 @@ rm %{buildroot}%{_datadir}/GConf/gsettings/org.virt-manager.virt-manager.convert
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Feb 06 2018 Cole Robinson <crobinso@redhat.com> - 1.5.0-1
|
||||||
|
- Rebased to version 1.5.0
|
||||||
|
- python3 prep work (Radostin Stoyanov, Cole Robinson, Cédric Bosdonnat)
|
||||||
|
- Switch --location ISO to use isoinfo (Andrew Wong)
|
||||||
|
- virt-install: add --cpu numa distance handling (Menno Lageman)
|
||||||
|
- virt-install: fix --disk for rbd volumes with auth (Rauno Väli)
|
||||||
|
- virt-install: add --cputune vcpupin handling (Wim ten Have)
|
||||||
|
- details ui: Showing attached scsi devices per controller (Lin Ma)
|
||||||
|
- network ui: Show details about SR-IOV VF pool (Lin Ma)
|
||||||
|
- Greatly expand UI test suite coverage
|
||||||
|
|
||||||
|
* Tue Feb 06 2018 Cole Robinson <crobinso@redhat.com> - 1.5.0-1
|
||||||
|
- Rebased to version 1.5.0
|
||||||
|
- python3 prep work (Radostin Stoyanov, Cole Robinson, Cédric Bosdonnat)
|
||||||
|
- Switch --location ISO to use isoinfo (Andrew Wong)
|
||||||
|
- virt-install: add --cpu numa distance handling (Menno Lageman)
|
||||||
|
- virt-install: fix --disk for rbd volumes with auth (Rauno Väli)
|
||||||
|
- virt-install: add --cputune vcpupin handling (Wim ten Have)
|
||||||
|
- details ui: Showing attached scsi devices per controller (Lin Ma)
|
||||||
|
- network ui: Show details about SR-IOV VF pool (Lin Ma)
|
||||||
|
- Greatly expand UI test suite coverage
|
||||||
|
|
||||||
* Fri Jan 05 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.4.3-3
|
* Fri Jan 05 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.4.3-3
|
||||||
- Remove obsolete scriptlets
|
- Remove obsolete scriptlets
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user