Compare commits
4 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
187a16d295 | ||
|
|
3adf2cd145 | ||
|
|
80dbffe74b | ||
|
|
d658e99288 |
5 changed files with 166 additions and 333 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1,2 +1 @@
|
|||
/virt-manager-*.tar.gz
|
||||
/virt-manager-*.tar.xz
|
||||
|
|
|
|||
|
|
@ -0,0 +1,34 @@
|
|||
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):
|
||||
|
|
@ -1,32 +0,0 @@
|
|||
From ea71cf9a8a4161ce6e19eacf5f0d86d40ab74f23 Mon Sep 17 00:00:00 2001
|
||||
Message-ID: <ea71cf9a8a4161ce6e19eacf5f0d86d40ab74f23.1767794644.git.phrdina@redhat.com>
|
||||
From: Pavel Hrdina <phrdina@redhat.com>
|
||||
Date: Mon, 29 Sep 2025 16:14:35 +0200
|
||||
Subject: [PATCH] virtinst: cloudinit: include empty meta-data file
|
||||
|
||||
Refactor creation of cloud-init config files introduced a bug where we
|
||||
stopped including empty meta-data file.
|
||||
|
||||
Introduced-by: 5b2d0997a1d2d213b17c227169da64e2fa7d09a6
|
||||
Fixes: https://github.com/virt-manager/virt-manager/issues/975
|
||||
Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
|
||||
---
|
||||
virtinst/install/cloudinit.py | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/virtinst/install/cloudinit.py b/virtinst/install/cloudinit.py
|
||||
index 3f565f399..b2378fbfa 100644
|
||||
--- a/virtinst/install/cloudinit.py
|
||||
+++ b/virtinst/install/cloudinit.py
|
||||
@@ -36,7 +36,7 @@ class _CloudInitConfig:
|
||||
def _create_file(self):
|
||||
content = self._content()
|
||||
|
||||
- if not content:
|
||||
+ if content is None:
|
||||
return None
|
||||
|
||||
fileobj = tempfile.NamedTemporaryFile(
|
||||
--
|
||||
2.52.0
|
||||
|
||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (virt-manager-5.1.0.tar.xz) = 6306500ae442a6ccb36d5f19bc26b0e32984ca145ee8d41a475e175ee4db6c0d253f0cf9d908c30e3269cf7aabdad4bbd30e84f3cd0477f233da1e43e0235e3c
|
||||
SHA512 (virt-manager-1.4.3.tar.gz) = 007f125503fc2c774beefc8047ca2c36aa7177af40d9bc78fa3448fd50d4d35abd4a1dbbf761a8cd538fdf6541eba46c2cd019ba3ff0c7e29b1944d873b74274
|
||||
|
|
|
|||
|
|
@ -1,46 +1,45 @@
|
|||
# -*- rpm-spec -*-
|
||||
|
||||
%global default_hvs "qemu,xen,lxc"
|
||||
%global have_spice %{defined fedora}
|
||||
|
||||
%global with_guestfs 0
|
||||
%global stable_defaults 0
|
||||
%global askpass_package "openssh-askpass"
|
||||
%global qemu_user "qemu"
|
||||
%global libvirt_packages "libvirt-daemon-kvm,libvirt-daemon-config-network"
|
||||
%global kvm_packages ""
|
||||
%global preferred_distros "fedora,rhel"
|
||||
%global default_hvs "qemu,xen,lxc"
|
||||
|
||||
%if 0%{?rhel}
|
||||
%global preferred_distros "rhel,fedora"
|
||||
%global stable_defaults 1
|
||||
%endif
|
||||
|
||||
|
||||
# End local config
|
||||
|
||||
Name: virt-manager
|
||||
Version: 5.1.0
|
||||
Release: 5%{?dist}
|
||||
Version: 1.4.3
|
||||
Release: 2%{?dist}
|
||||
%global verrel %{version}-%{release}
|
||||
|
||||
Summary: Desktop tool for managing virtual machines via libvirt
|
||||
License: GPL-2.0-or-later
|
||||
Group: Applications/Emulators
|
||||
License: GPLv2+
|
||||
BuildArch: noarch
|
||||
URL: https://virt-manager.org/
|
||||
Source0: https://releases.pagure.org/%{name}/%{name}-%{version}.tar.xz
|
||||
URL: http://virt-manager.org/
|
||||
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
|
||||
|
||||
Patch1: 0001-virtinst-cloudinit-include-empty-meta-data-file.patch
|
||||
|
||||
Requires: virt-manager-common = %{verrel}
|
||||
Requires: python3-gobject >= 3.31.3
|
||||
Requires: gtk3 >= 3.22.0
|
||||
Requires: pygobject3
|
||||
Requires: gtk3
|
||||
Requires: libvirt-glib >= 0.0.9
|
||||
Requires: gtk-vnc2
|
||||
%if %{have_spice}
|
||||
Requires: spice-gtk3
|
||||
%endif
|
||||
|
||||
# virt-manager is one of those apps that people will often install onto
|
||||
# a headless machine for use over SSH. This means the virt-manager dep
|
||||
# chain needs to provide everything we need to get a usable app experience.
|
||||
# Unfortunately nothing in our chain has an explicit dep on some kind
|
||||
# of usable gsettings backend, so we explicitly depend on dconf so that
|
||||
# user settings actually persist across app runs.
|
||||
#
|
||||
# That said, we skip this dep for flatpak, where dconf isn't used in
|
||||
# the runtime. gsettings defaults to ini file in that case
|
||||
%if ! 0%{?flatpak}
|
||||
Requires: dconf
|
||||
%endif
|
||||
Requires: dbus-x11
|
||||
|
||||
# The vte291 package is actually the latest vte with API version 2.91, while
|
||||
# the vte3 package is effectively a compat package with API version 2.90.
|
||||
|
|
@ -48,21 +47,19 @@ Requires: dconf
|
|||
# no ambiguity.
|
||||
Requires: vte291
|
||||
|
||||
# We can use GtkTextView, gtksourceview 3 or gtksourceview4, recommend
|
||||
# the latest one but don't make it a hard requirement
|
||||
Recommends: gtksourceview4
|
||||
# For console widget
|
||||
Requires: gtk-vnc2
|
||||
Requires: spice-gtk3
|
||||
|
||||
# Weak dependencies for the common virt-manager usecase
|
||||
Recommends: (libvirt-daemon-kvm or libvirt-daemon-qemu)
|
||||
Recommends: libvirt-daemon-config-network
|
||||
%if 0%{?rhel} == 7
|
||||
Requires: gnome-icon-theme
|
||||
%endif
|
||||
|
||||
# Optional inspection of guests
|
||||
Suggests: python3-libguestfs
|
||||
|
||||
BuildRequires: gettext
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-docutils
|
||||
BuildRequires: meson
|
||||
BuildRequires: intltool
|
||||
BuildRequires: /usr/bin/pod2man
|
||||
# For python, and python2 rpm macros
|
||||
BuildRequires: python2-devel
|
||||
|
||||
|
||||
%description
|
||||
|
|
@ -75,16 +72,17 @@ management API.
|
|||
|
||||
%package common
|
||||
Summary: Common files used by the different Virtual Machine Manager interfaces
|
||||
Group: Applications/Emulators
|
||||
|
||||
Requires: python3-argcomplete
|
||||
Requires: python3-libvirt
|
||||
Requires: python3-libxml2
|
||||
Requires: python3-requests
|
||||
# This version not strictly required: virt-manager should work with older,
|
||||
# however varying amounts of functionality will not be enabled.
|
||||
Requires: libvirt-python >= 0.7.0
|
||||
Requires: libxml2-python
|
||||
Requires: python-requests
|
||||
Requires: python-ipaddr
|
||||
Requires: libosinfo >= 0.2.10
|
||||
# Required for gobject-introspection infrastructure
|
||||
Requires: python3-gobject-base
|
||||
# Required for pulling files from iso media
|
||||
Requires: xorriso
|
||||
Requires: pygobject3-base
|
||||
|
||||
%description common
|
||||
Common files used by the different virt-manager interfaces, as well as
|
||||
|
|
@ -100,7 +98,9 @@ Requires: libvirt-client
|
|||
|
||||
Provides: virt-install
|
||||
Provides: virt-clone
|
||||
Provides: virt-convert
|
||||
Provides: virt-xml
|
||||
Obsoletes: python-virtinst
|
||||
|
||||
%description -n virt-install
|
||||
Package includes several command line utilities, including virt-install
|
||||
|
|
@ -109,298 +109,133 @@ machine).
|
|||
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
%setup -q
|
||||
|
||||
# Fix 'Add Hardware' wizard for non-x86 guests (bz #1505532)
|
||||
%patch0001 -p1
|
||||
|
||||
|
||||
%build
|
||||
%if ! %{have_spice}
|
||||
%global _default_graphics -Ddefault-graphics=vnc
|
||||
%if %{qemu_user}
|
||||
%global _qemu_user --qemu-user=%{qemu_user}
|
||||
%endif
|
||||
|
||||
%meson \
|
||||
-Ddefault-hvs=%{default_hvs} \
|
||||
%{?_default_graphics} \
|
||||
-Dupdate-icon-cache=false \
|
||||
-Dcompile-schemas=false \
|
||||
-Dtests=disabled
|
||||
%meson_build
|
||||
%if %{kvm_packages}
|
||||
%global _kvm_packages --kvm-package-names=%{kvm_packages}
|
||||
%endif
|
||||
|
||||
%if %{preferred_distros}
|
||||
%global _preferred_distros --preferred-distros=%{preferred_distros}
|
||||
%endif
|
||||
|
||||
%if %{libvirt_packages}
|
||||
%global _libvirt_packages --libvirt-package-names=%{libvirt_packages}
|
||||
%endif
|
||||
|
||||
%if %{askpass_package}
|
||||
%global _askpass_package --askpass-package-names=%{askpass_package}
|
||||
%endif
|
||||
|
||||
%if %{stable_defaults}
|
||||
%global _stable_defaults --stable-defaults
|
||||
%endif
|
||||
|
||||
%if %{default_hvs}
|
||||
%global _default_hvs --default-hvs %{default_hvs}
|
||||
%endif
|
||||
|
||||
python setup.py configure \
|
||||
%{?_qemu_user} \
|
||||
%{?_kvm_packages} \
|
||||
%{?_libvirt_packages} \
|
||||
%{?_askpass_package} \
|
||||
%{?_preferred_distros} \
|
||||
%{?_stable_defaults} \
|
||||
%{?_default_hvs}
|
||||
|
||||
|
||||
%install
|
||||
%meson_install
|
||||
|
||||
python setup.py \
|
||||
--no-update-icon-cache --no-compile-schemas \
|
||||
install -O1 --root=%{buildroot}
|
||||
%find_lang %{name}
|
||||
|
||||
%if 0%{?py_byte_compile:1}
|
||||
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Python_Appendix/#manual-bytecompilation
|
||||
%py_byte_compile %{__python3} %{buildroot}%{_datadir}/virt-manager/
|
||||
%endif
|
||||
# Replace '#!/usr/bin/env python2' with '#!/usr/bin/python2'
|
||||
# The format is ideal for upstream, but not a distro. See:
|
||||
# https://fedoraproject.org/wiki/Features/SystemPythonExecutablesUseSystemPython
|
||||
for f in $(find %{buildroot} -type f -executable -print); do
|
||||
sed -i "1 s|^#!/usr/bin/env python2|#!%{__python2}|" $f || :
|
||||
done
|
||||
|
||||
# The conversion script was only added to virt-manager after several
|
||||
# Fedora cycles of using gsettings. Installing it now could convert old data
|
||||
# and wipe out recent settings.
|
||||
rm %{buildroot}%{_datadir}/GConf/gsettings/org.virt-manager.virt-manager.convert
|
||||
|
||||
|
||||
%post
|
||||
/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
|
||||
/usr/bin/update-desktop-database &> /dev/null || :
|
||||
|
||||
|
||||
%postun
|
||||
if [ $1 -eq 0 ] ; then
|
||||
/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null
|
||||
/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
||||
/usr/bin/glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
|
||||
fi
|
||||
/usr/bin/update-desktop-database &> /dev/null || :
|
||||
|
||||
|
||||
%posttrans
|
||||
/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
||||
/usr/bin/glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
|
||||
|
||||
|
||||
%files
|
||||
%doc README.md COPYING NEWS.md
|
||||
%{_bindir}/%{name}
|
||||
|
||||
%{_mandir}/man1/%{name}.1*
|
||||
|
||||
%{_datadir}/%{name}/ui
|
||||
%{_datadir}/%{name}/ui/*.ui
|
||||
%{_datadir}/%{name}/virt-manager
|
||||
%{_datadir}/%{name}/virtManager
|
||||
|
||||
%{_datadir}/%{name}/icons
|
||||
%{_datadir}/icons/hicolor/*/apps/*
|
||||
|
||||
%{_datadir}/appdata/%{name}.appdata.xml
|
||||
%{_datadir}/applications/%{name}.desktop
|
||||
%{_datadir}/glib-2.0/schemas/org.virt-manager.virt-manager.gschema.xml
|
||||
%{_datadir}/metainfo/%{name}.appdata.xml
|
||||
|
||||
|
||||
%files common -f %{name}.lang
|
||||
%license COPYING
|
||||
%doc README.md NEWS.md
|
||||
|
||||
%dir %{_datadir}/%{name}
|
||||
|
||||
%{_datadir}/%{name}/virtcli
|
||||
%{_datadir}/%{name}/virtconv
|
||||
%{_datadir}/%{name}/virtinst
|
||||
|
||||
|
||||
%files -n virt-install
|
||||
%{_mandir}/man1/virt-install.1*
|
||||
%{_mandir}/man1/virt-clone.1*
|
||||
%{_mandir}/man1/virt-convert.1*
|
||||
%{_mandir}/man1/virt-xml.1*
|
||||
|
||||
%{_datadir}/bash-completion/completions/virt-install
|
||||
%{_datadir}/bash-completion/completions/virt-clone
|
||||
%{_datadir}/bash-completion/completions/virt-xml
|
||||
%{_datadir}/%{name}/virt-install
|
||||
%{_datadir}/%{name}/virt-clone
|
||||
%{_datadir}/%{name}/virt-convert
|
||||
%{_datadir}/%{name}/virt-xml
|
||||
|
||||
%{_bindir}/virt-install
|
||||
%{_bindir}/virt-clone
|
||||
%{_bindir}/virt-convert
|
||||
%{_bindir}/virt-xml
|
||||
|
||||
|
||||
%changelog
|
||||
* Fri Jul 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 5.1.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
|
||||
|
||||
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 5.1.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||
|
||||
* Wed Jan 07 2026 Pavel Hrdina <phrdina@redhat.com> - 5.1.0.3
|
||||
- Fix cloud init
|
||||
|
||||
* Fri Sep 19 2025 Python Maint <python-maint@redhat.com> - 5.1.0-2
|
||||
- Rebuilt for Python 3.14.0rc3 bytecode
|
||||
|
||||
* Tue Aug 26 2025 Pavel Hrdina <phrdina@redhat.com> - 5.1.0-1
|
||||
- Update to version 5.1.0
|
||||
|
||||
* Fri Aug 15 2025 Python Maint <python-maint@redhat.com> - 5.0.0-4
|
||||
- Rebuilt for Python 3.14.0rc2 bytecode
|
||||
|
||||
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Mon Dec 02 2024 Pavel Hrdina <phrdina@redhat.com> - 5.0.0-1
|
||||
- Update to version 5.0.0
|
||||
|
||||
* Tue Sep 10 2024 Cole Robinson <crobinso@redhat.com> - 4.1.0-9
|
||||
- Add sev-snp changes for feature ConfidentialVirtHostAMDSEVSNP
|
||||
|
||||
* Mon Aug 05 2024 Cole Robinson <crobinso@redhat.com> - 4.1.0-8
|
||||
- Fix flatpak build
|
||||
- Add /usr/share/virt-manager/ui/ to rpm db (bz 2283244)
|
||||
|
||||
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.0-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Wed Jun 26 2024 Daniel. P. Berrange <berrange@redhat.com> - 4.1.0-6
|
||||
- Fix compat with latest python 3.13 (rhbz #2294201)
|
||||
|
||||
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Fri Sep 29 2023 Sandro Bonazzola <sbonazzo@redhat.com> - 4.1.0-4
|
||||
- Drop spice-gtk3 on Fedora ELN as in CentOS Stream 9
|
||||
- Resolves: fedora#2237969
|
||||
|
||||
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Thu Aug 04 2022 Cole Robinson <crobinso@redhat.com> - 4.1.0-1
|
||||
- Update to version 4.1.0
|
||||
|
||||
* Wed Aug 3 2022 Daniel. P. Berrange <berrange@redhat.com> - 4.0.0-3
|
||||
- Fix compat with setuptools >= 61 (rhbz#2113754)
|
||||
|
||||
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Wed Mar 02 2022 Cole Robinson <crobinso@redhat.com> - 4.0.0-1
|
||||
- Update to version 4.0.0
|
||||
|
||||
* Sun Feb 20 2022 Cole Robinson <crobinso@redhat.com> - 3.2.0-6
|
||||
- Update to latest git snapshot
|
||||
|
||||
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Mon Jan 11 2021 Cole Robinson <crobinso@redhat.com> - 3.2.0-2
|
||||
- Fix 'domain not found' race (bz #1901081)
|
||||
|
||||
* Sat Nov 14 2020 Cole Robinson <crobinso@redhat.com> - 3.2.0-1
|
||||
- Update to version 3.2.0
|
||||
- Slim down filesystem device editor UI
|
||||
- Fix TOCTTOU virt-install bugs (Martin Pitt)
|
||||
- Several other bug fixes
|
||||
|
||||
* Wed Sep 30 2020 Cole Robinson <crobinso@redhat.com> - 3.1.0-1
|
||||
- Update to version 3.1.0
|
||||
|
||||
* Tue Sep 15 2020 Cole Robinson <crobinso@redhat.com> - 3.0.0-1
|
||||
- Update to version 3.0.0
|
||||
|
||||
* Mon Aug 31 2020 Cole Robinson <aintdiscole@gmail.com> - 2.2.1-6
|
||||
- spec: Switch to latest Fedora bytecompile macros
|
||||
|
||||
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.1-5
|
||||
- Second attempt - Rebuilt for
|
||||
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Wed Jul 03 2019 Cole Robinson <crobinso@redhat.com> - 2.2.1-1
|
||||
- Rebased to version 2.2.1
|
||||
- CVE-2019-10183: Replace --unattended user-password and admin-password with
|
||||
user-password-file and admin-password-file (Fabiano Fidêncio)
|
||||
- Consistent --memballoon default across non-x86 (Andrea Bolognani)
|
||||
- virt-install: add --numatune memnode.* (Athina Plaskasoviti)
|
||||
- Drop hard dep on gtksourceview4, gtksourceview3 is fine as well
|
||||
|
||||
* Tue Jun 18 2019 Cole Robinson <crobinso@redhat.com> - 2.2.0-2
|
||||
- Add missing dep on gtksourceview
|
||||
|
||||
* Mon Jun 17 2019 Cole Robinson <crobinso@redhat.com> - 2.2.0-1
|
||||
- Rebased to version 2.2.0
|
||||
- libvirt XML viewing and editing UI for new and existing domain, pools,
|
||||
volumes, networks
|
||||
- virt-install: libosinfo --unattended support (Fabiano Fidêncio, Cole
|
||||
Robinson)
|
||||
- Improve CPU model security defaults (Pavel Hrdina)
|
||||
- virt-install: new --install option. Ex: virt-install --install fedora29
|
||||
- virt-install: new --install kernel=,initrd=
|
||||
- virt-install: --disk, --memory, --name defaults from libosinfo (Fabiano
|
||||
Fidêncio, Cole Robinson)
|
||||
- virt-install: add device suboption aliases which consistently match
|
||||
libvirt XML naming
|
||||
- virt-xml: new --start, --no-define options (Marc Hartmayer)
|
||||
- virt-install: Add driver_queues argument to --controller (Vasudeva Kamath)
|
||||
- RISC-V support (Andrea Bolognani)
|
||||
- Device default improvements for non-x86 KVM (Andrea Bolognani)
|
||||
- Redesigned 'New Network' wizard
|
||||
- libguestfs inspection improvements (Pino Toscano)
|
||||
- virt-install: Add support for xenbus controller (Jim Fehlig)
|
||||
- cli: Add --disk wwn=,rawio= (Athina Plaskasoviti)
|
||||
- cli: Add --memballoon autodeflate=,stats.period= (Athina Plaskasoviti)
|
||||
- cli: Add --iothreads (Athina Plaskasoviti)
|
||||
- cli: Add --numatune memory.placement (Athina Plaskasoviti)
|
||||
- cli: Add --launchSecurity option (Erik Skultety)
|
||||
- cli: Fill in --memorybacking options
|
||||
- cli: --smartcard: support database= and certificate[0-9]*=
|
||||
- cli: --sysinfo: Add chasis suboptions
|
||||
- cli: --metadata: add genid= and genid_enable=
|
||||
- cli: --vcpus: add vcpus.vcpu[0-9]* config
|
||||
- cli: fill in all common char source options for --serial, --parellel,
|
||||
--console, --channel, --smartcard, --rng, --redirdev
|
||||
|
||||
* Wed Apr 03 2019 Cole Robinson <crobinso@redhat.com> - 2.1.0-2
|
||||
- Fix --initrd-inject with f30 URLs (bz #1686464)
|
||||
|
||||
* Sun Feb 03 2019 Cole Robinson <crobinso@redhat.com> - 2.1.0-1
|
||||
- Rebased to version 2.1.0
|
||||
- Bash autocompletion support (Lin Ma, Cole Robinson)
|
||||
- UI and command line --vsock support (Slavomir Kaslev)
|
||||
- virt-xml: Add --os-variant option (Andrea Bolognani)
|
||||
- virt-install: use libosinfo cpu, mem, disk size defaults (Fabiano
|
||||
Fidencio)
|
||||
- virt-install: Better usage of libosinfo -unknown distro IDs (Fabiano
|
||||
Fidencio)
|
||||
- virt-install: More usage of libosinfo for ISO --location detection
|
||||
- virt-install: Add --location LOCATION,kernel=X,initrd=Y for pointing to
|
||||
kernel/initrd in media that virt-install/libosinfo fails to detect
|
||||
|
||||
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Mon Oct 15 2018 Cole Robinson <crobinso@redhat.com> - 2.0.0-1
|
||||
- Rebased to version 2.0.0
|
||||
- Finish port to Python 3
|
||||
- Improved VM defaults: q35 PCIe, usb3, CPU host-model
|
||||
- Search based OS selection UI for new VMs
|
||||
- Track OS name for lifetime of domain in <metadata> XML
|
||||
- Host interface management UI has been completely removed
|
||||
- Show domain IP on interface details page
|
||||
|
||||
* Fri Sep 07 2018 Cole Robinson <crobinso@redhat.com> - 1.6.0-1.3.3.git3bc7ff24c
|
||||
- Enable arm32+uefi (bz #1613996)
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.0-0.3.git3bc7ff24c
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 1.6.0-0.2.git3bc7ff24c
|
||||
- Rebuilt for Python 3.7
|
||||
|
||||
* Thu Apr 26 2018 Cole Robinson <crobinso@redhat.com> - 1.6.0-0.1.git3bc7ff24c
|
||||
- Update to latest git snapshot, contains python3 port
|
||||
|
||||
* Wed Feb 28 2018 Cole Robinson <crobinso@redhat.com> - 1.5.1-1
|
||||
- Rebased to version 1.5.1
|
||||
- Fix disk/net/mem stats graphs
|
||||
|
||||
* Wed Feb 07 2018 Iryna Shcherbina <ishcherb@redhat.com> - 1.5.0-2
|
||||
- Update Python 2 dependency declarations to new packaging standards
|
||||
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
||||
|
||||
* 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
|
||||
- Remove obsolete scriptlets
|
||||
|
||||
* Tue Nov 21 2017 Cole Robinson <crobinso@redhat.com> - 1.4.3-2
|
||||
- Fix 'Add Hardware' wizard for non-x86 guests (bz #1505532)
|
||||
|
||||
|
|
@ -426,9 +261,6 @@ machine).
|
|||
- virt-install: add --features hyperv_reset=, hyperv_synic= (Venkat Datta N
|
||||
H)
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Wed Mar 22 2017 Cole Robinson <crobinso@redhat.com> - 1.4.1-2
|
||||
- Fix broken it/ko translations (bz #1433800)
|
||||
|
||||
|
|
@ -1175,7 +1007,7 @@ machine).
|
|||
- Disable wizard sensitivity while creating VM
|
||||
|
||||
* Thu Oct 19 2006 Daniel P. Berrange <berrange@redhat.com> - 0.2.5-1.fc7
|
||||
- Switch to use python-virtinst instead of python-xeninst due to
|
||||
- Switch to use python-virtinst instead of python-xeninst due to
|
||||
renaming of original package
|
||||
- Disable keyboard accelerators when grabbing mouse to avoid things like
|
||||
Ctrl-W closing the local window, instead of remote window bz 210364
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue