forked from pool/libvirt
This commit is contained in:
parent
3c6992b0ed
commit
f7767ee62c
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:95e767a3627125ce4d40b035fdebafe9eacd14516b852b969e6dde9583881f55
|
||||
size 1218422
|
3
libvirt-0.3.0.tar.bz2
Normal file
3
libvirt-0.3.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1cbbd058b96058dae5fb5158b6b0fb20fc8c7070bdaa940c6bb0a90149e6ef08
|
||||
size 1333570
|
@ -1,3 +1,34 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jul 23 17:08:09 MDT 2007 - jfehlig@novell.com
|
||||
|
||||
- Update to libvirt-0.3.0
|
||||
- Secure Remote support
|
||||
- Documentation: remote support, description of the URI connection
|
||||
strings, update of virsh man page, matrix of libvirt API/hypervisor
|
||||
support with version informations
|
||||
- Bug fixes: examples Makefile.am generation, SetMem fix, URI
|
||||
handling and ordering of drivers, fix virsh help without hypervisor,
|
||||
id marshalling fix, fix virConnectGetMaxVcpus on remote, avoid
|
||||
a realloc leak, scheduler parameters handling for Xen, various
|
||||
early remote bug fixes, remove virsh leaks of domains references,
|
||||
configCache refill bug, fix XML serialization bugs
|
||||
- Improvements: QEmu switch to XDR-based protocol, device attach/detach
|
||||
commands OCaml bindings, new entry points virDomainGetConnect and
|
||||
virNetworkGetConnect useful for bindings, reunitifaction of remote
|
||||
and qemu daemon under a single libvirtd with a config file
|
||||
- Cleanups: parsing of connection URIs, messages from virsh,
|
||||
Coverage files, Solaris fixes, avoid [r]index calls, release
|
||||
information in Xen backend, virsh cpupin command cleanups,
|
||||
xen:/// suppport as standard Xen URI, improve driver
|
||||
selection/decline mechanism, error reporting on XML dump,
|
||||
Remove unused virDomainKernel structure, daemon event loop event
|
||||
handling, various unifications cleanup in the daemon merging,
|
||||
internal file and timer monitoring API, remove libsysfs dependancy,
|
||||
call brctl program directly, virBuffer functions cleanups,
|
||||
make init script LSB compliant, error handling on lookup functions,
|
||||
remove internal virGetDomainByID, revamp of xen subdrivers interfaces
|
||||
- Localization updates
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 12 09:05:17 MDT 2007 - ccoffing@novell.com
|
||||
|
||||
|
36
libvirt.spec
36
libvirt.spec
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package libvirt (Version 0.2.3)
|
||||
# spec file for package libvirt (Version 0.3.0)
|
||||
#
|
||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# This file and all modifications and additions to the pristine
|
||||
@ -15,10 +15,10 @@ BuildRequires: fdupes gettext gnutls-devel libxml2-devel ncurses-devel pkg-conf
|
||||
# Only for directory ownership:
|
||||
BuildRequires: gtk-doc
|
||||
URL: http://libvirt.org/
|
||||
License: GNU Library General Public License v. 2.0 and 2.1 (LGPL)
|
||||
License: LGPL v2 or later
|
||||
Group: Development/Libraries/C and C++
|
||||
Autoreqprov: yes
|
||||
Version: 0.2.3
|
||||
Version: 0.3.0
|
||||
Release: 1
|
||||
Summary: A C toolkit to interract with the virtualization capabilities of Linux
|
||||
Source: %{name}-%{version}.tar.bz2
|
||||
@ -162,7 +162,7 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%files -f %{name}.lang
|
||||
%defattr(-, root, root)
|
||||
%{_bindir}/virsh
|
||||
%{_sbindir}/libvirt_qemud
|
||||
%{_sbindir}/libvirtd
|
||||
%doc %dir %{_docdir}/%{name}
|
||||
%doc %{_docdir}/%{name}/[CNRT]*
|
||||
%doc %{_docdir}/%{name}/AUTHORS
|
||||
@ -193,6 +193,34 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{py_sitedir}/libvirtmod*
|
||||
|
||||
%changelog
|
||||
* Mon Jul 23 2007 - jfehlig@novell.com
|
||||
- Update to libvirt-0.3.0
|
||||
- Secure Remote support
|
||||
- Documentation: remote support, description of the URI connection
|
||||
strings, update of virsh man page, matrix of libvirt API/hypervisor
|
||||
support with version informations
|
||||
- Bug fixes: examples Makefile.am generation, SetMem fix, URI
|
||||
handling and ordering of drivers, fix virsh help without hypervisor,
|
||||
id marshalling fix, fix virConnectGetMaxVcpus on remote, avoid
|
||||
a realloc leak, scheduler parameters handling for Xen, various
|
||||
early remote bug fixes, remove virsh leaks of domains references,
|
||||
configCache refill bug, fix XML serialization bugs
|
||||
- Improvements: QEmu switch to XDR-based protocol, device attach/detach
|
||||
commands OCaml bindings, new entry points virDomainGetConnect and
|
||||
virNetworkGetConnect useful for bindings, reunitifaction of remote
|
||||
and qemu daemon under a single libvirtd with a config file
|
||||
- Cleanups: parsing of connection URIs, messages from virsh,
|
||||
Coverage files, Solaris fixes, avoid [r]index calls, release
|
||||
information in Xen backend, virsh cpupin command cleanups,
|
||||
xen:/// suppport as standard Xen URI, improve driver
|
||||
selection/decline mechanism, error reporting on XML dump,
|
||||
Remove unused virDomainKernel structure, daemon event loop event
|
||||
handling, various unifications cleanup in the daemon merging,
|
||||
internal file and timer monitoring API, remove libsysfs dependancy,
|
||||
call brctl program directly, virBuffer functions cleanups,
|
||||
make init script LSB compliant, error handling on lookup functions,
|
||||
remove internal virGetDomainByID, revamp of xen subdrivers interfaces
|
||||
- Localization updates
|
||||
* Tue Jun 12 2007 - ccoffing@novell.com
|
||||
- Update to libvirt-0.2.3.
|
||||
- Fix duplicate files found by rpmlint.
|
||||
|
Loading…
Reference in New Issue
Block a user