|
|
|
|
@@ -1,3 +1,4 @@
|
|
|
|
|
%define _default_patch_fuzz 2 \n\n
|
|
|
|
|
# -*- rpm-spec -*-
|
|
|
|
|
|
|
|
|
|
# A client only build will create a libvirt.so only containing
|
|
|
|
|
@@ -22,14 +23,14 @@
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Now set the defaults for all the important features, independant
|
|
|
|
|
# Now set the defaults for all the important features, independent
|
|
|
|
|
# of any particular OS
|
|
|
|
|
|
|
|
|
|
# First the daemon itself
|
|
|
|
|
%define with_libvirtd 0%{!?_without_libvirtd:%{server_drivers}}
|
|
|
|
|
%define with_avahi 0%{!?_without_avahi:%{server_drivers}}
|
|
|
|
|
|
|
|
|
|
# Then the hypervisor drivers
|
|
|
|
|
# Then the hypervisor drivers that run on local host
|
|
|
|
|
%define with_xen 0%{!?_without_xen:%{server_drivers}}
|
|
|
|
|
%define with_xen_proxy 0%{!?_without_xen_proxy:%{server_drivers}}
|
|
|
|
|
%define with_qemu 0%{!?_without_qemu:%{server_drivers}}
|
|
|
|
|
@@ -37,9 +38,12 @@
|
|
|
|
|
%define with_lxc 0%{!?_without_lxc:%{server_drivers}}
|
|
|
|
|
%define with_vbox 0%{!?_without_vbox:%{server_drivers}}
|
|
|
|
|
%define with_uml 0%{!?_without_uml:%{server_drivers}}
|
|
|
|
|
# XXX this shouldn't be here, but it mistakenly links into libvirtd
|
|
|
|
|
%define with_one 0%{!?_without_one:%{server_drivers}}
|
|
|
|
|
%define with_phyp 0%{!?_without_phyp:%{server_drivers}}
|
|
|
|
|
%define with_esx 0%{!?_without_esx:%{server_drivers}}
|
|
|
|
|
|
|
|
|
|
# Then the hypervisor drivers that talk a native remote protocol
|
|
|
|
|
%define with_phyp 0%{!?_without_phyp:1}
|
|
|
|
|
%define with_esx 0%{!?_without_esx:1}
|
|
|
|
|
|
|
|
|
|
# Then the secondary host drivers
|
|
|
|
|
%define with_network 0%{!?_without_network:%{server_drivers}}
|
|
|
|
|
@@ -50,12 +54,14 @@
|
|
|
|
|
%define with_storage_mpath 0%{!?_without_storage_mpath:%{server_drivers}}
|
|
|
|
|
%define with_numactl 0%{!?_without_numactl:%{server_drivers}}
|
|
|
|
|
%define with_selinux 0%{!?_without_selinux:%{server_drivers}}
|
|
|
|
|
%define with_hal 0%{!?_without_hal:%{server_drivers}}
|
|
|
|
|
|
|
|
|
|
# A few optional bits off by default, we enable later
|
|
|
|
|
%define with_polkit 0%{!?_without_polkit:0}
|
|
|
|
|
%define with_capng 0%{!?_without_capng:0}
|
|
|
|
|
%define with_netcf 0%{!?_without_netcf:0}
|
|
|
|
|
%define with_udev 0%{!?_without_udev:0}
|
|
|
|
|
%define with_hal 0%{!?_without_hal:0}
|
|
|
|
|
%define with_yajl 0%{!?_without_yajl:0}
|
|
|
|
|
|
|
|
|
|
# Non-server/HV driver defaults which are always enabled
|
|
|
|
|
%define with_python 0%{!?_without_python:1}
|
|
|
|
|
@@ -100,6 +106,7 @@
|
|
|
|
|
%endif
|
|
|
|
|
%define with_xen 0
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
# If Xen isn't turned on, we shouldn't build the xen proxy either
|
|
|
|
|
%if ! %{with_xen}
|
|
|
|
|
%define with_xen_proxy 0
|
|
|
|
|
@@ -129,6 +136,18 @@
|
|
|
|
|
%define with_netcf 0%{!?_without_netcf:%{server_drivers}}
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
# udev is used to manage host devices in Fedora 12 / RHEL-6 or newer
|
|
|
|
|
%if 0%{?fedora} >= 12 || 0%{?rhel} >= 6
|
|
|
|
|
%define with_udev 0%{!?_without_udev:%{server_drivers}}
|
|
|
|
|
%else
|
|
|
|
|
%define with_hal 0%{!?_without_hal:%{server_drivers}}
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
# Enable yajl library for JSON mode with QEMU
|
|
|
|
|
%if 0%{?fedora} >= 13 || 0%{?rhel} >= 6
|
|
|
|
|
%define with_yajl 0%{!?_without_yajl:%{server_drivers}}
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
# Force QEMU to run as non-root
|
|
|
|
|
%if 0%{?fedora} >= 12 || 0%{?rhel} >= 6
|
|
|
|
|
%define qemu_user qemu
|
|
|
|
|
@@ -150,20 +169,11 @@
|
|
|
|
|
|
|
|
|
|
Summary: Library providing a simple API virtualization
|
|
|
|
|
Name: libvirt
|
|
|
|
|
Version: 0.7.1
|
|
|
|
|
Release: 4%{?dist}%{?extra_release}
|
|
|
|
|
Version: 0.7.5
|
|
|
|
|
Release: 3%{?dist}%{?extra_release}
|
|
|
|
|
License: LGPLv2+
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
Source: http://libvirt.org/sources/libvirt-%{version}.tar.gz
|
|
|
|
|
|
|
|
|
|
# Temporary hack till PulseAudio autostart problems are sorted
|
|
|
|
|
# out when SELinux enforcing (bz 486112)
|
|
|
|
|
Patch00: libvirt-0.6.4-svirt-sound.patch
|
|
|
|
|
|
|
|
|
|
# A couple of hot-unplug memory handling fixes (#523953)
|
|
|
|
|
Patch01: libvirt-fix-net-hotunplug-double-free.patch
|
|
|
|
|
Patch02: libvirt-fix-pci-hostdev-hotunplug-leak.patch
|
|
|
|
|
|
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
|
|
|
|
URL: http://libvirt.org/
|
|
|
|
|
BuildRequires: python-devel
|
|
|
|
|
@@ -184,6 +194,9 @@ Requires: iptables
|
|
|
|
|
%if %{with_hal}
|
|
|
|
|
Requires: hal
|
|
|
|
|
%endif
|
|
|
|
|
%if %{with_udev}
|
|
|
|
|
Requires: udev >= 145
|
|
|
|
|
%endif
|
|
|
|
|
%if %{with_polkit}
|
|
|
|
|
%if 0%{?fedora} >= 12 || 0%{?rhel} >=6
|
|
|
|
|
Requires: polkit >= 0.93
|
|
|
|
|
@@ -247,6 +260,13 @@ BuildRequires: gnutls-devel
|
|
|
|
|
%if %{with_hal}
|
|
|
|
|
BuildRequires: hal-devel
|
|
|
|
|
%endif
|
|
|
|
|
%if %{with_udev}
|
|
|
|
|
BuildRequires: libudev-devel >= 145
|
|
|
|
|
BuildRequires: libpciaccess-devel >= 0.10.9
|
|
|
|
|
%endif
|
|
|
|
|
%if %{with_yajl}
|
|
|
|
|
BuildRequires: yajl-devel
|
|
|
|
|
%endif
|
|
|
|
|
%if %{with_avahi}
|
|
|
|
|
BuildRequires: avahi-devel
|
|
|
|
|
%endif
|
|
|
|
|
@@ -317,7 +337,7 @@ BuildRequires: libcap-ng-devel >= 0.5.0
|
|
|
|
|
BuildRequires: libssh2-devel
|
|
|
|
|
%endif
|
|
|
|
|
%if %{with_netcf}
|
|
|
|
|
BuildRequires: netcf-devel
|
|
|
|
|
BuildRequires: netcf-devel >= 0.1.4
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
# Fedora build root suckage
|
|
|
|
|
@@ -350,7 +370,7 @@ virtualization capabilities of recent versions of Linux (and other OSes).
|
|
|
|
|
%package devel
|
|
|
|
|
Summary: Libraries, includes, etc. to compile with the libvirt library
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
Requires: libvirt = %{version}-%{release}
|
|
|
|
|
Requires: libvirt-client = %{version}-%{release}
|
|
|
|
|
Requires: pkgconfig
|
|
|
|
|
%if %{with_xen}
|
|
|
|
|
Requires: xen-devel
|
|
|
|
|
@@ -364,7 +384,7 @@ the virtualization capabilities of recent versions of Linux (and other OSes).
|
|
|
|
|
%package python
|
|
|
|
|
Summary: Python bindings for the libvirt library
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
Requires: libvirt = %{version}-%{release}
|
|
|
|
|
Requires: libvirt-client = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%description python
|
|
|
|
|
The libvirt-python package contains a module that permits applications
|
|
|
|
|
@@ -376,10 +396,6 @@ of recent versions of Linux (and other OSes).
|
|
|
|
|
%prep
|
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
|
|
%patch00 -p1
|
|
|
|
|
%patch01 -p1
|
|
|
|
|
%patch02 -p1
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
%if ! %{with_xen}
|
|
|
|
|
%define _without_xen --without-xen
|
|
|
|
|
@@ -485,6 +501,14 @@ of recent versions of Linux (and other OSes).
|
|
|
|
|
%define _without_hal --without-hal
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if ! %{with_udev}
|
|
|
|
|
%define _without_udev --without-udev
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if ! %{with_yajl}
|
|
|
|
|
%define _without_yajl --without-yajl
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%configure %{?_without_xen} \
|
|
|
|
|
%{?_without_qemu} \
|
|
|
|
|
%{?_without_openvz} \
|
|
|
|
|
@@ -511,6 +535,8 @@ of recent versions of Linux (and other OSes).
|
|
|
|
|
%{?_without_netcf} \
|
|
|
|
|
%{?_without_selinux} \
|
|
|
|
|
%{?_without_hal} \
|
|
|
|
|
%{?_without_udev} \
|
|
|
|
|
%{?_without_yajl} \
|
|
|
|
|
--with-qemu-user=%{qemu_user} \
|
|
|
|
|
--with-qemu-group=%{qemu_group} \
|
|
|
|
|
--with-init-script=redhat \
|
|
|
|
|
@@ -522,10 +548,10 @@ gzip -9 ChangeLog
|
|
|
|
|
rm -fr %{buildroot}
|
|
|
|
|
|
|
|
|
|
%makeinstall
|
|
|
|
|
(cd docs/examples ; make clean ; rm -rf .deps Makefile Makefile.in)
|
|
|
|
|
(cd docs/examples/python ; rm -rf .deps Makefile Makefile.in)
|
|
|
|
|
(cd examples/hellolibvirt ; make clean ; rm -rf .deps .libs Makefile Makefile.in)
|
|
|
|
|
(cd examples/domain-events/events-c ; make clean ;rm -rf .deps .libs Makefile Makefile.in)
|
|
|
|
|
for i in domain-events/events-c dominfo domsuspend hellolibvirt python
|
|
|
|
|
do
|
|
|
|
|
(cd examples/$i ; make clean ; rm -rf .deps .libs Makefile Makefile.in)
|
|
|
|
|
done
|
|
|
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
|
|
|
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/*.a
|
|
|
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/python*/site-packages/*.la
|
|
|
|
|
@@ -552,6 +578,11 @@ rm -f $RPM_BUILD_ROOT%{_datadir}/augeas/lenses/tests/test_libvirtd_qemu.aug
|
|
|
|
|
%endif
|
|
|
|
|
%find_lang %{name}
|
|
|
|
|
|
|
|
|
|
%if ! %{with_lxc}
|
|
|
|
|
rm -f $RPM_BUILD_ROOT%{_datadir}/augeas/lenses/libvirtd_lxc.aug
|
|
|
|
|
rm -f $RPM_BUILD_ROOT%{_datadir}/augeas/lenses/tests/test_libvirtd_lxc.aug
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if ! %{with_python}
|
|
|
|
|
rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/libvirt-python-%{version}
|
|
|
|
|
%endif
|
|
|
|
|
@@ -563,6 +594,9 @@ rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/libvirt-%{version}
|
|
|
|
|
%if ! %{with_qemu}
|
|
|
|
|
rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/qemu.conf
|
|
|
|
|
%endif
|
|
|
|
|
%if ! %{with_lxc}
|
|
|
|
|
rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/lxc.conf
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if %{with_libvirtd}
|
|
|
|
|
chmod 0644 $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/libvirtd
|
|
|
|
|
@@ -603,7 +637,7 @@ fi
|
|
|
|
|
|
|
|
|
|
/sbin/chkconfig --add libvirtd
|
|
|
|
|
if [ "$1" -ge "1" ]; then
|
|
|
|
|
/sbin/service libvirtd condrestart > /dev/null 2>&1
|
|
|
|
|
/sbin/service libvirtd condrestart > /dev/null 2>&1
|
|
|
|
|
fi
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
@@ -636,10 +670,16 @@ fi
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/libvirtd
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/libvirt/libvirtd.conf
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/logrotate.d/libvirtd
|
|
|
|
|
%dir %attr(0700, root, root) %{_localstatedir}/log/libvirt/qemu/
|
|
|
|
|
%dir %attr(0700, root, root) %{_localstatedir}/log/libvirt/lxc/
|
|
|
|
|
%dir %attr(0700, root, root) %{_localstatedir}/log/libvirt/uml/
|
|
|
|
|
|
|
|
|
|
%if %{with_qemu}
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/libvirt/qemu.conf
|
|
|
|
|
%endif
|
|
|
|
|
%if %{with_lxc}
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/libvirt/lxc.conf
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%dir %{_datadir}/libvirt/
|
|
|
|
|
|
|
|
|
|
@@ -671,9 +711,6 @@ fi
|
|
|
|
|
%if %{with_network}
|
|
|
|
|
%dir %{_localstatedir}/run/libvirt/network/
|
|
|
|
|
%dir %attr(0700, root, root) %{_localstatedir}/lib/libvirt/network/
|
|
|
|
|
%dir %attr(0700, root, root) %{_localstatedir}/lib/libvirt/iptables/
|
|
|
|
|
%dir %attr(0700, root, root) %{_localstatedir}/lib/libvirt/iptables/filter/
|
|
|
|
|
%dir %attr(0700, root, root) %{_localstatedir}/lib/libvirt/iptables/nat/
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if %{with_qemu}
|
|
|
|
|
@@ -681,6 +718,11 @@ fi
|
|
|
|
|
%{_datadir}/augeas/lenses/tests/test_libvirtd_qemu.aug
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if %{with_lxc}
|
|
|
|
|
%{_datadir}/augeas/lenses/libvirtd_lxc.aug
|
|
|
|
|
%{_datadir}/augeas/lenses/tests/test_libvirtd_lxc.aug
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%{_datadir}/augeas/lenses/libvirtd.aug
|
|
|
|
|
%{_datadir}/augeas/lenses/tests/test_libvirtd.aug
|
|
|
|
|
|
|
|
|
|
@@ -693,13 +735,11 @@ fi
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%dir %attr(0700, root, root) %{_localstatedir}/log/libvirt/
|
|
|
|
|
%if %{with_qemu}
|
|
|
|
|
%dir %attr(0700, root, root) %{_localstatedir}/log/libvirt/qemu/
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if %{with_xen_proxy}
|
|
|
|
|
%attr(4755, root, root) %{_libexecdir}/libvirt_proxy
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if %{with_lxc}
|
|
|
|
|
%attr(0755, root, root) %{_libexecdir}/libvirt_lxc
|
|
|
|
|
%endif
|
|
|
|
|
@@ -716,8 +756,10 @@ fi
|
|
|
|
|
|
|
|
|
|
%{_mandir}/man1/virsh.1*
|
|
|
|
|
%{_mandir}/man1/virt-xml-validate.1*
|
|
|
|
|
%{_mandir}/man1/virt-pki-validate.1*
|
|
|
|
|
%{_bindir}/virsh
|
|
|
|
|
%{_bindir}/virt-xml-validate
|
|
|
|
|
%{_bindir}/virt-pki-validate
|
|
|
|
|
%{_libdir}/lib*.so.*
|
|
|
|
|
|
|
|
|
|
%dir %{_datadir}/libvirt/
|
|
|
|
|
@@ -733,6 +775,8 @@ fi
|
|
|
|
|
%{_datadir}/libvirt/schemas/secret.rng
|
|
|
|
|
%{_datadir}/libvirt/schemas/storageencryption.rng
|
|
|
|
|
|
|
|
|
|
%{_datadir}/libvirt/cpu_map.xml
|
|
|
|
|
|
|
|
|
|
%if %{with_sasl}
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/sasl2/libvirt.conf
|
|
|
|
|
%endif
|
|
|
|
|
@@ -751,9 +795,12 @@ fi
|
|
|
|
|
%doc %{_datadir}/gtk-doc/html/libvirt/*.css
|
|
|
|
|
|
|
|
|
|
%doc docs/*.html docs/html docs/*.gif
|
|
|
|
|
%doc docs/examples
|
|
|
|
|
%doc docs/libvirt-api.xml
|
|
|
|
|
%doc examples
|
|
|
|
|
%doc examples/hellolibvirt
|
|
|
|
|
%doc examples/domain-events/events-c
|
|
|
|
|
%doc examples/dominfo
|
|
|
|
|
%doc examples/domsuspend
|
|
|
|
|
%doc examples/xml
|
|
|
|
|
|
|
|
|
|
%if %{with_python}
|
|
|
|
|
%files python
|
|
|
|
|
@@ -764,12 +811,87 @@ fi
|
|
|
|
|
%{_libdir}/python*/site-packages/libvirtmod*
|
|
|
|
|
%doc python/tests/*.py
|
|
|
|
|
%doc python/TODO
|
|
|
|
|
%doc python/libvirtclass.txt
|
|
|
|
|
%doc docs/examples/python
|
|
|
|
|
%doc examples/python
|
|
|
|
|
%doc examples/domain-events/events-python
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Thu Sep 17 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.1-4%
|
|
|
|
|
* Thu Jan 14 2010 Chris Weyl <cweyl@alumni.drew.edu> 0.7.5-3
|
|
|
|
|
- bump for libssh2 rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Jan 12 2010 Daniel P. Berrange <berrange@redhat.com> - 0.7.5-2
|
|
|
|
|
- Rebuild for libparted soname change
|
|
|
|
|
|
|
|
|
|
* Wed Dec 23 2009 Daniel Veillard <veillard@redhat.com> - 0.7.5-1
|
|
|
|
|
- Add new API virDomainMemoryStats
|
|
|
|
|
- Public API and domain extension for CPU flags
|
|
|
|
|
- vbox: Add support for version 3.1
|
|
|
|
|
- Support QEMU's virtual FAT block device driver
|
|
|
|
|
- a lot of fixes
|
|
|
|
|
|
|
|
|
|
* Fri Nov 20 2009 Daniel Veillard <veillard@redhat.com> - 0.7.4-1
|
|
|
|
|
- upstream release of 0.7.4
|
|
|
|
|
- udev node device backend
|
|
|
|
|
- API to check object properties
|
|
|
|
|
- better QEmu monitor processing
|
|
|
|
|
- MAC address based port filtering for qemu
|
|
|
|
|
- support IPv6 and multiple addresses per interfaces
|
|
|
|
|
- a lot of fixes
|
|
|
|
|
|
|
|
|
|
* Thu Nov 19 2009 Daniel P. Berrange <berrange@redhat.com> - 0.7.2-6
|
|
|
|
|
- Really fix restore file labelling this time
|
|
|
|
|
|
|
|
|
|
* Wed Nov 11 2009 Daniel P. Berrange <berrange@redhat.com> - 0.7.2-5
|
|
|
|
|
- Disable numactl on s390[x]. Again.
|
|
|
|
|
|
|
|
|
|
* Wed Nov 11 2009 Daniel P. Berrange <berrange@redhat.com> - 0.7.2-4
|
|
|
|
|
- Fix QEMU save/restore permissions / labelling
|
|
|
|
|
|
|
|
|
|
* Thu Oct 29 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.2-3
|
|
|
|
|
- Avoid compressing small log files (#531030)
|
|
|
|
|
|
|
|
|
|
* Thu Oct 29 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.2-2
|
|
|
|
|
- Make libvirt-devel require libvirt-client, not libvirt
|
|
|
|
|
- Fix qemu machine types handling
|
|
|
|
|
|
|
|
|
|
* Wed Oct 14 2009 Daniel Veillard <veillard@redhat.com> - 0.7.2-1
|
|
|
|
|
- Upstream release of 0.7.2
|
|
|
|
|
- Allow to define ESX domains
|
|
|
|
|
- Allows suspend and resulme of LXC domains
|
|
|
|
|
- API for data streams
|
|
|
|
|
- many bug fixes
|
|
|
|
|
|
|
|
|
|
* Tue Oct 13 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.1-12
|
|
|
|
|
- Fix restore of qemu guest using raw save format (#523158)
|
|
|
|
|
|
|
|
|
|
* Fri Oct 9 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.1-11
|
|
|
|
|
- Fix libvirtd memory leak during error reply sending (#528162)
|
|
|
|
|
- Add several PCI hot-unplug typo fixes from upstream
|
|
|
|
|
|
|
|
|
|
* Tue Oct 6 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.1-10
|
|
|
|
|
- Create /var/log/libvirt/{lxc,uml} dirs for logrotate
|
|
|
|
|
- Make libvirt-python dependon on libvirt-client
|
|
|
|
|
- Sync misc minor changes from upstream spec
|
|
|
|
|
|
|
|
|
|
* Tue Oct 6 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.1-9
|
|
|
|
|
- Change logrotate config to weekly (#526769)
|
|
|
|
|
|
|
|
|
|
* Thu Oct 1 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.1-8
|
|
|
|
|
- Disable sound backend, even when selinux is disabled (#524499)
|
|
|
|
|
- Re-label qcow2 backing files (#497131)
|
|
|
|
|
|
|
|
|
|
* Wed Sep 30 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.1-7
|
|
|
|
|
- Fix USB device passthrough (#522683)
|
|
|
|
|
|
|
|
|
|
* Mon Sep 21 2009 Chris Weyl <cweyl@alumni.drew.edu> - 0.7.1-6
|
|
|
|
|
- rebuild for libssh2 1.2
|
|
|
|
|
|
|
|
|
|
* Mon Sep 21 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.1-5
|
|
|
|
|
- Don't set a bogus error in virDrvSupportsFeature()
|
|
|
|
|
- Fix raw save format
|
|
|
|
|
|
|
|
|
|
* Thu Sep 17 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.1-4
|
|
|
|
|
- A couple of hot-unplug memory handling fixes (#523953)
|
|
|
|
|
|
|
|
|
|
* Thu Sep 17 2009 Daniel Veillard <veillard@redhat.com> - 0.7.1-3
|
|
|
|
|
|