libvirt.spec.in 87.9 KB
Newer Older
1 2
# -*- rpm-spec -*-

3 4
# This spec file assumes you are building for Fedora 20 or newer,
# or for RHEL 6 or newer. It may need some tweaks for other distros.
5
# If neither fedora nor rhel was defined, try to guess them from dist
6 7 8 9
%if (0%{?fedora} && 0%{?fedora} >= 20) || (0%{?rhel} && 0%{?rhel} >= 6)
%define supported_platform 1
%else
%define supported_platform 0
10 11
%endif

12 13 14
# Default to skipping autoreconf.  Distros can change just this one line
# (or provide a command-line override) if they backport any patches that
# touch configure.ac or Makefile.am.
15
%{!?enable_autotools:%global enable_autotools 0}
16

17

18
# The hypervisor drivers that run in libvirtd
19 20 21 22 23 24
%define with_xen           0%{!?_without_xen:1}
%define with_qemu          0%{!?_without_qemu:1}
%define with_lxc           0%{!?_without_lxc:1}
%define with_uml           0%{!?_without_uml:1}
%define with_libxl         0%{!?_without_libxl:1}
%define with_vbox          0%{!?_without_vbox:1}
25

26
%define with_qemu_tcg      %{with_qemu}
27 28 29 30

%define qemu_kvm_arches %{ix86} x86_64

%if 0%{?fedora}
31
    %define qemu_kvm_arches %{ix86} x86_64 %{power64} s390x %{arm} aarch64
32 33 34 35 36
%endif

%if 0%{?rhel}
    %define with_qemu_tcg 0
    %define qemu_kvm_arches x86_64
37 38 39
    %if 0%{?rhel} >= 7
        %define qemu_kvm_arches x86_64 %{power64}
    %endif
40 41 42
%endif

%ifarch %{qemu_kvm_arches}
43
    %define with_qemu_kvm      %{with_qemu}
44
%else
45
    %define with_qemu_kvm      0
46 47
%endif

48 49 50 51
%if ! %{with_qemu_tcg} && ! %{with_qemu_kvm}
    %define with_qemu 0
%endif

52 53 54
# Then the hypervisor drivers that run outside libvirtd, in libvirt.so
%define with_openvz        0%{!?_without_openvz:1}
%define with_vmware        0%{!?_without_vmware:1}
55 56
%define with_phyp          0%{!?_without_phyp:1}
%define with_esx           0%{!?_without_esx:1}
57
%define with_hyperv        0%{!?_without_hyperv:1}
58

59
# Then the secondary host drivers, which run inside libvirtd
60 61 62 63 64 65 66
%define with_interface        0%{!?_without_interface:1}
%define with_network          0%{!?_without_network:1}
%define with_storage_fs       0%{!?_without_storage_fs:1}
%define with_storage_lvm      0%{!?_without_storage_lvm:1}
%define with_storage_iscsi    0%{!?_without_storage_iscsi:1}
%define with_storage_disk     0%{!?_without_storage_disk:1}
%define with_storage_mpath    0%{!?_without_storage_mpath:1}
67
%if 0%{?fedora} || 0%{?rhel} >= 7
68
    %define with_storage_rbd      0%{!?_without_storage_rbd:1}
69
%else
70
    %define with_storage_rbd      0
71
%endif
72
%if 0%{?fedora}
73
    %define with_storage_sheepdog 0%{!?_without_storage_sheepdog:1}
74
%else
75
    %define with_storage_sheepdog 0
76
%endif
77 78 79
%define with_storage_gluster 0%{!?_without_storage_gluster:1}
%define with_numactl          0%{!?_without_numactl:1}
%define with_selinux          0%{!?_without_selinux:1}
80

81 82 83
# Just hardcode to off, since few people ever have apparmor RPMs installed
%define with_apparmor         0%{!?_without_apparmor:0}

84
# A few optional bits off by default, we enable later
85
%define with_polkit        0%{!?_without_polkit:0}
D
Daniel P. Berrange 已提交
86
%define with_capng         0%{!?_without_capng:0}
87
%define with_fuse          0%{!?_without_fuse:0}
88
%define with_netcf         0%{!?_without_netcf:0}
89 90
%define with_udev          0%{!?_without_udev:0}
%define with_hal           0%{!?_without_hal:0}
91
%define with_yajl          0%{!?_without_yajl:0}
92
%define with_nwfilter      0%{!?_without_nwfilter:0}
93
%define with_libpcap       0%{!?_without_libpcap:0}
94
%define with_macvtap       0%{!?_without_macvtap:0}
J
Jiri Denemark 已提交
95
%define with_libnl         0%{!?_without_libnl:0}
96
%define with_dtrace        0%{!?_without_dtrace:0}
97
%define with_cgconfig      0%{!?_without_cgconfig:0}
98
%define with_sanlock       0%{!?_without_sanlock:0}
99
%define with_systemd       0%{!?_without_systemd:0}
100
%define with_numad         0%{!?_without_numad:0}
101
%define with_firewalld     0%{!?_without_firewalld:0}
102
%define with_libssh2       0%{!?_without_libssh2:0}
103
%define with_wireshark     0%{!?_without_wireshark:0}
104
%define with_systemd_daemon 0%{!?_without_systemd_daemon:0}
105
%define with_pm_utils      1
106

107 108
# Non-server/HV driver defaults which are always enabled
%define with_sasl          0%{!?_without_sasl:1}
109
%define with_audit         0%{!?_without_audit:1}
110
%define with_nss_plugin    0%{!?_without_nss_plugin:1}
111 112 113 114


# Finally set the OS / architecture specific special cases

115
# Xen is available only on i386 x86_64 ia64
P
Peter Robinson 已提交
116
%ifnarch %{ix86} x86_64 ia64
117 118
    %define with_xen 0
    %define with_libxl 0
119 120
%endif

121 122 123 124 125
# vbox is available only on i386 x86_64
%ifnarch %{ix86} x86_64
    %define with_vbox 0
%endif

126 127
# Numactl is not available on s390[x] and ARM
%ifarch s390 s390x %{arm}
128
    %define with_numactl 0
D
Daniel P. Berrange 已提交
129
%endif
130

131 132
# libgfapi is built only on x86_64 on rhel
%ifnarch x86_64
133
    %if 0%{?rhel}
134 135 136 137
        %define with_storage_gluster 0
    %endif
%endif

138 139 140 141 142 143 144
# librados and librbd are built only on x86_64 on rhel
%ifnarch x86_64
    %if 0%{?rhel} >= 7
        %define with_storage_rbd 0
    %endif
%endif

145
# RHEL doesn't ship OpenVZ, VBox, UML, PowerHypervisor,
J
Ján Tomko 已提交
146
# VMware, libxenserver (xenapi), libxenlight (Xen 4.1 and newer),
147
# or HyperV.
148
%if 0%{?rhel}
149 150 151 152 153 154 155 156
    %define with_openvz 0
    %define with_vbox 0
    %define with_uml 0
    %define with_phyp 0
    %define with_vmware 0
    %define with_xenapi 0
    %define with_libxl 0
    %define with_hyperv 0
157
    %define with_vz 0
158 159
%endif

160 161
# Fedora 17 / RHEL-7 are first where we use systemd. Although earlier
# Fedora has systemd, libvirt still used sysvinit there.
162
%if 0%{?fedora} || 0%{?rhel} >= 7
163
    %define with_systemd 1
164
    %define with_systemd_daemon 1
165
    %define with_pm_utils 0
166 167
%endif

168
# Fedora 18 / RHEL-7 are first where firewalld support is enabled
169
%if 0%{?fedora} || 0%{?rhel} >= 7
170
    %define with_firewalld 1
171 172
%endif

173
# RHEL-6 stopped including Xen on all archs.
174
%if 0%{?rhel}
175
    %define with_xen 0
176 177
%endif

178
# fuse is used to provide virtualized /proc for LXC
179
%if 0%{?fedora} || 0%{?rhel} >= 7
180
    %define with_fuse      0%{!?_without_fuse:1}
181 182
%endif

183 184
%define with_polkit    0%{!?_without_polkit:1}
%define with_capng     0%{!?_without_capng:1}
185 186 187
%define with_netcf     0%{!?_without_netcf:1}
%define with_udev      0%{!?_without_udev:1}
%define with_yajl      0%{!?_without_yajl:1}
188
%define with_dtrace 1
189

190 191
# interface requires netcf
%if ! 0%{?with_netcf}
192
    %define with_interface     0
193 194
%endif

195
# Enable sanlock library for lock management with QEMU
196
# Sanlock is available only on arches where kvm is available for RHEL
197
%if 0%{?fedora}
198
    %define with_sanlock 0%{!?_without_sanlock:1}
E
Eric Blake 已提交
199
%endif
200
%if 0%{?rhel}
201
    %ifarch %{qemu_kvm_arches}
202
        %define with_sanlock 0%{!?_without_sanlock:1}
203
    %endif
204 205
%endif

206
# Enable libssh2 transport for new enough distros
207
%if 0%{?fedora}
208
    %define with_libssh2 0%{!?_without_libssh2:1}
209 210
%endif

211 212 213 214 215
# Enable wireshark plugins for all distros shipping libvirt 1.2.2 or newer
%if 0%{?fedora} >= 21
    %define with_wireshark 0%{!?_without_wireshark:1}
%endif

216

217
%if %{with_qemu} || %{with_lxc} || %{with_uml}
218
    %define with_nwfilter 0%{!?_without_nwfilter:1}
219
# Enable libpcap library
220 221
    %define with_libpcap  0%{!?_without_libpcap:1}
    %define with_macvtap  0%{!?_without_macvtap:1}
222

223
# numad is used to manage the CPU and memory placement dynamically,
224
# it's not available on s390[x] and ARM.
225
    %ifnarch s390 s390x %{arm}
226
        %define with_numad    0%{!?_without_numad:1}
227
    %endif
228 229 230
%endif

%if %{with_macvtap}
231
    %define with_libnl 1
232 233
%endif

234
# Pull in cgroups config system
235 236
%if %{with_qemu} || %{with_lxc}
    %define with_cgconfig 0%{!?_without_cgconfig:1}
237 238
%endif

239
%if %{with_udev} || %{with_hal}
240
    %define with_nodedev 1
241
%else
242
    %define with_nodedev 0
243 244 245
%endif

%if %{with_storage_fs} || %{with_storage_mpath} || %{with_storage_iscsi} || %{with_storage_lvm} || %{with_storage_disk}
246
    %define with_storage 1
247
%else
248
    %define with_storage 0
249 250 251
%endif


252
# Force QEMU to run as non-root
253 254
%define qemu_user  qemu
%define qemu_group  qemu
255

256

257 258 259 260 261 262
# Advertise OVMF and AAVMF from nightly firmware repo
%if 0%{?fedora}
    %define with_loader_nvram --with-loader-nvram="/usr/share/edk2.git/ovmf-x64/OVMF_CODE-pure-efi.fd:/usr/share/edk2.git/ovmf-x64/OVMF_VARS-pure-efi.fd:/usr/share/edk2.git/aarch64/QEMU_EFI-pflash.raw:/usr/share/edk2.git/aarch64/vars-template-pflash.raw"
%endif


263
%if 0%{?fedora} || 0%{?rhel} >= 7
264
    %define with_systemd_macros 1
265
%else
266
    %define with_systemd_macros 0
267 268 269
%endif


270 271 272 273 274
# RHEL releases provide stable tool chains and so it is safe to turn
# compiler warning into errors without being worried about frequent
# changes in reported warnings
%if 0%{?rhel}
    %define enable_werror --enable-werror
J
Jiri Denemark 已提交
275
%else
276
    %define enable_werror --disable-werror
277 278 279
%endif


C
Cole Robinson 已提交
280
Summary: Library providing a simple virtualization API
281
Name: libvirt
282
Version: @VERSION@
283
Release: 1%{?dist}%{?extra_release}
284
License: LGPLv2+
285
Group: Development/Libraries
286
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
287
URL: http://libvirt.org/
288

289
%if %(echo %{version} | grep -o \\. | wc -l) == 3
290
    %define mainturl stable_updates/
291 292 293
%endif
Source: http://libvirt.org/sources/%{?mainturl}libvirt-%{version}.tar.gz

294
Requires: libvirt-daemon = %{version}-%{release}
295
%if %{with_network}
296
Requires: libvirt-daemon-config-network = %{version}-%{release}
297 298
%endif
%if %{with_nwfilter}
299
Requires: libvirt-daemon-config-nwfilter = %{version}-%{release}
300 301
%endif
%if %{with_libxl}
302
Requires: libvirt-daemon-driver-libxl = %{version}-%{release}
303 304
%endif
%if %{with_lxc}
305
Requires: libvirt-daemon-driver-lxc = %{version}-%{release}
306 307
%endif
%if %{with_qemu}
308
Requires: libvirt-daemon-driver-qemu = %{version}-%{release}
309 310
%endif
%if %{with_uml}
311
Requires: libvirt-daemon-driver-uml = %{version}-%{release}
312 313
%endif
%if %{with_xen}
314
Requires: libvirt-daemon-driver-xen = %{version}-%{release}
315 316
%endif
%if %{with_vbox}
317
Requires: libvirt-daemon-driver-vbox = %{version}-%{release}
318 319
%endif
%if %{with_nwfilter}
320
Requires: libvirt-daemon-driver-nwfilter = %{version}-%{release}
321
%endif
322

323
%if %{with_interface}
324
Requires: libvirt-daemon-driver-interface = %{version}-%{release}
325
%endif
326 327 328 329
Requires: libvirt-daemon-driver-secret = %{version}-%{release}
Requires: libvirt-daemon-driver-storage = %{version}-%{release}
Requires: libvirt-daemon-driver-network = %{version}-%{release}
Requires: libvirt-daemon-driver-nodedev = %{version}-%{release}
330
Requires: libvirt-client = %{version}-%{release}
331

332 333
# All build-time requirements. Run-time requirements are
# listed against each sub-RPM
334 335 336 337 338
%if 0%{?enable_autotools}
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: gettext-devel
BuildRequires: libtool
339
BuildRequires: /usr/bin/pod2man
340
%endif
341
BuildRequires: git
342
BuildRequires: perl
D
Daniel P. Berrange 已提交
343
BuildRequires: python
344 345 346
%if %{with_systemd}
BuildRequires: systemd-units
%endif
347 348 349
%if %{with_systemd_daemon}
BuildRequires: systemd-devel
%endif
350
%if %{with_xen} || %{with_libxl}
351
BuildRequires: xen-devel
352
%endif
353
BuildRequires: libxml2-devel
354
BuildRequires: xhtml1-dtds
E
Eric Blake 已提交
355
BuildRequires: libxslt
356
BuildRequires: readline-devel
357
BuildRequires: ncurses-devel
358
BuildRequires: gettext
359
BuildRequires: libtasn1-devel
360
%if (0%{?rhel} && 0%{?rhel} < 7)
361
BuildRequires: libgcrypt-devel
362
%endif
R
Richard W.M. Jones 已提交
363
BuildRequires: gnutls-devel
364
BuildRequires: libattr-devel
365 366
# For pool-build probing for existing pools
BuildRequires: libblkid-devel >= 2.17
E
Eric Blake 已提交
367 368
# for augparse, optionally used in testing
BuildRequires: augeas
369
%if %{with_hal}
370
BuildRequires: hal-devel
371
%endif
372
%if %{with_udev}
373
    %if 0%{?fedora} || 0%{?rhel} >= 7
374
BuildRequires: systemd-devel >= 185
375
    %else
376
BuildRequires: libudev-devel >= 145
377
    %endif
378 379
BuildRequires: libpciaccess-devel >= 0.10.9
%endif
380 381 382
%if %{with_yajl}
BuildRequires: yajl-devel
%endif
383
%if %{with_sanlock}
384 385
BuildRequires: sanlock-devel >= 2.4
%endif
386 387 388
%if %{with_libpcap}
BuildRequires: libpcap-devel
%endif
389
%if %{with_libnl}
390 391
BuildRequires: libnl3-devel
%endif
392
BuildRequires: avahi-devel
393
%if %{with_selinux}
394
BuildRequires: libselinux-devel
395
%endif
396 397 398
%if %{with_apparmor}
BuildRequires: libapparmor-devel
%endif
399
%if %{with_network}
400
BuildRequires: dnsmasq >= 2.41
E
Eric Blake 已提交
401
BuildRequires: iptables
402
    %if 0%{?rhel} && 0%{?rhel} < 7
E
Eric Blake 已提交
403
BuildRequires: iptables-ipv6
404
    %endif
E
Eric Blake 已提交
405 406 407 408
BuildRequires: radvd
%endif
%if %{with_nwfilter}
BuildRequires: ebtables
409
%endif
E
Eric Blake 已提交
410
BuildRequires: module-init-tools
411
%if %{with_sasl}
412
BuildRequires: cyrus-sasl-devel
413
%endif
414
%if %{with_polkit}
415
    %if 0%{?fedora} || 0%{?rhel} >= 7
C
Cole Robinson 已提交
416 417
# F22 polkit-devel doesn't pull in polkit anymore, which we need for pkcheck
BuildRequires: polkit >= 0.112
418
BuildRequires: polkit-devel >= 0.112
419
    %else
E
Eric Blake 已提交
420
BuildRequires: polkit-devel >= 0.93
421
    %endif
422
%endif
423
%if %{with_storage_fs}
424 425
# For mount/umount in FS driver
BuildRequires: util-linux
426
%endif
427 428 429 430
%if %{with_qemu}
# From QEMU RPMs
BuildRequires: /usr/bin/qemu-img
%else
431
    %if %{with_xen}
432 433
# From Xen RPMs
BuildRequires: /usr/sbin/qcow-create
434
    %endif
435
%endif
436
%if %{with_storage_lvm}
437 438
# For LVM drivers
BuildRequires: lvm2
439 440
%endif
%if %{with_storage_iscsi}
441 442
# For ISCSI driver
BuildRequires: iscsi-initiator-utils
443 444
%endif
%if %{with_storage_disk}
445 446
# For disk driver
BuildRequires: parted-devel
447
%endif
448
%if %{with_storage_mpath} || %{with_storage_disk}
449 450
# For Multipath support
BuildRequires: device-mapper-devel
451 452
%endif
%if %{with_storage_rbd}
453 454 455 456
    %if 0%{?rhel} >= 7
BuildRequires: librados2-devel
BuildRequires: librbd1-devel
    %else
457
BuildRequires: ceph-devel
458
    %endif
459
%endif
460 461 462 463
%if %{with_storage_gluster}
BuildRequires: glusterfs-api-devel >= 3.4.1
BuildRequires: glusterfs-devel >= 3.4.1
%endif
464
%if %{with_numactl}
465 466
# For QEMU/LXC numa info
BuildRequires: numactl-devel
467
%endif
D
Daniel P. Berrange 已提交
468
%if %{with_capng}
469
BuildRequires: libcap-ng-devel >= 0.5.0
D
Daniel P. Berrange 已提交
470
%endif
471 472 473
%if %{with_fuse}
BuildRequires: fuse-devel >= 2.8.6
%endif
474
%if %{with_phyp} || %{with_libssh2}
475 476
BuildRequires: libssh2-devel >= 1.3.0
%endif
477

M
Mark McLoughlin 已提交
478
%if %{with_netcf}
479
    %if 0%{?fedora} || 0%{?rhel} >= 7
480
BuildRequires: netcf-devel >= 0.2.2
481
    %else
482
BuildRequires: netcf-devel >= 0.1.8
483
    %endif
484
%endif
485 486 487
%if %{with_esx}
BuildRequires: libcurl-devel
%endif
488 489 490
%if %{with_hyperv}
BuildRequires: libwsman-devel >= 2.2.3
%endif
491 492 493
%if %{with_audit}
BuildRequires: audit-libs-devel
%endif
D
Daniel Veillard 已提交
494 495 496 497 498
%if %{with_dtrace}
# we need /usr/sbin/dtrace
BuildRequires: systemtap-sdt-devel
%endif

499 500 501 502 503 504
%if %{with_storage_fs}
# For mount/umount in FS driver
BuildRequires: util-linux
# For showmount in FS driver (netfs discovery)
BuildRequires: nfs-utils
%endif
505

506 507
%if %{with_firewalld} || %{with_polkit}
# Communication with the firewall and polkit daemons use DBus
508 509 510
BuildRequires: dbus-devel
%endif

511 512
# Fedora build root suckage
BuildRequires: gawk
513

514 515 516
# For storage wiping with different algorithms
BuildRequires: scrub

517 518 519 520
%if %{with_numad}
BuildRequires: numad
%endif

521 522 523 524
%if %{with_wireshark}
BuildRequires: wireshark-devel
%endif

525 526
Provides: bundled(gnulib)

527
%description
528
Libvirt is a C toolkit to interact with the virtualization capabilities
529 530 531
of recent versions of Linux (and other OSes). The main package includes
the libvirtd server exporting the virtualization support.

532 533 534 535 536 537 538 539
%package docs
Summary: API reference and website documentation
Group: Development/Libraries

%description docs
Includes the API reference for the libvirt C library, and a complete
copy of the libvirt.org website documentation.

540 541 542 543 544 545 546 547 548 549 550 551 552 553 554
%package daemon
Summary: Server side daemon and supporting files for libvirt library
Group: Development/Libraries

# All runtime requirements for the libvirt package (runtime requrements
# for subpackages are listed later in those subpackages)

# The client side, i.e. shared libs and virsh are in a subpackage
Requires: %{name}-client = %{version}-%{release}

# for modprobe of pci devices
Requires: module-init-tools
# for /sbin/ip & /sbin/tc
Requires: iproute
Requires: avahi-libs
555 556
%if %{with_polkit}
    %if 0%{?fedora} || 0%{?rhel} >= 7
557
Requires: polkit >= 0.112
558
    %else
E
Eric Blake 已提交
559
Requires: polkit >= 0.93
560
    %endif
561 562
%endif
%if %{with_cgconfig}
563
Requires: libcgroup
564 565
%endif
%ifarch %{ix86} x86_64 ia64
566 567
# For virConnectGetSysinfo
Requires: dmidecode
568
%endif
569
# For service management
570
%if %{with_systemd}
571 572 573 574
Requires(post): systemd-units
Requires(post): systemd-sysv
Requires(preun): systemd-units
Requires(postun): systemd-units
575 576
%endif
%if %{with_numad}
577
Requires: numad
578
%endif
579 580
# libvirtd depends on 'messagebus' service
Requires: dbus
581 582
# For uid creation during pre
Requires(pre): shadow-utils
583 584 585 586 587 588

%description daemon
Server side daemon required to manage the virtualization capabilities
of recent versions of Linux. Requires a hypervisor specific sub-RPM
for specific drivers.

589
%if %{with_network}
590 591 592 593 594
%package daemon-config-network
Summary: Default configuration files for the libvirtd daemon
Group: Development/Libraries

Requires: libvirt-daemon = %{version}-%{release}
595
Requires: libvirt-daemon-driver-network = %{version}-%{release}
596 597 598

%description daemon-config-network
Default configuration files for setting up NAT based networking
599
%endif
600

601
%if %{with_nwfilter}
602 603 604 605 606
%package daemon-config-nwfilter
Summary: Network filter configuration files for the libvirtd daemon
Group: Development/Libraries

Requires: libvirt-daemon = %{version}-%{release}
607
Requires: libvirt-daemon-driver-nwfilter = %{version}-%{release}
608 609 610

%description daemon-config-nwfilter
Network filter configuration files for cleaning guest traffic
611
%endif
612

613
%if %{with_network}
614 615 616 617
%package daemon-driver-network
Summary: Network driver plugin for the libvirtd daemon
Group: Development/Libraries
Requires: libvirt-daemon = %{version}-%{release}
618 619 620
Requires: dnsmasq >= 2.41
Requires: radvd
Requires: iptables
621
    %if 0%{?rhel} && 0%{?rhel} < 7
622
Requires: iptables-ipv6
623
    %endif
624 625 626 627 628

%description daemon-driver-network
The network driver plugin for the libvirtd daemon, providing
an implementation of the virtual network APIs using the Linux
bridge capabilities.
629
%endif
630 631


632
%if %{with_nwfilter}
633 634 635 636
%package daemon-driver-nwfilter
Summary: Nwfilter driver plugin for the libvirtd daemon
Group: Development/Libraries
Requires: libvirt-daemon = %{version}-%{release}
637
Requires: iptables
638
    %if 0%{?rhel} && 0%{?rhel} < 7
639
Requires: iptables-ipv6
640
    %endif
641
Requires: ebtables
642 643 644 645 646

%description daemon-driver-nwfilter
The nwfilter driver plugin for the libvirtd daemon, providing
an implementation of the firewall APIs using the ebtables,
iptables and ip6tables capabilities
647
%endif
648 649


650
%if %{with_nodedev}
651 652 653 654
%package daemon-driver-nodedev
Summary: Nodedev driver plugin for the libvirtd daemon
Group: Development/Libraries
Requires: libvirt-daemon = %{version}-%{release}
655
# needed for device enumeration
656
    %if %{with_hal}
657
Requires: hal
658 659 660
    %endif
    %if %{with_udev}
        %if 0%{?fedora} || 0%{?rhel} >= 7
661
Requires: systemd >= 185
662
        %else
663
Requires: udev >= 145
664
        %endif
665
    %endif
666 667 668 669 670

%description daemon-driver-nodedev
The nodedev driver plugin for the libvirtd daemon, providing
an implementation of the node device APIs using the udev
capabilities.
671
%endif
672 673


674
%if %{with_interface}
675 676 677 678
%package daemon-driver-interface
Summary: Interface driver plugin for the libvirtd daemon
Group: Development/Libraries
Requires: libvirt-daemon = %{version}-%{release}
679
    %if %{with_netcf} && (0%{?fedora} || 0%{?rhel} >= 7)
680
Requires: netcf-libs >= 0.2.2
681
    %endif
682 683 684 685 686

%description daemon-driver-interface
The interface driver plugin for the libvirtd daemon, providing
an implementation of the network interface APIs using the
netcf library
687
%endif
688 689 690 691 692 693 694 695 696 697 698 699


%package daemon-driver-secret
Summary: Secret driver plugin for the libvirtd daemon
Group: Development/Libraries
Requires: libvirt-daemon = %{version}-%{release}

%description daemon-driver-secret
The secret driver plugin for the libvirtd daemon, providing
an implementation of the secret key APIs.


700
%if %{with_storage}
701 702 703 704
%package daemon-driver-storage
Summary: Storage driver plugin for the libvirtd daemon
Group: Development/Libraries
Requires: libvirt-daemon = %{version}-%{release}
705
    %if %{with_storage_fs}
706 707 708 709
Requires: nfs-utils
# For mkfs
Requires: util-linux
# For glusterfs
710
        %if 0%{?fedora}
711
Requires: glusterfs-client >= 2.0.1
712
        %endif
713 714
    %endif
    %if %{with_storage_lvm}
715 716
# For LVM drivers
Requires: lvm2
717 718
    %endif
    %if %{with_storage_iscsi}
719 720
# For ISCSI driver
Requires: iscsi-initiator-utils
721 722
    %endif
    %if %{with_storage_disk}
723 724 725
# For disk driver
Requires: parted
Requires: device-mapper
726 727
    %endif
    %if %{with_storage_mpath}
728 729
# For multipath support
Requires: device-mapper
730 731
    %endif
    %if %{with_storage_sheepdog}
732 733
# For Sheepdog support
Requires: sheepdog
734 735
    %endif
    %if %{with_qemu}
736 737
# From QEMU RPMs
Requires: /usr/bin/qemu-img
738 739
    %else
        %if %{with_xen}
740 741
# From Xen RPMs
Requires: /usr/sbin/qcow-create
742
        %endif
743
    %endif
744 745 746 747 748

%description daemon-driver-storage
The storage driver plugin for the libvirtd daemon, providing
an implementation of the storage APIs using LVM, iSCSI,
parted and more.
749
%endif
750 751


752
%if %{with_qemu}
753 754 755 756 757
%package daemon-driver-qemu
Summary: Qemu driver plugin for the libvirtd daemon
Group: Development/Libraries
Requires: libvirt-daemon = %{version}-%{release}
# There really is a hard cross-driver dependency here
758
Requires: libvirt-daemon-driver-network = %{version}-%{release}
759 760 761 762 763 764
Requires: /usr/bin/qemu-img
# For image compression
Requires: gzip
Requires: bzip2
Requires: lzop
Requires: xz
765 766 767 768 769

%description daemon-driver-qemu
The qemu driver plugin for the libvirtd daemon, providing
an implementation of the hypervisor driver APIs using
QEMU
770
%endif
771 772


773
%if %{with_lxc}
774 775 776 777 778
%package daemon-driver-lxc
Summary: LXC driver plugin for the libvirtd daemon
Group: Development/Libraries
Requires: libvirt-daemon = %{version}-%{release}
# There really is a hard cross-driver dependency here
779
Requires: libvirt-daemon-driver-network = %{version}-%{release}
780 781 782 783 784

%description daemon-driver-lxc
The LXC driver plugin for the libvirtd daemon, providing
an implementation of the hypervisor driver APIs using
the Linux kernel
785
%endif
786 787


788
%if %{with_uml}
789 790 791 792 793 794 795 796 797
%package daemon-driver-uml
Summary: Uml driver plugin for the libvirtd daemon
Group: Development/Libraries
Requires: libvirt-daemon = %{version}-%{release}

%description daemon-driver-uml
The UML driver plugin for the libvirtd daemon, providing
an implementation of the hypervisor driver APIs using
User Mode Linux
798
%endif
799 800


801
%if %{with_xen}
802 803 804 805 806 807 808 809 810
%package daemon-driver-xen
Summary: Xen driver plugin for the libvirtd daemon
Group: Development/Libraries
Requires: libvirt-daemon = %{version}-%{release}

%description daemon-driver-xen
The Xen driver plugin for the libvirtd daemon, providing
an implementation of the hypervisor driver APIs using
Xen
811
%endif
812 813


814
%if %{with_vbox}
815 816 817 818 819 820 821 822 823
%package daemon-driver-vbox
Summary: VirtualBox driver plugin for the libvirtd daemon
Group: Development/Libraries
Requires: libvirt-daemon = %{version}-%{release}

%description daemon-driver-vbox
The vbox driver plugin for the libvirtd daemon, providing
an implementation of the hypervisor driver APIs using
VirtualBox
824
%endif
825 826


827
%if %{with_libxl}
828 829 830 831 832 833 834 835 836
%package daemon-driver-libxl
Summary: Libxl driver plugin for the libvirtd daemon
Group: Development/Libraries
Requires: libvirt-daemon = %{version}-%{release}

%description daemon-driver-libxl
The Libxl driver plugin for the libvirtd daemon, providing
an implementation of the hypervisor driver APIs using
Libxl
837
%endif
838 839


840

841
%if %{with_qemu_tcg}
842 843 844 845 846
%package daemon-qemu
Summary: Server side daemon & driver required to run QEMU guests
Group: Development/Libraries

Requires: libvirt-daemon = %{version}-%{release}
847 848 849 850
Requires: libvirt-daemon-driver-qemu = %{version}-%{release}
Requires: libvirt-daemon-driver-interface = %{version}-%{release}
Requires: libvirt-daemon-driver-network = %{version}-%{release}
Requires: libvirt-daemon-driver-nodedev = %{version}-%{release}
851
Requires: libvirt-daemon-driver-nwfilter = %{version}-%{release}
852 853
Requires: libvirt-daemon-driver-secret = %{version}-%{release}
Requires: libvirt-daemon-driver-storage = %{version}-%{release}
854 855 856 857 858
Requires: qemu

%description daemon-qemu
Server side daemon and driver required to manage the virtualization
capabilities of the QEMU TCG emulators
859
%endif
860 861


862
%if %{with_qemu_kvm}
863 864 865 866 867
%package daemon-kvm
Summary: Server side daemon & driver required to run KVM guests
Group: Development/Libraries

Requires: libvirt-daemon = %{version}-%{release}
868 869 870 871
Requires: libvirt-daemon-driver-qemu = %{version}-%{release}
Requires: libvirt-daemon-driver-interface = %{version}-%{release}
Requires: libvirt-daemon-driver-network = %{version}-%{release}
Requires: libvirt-daemon-driver-nodedev = %{version}-%{release}
872
Requires: libvirt-daemon-driver-nwfilter = %{version}-%{release}
873 874
Requires: libvirt-daemon-driver-secret = %{version}-%{release}
Requires: libvirt-daemon-driver-storage = %{version}-%{release}
875 876 877 878 879
Requires: qemu-kvm

%description daemon-kvm
Server side daemon and driver required to manage the virtualization
capabilities of the KVM hypervisor
880
%endif
881 882


883
%if %{with_lxc}
884 885 886 887 888
%package daemon-lxc
Summary: Server side daemon & driver required to run LXC guests
Group: Development/Libraries

Requires: libvirt-daemon = %{version}-%{release}
889 890 891 892
Requires: libvirt-daemon-driver-lxc = %{version}-%{release}
Requires: libvirt-daemon-driver-interface = %{version}-%{release}
Requires: libvirt-daemon-driver-network = %{version}-%{release}
Requires: libvirt-daemon-driver-nodedev = %{version}-%{release}
893
Requires: libvirt-daemon-driver-nwfilter = %{version}-%{release}
894 895
Requires: libvirt-daemon-driver-secret = %{version}-%{release}
Requires: libvirt-daemon-driver-storage = %{version}-%{release}
896 897 898 899

%description daemon-lxc
Server side daemon and driver required to manage the virtualization
capabilities of LXC
900
%endif
901 902


903
%if %{with_uml}
904 905 906 907 908
%package daemon-uml
Summary: Server side daemon & driver required to run UML guests
Group: Development/Libraries

Requires: libvirt-daemon = %{version}-%{release}
909 910 911 912
Requires: libvirt-daemon-driver-uml = %{version}-%{release}
Requires: libvirt-daemon-driver-interface = %{version}-%{release}
Requires: libvirt-daemon-driver-network = %{version}-%{release}
Requires: libvirt-daemon-driver-nodedev = %{version}-%{release}
913
Requires: libvirt-daemon-driver-nwfilter = %{version}-%{release}
914 915
Requires: libvirt-daemon-driver-secret = %{version}-%{release}
Requires: libvirt-daemon-driver-storage = %{version}-%{release}
916 917 918 919 920
# There are no UML kernel RPMs in Fedora/RHEL to depend on.

%description daemon-uml
Server side daemon and driver required to manage the virtualization
capabilities of UML
921
%endif
922 923


924
%if %{with_xen} || %{with_libxl}
925 926 927 928 929
%package daemon-xen
Summary: Server side daemon & driver required to run XEN guests
Group: Development/Libraries

Requires: libvirt-daemon = %{version}-%{release}
930
    %if %{with_xen}
931
Requires: libvirt-daemon-driver-xen = %{version}-%{release}
932 933
    %endif
    %if %{with_libxl}
934
Requires: libvirt-daemon-driver-libxl = %{version}-%{release}
935
    %endif
936 937 938
Requires: libvirt-daemon-driver-interface = %{version}-%{release}
Requires: libvirt-daemon-driver-network = %{version}-%{release}
Requires: libvirt-daemon-driver-nodedev = %{version}-%{release}
939
Requires: libvirt-daemon-driver-nwfilter = %{version}-%{release}
940 941
Requires: libvirt-daemon-driver-secret = %{version}-%{release}
Requires: libvirt-daemon-driver-storage = %{version}-%{release}
942 943 944 945 946
Requires: xen

%description daemon-xen
Server side daemon and driver required to manage the virtualization
capabilities of XEN
947
%endif
948

949
%if %{with_vbox}
950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965
%package daemon-vbox
Summary: Server side daemon & driver required to run VirtualBox guests
Group: Development/Libraries

Requires: libvirt-daemon = %{version}-%{release}
Requires: libvirt-daemon-driver-vbox = %{version}-%{release}
Requires: libvirt-daemon-driver-interface = %{version}-%{release}
Requires: libvirt-daemon-driver-network = %{version}-%{release}
Requires: libvirt-daemon-driver-nodedev = %{version}-%{release}
Requires: libvirt-daemon-driver-nwfilter = %{version}-%{release}
Requires: libvirt-daemon-driver-secret = %{version}-%{release}
Requires: libvirt-daemon-driver-storage = %{version}-%{release}

%description daemon-vbox
Server side daemon and driver required to manage the virtualization
capabilities of VirtualBox
966
%endif
967

968
%package client
969
Summary: Client side library and utilities of the libvirt library
970 971 972 973 974 975
Group: Development/Libraries
Requires: readline
Requires: ncurses
# So remote clients can access libvirt over SSH tunnel
# (client invokes 'nc' against the UNIX socket on the server)
Requires: nc
E
Eric Blake 已提交
976
# Needed by /usr/libexec/libvirt-guests.sh script.
O
Osier Yang 已提交
977
Requires: gettext
978 979
# Needed by virt-pki-validate script.
Requires: gnutls-utils
980
%if %{with_pm_utils}
981 982
# Needed for probing the power management features of the host.
Requires: pm-utils
983
%endif
984 985 986 987 988 989 990 991 992 993
%if %{with_sasl}
Requires: cyrus-sasl
# Not technically required, but makes 'out-of-box' config
# work correctly & doesn't have onerous dependencies
Requires: cyrus-sasl-md5
%endif

%description client
Shared libraries and client binaries needed to access to the
virtualization capabilities of recent versions of Linux (and other OSes).
994

995 996 997 998
%if %{with_wireshark}
%package wireshark
Summary: Wireshark dissector plugin for libvirt RPC transactions
Group: Development/Libraries
999
Requires: wireshark >= 1.12.6-4
1000 1001 1002 1003 1004 1005
Requires: %{name}-client = %{version}-%{release}

%description wireshark
Wireshark dissector plugin for better analysis of libvirt RPC traffic.
%endif

1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017
%if %{with_lxc}
%package login-shell
Summary: Login shell for connecting users to an LXC container
Group: Development/Libraries
Requires: %{name}-client = %{version}-%{release}

%description login-shell
Provides the set-uid virt-login-shell binary that is used to
connect a user to an LXC container when they login, by switching
namespaces.
%endif

1018
%package devel
1019
Summary: Libraries, includes, etc. to compile with the libvirt library
1020
Group: Development/Libraries
1021
Requires: %{name}-client = %{version}-%{release}
1022
Requires: pkgconfig
1023 1024

%description devel
1025
Include header files & development libraries for the libvirt C library.
1026

1027 1028 1029 1030
%if %{with_sanlock}
%package lock-sanlock
Summary: Sanlock lock manager plugin for QEMU driver
Group: Development/Libraries
1031
Requires: sanlock >= 2.4
1032 1033
#for virt-sanlock-cleanup require augeas
Requires: augeas
1034
Requires: %{name}-daemon = %{version}-%{release}
1035
Requires: %{name}-client = %{version}-%{release}
1036 1037 1038 1039 1040 1041

%description lock-sanlock
Includes the Sanlock lock manager plugin for the QEMU
driver
%endif

1042 1043 1044 1045 1046 1047 1048 1049 1050 1051
%if %{with_nss_plugin}
%package nss
Summary: Libvirt plugin for Name Service Switch
Group: Development/Libraries
Requires: libvirt-daemon-driver-network = %{version}-%{release}

%description nss
Libvirt plugin for NSS for translating domain names into IP addresses.
%endif

M
Martin Kletzander 已提交
1052

1053
%prep
1054 1055 1056 1057 1058
%if ! %{supported_platform}
echo "This RPM requires either Fedora >= 20 or RHEL >= 6"
exit 1
%endif

1059 1060
%setup -q

1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094
# Patches have to be stored in a temporary file because RPM has
# a limit on the length of the result of any macro expansion;
# if the string is longer, it's silently cropped
%{lua:
    tmp = os.tmpname();
    f = io.open(tmp, "w+");
    count = 0;
    for i, p in ipairs(patches) do
        f:write(p.."\n");
        count = count + 1;
    end;
    f:close();
    print("PATCHCOUNT="..count.."\n")
    print("PATCHLIST="..tmp.."\n")
}

git init -q
git config user.name rpm-build
git config user.email rpm-build
git config gc.auto 0
git add .
git commit -q -a --author 'rpm-build <rpm-build>' \
           -m '%{name}-%{version} base'

COUNT=$(grep '\.patch$' $PATCHLIST | wc -l)
if [ $COUNT -ne $PATCHCOUNT ]; then
    echo "Found $COUNT patches in $PATCHLIST, expected $PATCHCOUNT"
    exit 1
fi
if [ $COUNT -gt 0 ]; then
    xargs git am <$PATCHLIST || exit 1
fi
echo "Applied $COUNT patches"
rm -f $PATCHLIST
1095
rm -rf .git
1096

1097
%build
1098
%if ! %{with_xen}
1099
    %define _without_xen --without-xen
1100 1101 1102
%endif

%if ! %{with_qemu}
1103
    %define _without_qemu --without-qemu
1104 1105
%endif

1106
%if ! %{with_openvz}
1107
    %define _without_openvz --without-openvz
1108 1109 1110
%endif

%if ! %{with_lxc}
1111
    %define _without_lxc --without-lxc
1112 1113
%endif

M
Mark McLoughlin 已提交
1114
%if ! %{with_vbox}
1115
    %define _without_vbox --without-vbox
M
Mark McLoughlin 已提交
1116 1117
%endif

J
Jim Fehlig 已提交
1118
%if ! %{with_libxl}
1119
    %define _without_libxl --without-libxl
J
Jim Fehlig 已提交
1120 1121
%endif

1122
%if ! %{with_sasl}
1123
    %define _without_sasl --without-sasl
1124 1125
%endif

1126
%if ! %{with_phyp}
1127
    %define _without_phyp --without-phyp
1128 1129
%endif

1130
%if ! %{with_esx}
1131
    %define _without_esx --without-esx
1132 1133
%endif

1134
%if ! %{with_hyperv}
1135
    %define _without_hyperv --without-hyperv
1136 1137
%endif

1138
%if ! %{with_vmware}
1139
    %define _without_vmware --without-vmware
1140 1141
%endif

1142
%if ! %{with_polkit}
1143
    %define _without_polkit --without-polkit
1144 1145
%endif

1146
%if ! %{with_uml}
1147
    %define _without_uml --without-uml
1148 1149
%endif

1150
%if ! %{with_interface}
1151
    %define _without_interface --without-interface
1152 1153
%endif

1154
%if ! %{with_network}
1155
    %define _without_network --without-network
1156 1157
%endif

1158
%if ! %{with_storage_fs}
1159
    %define _without_storage_fs --without-storage-fs
1160 1161 1162
%endif

%if ! %{with_storage_lvm}
1163
    %define _without_storage_lvm --without-storage-lvm
1164 1165 1166
%endif

%if ! %{with_storage_iscsi}
1167
    %define _without_storage_iscsi --without-storage-iscsi
1168 1169 1170
%endif

%if ! %{with_storage_disk}
1171
    %define _without_storage_disk --without-storage-disk
1172 1173
%endif

1174
%if ! %{with_storage_mpath}
1175
    %define _without_storage_mpath --without-storage-mpath
1176 1177
%endif

1178
%if ! %{with_storage_rbd}
1179
    %define _without_storage_rbd --without-storage-rbd
1180 1181
%endif

1182
%if ! %{with_storage_sheepdog}
1183
    %define _without_storage_sheepdog --without-storage-sheepdog
1184 1185
%endif

1186 1187 1188 1189
%if ! %{with_storage_gluster}
    %define _without_storage_gluster --without-storage-gluster
%endif

1190
%if ! %{with_numactl}
1191
    %define _without_numactl --without-numactl
1192 1193
%endif

1194
%if ! %{with_numad}
1195
    %define _without_numad --without-numad
1196 1197
%endif

1198
%if ! %{with_capng}
1199
    %define _without_capng --without-capng
1200 1201
%endif

1202
%if ! %{with_fuse}
1203
    %define _without_fuse --without-fuse
1204 1205
%endif

M
Mark McLoughlin 已提交
1206
%if ! %{with_netcf}
1207
    %define _without_netcf --without-netcf
M
Mark McLoughlin 已提交
1208 1209
%endif

1210
%if ! %{with_selinux}
1211
    %define _without_selinux --without-selinux
1212 1213
%endif

1214 1215 1216 1217
%if ! %{with_apparmor}
    %define _without_apparmor --without-apparmor
%endif

1218
%if ! %{with_hal}
1219
    %define _without_hal --without-hal
1220 1221
%endif

1222
%if ! %{with_udev}
1223
    %define _without_udev --without-udev
1224 1225
%endif

1226
%if ! %{with_yajl}
1227
    %define _without_yajl --without-yajl
1228 1229
%endif

1230
%if ! %{with_sanlock}
1231
    %define _without_sanlock --without-sanlock
1232 1233
%endif

1234
%if ! %{with_libpcap}
1235
    %define _without_libpcap --without-libpcap
1236 1237
%endif

1238
%if ! %{with_macvtap}
1239
    %define _without_macvtap --without-macvtap
1240 1241
%endif

1242
%if ! %{with_audit}
1243
    %define _without_audit --without-audit
1244 1245
%endif

1246
%if ! %{with_dtrace}
1247
    %define _without_dtrace --without-dtrace
1248 1249
%endif

1250
%if %{with_firewalld}
1251
    %define _with_firewalld --with-firewalld
1252 1253
%endif

1254 1255 1256 1257
%if ! %{with_wireshark}
    %define _without_wireshark --without-wireshark-dissector
%endif

1258 1259 1260 1261
%if ! %{with_systemd_daemon}
    %define _without_systemd_daemon --without-systemd-daemon
%endif

1262 1263 1264 1265
%if ! %{with_pm_utils}
    %define _without_pm_utils --without-pm-utils
%endif

1266 1267 1268 1269
%if ! %{with_nss_plugin}
    %define _without_nss_plugin --without-nss-plugin
%endif

1270 1271 1272 1273 1274 1275
%define when  %(date +"%%F-%%T")
%define where %(hostname)
%define who   %{?packager}%{!?packager:Unknown}
%define with_packager --with-packager="%{who}, %{when}, %{where}"
%define with_packager_version --with-packager-version="%{release}"

1276
%if %{with_systemd}
1277
    %define with_init_script --with-init-script=systemd
1278
%else
1279
    %define with_init_script --with-init-script=redhat
1280
%endif
1281

1282
%if %{with_selinux}
1283
    %if 0%{?fedora} || 0%{?rhel} >= 7
1284 1285 1286 1287
        %define with_selinux_mount --with-selinux-mount="/sys/fs/selinux"
    %else
        %define with_selinux_mount --with-selinux-mount="/selinux"
    %endif
1288 1289
%endif

1290 1291 1292 1293 1294 1295
# place macros above and build commands below this comment

%if 0%{?enable_autotools}
 autoreconf -if
%endif

1296
rm -f po/stamp-po
1297 1298
%configure %{?_without_xen} \
           %{?_without_qemu} \
1299 1300
           %{?_without_openvz} \
           %{?_without_lxc} \
M
Mark McLoughlin 已提交
1301
           %{?_without_vbox} \
1302
           %{?_without_libxl} \
1303
           %{?_without_sasl} \
1304
           --with-avahi \
1305
           %{?_without_polkit} \
1306
           --with-libvirtd \
1307
           %{?_without_uml} \
1308
           %{?_without_phyp} \
1309
           %{?_without_esx} \
1310
           %{?_without_hyperv} \
1311
           %{?_without_vmware} \
1312 1313
           --without-xenapi \
           --without-vz \
1314
           --without-bhyve \
1315
           %{?_without_interface} \
1316
           %{?_without_network} \
1317 1318 1319 1320
           %{?_without_storage_fs} \
           %{?_without_storage_lvm} \
           %{?_without_storage_iscsi} \
           %{?_without_storage_disk} \
1321
           %{?_without_storage_mpath} \
1322
           %{?_without_storage_rbd} \
1323
           %{?_without_storage_sheepdog} \
1324
           %{?_without_storage_gluster} \
1325
           %{?_without_numactl} \
1326
           %{?_without_numad} \
1327
           %{?_without_capng} \
1328
           %{?_without_fuse} \
M
Mark McLoughlin 已提交
1329
           %{?_without_netcf} \
1330
           %{?_without_selinux} \
1331
           %{?_with_selinux_mount} \
1332
           %{?_without_apparmor} \
1333
           %{?_without_hal} \
1334
           %{?_without_udev} \
1335
           %{?_without_yajl} \
1336
           %{?_without_sanlock} \
1337
           %{?_without_libpcap} \
1338
           %{?_without_macvtap} \
1339
           %{?_without_audit} \
1340
           %{?_without_dtrace} \
1341
           --with-driver-modules \
1342
           %{?_with_firewalld} \
1343
           %{?_without_wireshark} \
1344
           %{?_without_systemd_daemon} \
1345
           %{?_without_pm_utils} \
1346
           %{?_without_nss_plugin} \
1347 1348
           %{with_packager} \
           %{with_packager_version} \
1349 1350
           --with-qemu-user=%{qemu_user} \
           --with-qemu-group=%{qemu_group} \
1351
           %{?with_loader_nvram} \
1352
           %{?enable_werror} \
1353
           --enable-expensive-tests \
1354
           %{with_init_script}
J
Jim Meyering 已提交
1355
make %{?_smp_mflags}
1356
gzip -9 ChangeLog
1357 1358 1359 1360

%install
rm -fr %{buildroot}

1361 1362 1363 1364 1365
# Avoid using makeinstall macro as it changes prefixes rather than setting
# DESTDIR. Newer make_install macro would be better but it's not available
# on RHEL 5, thus we need to expand it here.
make install DESTDIR=%{?buildroot} SYSTEMD_UNIT_DIR=%{_unitdir}

1366 1367
make -C examples distclean

1368
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
1369
rm -f $RPM_BUILD_ROOT%{_libdir}/*.a
1370 1371
rm -f $RPM_BUILD_ROOT%{_libdir}/libvirt/lock-driver/*.la
rm -f $RPM_BUILD_ROOT%{_libdir}/libvirt/lock-driver/*.a
1372 1373
rm -f $RPM_BUILD_ROOT%{_libdir}/libvirt/connection-driver/*.la
rm -f $RPM_BUILD_ROOT%{_libdir}/libvirt/connection-driver/*.a
1374 1375
%if %{with_wireshark}
rm -f $RPM_BUILD_ROOT%{_libdir}/wireshark/plugins/*/libvirt.la
1376 1377
mv $RPM_BUILD_ROOT%{_libdir}/wireshark/plugins/*/libvirt.so \
   $RPM_BUILD_ROOT%{_libdir}/wireshark/plugins/libvirt.so
1378
%endif
1379

1380
# Temporarily get rid of not-installed admin-related files
1381
rm -f $RPM_BUILD_ROOT%{_libdir}/libvirt-admin.so
1382 1383
rm -f $RPM_BUILD_ROOT%{_bindir}/virt-admin
rm -f $RPM_BUILD_ROOT%{_mandir}/man1/virt-admin.1*
1384
rm -f $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/libvirt-admin.conf
1385

1386
%if %{with_network}
1387
install -d -m 0755 $RPM_BUILD_ROOT%{_datadir}/lib/libvirt/dnsmasq/
1388 1389 1390 1391 1392 1393 1394 1395
# We don't want to install /etc/libvirt/qemu/networks in the main %files list
# because if the admin wants to delete the default network completely, we don't
# want to end up re-incarnating it on every RPM upgrade.
install -d -m 0755 $RPM_BUILD_ROOT%{_datadir}/libvirt/networks/
cp $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/qemu/networks/default.xml \
   $RPM_BUILD_ROOT%{_datadir}/libvirt/networks/default.xml
rm -f $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/qemu/networks/default.xml
rm -f $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/qemu/networks/autostart/default.xml
1396
# Strip auto-generated UUID - we need it generated per-install
1397
sed -i -e "/<uuid>/d" $RPM_BUILD_ROOT%{_datadir}/libvirt/networks/default.xml
1398 1399 1400
%else
rm -f $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/qemu/networks/default.xml
rm -f $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/qemu/networks/autostart/default.xml
1401 1402
%endif
%if ! %{with_qemu}
1403 1404
rm -f $RPM_BUILD_ROOT%{_datadir}/augeas/lenses/libvirtd_qemu.aug
rm -f $RPM_BUILD_ROOT%{_datadir}/augeas/lenses/tests/test_libvirtd_qemu.aug
1405
%endif
1406
%find_lang %{name}
1407

1408 1409 1410 1411 1412
%if ! %{with_sanlock}
rm -f $RPM_BUILD_ROOT%{_datadir}/augeas/lenses/libvirt_sanlock.aug
rm -f $RPM_BUILD_ROOT%{_datadir}/augeas/lenses/tests/test_libvirt_sanlock.aug
%endif

1413 1414 1415
%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
1416
%endif
1417

1418 1419
%if ! %{with_qemu}
rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/qemu.conf
1420
rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/libvirtd.qemu
1421
%endif
A
Amy Griffis 已提交
1422 1423
%if ! %{with_lxc}
rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/lxc.conf
1424
rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/libvirtd.lxc
1425
%endif
1426 1427
%if ! %{with_libxl}
rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/libxl.conf
J
Jim Fehlig 已提交
1428
rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/libvirtd.libxl
1429 1430 1431
rm -f $RPM_BUILD_ROOT%{_datadir}/augeas/lenses/libvirtd_libxl.aug
rm -f $RPM_BUILD_ROOT%{_datadir}/augeas/lenses/tests/test_libvirtd_libxl.aug
%endif
1432 1433
%if ! %{with_uml}
rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/libvirtd.uml
A
Amy Griffis 已提交
1434
%endif
1435

1436 1437
# Copied into libvirt-docs subpackage eventually
mv $RPM_BUILD_ROOT%{_datadir}/doc/libvirt-%{version} libvirt-docs
1438

1439
%if %{with_dtrace}
1440
    %ifarch %{power64} s390x x86_64 ia64 alpha sparc64
1441 1442 1443 1444
mv $RPM_BUILD_ROOT%{_datadir}/systemtap/tapset/libvirt_probes.stp \
   $RPM_BUILD_ROOT%{_datadir}/systemtap/tapset/libvirt_probes-64.stp
mv $RPM_BUILD_ROOT%{_datadir}/systemtap/tapset/libvirt_qemu_probes.stp \
   $RPM_BUILD_ROOT%{_datadir}/systemtap/tapset/libvirt_qemu_probes-64.stp
1445
    %endif
1446 1447
%endif

1448 1449 1450
%clean
rm -fr %{buildroot}

1451 1452
%check
cd tests
D
Daniel Veillard 已提交
1453 1454 1455
make
# These tests don't current work in a mock build root
for i in nodeinfotest seclabeltest
1456 1457
do
  rm -f $i
1458
  printf 'int main(void) { return 0; }' > $i.c
D
Daniel Veillard 已提交
1459
  printf '#!/bin/sh\nexit 0\n' > $i
1460 1461
  chmod +x $i
done
1462 1463 1464 1465 1466
if ! make check VIR_TEST_DEBUG=1
then
  cat test-suite.log || true
  exit 1
fi
1467

1468
%pre daemon
1469
%if %{with_polkit}
1470 1471 1472 1473
# 'libvirt' group is just to allow password-less polkit access to
# libvirtd. The uid number is irrelevant, so we use dynamic allocation
# described at the above link.
getent group libvirt >/dev/null || groupadd -r libvirt
1474
%endif
1475 1476 1477

exit 0

1478
%post daemon
1479

1480 1481 1482 1483
%if %{with_systemd}
    %if %{with_systemd_macros}
        %systemd_post virtlockd.socket virtlogd.socket libvirtd.service
    %else
1484 1485
if [ $1 -eq 1 ] ; then
    # Initial installation
1486 1487
    /bin/systemctl enable \
        virtlockd.socket \
1488
        virtlogd.socket \
1489
        libvirtd.service >/dev/null 2>&1 || :
1490
fi
1491 1492 1493
    %endif
%else
    %if %{with_cgconfig}
1494 1495
# Starting with Fedora 16/RHEL-7, systemd automounts all cgroups,
# and cgconfig is no longer a necessary service.
1496
        %if 0%{?rhel} && 0%{?rhel} < 7
1497 1498 1499
if [ "$1" -eq "1" ]; then
/sbin/chkconfig cgconfig on
fi
1500
        %endif
1501
    %endif
1502

1503
/sbin/chkconfig --add libvirtd
1504
/sbin/chkconfig --add virtlogd
1505
/sbin/chkconfig --add virtlockd
1506
%endif
1507

1508
%preun daemon
1509 1510 1511 1512
%if %{with_systemd}
    %if %{with_systemd_macros}
        %systemd_preun libvirtd.service virtlogd.socket virtlogd.service virtlockd.socket virtlockd.service
    %else
1513 1514
if [ $1 -eq 0 ] ; then
    # Package removal, not upgrade
1515 1516
    /bin/systemctl --no-reload disable \
        libvirtd.service \
1517 1518
        virtlogd.socket \
        virtlogd.service \
1519 1520 1521 1522
        virtlockd.socket \
        virtlockd.service > /dev/null 2>&1 || :
    /bin/systemctl stop \
        libvirtd.service \
1523 1524
        virtlogd.socket \
        virtlogd.service \
1525 1526
        virtlockd.socket \
        virtlockd.service > /dev/null 2>&1 || :
1527
fi
1528 1529
    %endif
%else
1530 1531 1532
if [ $1 = 0 ]; then
    /sbin/service libvirtd stop 1>/dev/null 2>&1
    /sbin/chkconfig --del libvirtd
1533 1534
    /sbin/service virtlogd stop 1>/dev/null 2>&1
    /sbin/chkconfig --del virtlogd
1535 1536
    /sbin/service virtlockd stop 1>/dev/null 2>&1
    /sbin/chkconfig --del virtlockd
1537
fi
1538
%endif
1539

1540
%postun daemon
1541
%if %{with_systemd}
1542 1543
/bin/systemctl daemon-reload >/dev/null 2>&1 || :
if [ $1 -ge 1 ] ; then
1544
    /bin/systemctl reload-or-try-restart virtlockd.service >/dev/null 2>&1 || :
1545
    /bin/systemctl reload-or-try-restart virtlogd.service >/dev/null 2>&1 || :
1546 1547
    /bin/systemctl try-restart libvirtd.service >/dev/null 2>&1 || :
fi
1548
%else
1549 1550
if [ $1 -ge 1 ]; then
    /sbin/service virtlockd reload > /dev/null 2>&1 || :
1551
    /sbin/service virtlogd reload > /dev/null 2>&1 || :
1552 1553
    /sbin/service libvirtd condrestart > /dev/null 2>&1
fi
1554
%endif
1555

1556 1557
%if %{with_systemd}
%else
1558 1559 1560
%triggerpostun daemon -- libvirt-daemon < 1.2.1
if [ "$1" -ge "1" ]; then
    /sbin/service virtlockd reload > /dev/null 2>&1 || :
1561
    /sbin/service virtlogd reload > /dev/null 2>&1 || :
1562 1563
    /sbin/service libvirtd condrestart > /dev/null 2>&1
fi
1564
%endif
1565

1566 1567 1568 1569 1570 1571
# In upgrade scenario we must explicitly enable virtlockd/virtlogd
# sockets, if libvirtd is already enabled and start them if
# libvirtd is running, otherwise you'll get failures to start
# guests
%triggerpostun daemon -- libvirt-daemon < 1.3.0
if [ $1 -ge 1 ] ; then
1572
%if %{with_systemd}
1573 1574 1575 1576
        /bin/systemctl is-enabled libvirtd.service 1>/dev/null 2>&1 &&
            /bin/systemctl enable virtlogd.socket || :
        /bin/systemctl is-active libvirtd.service 1>/dev/null 2>&1 &&
            /bin/systemctl start virtlogd.socket || :
1577
%else
1578
        /sbin/chkconfig libvirtd 1>/dev/null 2>&1 &&
1579
            /sbin/chkconfig virtlogd on || :
1580
        /sbin/service libvirtd status 1>/dev/null 2>&1 &&
1581
            /sbin/service virtlogd start || :
1582
%endif
1583 1584
fi

1585
%if %{with_network}
1586 1587
%post daemon-config-network
if test $1 -eq 1 && test ! -f %{_sysconfdir}/libvirt/qemu/networks/default.xml ; then
1588 1589 1590 1591 1592 1593 1594 1595 1596
    # see if the network used by default network creates a conflict,
    # and try to resolve it
    # NB: 192.168.122.0/24 is used in the default.xml template file;
    # do not modify any of those values here without also modifying
    # them in the template.
    orig_sub=122
    sub=${orig_sub}
    nl='
'
1597
    routes="${nl}$(ip route show | cut -d' ' -f1)${nl}"
1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615
    case ${routes} in
      *"${nl}192.168.${orig_sub}.0/24${nl}"*)
        # there was a match, so we need to look for an unused subnet
        for new_sub in $(seq 124 254); do
          case ${routes} in
          *"${nl}192.168.${new_sub}.0/24${nl}"*)
            ;;
          *)
            sub=$new_sub
            break;
            ;;
          esac
        done
        ;;
      *)
        ;;
    esac

1616
    UUID=`/usr/bin/uuidgen`
1617 1618
    sed -e "s/${orig_sub}/${sub}/g" \
        -e "s,</name>,</name>\n  <uuid>$UUID</uuid>," \
1619 1620 1621
         < %{_datadir}/libvirt/networks/default.xml \
         > %{_sysconfdir}/libvirt/qemu/networks/default.xml
    ln -s ../default.xml %{_sysconfdir}/libvirt/qemu/networks/autostart/default.xml
1622 1623

    # Make sure libvirt picks up the new network defininiton
1624
    %if %{with_systemd}
1625
    /bin/systemctl try-restart libvirtd.service >/dev/null 2>&1 ||:
1626
    %else
1627
    /sbin/service libvirtd condrestart > /dev/null 2>&1 || :
1628
    %endif
1629

1630
fi
1631
%endif
1632

1633
%if %{with_systemd}
1634 1635 1636 1637 1638 1639 1640 1641 1642
%triggerun -- libvirt < 0.9.4
%{_bindir}/systemd-sysv-convert --save libvirtd >/dev/null 2>&1 ||:

# If the package is allowed to autostart:
/bin/systemctl --no-reload enable libvirtd.service >/dev/null 2>&1 ||:

# Run these because the SysV package being removed won't do them
/sbin/chkconfig --del libvirtd >/dev/null 2>&1 || :
/bin/systemctl try-restart libvirtd.service >/dev/null 2>&1 || :
1643
%endif
1644

1645
%if %{with_qemu}
1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659
%pre daemon-driver-qemu
# We want soft static allocation of well-known ids, as disk images
# are commonly shared across NFS mounts by id rather than name; see
# https://fedoraproject.org/wiki/Packaging:UsersAndGroups
getent group kvm >/dev/null || groupadd -f -g 36 -r kvm
getent group qemu >/dev/null || groupadd -f -g 107 -r qemu
if ! getent passwd qemu >/dev/null; then
  if ! getent passwd 107 >/dev/null; then
    useradd -r -u 107 -g qemu -G kvm -d / -s /sbin/nologin -c "qemu user" qemu
  else
    useradd -r -g qemu -G kvm -d / -s /sbin/nologin -c "qemu user" qemu
  fi
fi
exit 0
1660
%endif
1661

J
Jiri Denemark 已提交
1662 1663
%preun client

1664
%if %{with_systemd}
1665 1666 1667
    %if %{with_systemd_macros}
        %systemd_preun libvirt-guests.service
    %endif
1668
%else
J
Jiri Denemark 已提交
1669 1670 1671 1672
if [ $1 = 0 ]; then
    /sbin/chkconfig --del libvirt-guests
    rm -f /var/lib/libvirt/libvirt-guests
fi
1673
%endif
J
Jiri Denemark 已提交
1674 1675 1676 1677

%post client

/sbin/ldconfig
1678
%if %{with_systemd}
1679 1680 1681
    %if %{with_systemd_macros}
        %systemd_post libvirt-guests.service
    %endif
1682
%else
J
Jiri Denemark 已提交
1683
/sbin/chkconfig --add libvirt-guests
1684
%endif
1685

1686
%postun client
1687

1688
/sbin/ldconfig
1689
%if %{with_systemd}
1690
    %if %{with_systemd_macros}
1691
        %systemd_postun libvirt-guests.service
1692
    %endif
1693 1694 1695 1696 1697 1698
%triggerun client -- libvirt < 0.9.4
%{_bindir}/systemd-sysv-convert --save libvirt-guests >/dev/null 2>&1 ||:

# If the package is allowed to autostart:
/bin/systemctl --no-reload enable libvirt-guests.service >/dev/null 2>&1 ||:

1699
# Run this because the SysV package being removed won't do them
1700 1701 1702
/sbin/chkconfig --del libvirt-guests >/dev/null 2>&1 || :
%endif

1703
%if %{with_sanlock}
1704 1705 1706 1707 1708
%post lock-sanlock
if getent group sanlock > /dev/null ; then
    chmod 0770 %{_localstatedir}/lib/libvirt/sanlock
    chown root:sanlock %{_localstatedir}/lib/libvirt/sanlock
fi
1709
%endif
1710

1711 1712 1713 1714 1715 1716
%if %{with_lxc}
%pre login-shell
getent group virtlogin >/dev/null || groupadd -r virtlogin
exit 0
%endif

1717
%files
1718 1719
%defattr(-, root, root)

1720 1721
%files docs
%defattr(-, root, root)
1722 1723
%doc AUTHORS ChangeLog.gz NEWS README TODO
%doc libvirt-docs/*
1724 1725 1726 1727 1728 1729 1730

# API docs
%dir %{_datadir}/gtk-doc/html/libvirt/
%doc %{_datadir}/gtk-doc/html/libvirt/*.devhelp
%doc %{_datadir}/gtk-doc/html/libvirt/*.html
%doc %{_datadir}/gtk-doc/html/libvirt/*.png
%doc %{_datadir}/gtk-doc/html/libvirt/*.css
1731 1732 1733 1734 1735 1736 1737 1738 1739 1740
%doc examples/hellolibvirt
%doc examples/object-events
%doc examples/dominfo
%doc examples/domsuspend
%doc examples/dommigrate
%doc examples/openauth
%doc examples/xml
%doc examples/rename
%doc examples/systemtap

1741 1742 1743 1744

%files daemon
%defattr(-, root, root)

1745
%dir %attr(0700, root, root) %{_sysconfdir}/libvirt/
1746

1747
%if %{with_systemd}
1748
%{_unitdir}/libvirtd.service
1749 1750
%{_unitdir}/virtlogd.service
%{_unitdir}/virtlogd.socket
1751 1752
%{_unitdir}/virtlockd.service
%{_unitdir}/virtlockd.socket
1753
%else
D
Daniel Veillard 已提交
1754
%{_sysconfdir}/rc.d/init.d/libvirtd
1755
%{_sysconfdir}/rc.d/init.d/virtlogd
1756
%{_sysconfdir}/rc.d/init.d/virtlockd
1757
%endif
A
Alan Pevec 已提交
1758
%doc daemon/libvirtd.upstart
1759
%config(noreplace) %{_sysconfdir}/sysconfig/libvirtd
1760
%config(noreplace) %{_sysconfdir}/sysconfig/virtlogd
1761
%config(noreplace) %{_sysconfdir}/sysconfig/virtlockd
1762
%config(noreplace) %{_sysconfdir}/libvirt/libvirtd.conf
1763
%config(noreplace) %{_sysconfdir}/libvirt/virtlogd.conf
1764
%config(noreplace) %{_sysconfdir}/libvirt/virtlockd.conf
1765
%config(noreplace) %{_prefix}/lib/sysctl.d/60-libvirtd.conf
1766

1767
%config(noreplace) %{_sysconfdir}/logrotate.d/libvirtd
1768
%dir %{_datadir}/libvirt/
1769

1770
%ghost %dir %{_localstatedir}/run/libvirt/
1771

1772
%dir %attr(0711, root, root) %{_localstatedir}/lib/libvirt/images/
1773
%dir %attr(0711, root, root) %{_localstatedir}/lib/libvirt/filesystems/
1774
%dir %attr(0711, root, root) %{_localstatedir}/lib/libvirt/boot/
1775
%dir %attr(0711, root, root) %{_localstatedir}/cache/libvirt/
1776

1777

1778
%dir %attr(0755, root, root) %{_libdir}/libvirt/lock-driver
1779
%attr(0755, root, root) %{_libdir}/libvirt/lock-driver/lockd.so
1780

1781 1782
%{_datadir}/augeas/lenses/libvirtd.aug
%{_datadir}/augeas/lenses/tests/test_libvirtd.aug
1783 1784
%{_datadir}/augeas/lenses/virtlogd.aug
%{_datadir}/augeas/lenses/tests/test_virtlogd.aug
1785 1786
%{_datadir}/augeas/lenses/virtlockd.aug
%{_datadir}/augeas/lenses/tests/test_virtlockd.aug
1787
%{_datadir}/augeas/lenses/libvirt_lockd.aug
1788
%if %{with_qemu}
1789
%{_datadir}/augeas/lenses/tests/test_libvirt_lockd.aug
1790
%endif
1791

1792
%if %{with_polkit}
1793
%{_datadir}/polkit-1/actions/org.libvirt.unix.policy
1794
%{_datadir}/polkit-1/actions/org.libvirt.api.policy
1795
%{_datadir}/polkit-1/rules.d/50-libvirt.rules
1796
%endif
1797

M
Mark McLoughlin 已提交
1798
%dir %attr(0700, root, root) %{_localstatedir}/log/libvirt/
1799

1800
%attr(0755, root, root) %{_libexecdir}/libvirt_iohelper
1801

1802
%if %{with_apparmor}
1803
%attr(0755, root, root) %{_libexecdir}/virt-aa-helper
1804
%endif
1805

1806
%attr(0755, root, root) %{_sbindir}/libvirtd
1807
%attr(0755, root, root) %{_sbindir}/virtlogd
1808
%attr(0755, root, root) %{_sbindir}/virtlockd
1809

1810
%{_mandir}/man8/libvirtd.8*
1811
%{_mandir}/man8/virtlogd.8*
1812
%{_mandir}/man8/virtlockd.8*
1813

1814 1815
%doc examples/polkit/*.rules

1816
%if %{with_network}
1817
%files daemon-config-network
1818
%defattr(-, root, root)
1819 1820
%dir %{_datadir}/libvirt/networks/
%{_datadir}/libvirt/networks/default.xml
1821
%endif
1822

1823
%if %{with_nwfilter}
1824 1825 1826
%files daemon-config-nwfilter
%defattr(-, root, root)
%{_sysconfdir}/libvirt/nwfilter/*.xml
1827
%endif
1828

1829
%if %{with_interface}
1830 1831 1832
%files daemon-driver-interface
%defattr(-, root, root)
%{_libdir}/%{name}/connection-driver/libvirt_driver_interface.so
1833
%endif
1834

1835
%if %{with_network}
1836 1837
%files daemon-driver-network
%defattr(-, root, root)
1838 1839 1840 1841 1842 1843
%dir %attr(0700, root, root) %{_sysconfdir}/libvirt/qemu/
%dir %attr(0700, root, root) %{_sysconfdir}/libvirt/qemu/networks/
%dir %attr(0700, root, root) %{_sysconfdir}/libvirt/qemu/networks/autostart
%ghost %dir %{_localstatedir}/run/libvirt/network/
%dir %attr(0700, root, root) %{_localstatedir}/lib/libvirt/network/
%dir %attr(0755, root, root) %{_localstatedir}/lib/libvirt/dnsmasq/
1844
%attr(0755, root, root) %{_libexecdir}/libvirt_leaseshelper
1845
%{_libdir}/%{name}/connection-driver/libvirt_driver_network.so
1846
%endif
1847

1848
%if %{with_nodedev}
1849 1850 1851
%files daemon-driver-nodedev
%defattr(-, root, root)
%{_libdir}/%{name}/connection-driver/libvirt_driver_nodedev.so
1852
%endif
1853

1854
%if %{with_nwfilter}
1855 1856
%files daemon-driver-nwfilter
%defattr(-, root, root)
1857 1858
%dir %attr(0700, root, root) %{_sysconfdir}/libvirt/nwfilter/
%ghost %dir %{_localstatedir}/run/libvirt/network/
1859
%{_libdir}/%{name}/connection-driver/libvirt_driver_nwfilter.so
1860
%endif
1861 1862 1863 1864 1865

%files daemon-driver-secret
%defattr(-, root, root)
%{_libdir}/%{name}/connection-driver/libvirt_driver_secret.so

1866
%if %{with_storage}
1867 1868
%files daemon-driver-storage
%defattr(-, root, root)
1869
    %if %{with_storage_disk}
1870
%attr(0755, root, root) %{_libexecdir}/libvirt_parthelper
1871
    %endif
1872 1873
%{_libdir}/%{name}/connection-driver/libvirt_driver_storage.so
%endif
1874

1875
%if %{with_qemu}
1876 1877
%files daemon-driver-qemu
%defattr(-, root, root)
1878
%dir %attr(0700, root, root) %{_sysconfdir}/libvirt/qemu/
1879 1880 1881 1882 1883
%dir %attr(0700, root, root) %{_localstatedir}/log/libvirt/qemu/
%config(noreplace) %{_sysconfdir}/libvirt/qemu.conf
%config(noreplace) %{_sysconfdir}/libvirt/qemu-lockd.conf
%config(noreplace) %{_sysconfdir}/logrotate.d/libvirtd.qemu
%ghost %dir %attr(0700, root, root) %{_localstatedir}/run/libvirt/qemu/
1884
%dir %attr(0751, %{qemu_user}, %{qemu_group}) %{_localstatedir}/lib/libvirt/qemu/
1885 1886 1887
%dir %attr(0750, %{qemu_user}, %{qemu_group}) %{_localstatedir}/cache/libvirt/qemu/
%{_datadir}/augeas/lenses/libvirtd_qemu.aug
%{_datadir}/augeas/lenses/tests/test_libvirtd_qemu.aug
1888
%{_libdir}/%{name}/connection-driver/libvirt_driver_qemu.so
1889
%endif
1890

1891
%if %{with_lxc}
1892 1893
%files daemon-driver-lxc
%defattr(-, root, root)
1894 1895 1896 1897 1898 1899 1900 1901
%dir %attr(0700, root, root) %{_localstatedir}/log/libvirt/lxc/
%config(noreplace) %{_sysconfdir}/libvirt/lxc.conf
%config(noreplace) %{_sysconfdir}/logrotate.d/libvirtd.lxc
%ghost %dir %{_localstatedir}/run/libvirt/lxc/
%dir %attr(0700, root, root) %{_localstatedir}/lib/libvirt/lxc/
%{_datadir}/augeas/lenses/libvirtd_lxc.aug
%{_datadir}/augeas/lenses/tests/test_libvirtd_lxc.aug
%attr(0755, root, root) %{_libexecdir}/libvirt_lxc
1902
%{_libdir}/%{name}/connection-driver/libvirt_driver_lxc.so
1903
%endif
1904

1905
%if %{with_uml}
1906 1907
%files daemon-driver-uml
%defattr(-, root, root)
1908 1909 1910 1911
%dir %attr(0700, root, root) %{_localstatedir}/log/libvirt/uml/
%config(noreplace) %{_sysconfdir}/logrotate.d/libvirtd.uml
%ghost %dir %{_localstatedir}/run/libvirt/uml/
%dir %attr(0700, root, root) %{_localstatedir}/lib/libvirt/uml/
1912
%{_libdir}/%{name}/connection-driver/libvirt_driver_uml.so
1913
%endif
1914

1915
%if %{with_xen}
1916 1917
%files daemon-driver-xen
%defattr(-, root, root)
1918
%dir %attr(0700, root, root) %{_localstatedir}/lib/libvirt/xen/
1919
%{_libdir}/%{name}/connection-driver/libvirt_driver_xen.so
1920
%endif
1921

1922
%if %{with_libxl}
1923 1924
%files daemon-driver-libxl
%defattr(-, root, root)
1925
%config(noreplace) %{_sysconfdir}/libvirt/libxl.conf
J
Jim Fehlig 已提交
1926
%config(noreplace) %{_sysconfdir}/logrotate.d/libvirtd.libxl
1927
%config(noreplace) %{_sysconfdir}/libvirt/libxl-lockd.conf
1928 1929
%{_datadir}/augeas/lenses/libvirtd_libxl.aug
%{_datadir}/augeas/lenses/tests/test_libvirtd_libxl.aug
1930 1931 1932
%dir %attr(0700, root, root) %{_localstatedir}/log/libvirt/libxl/
%ghost %dir %{_localstatedir}/run/libvirt/libxl/
%dir %attr(0700, root, root) %{_localstatedir}/lib/libvirt/libxl/
1933
%{_libdir}/%{name}/connection-driver/libvirt_driver_libxl.so
1934
%endif
1935

1936
%if %{with_vbox}
1937 1938 1939
%files daemon-driver-vbox
%defattr(-, root, root)
%{_libdir}/%{name}/connection-driver/libvirt_driver_vbox.so
1940
%endif
1941

1942
%if %{with_qemu_tcg}
1943 1944
%files daemon-qemu
%defattr(-, root, root)
1945
%endif
1946

1947
%if %{with_qemu_kvm}
1948 1949
%files daemon-kvm
%defattr(-, root, root)
1950
%endif
1951

1952
%if %{with_lxc}
1953 1954
%files daemon-lxc
%defattr(-, root, root)
1955
%endif
1956

1957
%if %{with_uml}
1958 1959
%files daemon-uml
%defattr(-, root, root)
1960
%endif
1961

1962
%if %{with_xen} || %{with_libxl}
1963
%files daemon-xen
1964
%defattr(-, root, root)
1965
%endif
1966

1967
%if %{with_vbox}
1968
%files daemon-vbox
1969
%defattr(-, root, root)
1970
%endif
1971

1972 1973 1974
%if %{with_sanlock}
%files lock-sanlock
%defattr(-, root, root)
1975
    %if %{with_qemu}
1976
%config(noreplace) %{_sysconfdir}/libvirt/qemu-sanlock.conf
1977
    %endif
1978 1979 1980
    %if %{with_libxl}
%config(noreplace) %{_sysconfdir}/libvirt/libxl-sanlock.conf
    %endif
1981
%attr(0755, root, root) %{_libdir}/libvirt/lock-driver/sanlock.so
1982 1983
%{_datadir}/augeas/lenses/libvirt_sanlock.aug
%{_datadir}/augeas/lenses/tests/test_libvirt_sanlock.aug
1984
%dir %attr(0700, root, root) %{_localstatedir}/lib/libvirt/sanlock
1985 1986
%{_sbindir}/virt-sanlock-cleanup
%{_mandir}/man8/virt-sanlock-cleanup.8*
1987
%attr(0755, root, root) %{_libexecdir}/libvirt_sanlock_helper
1988 1989
%endif

1990 1991
%files client -f %{name}.lang
%defattr(-, root, root)
1992
%doc COPYING COPYING.LESSER
1993

1994
%config(noreplace) %{_sysconfdir}/libvirt/libvirt.conf
1995 1996
%{_mandir}/man1/virsh.1*
%{_mandir}/man1/virt-xml-validate.1*
1997
%{_mandir}/man1/virt-pki-validate.1*
1998
%{_mandir}/man1/virt-host-validate.1*
1999 2000
%{_bindir}/virsh
%{_bindir}/virt-xml-validate
2001
%{_bindir}/virt-pki-validate
2002
%{_bindir}/virt-host-validate
2003 2004 2005
%{_libdir}/libvirt.so.*
%{_libdir}/libvirt-qemu.so.*
%{_libdir}/libvirt-lxc.so.*
2006
%{_libdir}/libvirt-admin.so.*
2007

2008
%if %{with_dtrace}
2009 2010
%{_datadir}/systemtap/tapset/libvirt_probes*.stp
%{_datadir}/systemtap/tapset/libvirt_qemu_probes*.stp
2011 2012 2013
%{_datadir}/systemtap/tapset/libvirt_functions.stp
%endif

2014 2015 2016
%dir %{_datadir}/libvirt/
%dir %{_datadir}/libvirt/schemas/

2017 2018
%{_datadir}/libvirt/schemas/basictypes.rng
%{_datadir}/libvirt/schemas/capability.rng
2019
%{_datadir}/libvirt/schemas/domain.rng
M
Michal Privoznik 已提交
2020
%{_datadir}/libvirt/schemas/domaincaps.rng
2021
%{_datadir}/libvirt/schemas/domaincommon.rng
2022
%{_datadir}/libvirt/schemas/domainsnapshot.rng
2023
%{_datadir}/libvirt/schemas/interface.rng
2024
%{_datadir}/libvirt/schemas/network.rng
2025
%{_datadir}/libvirt/schemas/networkcommon.rng
2026
%{_datadir}/libvirt/schemas/nodedev.rng
2027
%{_datadir}/libvirt/schemas/nwfilter.rng
M
Miloslav Trmač 已提交
2028
%{_datadir}/libvirt/schemas/secret.rng
2029
%{_datadir}/libvirt/schemas/storagecommon.rng
2030 2031
%{_datadir}/libvirt/schemas/storagepool.rng
%{_datadir}/libvirt/schemas/storagevol.rng
2032

J
Jiri Denemark 已提交
2033
%{_datadir}/libvirt/cpu_map.xml
2034
%{_datadir}/libvirt/libvirtLogo.png
J
Jiri Denemark 已提交
2035

2036 2037
%if %{with_systemd}
%{_unitdir}/libvirt-guests.service
2038 2039
%else
%{_sysconfdir}/rc.d/init.d/libvirt-guests
2040
%endif
2041
%config(noreplace) %{_sysconfdir}/sysconfig/libvirt-guests
2042
%attr(0755, root, root) %{_libexecdir}/libvirt-guests.sh
E
Eric Blake 已提交
2043
%dir %attr(0755, root, root) %{_localstatedir}/lib/libvirt/
2044

2045 2046 2047 2048
%if %{with_sasl}
%config(noreplace) %{_sysconfdir}/sasl2/libvirt.conf
%endif

2049 2050
%if %{with_wireshark}
%files wireshark
2051
%{_libdir}/wireshark/plugins/libvirt.so
2052 2053
%endif

2054 2055 2056 2057 2058
%if %{with_nss_plugin}
%files nss
%{_libdir}/libnss_libvirt.so.2
%endif

2059 2060
%if %{with_lxc}
%files login-shell
2061
%attr(4750, root, virtlogin) %{_bindir}/virt-login-shell
2062 2063 2064 2065
%config(noreplace) %{_sysconfdir}/libvirt/virt-login-shell.conf
%{_mandir}/man1/virt-login-shell.1*
%endif

2066 2067 2068
%files devel
%defattr(-, root, root)

2069 2070 2071
%{_libdir}/libvirt.so
%{_libdir}/libvirt-qemu.so
%{_libdir}/libvirt-lxc.so
2072
%dir %{_includedir}/libvirt
2073 2074
%{_includedir}/libvirt/virterror.h
%{_includedir}/libvirt/libvirt.h
2075
%{_includedir}/libvirt/libvirt-common.h
2076
%{_includedir}/libvirt/libvirt-domain.h
2077
%{_includedir}/libvirt/libvirt-domain-snapshot.h
2078
%{_includedir}/libvirt/libvirt-event.h
2079
%{_includedir}/libvirt/libvirt-host.h
2080
%{_includedir}/libvirt/libvirt-interface.h
2081
%{_includedir}/libvirt/libvirt-network.h
2082
%{_includedir}/libvirt/libvirt-nodedev.h
2083
%{_includedir}/libvirt/libvirt-nwfilter.h
2084
%{_includedir}/libvirt/libvirt-secret.h
2085
%{_includedir}/libvirt/libvirt-storage.h
2086
%{_includedir}/libvirt/libvirt-stream.h
2087 2088
%{_includedir}/libvirt/libvirt-qemu.h
%{_includedir}/libvirt/libvirt-lxc.h
2089
%{_libdir}/pkgconfig/libvirt.pc
2090 2091
%{_libdir}/pkgconfig/libvirt-qemu.pc
%{_libdir}/pkgconfig/libvirt-lxc.pc
2092

2093 2094 2095
%dir %{_datadir}/libvirt/api/
%{_datadir}/libvirt/api/libvirt-api.xml
%{_datadir}/libvirt/api/libvirt-qemu-api.xml
2096
%{_datadir}/libvirt/api/libvirt-lxc-api.xml
2097
# Needed building python bindings
2098
%doc docs/libvirt-api.xml
2099

2100

2101
%changelog
D
Daniel Veillard 已提交
2102 2103 2104 2105 2106
* Sun May  1 2016 Daniel Veillard <veillard@redhat.com> - 1.3.4-1
- Lot of work on documentation
- Add support for migration data compression
- many bug fixes and various improvements

D
Daniel Veillard 已提交
2107 2108 2109 2110 2111 2112
* Wed Apr  6 2016 Daniel Veillard <veillard@redhat.com> - 1.3.3-1
- perf events
- post-copy migration support
- NSS module
- a lot of various improvements, and large number of bugs fixes

D
Daniel Veillard 已提交
2113 2114 2115 2116 2117 2118
* Tue Mar  1 2016 Daniel Veillard <veillard@redhat.com> - 1.3.2-1
- Various improvements for the Xen libxl driver
- virt-admin improvement
- Various improvements for the RDB volumes
- many bug fixes and improvements

D
Daniel Veillard 已提交
2119 2120 2121 2122 2123 2124
* Sun Jan 17 2016 Daniel Veillard <veillard@redhat.com> - 1.3.1-1
- Various improvements for the Xen libxl driver
- rbd: Add support for wiping and cloning images to storage driver
- PCI hostdev improvements and fixes
- many bug fixes and improvements

D
Daniel Veillard 已提交
2125 2126 2127 2128 2129 2130
* Wed Dec  9 2015 Daniel Veillard <veillard@redhat.com> - 1.3.0-1
- virt-admin and administration API
- various improvements in virtio devices support
- log daemon, logging improvements and protocol
- many bug fixes and improvements

D
Daniel Veillard 已提交
2131 2132 2133
* Wed Nov  4 2015 Daniel Veillard <veillard@redhat.com> - 1.2.21-1
- a number of improvements and bug fixes

D
Daniel Veillard 已提交
2134 2135 2136 2137
* Fri Oct  2 2015 Daniel Veillard <veillard@redhat.com> - 1.2.20-1
- security fixes for CVE-2015-5247
- a number of improvements and bug fixes

D
Daniel Veillard 已提交
2138 2139 2140 2141 2142 2143
* Wed Sep  2 2015 Daniel Veillard <veillard@redhat.com> - 1.2.19-1
- Big improvements on ppc64 support
- New virDomainRename API
- Support for QEMU new pci emulations
- a number of improvements and bug fixes

D
Daniel Veillard 已提交
2144
* Mon Aug  3 2015 Daniel Veillard <veillard@redhat.com> - 1.2.18-1
2145
- libxl: support dom0
D
Daniel Veillard 已提交
2146 2147
- a number of improvements and bug fixes

D
Daniel Veillard 已提交
2148 2149 2150 2151 2152 2153
* Thu Jul  2 2015 Daniel Veillard <veillard@redhat.com> - 1.2.17-1
- numerous improvements and refactoring of the parallels driver
- hardening of vcpu code
- hardening of migration code
- a lot of improvement and bug fixes

D
Daniel Veillard 已提交
2154 2155 2156 2157 2158 2159 2160
* Mon Jun  1 2015 Daniel Veillard <veillard@redhat.com> - 1.2.16-1
- Introduce pci-serial
- Introduce virDomainSetUserPassword API
- libvirt: Introduce protected key mgmt ops
- add domain vmport feature
- various bug fixes and improvements

D
Daniel Veillard 已提交
2161 2162 2163 2164 2165 2166 2167
* Mon May  4 2015 Daniel Veillard <veillard@redhat.com> - 1.2.15-1
- Implement virDomainAddIOThread and virDomainDelIOThread
- libxl: Introduce configuration file for libxl driver
- Add VIR_DOMAIN_EVENT_ID_DEVICE_ADDED event
- various improvements to parallels driver
- a lot of improvement and bug fixes

D
Daniel Veillard 已提交
2168 2169 2170 2171 2172 2173 2174
* Thu Apr  2 2015 Daniel Veillard <veillard@redhat.com> - 1.2.14-1
- qemu: Implement memory device hotplug
- Implement public API for virDomainPinIOThread
- Implement public API for virDomainGetIOThreadsInfo
- SRIOV NIC offload feature discovery
- a lot of improvement and bug fixes

D
Daniel Veillard 已提交
2175 2176 2177 2178
* Mon Mar  2 2015 Daniel Veillard <veillard@redhat.com> - 1.2.13-1
- lot of improvements around NUMA code
- a lot of improvement and bug fixes

D
Daniel Veillard 已提交
2179 2180 2181 2182 2183
* Tue Jan 27 2015 Daniel Veillard <veillard@redhat.com> - 1.2.12-1
- CVE-2015-0236: qemu: Check ACLs when dumping security info from snapshots
- CVE-2015-0236: qemu: Check ACLs when dumping security info from save image
- a lot of improvement and bug fixes

D
Daniel Veillard 已提交
2184 2185 2186 2187 2188 2189 2190
* Sat Dec 13 2014 Daniel Veillard <veillard@redhat.com> - 1.2.11-1
- CVE-2014-8131: Fix possible deadlock and segfault in qemuConnectGetAllDomainStats()
- CVE-2014-7823: dumpxml: security hole with migratable flag
- Implement public API for virDomainGetFSInfo
- Add define support for the new throttle options
- a number of improvements and bug fixes

D
Daniel Veillard 已提交
2191 2192 2193 2194 2195 2196
* Mon Nov  3 2014 Daniel Veillard <veillard@redhat.com> - 1.2.10-1
- vbox: various drivers improvements
- libxl: various drivers improvements
- Internal driver refactoring
- a number of improvements and bug fixes

D
Daniel Veillard 已提交
2197 2198 2199 2200 2201 2202 2203 2204 2205
* Wed Oct  1 2014 Daniel Veillard <veillard@redhat.com> - 1.2.9-1
- CVE-2014-3657: domain_conf: fix domain deadlock
- CVE-2014-3633: qemu: blkiotune: Use correct definition when looking up disk
- Introduce virNodeAllocPages
- event: introduce new event for tunable values
- add migration support for OpenVZ driver
- Add support for fetching statistics of completed jobs
- many improvements and bug fixes

D
Daniel Veillard 已提交
2206 2207 2208 2209 2210 2211 2212
* Tue Sep  2 2014 Daniel Veillard <veillard@redhat.com> - 1.2.8-1
- blockcopy: virDomainBlockCopy with XML destination, typed params
- Introduce API for retrieving bulk domain stats
- Introduce virDomainOpenGraphicsFD API
- storage: ZFS support
- many improvements and bug fixes

D
Daniel Veillard 已提交
2213 2214 2215 2216
* Sun Aug  3 2014 Daniel Veillard <veillard@redhat.com> - 1.2.7-1
- Introduce virConnectGetDomainCapabilities
- many improvements and bug fixes

D
Daniel Veillard 已提交
2217 2218 2219 2220 2221
* Wed Jul  2 2014 Daniel Veillard <veillard@redhat.com> - 1.2.6-1
- libxl: add migration support and fixes
- various improvements and fixes for NUMA
- many improvements and bug fixes

2222 2223 2224 2225 2226 2227
* Mon Jun  2 2014 Daniel Veillard <veillard@redhat.com> - 1.2.5-1
- LSN-2014-0003: Don't expand entities when parsing XML (security)
- Introduce virDomain{Get,Set}Time APIs
- Introduce virDomainFSFreeze() and virDomainFSThaw() public API
- various improvements and bug fixes

D
Daniel Veillard 已提交
2228 2229 2230 2231
* Sun May  4 2014 Daniel Veillard <veillard@redhat.com> - 1.2.4-1
- various improvements and bug fixes
- lot of internal code refactoring

D
Daniel Veillard 已提交
2232
* Tue Apr  1 2014 Daniel Veillard <veillard@redhat.com> - 1.2.3-1
D
Daniel Veillard 已提交
2233 2234 2235 2236
- add new virDomainCoreDumpWithFormat API
- conf: Introduce virDomainDeviceGetInfo API
- more features and fixes on bhyve driver
- lot of cleanups and improvement on the Xen driver
D
Daniel Veillard 已提交
2237 2238
- a lot of various improvements and bug fixes

D
Daniel Veillard 已提交
2239 2240 2241 2242 2243 2244 2245
* Sun Mar  2 2014 Daniel Veillard <veillard@redhat.com> - 1.2.2-1
- add LXC from native conversion tool
- vbox: add support for v4.2.20+ and v4.3.4+
- Introduce Libvirt Wireshark dissector
- Fix CVE-2013-6456: Avoid unsafe use of /proc/$PID/root in LXC
- a lot of various improvements and bug fixes

D
Daniel Veillard 已提交
2246 2247 2248 2249 2250 2251 2252 2253
* Thu Jan 16 2014 Daniel Veillard <veillard@redhat.com> - 1.2.1-1
- Fix s CVE-2014-0028 event: filter global events by domain:getattr ACL
- Fix CVE-2014-1447 Don't crash if a connection closes early
- Fix CVE-2013-6458-1 qemu: Do not access stale data in virDomainBlockStats
- Fix CVE-2013-6457 libxl: avoid crashing if calling `virsh numatune' on inactive domain
- Fix CVE-2013-6436: fix crash in lxcDomainGetMemoryParameters
- many doc and bug fixes and improvements

D
Daniel Veillard 已提交
2254 2255 2256 2257 2258 2259
* Mon Dec  2 2013 Daniel Veillard <veillard@redhat.com> - 1.2.0-1
- Separation of python binding as libvirt-python srpm
- Add support for gluster pool
- vbox: add support for 4.3 APIs
- a number of doc, bug fixes and various improvements

D
Daniel Veillard 已提交
2260 2261 2262 2263 2264 2265
* Mon Nov  4 2013 Daniel Veillard <veillard@redhat.com> - 1.1.4-1
- Add support for AArch64 architecture
- Various improvements on test code and test driver
- 4 security bug fixes
- a lot of bug fixes and various improvements

D
Daniel Veillard 已提交
2266 2267 2268 2269 2270 2271 2272 2273 2274
* Tue Oct  1 2013 Daniel Veillard <veillard@redhat.com> - 1.1.3-1
- VMware: Initial VMware Fusion support and various improvements
- libvirt: add new public API virConnectGetCPUModelNames
- various libxl driver improvements
- LXC many container driver improvement
- ARM cpu improvements
- 3 security bug fixes
- a lot of bug and leak fixes and various improvements

D
Daniel Veillard 已提交
2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290
* Mon Sep  2 2013 Daniel Veillard <veillard@redhat.com> - 1.1.2-1
- various improvements to libxl driver
- systemd integration improvements
- Add flag to BaselineCPU API to return detailed CPU features
- Introduce a virt-login-shell binary
- conf: add startupPolicy attribute for harddisk
- various bug fixes and improvements including localizations

* Tue Jul 30 2013 Daniel Veillard <veillard@redhat.com> - 1.1.1-1
- Adding device removal or deletion events
- Introduce new domain create APIs to pass pre-opened FDs to LXC
- Add interface versions for Xen 4.3
- Add new public API virDomainSetMemoryStatsPeriod
- Various LXC improvements
- various bug fixes and improvements including localizations

D
Daniel Veillard 已提交
2291 2292 2293 2294 2295 2296 2297 2298
* Mon Jul  1 2013 Daniel Veillard <veillard@redhat.com> - 1.1.0-1
- CVE-2013-2218: Fix crash listing network interfaces with filters
- Fine grained ACL support for the API
- Extensible migration APIs
- various improvements in the Xen driver
- agent based vCPU hotplug support
- various bug fixes and improvements including localizations

D
Daniel Veillard 已提交
2299 2300 2301 2302 2303 2304 2305 2306
* Mon Jun  3 2013 Daniel Veillard <veillard@redhat.com> - 1.0.6-1
- Move VirtualBox driver into libvirtd
- Support for static routes on a virtual bridge
- Various improvement for hostdev SCSI support
- Switch to VIR_STRDUP and VIR_STRNDUP
- Various cleanups and improvement in Xen and LXC drivers
- various bug fixes and improvements including localizations

D
Daniel Veillard 已提交
2307 2308 2309 2310 2311 2312 2313
* Thu May  2 2013 Daniel Veillard <veillard@redhat.com> - 1.0.5-1
- add support for NVRAM device
- Add XML config for resource partitions
- Add support for TPM
- NPIV storage migration support
- various bug fixes and improvements including localizations

D
Daniel Veillard 已提交
2314 2315 2316 2317 2318 2319 2320
* Mon Apr  1 2013 Daniel Veillard <veillard@redhat.com> - 1.0.4-1
- qemu: support passthrough for iscsi disks
- various S390 improvements
- various LXC bugs fixes and improvements
- Add API for thread cancellation
- various bug fixes and improvements

D
Daniel Veillard 已提交
2321 2322 2323 2324 2325 2326 2327 2328
* Tue Mar  5 2013 Daniel Veillard <veillard@redhat.com> - 1.0.3-1
- Introduce virDomainMigrate*CompressionCache APIs
- Introduce virDomainGetJobStats API
- Add basic support for VDI images
- Introduce API virNodeDeviceLookupSCSIHostByWWN
- Various locking improvements
- a lot of bug fixes and overall improvements

D
Daniel Veillard 已提交
2329 2330 2331 2332 2333 2334 2335 2336
* Wed Jan 30 2013 Daniel Veillard <veillard@redhat.com> - 1.0.2-1
- LXC improvements
- S390 architecture improvement
- Power architecture improvement
- large Coverity report cleanups and associated bug fixes
- virTypedParams* APIs to helps with those data structures
- a lot of bug fixes and overall improvements

D
Daniel Veillard 已提交
2337 2338 2339 2340 2341 2342 2343 2344 2345 2346
* Fri Nov  2 2012 Daniel Veillard <veillard@redhat.com> - 1.0.0-1
- virNodeGetCPUMap: Define public API
- Add systemd journal support
- Add a qemu capabilities cache manager
- USB migration support
- various improvement and fixes when using QMP QEmu interface
- Support for Xen 4.2
- Lot of localization enhancements
- a lot of bug fixes, improvements and portability work

D
Daniel Veillard 已提交
2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364
* Mon Sep 24 2012 Daniel Veillard <veillard@redhat.com> - 0.10.2-1
- network: define new API virNetworkUpdate
- add support for QEmu sandbox support
- blockjob: add virDomainBlockCommit
- New APIs to get/set Node memory parameters
- new API virConnectListAllSecrets
- new API virConnectListAllNWFilters
- new API virConnectListAllNodeDevices
- parallels: add support of containers to the driver
- new API virConnectListAllInterfaces
- new API virConnectListAllNetworks
- new API virStoragePoolListAllVolumes
- Add PMSUSPENDED life cycle event
- new API virStorageListAllStoragePools
- Add per-guest S3/S4 state configuration
- qemu: Support for Block Device IO Limits
- a lot of bug fixes, improvements and portability work

D
Daniel Veillard 已提交
2365 2366 2367
* Fri Aug 31 2012 Daniel Veillard <veillard@redhat.com> - 0.10.1-1
- bugfixes and a brown paper bag

D
Daniel Veillard 已提交
2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378
* Wed Aug 29 2012 Daniel Veillard <veillard@redhat.com> - 0.10.0-1
- agent: add qemuAgentArbitraryCommand() for general qemu agent command
- Introduce virDomainPinEmulator and virDomainGetEmulatorPinInfo functions
- network: use firewalld instead of iptables, when available
- network: make network driver vlan-aware
- esx: Implement network driver
- driver for parallels hypervisor
- Various LXC improvements
- Add virDomainGetHostname
- a lot of bug fixes, improvements and portability work

D
Daniel Veillard 已提交
2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390
* Mon Jul  2 2012 Daniel Veillard <veillard@redhat.com> - 0.9.13-1
- S390: support for s390(x)
- snapshot: implement new APIs for esx and vbox
- snapshot: new query APIs and many improvements
- virsh: Allow users to reedit rejected XML
- nwfilter: add DHCP snooping
- Enable driver modules in libvirt RPM
- Default to enable driver modules for libvirtd
- storage backend: Add RBD (RADOS Block Device) support
- sVirt support for LXC domains inprovement
- a lot of bug fixes, improvements and portability work

D
Daniel Veillard 已提交
2391 2392 2393 2394 2395
* Mon May 14 2012 Daniel Veillard <veillard@redhat.com> - 0.9.12-1
- qemu: allow snapshotting of sheepdog and rbd disks
- blockjob: add new APIs
- a lot of bug fixes, improvements and portability work

D
Daniel Veillard 已提交
2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406
* Tue Apr  3 2012 Daniel Veillard <veillard@redhat.com> - 0.9.11-1
- Add support for the suspend event
- Add support for event tray moved of removable disks
- qemu: Support numad
- cpustats: API, improvements and qemu support
- qemu: support type='hostdev' network devices at domain start
- Introduce virDomainPMWakeup API
- network: support Open vSwitch
- a number of snapshot improvements
- many improvements and bug fixes

D
Daniel Veillard 已提交
2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420
* Mon Feb 13 2012 Daniel Veillard <veillard@redhat.com> - 0.9.10-1
- Add support for sVirt in the LXC driver
- block rebase: add new API virDomainBlockRebase
- API: Add api to set and get domain metadata
- virDomainGetDiskErrors public API
- conf: add rawio attribute to disk element of domain XML
- Add new public API virDomainGetCPUStats()
- Introduce virDomainPMSuspendForDuration API
- resize: add virStorageVolResize() API
- Add a virt-host-validate command to sanity check HV config
- Add new virDomainShutdownFlags API
- QEMU guest agent support
- many improvements and bug fixes

D
Daniel Veillard 已提交
2421 2422 2423 2424 2425 2426 2427
* Sat Jan  7 2012 Daniel Veillard <veillard@redhat.com> - 0.9.9-1
- Add API virDomain{S,G}etInterfaceParameters
- Add API virDomain{G, S}etNumaParameters
- Add support for ppc64 qemu
- Support Xen domctl v8
- many improvements and bug fixes

D
Daniel Veillard 已提交
2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438
* Thu Dec  8 2011 Daniel Veillard <veillard@redhat.com> - 0.9.8-1
- Add support for QEMU 1.0
- Add preliminary PPC cpu driver
- Add new API virDomain{Set, Get}BlockIoTune
- block_resize: Define the new API
- Add a public API to invoke suspend/resume on the host
- various improvements for LXC containers
- Define keepalive protocol and add virConnectIsAlive API
- Add support for STP and VLAN filtering
- many improvements and bug fixes

D
Daniel Veillard 已提交
2439 2440 2441 2442 2443 2444 2445 2446 2447
* Tue Nov  8 2011 Daniel Veillard <veillard@redhat.com> - 0.9.7-1
- esx: support vSphere 5.x
- vbox: support for VirtualBox 4.1
- Introduce the virDomainOpenGraphics API
- Add AHCI support to qemu driver
- snapshot: many improvements and 2 new APIs
- api: Add public api for 'reset'
- many improvements and bug fixes

D
Daniel Veillard 已提交
2448 2449 2450
* Thu Sep 22 2011 Daniel Veillard <veillard@redhat.com> - 0.9.6-1
- Fix the qemu reboot bug and a few others bug fixes

D
Daniel Veillard 已提交
2451 2452 2453 2454 2455 2456 2457 2458 2459
* Tue Sep 20 2011 Daniel Veillard <veillard@redhat.com> - 0.9.5-1
- many snapshot improvements (Eric Blake)
- latency: Define new public API and structure (Osier Yang)
- USB2 and various USB improvements (Marc-André Lureau)
- storage: Add fs pool formatting (Osier Yang)
- Add public API for getting migration speed (Jim Fehlig)
- Add basic driver for Microsoft Hyper-V (Matthias Bolte)
- many improvements and bug fixes

D
Daniel Veillard 已提交
2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471
* Wed Aug  3 2011 Daniel Veillard <veillard@redhat.com> - 0.9.4-1
- network bandwidth QoS control
- Add new API virDomainBlockPull*
- save: new API to manipulate save file images
- CPU bandwidth limits support
- allow to send NMI and key event to guests
- new API virDomainUndefineFlags
- Implement code to attach to external QEMU instances
- bios: Add support for SGA
- various missing python binding
- many improvements and bug fixes

D
Daniel Veillard 已提交
2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484
* Mon Jul  4 2011 Daniel Veillard <veillard@redhat.com> - 0.9.3-1
- new API virDomainGetVcpupinInfo
- Add TXT record support for virtual DNS service
- Support reboots with the QEMU driver
- New API virDomainGetControlInfo API
- New API virNodeGetMemoryStats
- New API virNodeGetCPUTime
- New API for send-key
- New API virDomainPinVcpuFlags
- support multifunction PCI device
- lxc: various improvements
- many improvements and bug fixes

D
Daniel Veillard 已提交
2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495
* Mon Jun  6 2011 Daniel Veillard <veillard@redhat.com> - 0.9.2-1
- Framework for lock manager plugins
- API for network config change transactions
- flags for setting memory parameters
- virDomainGetState public API
- qemu: allow blkstat/blkinfo calls during migration
- Introduce migration v3 API
- Defining the Screenshot public API
- public API for NMI injection
- Various improvements and bug fixes

D
Daniel Veillard 已提交
2496 2497 2498 2499 2500 2501 2502 2503
* Thu May  5 2011 Daniel Veillard <veillard@redhat.com> - 0.9.1-1
- support various persistent domain updates
- improvements on memory APIs
- Add virDomainEventRebootNew
- various improvements to libxl driver
- Spice: support audio, images and stream compression
- Various improvements and bug fixes

D
Daniel Veillard 已提交
2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516
* Mon Apr  4 2011 Daniel Veillard <veillard@redhat.com> - 0.9.0-1
- Support cputune cpu usage tuning
- Add public APIs for storage volume upload/download
- Add public API for setting migration speed on the fly
- Add libxenlight driver
- qemu: support migration to fd
- libvirt: add virDomain{Get,Set}BlkioParameters
- setmem: introduce a new libvirt API (virDomainSetMemoryFlags)
- Expose event loop implementation as a public API
- Dump the debug buffer to libvirtd.log on fatal signal
- Audit support
- Various improvements and bug fixes

D
Daniel Veillard 已提交
2517 2518 2519 2520 2521 2522 2523
* Thu Feb 17 2011 Daniel Veillard <veillard@redhat.com> - 0.8.8-1
- expose new API for sysinfo extraction
- cgroup blkio weight support
- smartcard device support
- qemu: Support per-device boot ordering
- Various improvements and bug fixes

D
Daniel Veillard 已提交
2524 2525 2526 2527 2528 2529 2530
* Tue Jan  4 2011 Daniel Veillard <veillard@redhat.com> - 0.8.7-1
- Preliminary support for VirtualBox 4.0
- IPv6 support
- Add VMware Workstation and Player driver driver
- Add network disk support
- Various improvements and bug fixes

D
Daniel Veillard 已提交
2531 2532 2533 2534 2535 2536 2537 2538 2539
* Tue Nov 30 2010 Daniel Veillard <veillard@redhat.com> - 0.8.6-1
- Add support for iSCSI target auto-discovery
- QED: Basic support for QED images
- remote console support
- support for SPICE graphics
- sysinfo and VMBIOS support
- virsh qemu-monitor-command
- various improvements and bug fixes

D
Daniel Veillard 已提交
2540 2541 2542 2543 2544 2545 2546 2547 2548 2549
* Fri Oct 29 2010 Daniel Veillard <veillard@redhat.com> - 0.8.5-1
- Enable JSON and netdev features in QEMU >= 0.13
- framework for auditing integration
- framework DTrace/SystemTap integration
- Setting the number of vcpu at boot
- Enable support for nested SVM
- Virtio plan9fs filesystem QEMU
- Memory parameter controls
- various improvements and bug fixes

D
Daniel Veillard 已提交
2550 2551 2552 2553
* Fri Sep 10 2010 Daniel Veillard <veillard@redhat.com> - 0.8.4-1
- big improvements to UML driver
- various improvements and bug fixes

D
Daniel Veillard 已提交
2554
* Wed Aug  4 2010 Daniel Veillard <veillard@redhat.com> - 0.8.3-1
D
Daniel Veillard 已提交
2555 2556 2557 2558 2559
- esx: Support vSphere 4.1
- Qemu arbitrary monitor commands
- Qemu Monitor API entry point
- various improvements and bug fixes

D
Daniel Veillard 已提交
2560 2561 2562 2563 2564 2565 2566 2567
* Mon Jul  5 2010 Daniel Veillard <veillard@redhat.com> - 0.8.2-1
- phyp: adding support for IVM
- libvirt: introduce domainCreateWithFlags API
- add 802.1Qbh and 802.1Qbg switches handling
- Support for VirtualBox version 3.2
- Init script for handling guests on shutdown/boot
- qemu: live migration with non-shared storage for kvm

D
Daniel Veillard 已提交
2568 2569 2570 2571 2572
* Fri Apr 30 2010 Daniel Veillard <veillard@redhat.com> - 0.8.1-1
- Starts dnsmasq from libvirtd with --dhcp-hostsfile
- Add virDomainGetBlockInfo API to query disk sizing
- a lot of bug fixes and cleanups

D
Daniel Veillard 已提交
2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586
* Mon Apr 12 2010 Daniel Veillard <veillard@redhat.com> - 0.8.0-1
- Snapshotting support (QEmu/VBox/ESX)
- Network filtering API
- XenAPI driver
- new APIs for domain events
- Libvirt managed save API
- timer subselection for domain clock
- synchronous hooks
- API to update guest CPU to host CPU
- virDomainUpdateDeviceFlags new API
- migrate max downtime API
- volume wiping API
- and many bug fixes

D
Daniel Veillard 已提交
2587 2588 2589 2590 2591 2592 2593 2594
* Fri Mar  5 2010 Daniel Veillard <veillard@redhat.com> - 0.7.7-1
- macvtap support
- async job handling
- virtio channel
- computing baseline CPU
- virDomain{Attach,Detach}DeviceFlags
- assorted bug fixes and lots of cleanups

D
Daniel Veillard 已提交
2595 2596
* Wed Feb  3 2010 Daniel Veillard <veillard@redhat.com> - 0.7.6-1

D
Daniel Veillard 已提交
2597 2598 2599 2600 2601 2602 2603
* 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

D
Daniel Veillard 已提交
2604 2605 2606 2607 2608 2609 2610 2611
* Fri Nov 20 2009 Daniel Veillard <veillard@redhat.com> - 0.7.3-1
- 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

D
Daniel Veillard 已提交
2612 2613 2614 2615 2616 2617 2618 2619 2620
* Tue Sep 15 2009 Daniel Veillard <veillard@redhat.com> - 0.7.1-1
- ESX, VBox driver updates
- mutipath support
- support for encrypted (qcow) volume
- compressed save image format for Qemu/KVM
- QEmu host PCI device hotplug support
- configuration of huge pages in guests
- a lot of fixes

D
Daniel Veillard 已提交
2621 2622 2623 2624 2625 2626 2627 2628 2629
* Wed Aug  5 2009 Daniel Veillard <veillard@redhat.com> - 0.7.0-1
- ESX, VBox3, Power Hypervisor drivers
- new net filesystem glusterfs
- Storage cloning for LVM and Disk backends
- interface implementation based on netcf
- Support cgroups in QEMU driver
- QEmu hotplug NIC support
- a lot of fixes

D
Daniel Veillard 已提交
2630 2631 2632
* Fri Jul  3 2009 Daniel Veillard <veillard@redhat.com> - 0.6.5-1
- release of 0.6.5

D
Daniel Veillard 已提交
2633 2634 2635 2636
* Fri May 29 2009 Daniel Veillard <veillard@redhat.com> - 0.6.4-1
- release of 0.6.4
- various new APIs

D
Daniel Veillard 已提交
2637 2638 2639 2640
* Fri Apr 24 2009 Daniel Veillard <veillard@redhat.com> - 0.6.3-1
- release of 0.6.3
- VirtualBox driver

D
Daniel Veillard 已提交
2641 2642 2643
* Fri Apr  3 2009 Daniel Veillard <veillard@redhat.com> - 0.6.2-1
- release of 0.6.2

J
Jiri Denemark 已提交
2644
* Wed Mar  4 2009 Daniel Veillard <veillard@redhat.com> - 0.6.1-1
D
Daniel Veillard 已提交
2645 2646 2647 2648 2649
- release of 0.6.1

* Sat Jan 31 2009 Daniel Veillard <veillard@redhat.com> - 0.6.0-1
- release of 0.6.0

D
Daniel Veillard 已提交
2650 2651 2652
* Tue Nov 25 2008 Daniel Veillard <veillard@redhat.com> - 0.5.0-1
- release of 0.5.0

2653 2654 2655
* Tue Sep 23 2008 Daniel Veillard <veillard@redhat.com> - 0.4.6-1
- release of 0.4.6

2656 2657 2658 2659 2660 2661 2662
* Mon Sep  8 2008 Daniel Veillard <veillard@redhat.com> - 0.4.5-1
- release of 0.4.5

* Wed Jun 25 2008 Daniel Veillard <veillard@redhat.com> - 0.4.4-1
- release of 0.4.4
- mostly a few bug fixes from 0.4.3

2663 2664 2665 2666
* Thu Jun 12 2008 Daniel Veillard <veillard@redhat.com> - 0.4.3-1
- release of 0.4.3
- lots of bug fixes and small improvements

D
Daniel Veillard 已提交
2667 2668 2669 2670
* Tue Apr  8 2008 Daniel Veillard <veillard@redhat.com> - 0.4.2-1
- release of 0.4.2
- lots of bug fixes and small improvements

D
Daniel Veillard 已提交
2671 2672 2673 2674 2675 2676 2677
* Mon Mar  3 2008 Daniel Veillard <veillard@redhat.com> - 0.4.1-1
- Release of 0.4.1
- Storage APIs
- xenner support
- lots of assorted improvements, bugfixes and cleanups
- documentation and localization improvements

D
Daniel Veillard 已提交
2678 2679 2680 2681 2682 2683 2684 2685
* Tue Dec 18 2007 Daniel Veillard <veillard@redhat.com> - 0.4.0-1
- Release of 0.4.0
- SASL based authentication
- PolicyKit authentication
- improved NUMA and statistics support
- lots of assorted improvements, bugfixes and cleanups
- documentation and localization improvements

2686 2687 2688 2689 2690 2691 2692
* Sun Sep 30 2007 Daniel Veillard <veillard@redhat.com> - 0.3.3-1
- Release of 0.3.3
- Avahi support
- NUMA support
- lots of assorted improvements, bugfixes and cleanups
- documentation and localization improvements

D
Daniel Veillard 已提交
2693 2694 2695 2696 2697 2698 2699
* Tue Aug 21 2007 Daniel Veillard <veillard@redhat.com> - 0.3.2-1
- Release of 0.3.2
- API for domains migration
- APIs for collecting statistics on disks and interfaces
- lots of assorted bugfixes and cleanups
- documentation and localization improvements

2700 2701 2702 2703 2704 2705 2706
* Tue Jul 24 2007 Daniel Veillard <veillard@redhat.com> - 0.3.1-1
- Release of 0.3.1
- localtime clock support
- PS/2 and USB input devices
- lots of assorted bugfixes and cleanups
- documentation and localization improvements

2707 2708 2709 2710 2711 2712 2713 2714
* Mon Jul  9 2007 Daniel Veillard <veillard@redhat.com> - 0.3.0-1
- Release of 0.3.0
- Secure remote access support
- unification of daemons
- lots of assorted bugfixes and cleanups
- documentation and localization improvements

* Fri Jun  8 2007 Daniel Veillard <veillard@redhat.com> - 0.2.3-1
2715 2716 2717 2718 2719
- Release of 0.2.3
- lot of assorted bugfixes and cleanups
- support for Xen-3.1
- new scheduler API

2720 2721 2722 2723 2724
* Tue Apr 17 2007 Daniel Veillard <veillard@redhat.com> - 0.2.2-1
- Release of 0.2.2
- lot of assorted bugfixes and cleanups
- preparing for Xen-3.0.5

2725 2726 2727 2728 2729
* Thu Mar 22 2007 Jeremy Katz <katzj@redhat.com> - 0.2.1-2.fc7
- don't require xen; we don't need the daemon and can control non-xen now
- fix scriptlet error (need to own more directories)
- update description text

2730
* Fri Mar 16 2007 Daniel Veillard <veillard@redhat.com> - 0.2.1-1
2731 2732 2733 2734 2735 2736
- Release of 0.2.1
- lot of bug and portability fixes
- Add support for network autostart and init scripts
- New API to detect the virtualization capabilities of a host
- Documentation updates

2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749
* Fri Feb 23 2007 Daniel P. Berrange <berrange@redhat.com> - 0.2.0-4.fc7
- Fix loading of guest & network configs

* Fri Feb 16 2007 Daniel P. Berrange <berrange@redhat.com> - 0.2.0-3.fc7
- Disable kqemu support since its not in Fedora qemu binary
- Fix for -vnc arg syntax change in 0.9.0  QEMU

* Thu Feb 15 2007 Daniel P. Berrange <berrange@redhat.com> - 0.2.0-2.fc7
- Fixed path to qemu daemon for autostart
- Fixed generation of <features> block in XML
- Pre-create config directory at startup

* Wed Feb 14 2007 Daniel Veillard <veillard@redhat.com> 0.2.0-1.fc7
2750 2751 2752 2753
- support for KVM and QEmu
- support for network configuration
- assorted fixes

2754
* Mon Jan 22 2007 Daniel Veillard <veillard@redhat.com> 0.1.11-1.fc7
2755 2756 2757 2758
- finish inactive Xen domains support
- memory leak fix
- RelaxNG schemas for XML configs

2759
* Wed Dec 20 2006 Daniel Veillard <veillard@redhat.com> 0.1.10-1.fc7
2760 2761 2762 2763 2764
- support for inactive Xen domains
- improved support for Xen display and vnc
- a few bug fixes
- localization updates

2765 2766 2767
* Thu Dec  7 2006 Jeremy Katz <katzj@redhat.com> - 0.1.9-2
- rebuild against python 2.5

2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778
* Wed Nov 29 2006 Daniel Veillard <veillard@redhat.com> 0.1.9-1
- better error reporting
- python bindings fixes and extensions
- add support for shareable drives
- add support for non-bridge style networking
- hot plug device support
- added support for inactive domains
- API to dump core of domains
- various bug fixes, cleanups and improvements
- updated the localization

2779 2780 2781 2782
* Tue Nov  7 2006 Daniel Veillard <veillard@redhat.com> 0.1.8-3
- it's pkgconfig not pgkconfig !

* Mon Nov  6 2006 Daniel Veillard <veillard@redhat.com> 0.1.8-2
J
Jiri Denemark 已提交
2783
- fixing spec file, added %%dist, -devel requires pkgconfig and xen-devel
2784 2785
- Resolves: rhbz#202320

2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797
* Mon Oct 16 2006 Daniel Veillard <veillard@redhat.com> 0.1.8-1
- fix missing page size detection code for ia64
- fix mlock size when getting domain info list from hypervisor
- vcpu number initialization
- don't label crashed domains as shut off
- fix virsh man page
- blktapdd support for alternate drivers like blktap
- memory leak fixes (xend interface and XML parsing)
- compile fix
- mlock/munlock size fixes

* Fri Sep 22 2006 Daniel Veillard <veillard@redhat.com> 0.1.7-1
2798 2799 2800
- Fix bug when running against xen-3.0.3 hypercalls
- Fix memory bug when getting vcpus info from xend

2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813
* Fri Sep 22 2006 Daniel Veillard <veillard@redhat.com> 0.1.6-1
- Support for localization
- Support for new Xen-3.0.3 cdrom and disk configuration
- Support for setting VNC port
- Fix bug when running against xen-3.0.2 hypercalls
- Fix reconnection problem when talking directly to http xend

* Tue Sep  5 2006 Jeremy Katz <katzj@redhat.com> - 0.1.5-3
- patch from danpb to support new-format cd devices for HVM guests

* Tue Sep  5 2006 Daniel Veillard <veillard@redhat.com> 0.1.5-2
- reactivating ia64 support

2814 2815 2816 2817 2818 2819 2820 2821 2822 2823
* Tue Sep  5 2006 Daniel Veillard <veillard@redhat.com> 0.1.5-1
- new release
- bug fixes
- support for new hypervisor calls
- early code for config files and defined domains

* Mon Sep  4 2006 Daniel Berrange <berrange@redhat.com> - 0.1.4-5
- add patch to address dom0_ops API breakage in Xen 3.0.3 tree

* Mon Aug 28 2006 Jeremy Katz <katzj@redhat.com> - 0.1.4-4
2824
- add patch to support paravirt framebuffer in Xen
2825 2826 2827 2828 2829 2830 2831

* Mon Aug 21 2006 Daniel Veillard <veillard@redhat.com> 0.1.4-3
- another patch to fix network handling in non-HVM guests

* Thu Aug 17 2006 Daniel Veillard <veillard@redhat.com> 0.1.4-2
- patch to fix virParseUUID()

D
Daniel Veillard 已提交
2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850
* Wed Aug 16 2006 Daniel Veillard <veillard@redhat.com> 0.1.4-1
- vCPUs and affinity support
- more complete XML, console and boot options
- specific features support
- enforced read-only connections
- various improvements, bug fixes

* Wed Aug  2 2006 Jeremy Katz <katzj@redhat.com> - 0.1.3-6
- add patch from pvetere to allow getting uuid from libvirt

* Wed Aug  2 2006 Jeremy Katz <katzj@redhat.com> - 0.1.3-5
- build on ia64 now

* Thu Jul 27 2006 Jeremy Katz <katzj@redhat.com> - 0.1.3-4
- don't BR xen, we just need xen-devel

* Thu Jul 27 2006 Daniel Veillard <veillard@redhat.com> 0.1.3-3
- need rebuild since libxenstore is now versionned

2851 2852 2853 2854 2855 2856
* Mon Jul 24 2006 Mark McLoughlin <markmc@redhat.com> - 0.1.3-2
- Add BuildRequires: xen-devel

* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.1.3-1.1
- rebuild

2857 2858 2859 2860
* Tue Jul 11 2006 Daniel Veillard <veillard@redhat.com> 0.1.3-1
- support for HVM Xen guests
- various bugfixes

2861 2862 2863 2864
* Mon Jul  3 2006 Daniel Veillard <veillard@redhat.com> 0.1.2-1
- added a proxy mechanism for read only access using httpu
- fixed header includes paths

2865 2866 2867 2868 2869 2870 2871 2872 2873
* Wed Jun 21 2006 Daniel Veillard <veillard@redhat.com> 0.1.1-1
- extend and cleanup the driver infrastructure and code
- python examples
- extend uuid support
- bug fixes, buffer handling cleanups
- support for new Xen hypervisor API
- test driver for unit testing
- virsh --conect argument

2874 2875 2876 2877 2878 2879 2880
* Mon Apr 10 2006 Daniel Veillard <veillard@redhat.com> 0.1.0-1
- various fixes
- new APIs: for Node information and Reboot
- virsh improvements and extensions
- documentation updates and man page
- enhancement and fixes of the XML description format

2881 2882 2883 2884 2885 2886
* Tue Feb 28 2006 Daniel Veillard <veillard@redhat.com> 0.0.6-1
- added error handling APIs
- small bug fixes
- improve python bindings
- augment documentation and regression tests

2887 2888 2889 2890 2891 2892
* Thu Feb 23 2006 Daniel Veillard <veillard@redhat.com> 0.0.5-1
- new domain creation API
- new UUID based APIs
- more tests, documentation, devhelp
- bug fixes

2893 2894 2895
* Fri Feb 10 2006 Daniel Veillard <veillard@redhat.com> 0.0.4-1
- fixes some problems in 0.0.3 due to the change of names

2896
* Wed Feb  8 2006 Daniel Veillard <veillard@redhat.com> 0.0.3-1
2897
- changed library name to libvirt from libvir, complete and test the python
2898 2899
  bindings

D
Daniel Veillard 已提交
2900 2901 2902 2903
* Sun Jan 29 2006 Daniel Veillard <veillard@redhat.com> 0.0.2-1
- upstream release of 0.0.2, use xend, save and restore added, python bindings
  fixed

2904 2905
* Wed Nov  2 2005 Daniel Veillard <veillard@redhat.com> 0.0.1-1
- created