a108d48a777622e5f5c1484aa4262c8ab135f474
[libvirt.git] / libvirt.spec
1 # -*- rpm-spec -*-
2
3 %define mainstream_version 1.0.2
4 %define module_version_varname mainstream_version
5 %define taglevel 0
6
7 #libvirt-RPMFLAGS := --without storage-disk --without storage-iscsi --without storage-scsi \
8 #                       --without storage-fs --without storage-lvm \
9 #                       --without polkit --without sasl --without audit --with capng --with udev \
10 #                       --without netcf --without avahi --without sanlock \
11 #                       --without xen --without qemu --without hyperv --without phyp --without esx \
12 #                       --without libxl \
13 %define _without_storage_disk   true
14 %define _without_storage_iscsi  true
15 %define _without_storage_fs     true
16 %define _without_storage_lvm    true
17 %define _without_polkit         true
18 %define _without_sasl           true
19 %define _without_audit          true
20 #interface requires netcf
21 #%define _without_netcf         true
22 %define _without_avahi          true
23 %define _without_sanlock        true
24 %define _without_xen            true
25 %define _without_qemu           true
26 %define _without_hyperv         true
27 %define _without_phyp           true
28 %define _without_esx            true
29 %define _without_libxl          true
30
31 %define enable_autotools        1
32
33 # If neither fedora nor rhel was defined, try to guess them from %{dist}
34 %if !0%{?rhel} && !0%{?fedora}
35 %{expand:%(echo "%{?dist}" | \
36   sed -ne 's/^\.el\([0-9]\+\).*/%%define rhel \1/p')}
37 %{expand:%(echo "%{?dist}" | \
38   sed -ne 's/^\.fc\?\([0-9]\+\).*/%%define fedora \1/p')}
39 %endif
40
41 # Default to skipping autoreconf.  Distros can change just this one line
42 # (or provide a command-line override) if they backport any patches that
43 # touch configure.ac or Makefile.am.
44 %{!?enable_autotools:%define enable_autotools 0}
45
46 # A client only build will create a libvirt.so only containing
47 # the generic RPC driver, and test driver and no libvirtd
48 # Default to a full server + client build
49 %define client_only        0
50
51 # Now turn off server build in certain cases
52
53 # RHEL-5 builds are client-only for s390, ppc
54 %if 0%{?rhel} == 5
55     %ifnarch %{ix86} x86_64 ia64
56         %define client_only        1
57     %endif
58 %endif
59
60 # Disable all server side drivers if client only build requested
61 %if %{client_only}
62     %define server_drivers     0
63 %else
64     %define server_drivers     1
65 %endif
66
67 # Always build with dlopen'd modules
68 %define with_driver_modules 1
69
70 # Now set the defaults for all the important features, independent
71 # of any particular OS
72
73 # First the daemon itself
74 %define with_libvirtd      0%{!?_without_libvirtd:%{server_drivers}}
75 %define with_avahi         0%{!?_without_avahi:%{server_drivers}}
76
77 # Then the hypervisor drivers that run in libvirtd
78 %define with_xen           0%{!?_without_xen:%{server_drivers}}
79 %define with_qemu          0%{!?_without_qemu:%{server_drivers}}
80 %define with_lxc           0%{!?_without_lxc:%{server_drivers}}
81 %define with_uml           0%{!?_without_uml:%{server_drivers}}
82 %define with_libxl         0%{!?_without_libxl:%{server_drivers}}
83
84 %define with_qemu_tcg      %{with_qemu}
85 # Change if we ever provide qemu-kvm binaries on non-x86 hosts
86 %if 0%{?fedora} >= 18
87     %define qemu_kvm_arches    %{ix86} x86_64 ppc64 s390x
88 %else
89     %define qemu_kvm_arches    %{ix86} x86_64
90 %endif
91
92 %ifarch %{qemu_kvm_arches}
93     %define with_qemu_kvm      %{with_qemu}
94 %else
95     %define with_qemu_kvm      0
96 %endif
97
98 # Then the hypervisor drivers that run outside libvirtd, in libvirt.so
99 %define with_openvz        0%{!?_without_openvz:1}
100 %define with_vbox          0%{!?_without_vbox:1}
101 %define with_vmware        0%{!?_without_vmware:1}
102 %define with_phyp          0%{!?_without_phyp:1}
103 %define with_esx           0%{!?_without_esx:1}
104 %define with_hyperv        0%{!?_without_hyperv:1}
105 %define with_xenapi        0%{!?_without_xenapi:1}
106 %define with_parallels     0%{!?_without_parallels:1}
107
108 # Then the secondary host drivers, which run inside libvirtd
109 %define with_interface        0%{!?_without_interface:%{server_drivers}}
110 %define with_network          0%{!?_without_network:%{server_drivers}}
111 %define with_storage_fs       0%{!?_without_storage_fs:%{server_drivers}}
112 %define with_storage_lvm      0%{!?_without_storage_lvm:%{server_drivers}}
113 %define with_storage_iscsi    0%{!?_without_storage_iscsi:%{server_drivers}}
114 %define with_storage_disk     0%{!?_without_storage_disk:%{server_drivers}}
115 %define with_storage_mpath    0%{!?_without_storage_mpath:%{server_drivers}}
116 %if 0%{?fedora} >= 16
117     %define with_storage_rbd      0%{!?_without_storage_rbd:%{server_drivers}}
118 %else
119     %define with_storage_rbd      0
120 %endif
121 %if 0%{?fedora} >= 17
122     %define with_storage_sheepdog 0%{!?_without_storage_sheepdog:%{server_drivers}}
123 %else
124     %define with_storage_sheepdog 0
125 %endif
126 %define with_numactl          0%{!?_without_numactl:%{server_drivers}}
127 %define with_selinux          0%{!?_without_selinux:%{server_drivers}}
128
129 # A few optional bits off by default, we enable later
130 %define with_polkit        0%{!?_without_polkit:0}
131 %define with_capng         0%{!?_without_capng:0}
132 %define with_fuse          0%{!?_without_fuse:0}
133 %define with_netcf         0%{!?_without_netcf:0}
134 %define with_udev          0%{!?_without_udev:0}
135 %define with_hal           0%{!?_without_hal:0}
136 %define with_yajl          0%{!?_without_yajl:0}
137 %define with_nwfilter      0%{!?_without_nwfilter:0}
138 %define with_libpcap       0%{!?_without_libpcap:0}
139 %define with_macvtap       0%{!?_without_macvtap:0}
140 %define with_libnl         0%{!?_without_libnl:0}
141 %define with_audit         0%{!?_without_audit:0}
142 %define with_dtrace        0%{!?_without_dtrace:0}
143 %define with_cgconfig      0%{!?_without_cgconfig:0}
144 %define with_sanlock       0%{!?_without_sanlock:0}
145 %define with_systemd       0%{!?_without_systemd:0}
146 %define with_numad         0%{!?_without_numad:0}
147 %define with_firewalld     0%{!?_without_firewalld:0}
148 %define with_libssh2       0%{!?_without_libssh2:0}
149
150 # Non-server/HV driver defaults which are always enabled
151 %define with_python        0%{!?_without_python:1}
152 %define with_sasl          0%{!?_without_sasl:1}
153
154
155 # Finally set the OS / architecture specific special cases
156
157 # Xen is available only on i386 x86_64 ia64
158 %ifnarch %{ix86} x86_64 ia64
159     %define with_xen 0
160     %define with_libxl 0
161 %endif
162
163 # Numactl is not available on s390[x] and ARM
164 %ifarch s390 s390x %{arm}
165     %define with_numactl 0
166 %endif
167
168 # RHEL doesn't ship OpenVZ, VBox, UML, PowerHypervisor,
169 # VMWare, libxenserver (xenapi), libxenlight (Xen 4.1 and newer),
170 # or HyperV.
171 %if 0%{?rhel}
172     %define with_openvz 0
173     %define with_vbox 0
174     %define with_uml 0
175     %define with_phyp 0
176     %define with_vmware 0
177     %define with_xenapi 0
178     %define with_libxl 0
179     %define with_hyperv 0
180     %define with_parallels 0
181 %endif
182
183 # Fedora 17 / RHEL-7 are first where we use systemd. Although earlier
184 # Fedora has systemd, libvirt still used sysvinit there.
185 %if 0%{?fedora} >= 17 || 0%{?rhel} >= 7
186     %define with_systemd 1
187 %endif
188
189 # Fedora 18 / RHEL-7 are first where firewalld support is enabled
190 %if 0%{?fedora} >= 17 || 0%{?rhel} >= 7
191     %define with_firewalld 1
192 %endif
193
194 # RHEL-5 has restricted QEMU to x86_64 only and is too old for LXC
195 %if 0%{?rhel} == 5
196     %define with_qemu_tcg 0
197     %ifnarch x86_64
198         %define with_qemu 0
199         %define with_qemu_kvm 0
200     %endif
201     %define with_lxc 0
202 %endif
203
204 # RHEL-6 has restricted QEMU to x86_64 only, stopped including Xen
205 # on all archs. Other archs all have LXC available though
206 %if 0%{?rhel} >= 6
207     %define with_qemu_tcg 0
208     %ifnarch x86_64
209         %define with_qemu 0
210         %define with_qemu_kvm 0
211     %endif
212     %define with_xen 0
213 %endif
214
215 # Fedora doesn't have any QEMU on ppc64 until FC16 - only ppc
216 %if 0%{?fedora} && 0%{?fedora} < 16
217     %ifarch ppc64
218         %define with_qemu 0
219     %endif
220 %endif
221
222 # Fedora doesn't have new enough Xen for libxl until F18
223 %if 0%{?fedora} && 0%{?fedora} < 18
224     %define with_libxl 0
225 %endif
226
227 # PolicyKit was introduced in Fedora 8 / RHEL-6 or newer
228 %if 0%{?fedora} >= 8 || 0%{?rhel} >= 6
229     %define with_polkit    0%{!?_without_polkit:1}
230 %endif
231
232 # libcapng is used to manage capabilities in Fedora 12 / RHEL-6 or newer
233 %if 0%{?fedora} >= 12 || 0%{?rhel} >= 6
234     %define with_capng     0%{!?_without_capng:1}
235 %endif
236
237 # fuse is used to provide virtualized /proc for LXC
238 %if 0%{?fedora} >= 17 || 0%{?rhel} >= 7
239     %define with_fuse      0%{!?_without_fuse:1}
240 %endif
241
242 # netcf is used to manage network interfaces in Fedora 12 / RHEL-6 or newer
243 %if 0%{?fedora} >= 12 || 0%{?rhel} >= 6
244     %define with_netcf     0%{!?_without_netcf:%{server_drivers}}
245 %endif
246
247 # udev is used to manage host devices in Fedora 12 / RHEL-6 or newer
248 %if 0%{?fedora} >= 12 || 0%{?rhel} >= 6
249     %define with_udev     0%{!?_without_udev:%{server_drivers}}
250 %else
251     %define with_hal       0%{!?_without_hal:%{server_drivers}}
252 %endif
253
254 # interface requires netcf
255 %if ! 0%{?with_netcf}
256     %define with_interface     0
257 %endif
258
259 # Enable yajl library for JSON mode with QEMU
260 %if 0%{?fedora} >= 13 || 0%{?rhel} >= 6
261     %define with_yajl     0%{!?_without_yajl:%{server_drivers}}
262 %endif
263
264 # Enable sanlock library for lock management with QEMU
265 # Sanlock is available only on i686 x86_64 for RHEL
266 %if 0%{?fedora} >= 16
267     %define with_sanlock 0%{!?_without_sanlock:%{server_drivers}}
268 %endif
269 %if 0%{?rhel} >= 6
270     %ifarch %{ix86} x86_64
271         %define with_sanlock 0%{!?_without_sanlock:%{server_drivers}}
272     %endif
273 %endif
274
275 # Enable libssh2 transport for new enough distros
276 %if 0%{?fedora} >= 17 || 0%{?rhel} >= 6
277     %define with_libssh2 0%{!?_without_libssh2:1}
278 %endif
279
280 # Disable some drivers when building without libvirt daemon.
281 # The logic is the same as in configure.ac
282 %if ! %{with_libvirtd}
283     %define with_interface 0
284     %define with_network 0
285     %define with_qemu 0
286     %define with_lxc 0
287     %define with_uml 0
288     %define with_hal 0
289     %define with_udev 0
290     %define with_storage_fs 0
291     %define with_storage_lvm 0
292     %define with_storage_iscsi 0
293     %define with_storage_mpath 0
294     %define with_storage_rbd 0
295     %define with_storage_sheepdog 0
296     %define with_storage_disk 0
297 %endif
298
299 %if %{with_qemu} || %{with_lxc} || %{with_uml}
300     %define with_nwfilter 0%{!?_without_nwfilter:%{server_drivers}}
301 # Enable libpcap library
302     %define with_libpcap  0%{!?_without_libpcap:%{server_drivers}}
303     %define with_macvtap  0%{!?_without_macvtap:%{server_drivers}}
304
305 # numad is used to manage the CPU and memory placement dynamically,
306 # it's not available on s390[x] and ARM.
307     %if 0%{?fedora} >= 17 || 0%{?rhel} >= 6
308         %ifnarch s390 s390x %{arm}
309             %define with_numad    0%{!?_without_numad:%{server_drivers}}
310         %endif
311     %endif
312 %endif
313
314 %if %{with_macvtap}
315     %define with_libnl 1
316 %endif
317
318 %if 0%{?fedora} >= 11 || 0%{?rhel} >= 5
319     %define with_audit    0%{!?_without_audit:1}
320 %endif
321
322 %if 0%{?fedora} >= 13 || 0%{?rhel} >= 6
323     %define with_dtrace 1
324 %endif
325
326 # Pull in cgroups config system
327 %if 0%{?fedora} >= 12 || 0%{?rhel} >= 6
328     %if %{with_qemu} || %{with_lxc}
329         %define with_cgconfig 0%{!?_without_cgconfig:1}
330     %endif
331 %endif
332
333 %if %{with_udev} || %{with_hal}
334     %define with_nodedev 1
335 %else
336     %define with_nodedev 0
337 %endif
338
339 %if %{with_storage_fs} || %{with_storage_mpath} || %{with_storage_iscsi} || %{with_storage_lvm} || %{with_storage_disk}
340     %define with_storage 1
341 %else
342     %define with_storage 0
343 %endif
344
345
346 # Force QEMU to run as non-root
347 %if 0%{?fedora} >= 12 || 0%{?rhel} >= 6
348     %define qemu_user  qemu
349     %define qemu_group  qemu
350 %else
351     %define qemu_user  root
352     %define qemu_group  root
353 %endif
354
355
356 # The RHEL-5 Xen package has some feature backports. This
357 # flag is set to enable use of those special bits on RHEL-5
358 %if 0%{?rhel} == 5
359     %define with_rhel5  1
360 %else
361     %define with_rhel5  0
362 %endif
363
364 %if 0%{?fedora} >= 18 || 0%{?rhel} >= 7
365     %define with_systemd_macros 1
366 %else
367     %define with_systemd_macros 0
368 %endif
369
370
371 Summary: Library providing a simple virtualization API
372 Name: libvirt
373 Version: %{mainstream_version}
374 Release: %{taglevel}
375 License: LGPLv2+
376 Group: Development/Libraries
377 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
378 URL: http://libvirt.org/
379
380 %if %(echo %{version} | grep -o \\. | wc -l) == 3
381     %define mainturl stable_updates/
382 %endif
383 Source: http://libvirt.org/sources/%{?mainturl}libvirt-%{version}.tar.gz
384 Patch1: libcurl.patch
385 Patch2: libcurl-daemon.patch
386 Patch3: securityselinuxlabeltest.patch
387
388 %if %{with_libvirtd}
389 Requires: libvirt-daemon = %{version}-%{release}
390     %if %{with_network}
391 Requires: libvirt-daemon-config-network = %{version}-%{release}
392     %endif
393     %if %{with_nwfilter}
394 Requires: libvirt-daemon-config-nwfilter = %{version}-%{release}
395     %endif
396     %if %{with_driver_modules}
397         %if %{with_libxl}
398 Requires: libvirt-daemon-driver-libxl = %{version}-%{release}
399         %endif
400         %if %{with_lxc}
401 Requires: libvirt-daemon-driver-lxc = %{version}-%{release}
402         %endif
403         %if %{with_qemu}
404 Requires: libvirt-daemon-driver-qemu = %{version}-%{release}
405         %endif
406         %if %{with_uml}
407 Requires: libvirt-daemon-driver-uml = %{version}-%{release}
408         %endif
409         %if %{with_xen}
410 Requires: libvirt-daemon-driver-xen = %{version}-%{release}
411         %endif
412
413         %if %{with_interface}
414 Requires: libvirt-daemon-driver-interface = %{version}-%{release}
415         %endif
416 Requires: libvirt-daemon-driver-secret = %{version}-%{release}
417 Requires: libvirt-daemon-driver-storage = %{version}-%{release}
418 Requires: libvirt-daemon-driver-network = %{version}-%{release}
419 Requires: libvirt-daemon-driver-nodedev = %{version}-%{release}
420 Requires: libvirt-daemon-driver-nwfilter = %{version}-%{release}
421     %endif
422 %endif
423 Requires: libvirt-client = %{version}-%{release}
424
425 # All build-time requirements. Run-time requirements are
426 # listed against each sub-RPM
427 %if 0%{?enable_autotools}
428 BuildRequires: autoconf
429 BuildRequires: automake
430 BuildRequires: gettext-devel
431 BuildRequires: libtool
432 %endif
433 BuildRequires: python-devel
434 %if %{with_systemd}
435 BuildRequires: systemd-units
436 %endif
437 %if %{with_xen}
438 BuildRequires: xen-devel
439 %endif
440 BuildRequires: libxml2-devel
441 BuildRequires: xhtml1-dtds
442 BuildRequires: libxslt
443 BuildRequires: readline-devel
444 BuildRequires: ncurses-devel
445 BuildRequires: gettext
446 BuildRequires: libtasn1-devel
447 BuildRequires: gnutls-devel
448 BuildRequires: libattr-devel
449 %if 0%{?fedora} >= 12 || 0%{?rhel} >= 6
450 # for augparse, optionally used in testing
451 BuildRequires: augeas
452 %endif
453 %if %{with_hal}
454 BuildRequires: hal-devel
455 %endif
456 %if %{with_udev}
457     %if 0%{?fedora} >= 18 || 0%{?rhel} >= 7
458 BuildRequires: systemd-devel >= 185
459     %else
460 BuildRequires: libudev-devel >= 145
461     %endif
462 BuildRequires: libpciaccess-devel >= 0.10.9
463 %endif
464 %if %{with_yajl}
465 BuildRequires: yajl-devel
466 %endif
467 %if %{with_sanlock}
468 # make sure libvirt is built with new enough sanlock on
469 # distros that have it; required for on_lockfailure
470     %if 0%{?fedora} >= 17 || 0%{?rhel} >= 6
471 BuildRequires: sanlock-devel >= 2.4
472     %else
473 BuildRequires: sanlock-devel >= 1.8
474     %endif
475 %endif
476 %if %{with_libpcap}
477 BuildRequires: libpcap-devel
478 %endif
479 %if %{with_libnl}
480     %if 0%{?fedora} >= 18 || 0%{?rhel} >= 7
481 BuildRequires: libnl3-devel
482     %else
483 BuildRequires: libnl-devel
484     %endif
485 %endif
486 %if %{with_avahi}
487 BuildRequires: avahi-devel
488 %endif
489 %if %{with_selinux}
490 BuildRequires: libselinux-devel
491 %endif
492 %if %{with_network}
493 BuildRequires: dnsmasq >= 2.41
494 BuildRequires: iptables
495 BuildRequires: iptables-ipv6
496 BuildRequires: radvd
497 %endif
498 %if %{with_nwfilter}
499 BuildRequires: ebtables
500 %endif
501 BuildRequires: module-init-tools
502 %if %{with_sasl}
503 BuildRequires: cyrus-sasl-devel
504 %endif
505 %if %{with_polkit}
506     %if 0%{?fedora} >= 12 || 0%{?rhel} >= 6
507 # Only need the binary, not -devel
508 BuildRequires: polkit >= 0.93
509     %else
510 BuildRequires: PolicyKit-devel >= 0.6
511     %endif
512 %endif
513 %if %{with_storage_fs}
514 # For mount/umount in FS driver
515 BuildRequires: util-linux
516 %endif
517 %if %{with_qemu}
518 # From QEMU RPMs
519 BuildRequires: /usr/bin/qemu-img
520 %else
521     %if %{with_xen}
522 # From Xen RPMs
523 BuildRequires: /usr/sbin/qcow-create
524     %endif
525 %endif
526 %if %{with_storage_lvm}
527 # For LVM drivers
528 BuildRequires: lvm2
529 %endif
530 %if %{with_storage_iscsi}
531 # For ISCSI driver
532 BuildRequires: iscsi-initiator-utils
533 %endif
534 %if %{with_storage_disk}
535 # For disk driver
536 BuildRequires: parted-devel
537     %if 0%{?rhel} == 5
538 # Broken RHEL-5 parted RPM is missing a dep
539 BuildRequires: e2fsprogs-devel
540     %endif
541 %endif
542 %if %{with_storage_mpath}
543 # For Multipath support
544     %if 0%{?rhel} == 5
545 # Broken RHEL-5 packaging has header files in main RPM :-(
546 BuildRequires: device-mapper
547     %else
548 BuildRequires: device-mapper-devel
549     %endif
550     %if %{with_storage_rbd}
551 BuildRequires: ceph-devel
552     %endif
553 %endif
554 %if %{with_numactl}
555 # For QEMU/LXC numa info
556 BuildRequires: numactl-devel
557 %endif
558 %if %{with_capng}
559 BuildRequires: libcap-ng-devel >= 0.5.0
560 %endif
561 %if %{with_fuse}
562 BuildRequires: fuse-devel >= 2.8.6
563 %endif
564 %if %{with_phyp} || %{with_libssh2}
565 BuildRequires: libssh2-devel >= 1.3.0
566 %endif
567
568 %if %{with_netcf}
569     %if 0%{?fedora} >= 18 || 0%{?rhel} >= 7
570 BuildRequires: netcf-devel >= 0.2.2
571     %else
572         %if 0%{?fedora} >= 16 || 0%{?rhel} >= 6
573 BuildRequires: netcf-devel >= 0.1.8
574         %else
575 BuildRequires: netcf-devel >= 0.1.4
576         %endif
577     %endif
578 %endif
579 %if %{with_esx}
580     %if 0%{?fedora} >= 9 || 0%{?rhel} >= 6
581 BuildRequires: libcurl-devel
582     %else
583 BuildRequires: curl-devel
584     %endif
585 %endif
586 %if %{with_hyperv}
587 BuildRequires: libwsman-devel >= 2.2.3
588 %endif
589 %if %{with_audit}
590 BuildRequires: audit-libs-devel
591 %endif
592 %if %{with_dtrace}
593 # we need /usr/sbin/dtrace
594 BuildRequires: systemtap-sdt-devel
595 %endif
596
597 %if %{with_storage_fs}
598 # For mount/umount in FS driver
599 BuildRequires: util-linux
600 # For showmount in FS driver (netfs discovery)
601 BuildRequires: nfs-utils
602 %endif
603
604 %if %{with_firewalld}
605 # Communication with the firewall daemon uses DBus
606 BuildRequires: dbus-devel
607 %endif
608
609 # Fedora build root suckage
610 BuildRequires: gawk
611
612 # For storage wiping with different algorithms
613 BuildRequires: scrub
614
615 %if %{with_numad}
616 BuildRequires: numad
617 %endif
618
619 Provides: bundled(gnulib)
620
621 %description
622 Libvirt is a C toolkit to interact with the virtualization capabilities
623 of recent versions of Linux (and other OSes). The main package includes
624 the libvirtd server exporting the virtualization support.
625
626 %package docs
627 Summary: API reference and website documentation
628 Group: Development/Libraries
629
630 %description docs
631 Includes the API reference for the libvirt C library, and a complete
632 copy of the libvirt.org website documentation.
633
634 %if %{with_libvirtd}
635 %package daemon
636 Summary: Server side daemon and supporting files for libvirt library
637 Group: Development/Libraries
638
639 # All runtime requirements for the libvirt package (runtime requrements
640 # for subpackages are listed later in those subpackages)
641
642 # The client side, i.e. shared libs and virsh are in a subpackage
643 Requires: %{name}-client = %{version}-%{release}
644
645 # for modprobe of pci devices
646 Requires: module-init-tools
647 # for /sbin/ip & /sbin/tc
648 Requires: iproute
649     %if %{with_avahi}
650         %if 0%{?rhel} == 5
651 Requires: avahi
652         %else
653 Requires: avahi-libs
654         %endif
655     %endif
656     %if %{with_network}
657 Requires: dnsmasq >= 2.41
658 Requires: radvd
659     %endif
660     %if %{with_network} || %{with_nwfilter}
661 Requires: iptables
662 Requires: iptables-ipv6
663     %endif
664     %if %{with_nwfilter}
665 Requires: ebtables
666     %endif
667     %if %{with_netcf} && (0%{?fedora} >= 18 || 0%{?rhel} >= 7)
668 Requires: netcf-libs >= 0.2.2
669     %endif
670 # needed for device enumeration
671     %if %{with_hal}
672 Requires: hal
673     %endif
674     %if %{with_udev}
675         %if 0%{?fedora} >= 18 || 0%{?rhel} >= 7
676 Requires: systemd >= 185
677         %else
678 Requires: udev >= 145
679         %endif
680     %endif
681     %if %{with_polkit}
682         %if 0%{?fedora} >= 12 || 0%{?rhel} >=6
683 Requires: polkit >= 0.93
684         %else
685 Requires: PolicyKit >= 0.6
686         %endif
687     %endif
688     %if %{with_storage_fs}
689 Requires: nfs-utils
690 # For mkfs
691 Requires: util-linux
692 # For pool-build probing for existing pools
693 BuildRequires: libblkid-devel >= 2.17
694 # For glusterfs
695         %if 0%{?fedora} >= 11
696 Requires: glusterfs-client >= 2.0.1
697         %endif
698     %endif
699     %if %{with_qemu}
700 # From QEMU RPMs
701 Requires: /usr/bin/qemu-img
702 # For image compression
703 Requires: gzip
704 Requires: bzip2
705 Requires: lzop
706 Requires: xz
707     %else
708         %if %{with_xen}
709 # From Xen RPMs
710 Requires: /usr/sbin/qcow-create
711         %endif
712     %endif
713     %if %{with_storage_lvm}
714 # For LVM drivers
715 Requires: lvm2
716     %endif
717     %if %{with_storage_iscsi}
718 # For ISCSI driver
719 Requires: iscsi-initiator-utils
720     %endif
721     %if %{with_storage_disk}
722 # For disk driver
723 Requires: parted
724 Requires: device-mapper
725     %endif
726     %if %{with_storage_mpath}
727 # For multipath support
728 Requires: device-mapper
729     %endif
730     %if %{with_storage_sheepdog}
731 # For Sheepdog support
732 Requires: sheepdog
733     %endif
734     %if %{with_cgconfig}
735 Requires: libcgroup
736     %endif
737     %ifarch %{ix86} x86_64 ia64
738 # For virConnectGetSysinfo
739 Requires: dmidecode
740     %endif
741 # For service management
742     %if %{with_systemd}
743 Requires(post): systemd-units
744 Requires(post): systemd-sysv
745 Requires(preun): systemd-units
746 Requires(postun): systemd-units
747     %endif
748     %if %{with_numad}
749 Requires: numad
750     %endif
751 # libvirtd depends on 'messagebus' service
752 Requires: dbus
753
754 %description daemon
755 Server side daemon required to manage the virtualization capabilities
756 of recent versions of Linux. Requires a hypervisor specific sub-RPM
757 for specific drivers.
758
759     %if %{with_network}
760 %package daemon-config-network
761 Summary: Default configuration files for the libvirtd daemon
762 Group: Development/Libraries
763
764 Requires: libvirt-daemon = %{version}-%{release}
765
766 %description daemon-config-network
767 Default configuration files for setting up NAT based networking
768     %endif
769
770     %if %{with_nwfilter}
771 %package daemon-config-nwfilter
772 Summary: Network filter configuration files for the libvirtd daemon
773 Group: Development/Libraries
774
775 Requires: libvirt-daemon = %{version}-%{release}
776
777 %description daemon-config-nwfilter
778 Network filter configuration files for cleaning guest traffic
779     %endif
780
781     %if %{with_driver_modules}
782         %if %{with_network}
783 %package daemon-driver-network
784 Summary: Network driver plugin for the libvirtd daemon
785 Group: Development/Libraries
786 Requires: libvirt-daemon = %{version}-%{release}
787
788 %description daemon-driver-network
789 The network driver plugin for the libvirtd daemon, providing
790 an implementation of the virtual network APIs using the Linux
791 bridge capabilities.
792         %endif
793
794
795         %if %{with_nwfilter}
796 %package daemon-driver-nwfilter
797 Summary: Nwfilter driver plugin for the libvirtd daemon
798 Group: Development/Libraries
799 Requires: libvirt-daemon = %{version}-%{release}
800
801 %description daemon-driver-nwfilter
802 The nwfilter driver plugin for the libvirtd daemon, providing
803 an implementation of the firewall APIs using the ebtables,
804 iptables and ip6tables capabilities
805         %endif
806
807
808         %if %{with_nodedev}
809 %package daemon-driver-nodedev
810 Summary: Nodedev driver plugin for the libvirtd daemon
811 Group: Development/Libraries
812 Requires: libvirt-daemon = %{version}-%{release}
813
814 %description daemon-driver-nodedev
815 The nodedev driver plugin for the libvirtd daemon, providing
816 an implementation of the node device APIs using the udev
817 capabilities.
818         %endif
819
820
821         %if %{with_interface}
822 %package daemon-driver-interface
823 Summary: Interface driver plugin for the libvirtd daemon
824 Group: Development/Libraries
825 Requires: libvirt-daemon = %{version}-%{release}
826
827 %description daemon-driver-interface
828 The interface driver plugin for the libvirtd daemon, providing
829 an implementation of the network interface APIs using the
830 netcf library
831         %endif
832
833
834 %package daemon-driver-secret
835 Summary: Secret driver plugin for the libvirtd daemon
836 Group: Development/Libraries
837 Requires: libvirt-daemon = %{version}-%{release}
838
839 %description daemon-driver-secret
840 The secret driver plugin for the libvirtd daemon, providing
841 an implementation of the secret key APIs.
842
843
844         %if %{with_storage}
845 %package daemon-driver-storage
846 Summary: Storage driver plugin for the libvirtd daemon
847 Group: Development/Libraries
848 Requires: libvirt-daemon = %{version}-%{release}
849
850 %description daemon-driver-storage
851 The storage driver plugin for the libvirtd daemon, providing
852 an implementation of the storage APIs using LVM, iSCSI,
853 parted and more.
854         %endif
855
856
857         %if %{with_qemu}
858 %package daemon-driver-qemu
859 Summary: Qemu driver plugin for the libvirtd daemon
860 Group: Development/Libraries
861 Requires: libvirt-daemon = %{version}-%{release}
862 # There really is a hard cross-driver dependency here
863 Requires: libvirt-daemon-driver-network = %{version}-%{release}
864
865 %description daemon-driver-qemu
866 The qemu driver plugin for the libvirtd daemon, providing
867 an implementation of the hypervisor driver APIs using
868 QEMU
869         %endif
870
871
872         %if %{with_lxc}
873 %package daemon-driver-lxc
874 Summary: LXC driver plugin for the libvirtd daemon
875 Group: Development/Libraries
876 Requires: libvirt-daemon = %{version}-%{release}
877 # There really is a hard cross-driver dependency here
878 Requires: libvirt-daemon-driver-network = %{version}-%{release}
879
880 %description daemon-driver-lxc
881 The LXC driver plugin for the libvirtd daemon, providing
882 an implementation of the hypervisor driver APIs using
883 the Linux kernel
884         %endif
885
886
887         %if %{with_uml}
888 %package daemon-driver-uml
889 Summary: Uml driver plugin for the libvirtd daemon
890 Group: Development/Libraries
891 Requires: libvirt-daemon = %{version}-%{release}
892
893 %description daemon-driver-uml
894 The UML driver plugin for the libvirtd daemon, providing
895 an implementation of the hypervisor driver APIs using
896 User Mode Linux
897         %endif
898
899
900         %if %{with_xen}
901 %package daemon-driver-xen
902 Summary: Xen driver plugin for the libvirtd daemon
903 Group: Development/Libraries
904 Requires: libvirt-daemon = %{version}-%{release}
905
906 %description daemon-driver-xen
907 The Xen driver plugin for the libvirtd daemon, providing
908 an implementation of the hypervisor driver APIs using
909 Xen
910         %endif
911
912
913         %if %{with_libxl}
914 %package daemon-driver-libxl
915 Summary: Libxl driver plugin for the libvirtd daemon
916 Group: Development/Libraries
917 Requires: libvirt-daemon = %{version}-%{release}
918
919 %description daemon-driver-libxl
920 The Libxl driver plugin for the libvirtd daemon, providing
921 an implementation of the hypervisor driver APIs using
922 Libxl
923         %endif
924     %endif # %{with_driver_modules}
925
926
927
928     %if %{with_qemu_tcg}
929 %package daemon-qemu
930 Summary: Server side daemon & driver required to run QEMU guests
931 Group: Development/Libraries
932
933 Requires: libvirt-daemon = %{version}-%{release}
934         %if %{with_driver_modules}
935 Requires: libvirt-daemon-driver-qemu = %{version}-%{release}
936 Requires: libvirt-daemon-driver-interface = %{version}-%{release}
937 Requires: libvirt-daemon-driver-network = %{version}-%{release}
938 Requires: libvirt-daemon-driver-nodedev = %{version}-%{release}
939 Requires: libvirt-daemon-driver-nwfilter = %{version}-%{release}
940 Requires: libvirt-daemon-driver-secret = %{version}-%{release}
941 Requires: libvirt-daemon-driver-storage = %{version}-%{release}
942         %endif
943 Requires: qemu
944
945 %description daemon-qemu
946 Server side daemon and driver required to manage the virtualization
947 capabilities of the QEMU TCG emulators
948     %endif
949
950
951     %if %{with_qemu_kvm}
952 %package daemon-kvm
953 Summary: Server side daemon & driver required to run KVM guests
954 Group: Development/Libraries
955
956 Requires: libvirt-daemon = %{version}-%{release}
957         %if %{with_driver_modules}
958 Requires: libvirt-daemon-driver-qemu = %{version}-%{release}
959 Requires: libvirt-daemon-driver-interface = %{version}-%{release}
960 Requires: libvirt-daemon-driver-network = %{version}-%{release}
961 Requires: libvirt-daemon-driver-nodedev = %{version}-%{release}
962 Requires: libvirt-daemon-driver-nwfilter = %{version}-%{release}
963 Requires: libvirt-daemon-driver-secret = %{version}-%{release}
964 Requires: libvirt-daemon-driver-storage = %{version}-%{release}
965         %endif
966 Requires: qemu-kvm
967
968 %description daemon-kvm
969 Server side daemon and driver required to manage the virtualization
970 capabilities of the KVM hypervisor
971     %endif
972
973
974     %if %{with_lxc}
975 %package daemon-lxc
976 Summary: Server side daemon & driver required to run LXC guests
977 Group: Development/Libraries
978
979 Requires: libvirt-daemon = %{version}-%{release}
980         %if %{with_driver_modules}
981 Requires: libvirt-daemon-driver-lxc = %{version}-%{release}
982 Requires: libvirt-daemon-driver-interface = %{version}-%{release}
983 Requires: libvirt-daemon-driver-network = %{version}-%{release}
984 Requires: libvirt-daemon-driver-nodedev = %{version}-%{release}
985 Requires: libvirt-daemon-driver-nwfilter = %{version}-%{release}
986 Requires: libvirt-daemon-driver-secret = %{version}-%{release}
987 Requires: libvirt-daemon-driver-storage = %{version}-%{release}
988         %endif
989
990 %description daemon-lxc
991 Server side daemon and driver required to manage the virtualization
992 capabilities of LXC
993     %endif
994
995
996     %if %{with_uml}
997 %package daemon-uml
998 Summary: Server side daemon & driver required to run UML guests
999 Group: Development/Libraries
1000
1001 Requires: libvirt-daemon = %{version}-%{release}
1002         %if %{with_driver_modules}
1003 Requires: libvirt-daemon-driver-uml = %{version}-%{release}
1004 Requires: libvirt-daemon-driver-interface = %{version}-%{release}
1005 Requires: libvirt-daemon-driver-network = %{version}-%{release}
1006 Requires: libvirt-daemon-driver-nodedev = %{version}-%{release}
1007 Requires: libvirt-daemon-driver-nwfilter = %{version}-%{release}
1008 Requires: libvirt-daemon-driver-secret = %{version}-%{release}
1009 Requires: libvirt-daemon-driver-storage = %{version}-%{release}
1010         %endif
1011 # There are no UML kernel RPMs in Fedora/RHEL to depend on.
1012
1013 %description daemon-uml
1014 Server side daemon and driver required to manage the virtualization
1015 capabilities of UML
1016     %endif
1017
1018
1019     %if %{with_xen} || %{with_libxl}
1020 %package daemon-xen
1021 Summary: Server side daemon & driver required to run XEN guests
1022 Group: Development/Libraries
1023
1024 Requires: libvirt-daemon = %{version}-%{release}
1025         %if %{with_driver_modules}
1026             %if %{with_xen}
1027 Requires: libvirt-daemon-driver-xen = %{version}-%{release}
1028             %endif
1029             %if %{with_libxl}
1030 Requires: libvirt-daemon-driver-libxl = %{version}-%{release}
1031             %endif
1032 Requires: libvirt-daemon-driver-interface = %{version}-%{release}
1033 Requires: libvirt-daemon-driver-network = %{version}-%{release}
1034 Requires: libvirt-daemon-driver-nodedev = %{version}-%{release}
1035 Requires: libvirt-daemon-driver-nwfilter = %{version}-%{release}
1036 Requires: libvirt-daemon-driver-secret = %{version}-%{release}
1037 Requires: libvirt-daemon-driver-storage = %{version}-%{release}
1038         %endif
1039 Requires: xen
1040
1041 %description daemon-xen
1042 Server side daemon and driver required to manage the virtualization
1043 capabilities of XEN
1044     %endif
1045 %endif # %{with_libvirtd}
1046
1047 %package client
1048 Summary: Client side library and utilities of the libvirt library
1049 Group: Development/Libraries
1050 Requires: readline
1051 Requires: ncurses
1052 # So remote clients can access libvirt over SSH tunnel
1053 # (client invokes 'nc' against the UNIX socket on the server)
1054 Requires: nc
1055 # Needed by libvirt-guests init script.
1056 Requires: gettext
1057 # Needed by virt-pki-validate script.
1058 Requires: gnutls-utils
1059 # Needed for probing the power management features of the host.
1060 Requires: pm-utils
1061 %if %{with_sasl}
1062 Requires: cyrus-sasl
1063 # Not technically required, but makes 'out-of-box' config
1064 # work correctly & doesn't have onerous dependencies
1065 Requires: cyrus-sasl-md5
1066 %endif
1067
1068 %description client
1069 Shared libraries and client binaries needed to access to the
1070 virtualization capabilities of recent versions of Linux (and other OSes).
1071
1072 %package devel
1073 Summary: Libraries, includes, etc. to compile with the libvirt library
1074 Group: Development/Libraries
1075 Requires: %{name}-client = %{version}-%{release}
1076 Requires: %{name}-docs = %{version}-%{release}
1077 Requires: pkgconfig
1078
1079 %description devel
1080 Include header files & development libraries for the libvirt C library.
1081
1082 %if %{with_sanlock}
1083 %package lock-sanlock
1084 Summary: Sanlock lock manager plugin for QEMU driver
1085 Group: Development/Libraries
1086     %if 0%{?fedora} >= 17 || 0%{?rhel} >= 6
1087 Requires: sanlock >= 2.4
1088     %else
1089 Requires: sanlock >= 1.8
1090     %endif
1091 #for virt-sanlock-cleanup require augeas
1092 Requires: augeas
1093 Requires: %{name}-daemon = %{version}-%{release}
1094 Requires: %{name}-client = %{version}-%{release}
1095
1096 %description lock-sanlock
1097 Includes the Sanlock lock manager plugin for the QEMU
1098 driver
1099 %endif
1100
1101 %if %{with_python}
1102 %package python
1103 Summary: Python bindings for the libvirt library
1104 Group: Development/Libraries
1105 Requires: %{name}-client = %{version}-%{release}
1106
1107 %description python
1108 The libvirt-python package contains a module that permits applications
1109 written in the Python programming language to use the interface
1110 supplied by the libvirt library to use the virtualization capabilities
1111 of recent versions of Linux (and other OSes).
1112 %endif
1113
1114 %prep
1115 %setup -q
1116 %patch1 -p1
1117 %patch2 -p1
1118 %patch3 -p1
1119
1120 %build
1121 %if ! %{with_xen}
1122     %define _without_xen --without-xen
1123 %endif
1124
1125 %if ! %{with_qemu}
1126     %define _without_qemu --without-qemu
1127 %endif
1128
1129 %if ! %{with_openvz}
1130     %define _without_openvz --without-openvz
1131 %endif
1132
1133 %if ! %{with_lxc}
1134     %define _without_lxc --without-lxc
1135 %endif
1136
1137 %if ! %{with_vbox}
1138     %define _without_vbox --without-vbox
1139 %endif
1140
1141 %if ! %{with_xenapi}
1142     %define _without_xenapi --without-xenapi
1143 %endif
1144
1145 %if ! %{with_libxl}
1146     %define _without_libxl --without-libxl
1147 %endif
1148
1149 %if ! %{with_sasl}
1150     %define _without_sasl --without-sasl
1151 %endif
1152
1153 %if ! %{with_avahi}
1154     %define _without_avahi --without-avahi
1155 %endif
1156
1157 %if ! %{with_phyp}
1158     %define _without_phyp --without-phyp
1159 %endif
1160
1161 %if ! %{with_esx}
1162     %define _without_esx --without-esx
1163 %endif
1164
1165 %if ! %{with_hyperv}
1166     %define _without_hyperv --without-hyperv
1167 %endif
1168
1169 %if ! %{with_vmware}
1170     %define _without_vmware --without-vmware
1171 %endif
1172
1173 %if ! %{with_parallels}
1174     %define _without_parallels --without-parallels
1175 %endif
1176
1177 %if ! %{with_polkit}
1178     %define _without_polkit --without-polkit
1179 %endif
1180
1181 %if ! %{with_python}
1182     %define _without_python --without-python
1183 %endif
1184
1185 %if ! %{with_libvirtd}
1186     %define _without_libvirtd --without-libvirtd
1187 %endif
1188
1189 %if ! %{with_uml}
1190     %define _without_uml --without-uml
1191 %endif
1192
1193 %if %{with_rhel5}
1194     %define _with_rhel5_api --with-rhel5-api
1195 %endif
1196
1197 %if ! %{with_interface}
1198     %define _without_interface --without-interface
1199 %endif
1200
1201 %if ! %{with_network}
1202     %define _without_network --without-network
1203 %endif
1204
1205 %if ! %{with_storage_fs}
1206     %define _without_storage_fs --without-storage-fs
1207 %endif
1208
1209 %if ! %{with_storage_lvm}
1210     %define _without_storage_lvm --without-storage-lvm
1211 %endif
1212
1213 %if ! %{with_storage_iscsi}
1214     %define _without_storage_iscsi --without-storage-iscsi
1215 %endif
1216
1217 %if ! %{with_storage_disk}
1218     %define _without_storage_disk --without-storage-disk
1219 %endif
1220
1221 %if ! %{with_storage_mpath}
1222     %define _without_storage_mpath --without-storage-mpath
1223 %endif
1224
1225 %if ! %{with_storage_rbd}
1226     %define _without_storage_rbd --without-storage-rbd
1227 %endif
1228
1229 %if ! %{with_storage_sheepdog}
1230     %define _without_storage_sheepdog --without-storage-sheepdog
1231 %endif
1232
1233 %if ! %{with_numactl}
1234     %define _without_numactl --without-numactl
1235 %endif
1236
1237 %if ! %{with_numad}
1238     %define _without_numad --without-numad
1239 %endif
1240
1241 %if ! %{with_capng}
1242     %define _without_capng --without-capng
1243 %endif
1244
1245 %if ! %{with_fuse}
1246     %define _without_fuse --without-fuse
1247 %endif
1248
1249 %if ! %{with_netcf}
1250     %define _without_netcf --without-netcf
1251 %endif
1252
1253 %if ! %{with_selinux}
1254     %define _without_selinux --without-selinux
1255 %endif
1256
1257 %if ! %{with_hal}
1258     %define _without_hal --without-hal
1259 %endif
1260
1261 %if ! %{with_udev}
1262     %define _without_udev --without-udev
1263 %endif
1264
1265 %if ! %{with_yajl}
1266     %define _without_yajl --without-yajl
1267 %endif
1268
1269 %if ! %{with_sanlock}
1270     %define _without_sanlock --without-sanlock
1271 %endif
1272
1273 %if ! %{with_libpcap}
1274     %define _without_libpcap --without-libpcap
1275 %endif
1276
1277 %if ! %{with_macvtap}
1278     %define _without_macvtap --without-macvtap
1279 %endif
1280
1281 %if ! %{with_audit}
1282     %define _without_audit --without-audit
1283 %endif
1284
1285 %if ! %{with_dtrace}
1286     %define _without_dtrace --without-dtrace
1287 %endif
1288
1289 %if ! %{with_driver_modules}
1290     %define _without_driver_modules --without-driver-modules
1291 %endif
1292
1293 %if %{with_firewalld}
1294     %define _with_firewalld --with-firewalld
1295 %endif
1296
1297 %define when  %(date +"%%F-%%T")
1298 %define where %(hostname)
1299 %define who   %{?packager}%{!?packager:Unknown}
1300 %define with_packager --with-packager="%{who}, %{when}, %{where}"
1301 %define with_packager_version --with-packager-version="%{release}"
1302
1303 %if %{with_systemd}
1304     %define init_scripts --with-init_script=systemd
1305 %else
1306     %define init_scripts --with-init_script=redhat
1307 %endif
1308
1309 %if 0%{?enable_autotools}
1310  autoreconf -if
1311 %endif
1312
1313 %if %{with_selinux}
1314     %if 0%{?fedora} >= 17 || 0%{?rhel} >= 7
1315         %define with_selinux_mount --with-selinux-mount="/sys/fs/selinux"
1316     %else
1317         %define with_selinux_mount --with-selinux-mount="/selinux"
1318     %endif
1319 %endif
1320
1321 %configure %{?_without_xen} \
1322            %{?_without_qemu} \
1323            %{?_without_openvz} \
1324            %{?_without_lxc} \
1325            %{?_without_vbox} \
1326            %{?_without_libxl} \
1327            %{?_without_xenapi} \
1328            %{?_without_sasl} \
1329            %{?_without_avahi} \
1330            %{?_without_polkit} \
1331            %{?_without_python} \
1332            %{?_without_libvirtd} \
1333            %{?_without_uml} \
1334            %{?_without_phyp} \
1335            %{?_without_esx} \
1336            %{?_without_hyperv} \
1337            %{?_without_vmware} \
1338            %{?_without_parallels} \
1339            %{?_without_interface} \
1340            %{?_without_network} \
1341            %{?_with_rhel5_api} \
1342            %{?_without_storage_fs} \
1343            %{?_without_storage_lvm} \
1344            %{?_without_storage_iscsi} \
1345            %{?_without_storage_disk} \
1346            %{?_without_storage_mpath} \
1347            %{?_without_storage_rbd} \
1348            %{?_without_storage_sheepdog} \
1349            %{?_without_numactl} \
1350            %{?_without_numad} \
1351            %{?_without_capng} \
1352            %{?_without_fuse} \
1353            %{?_without_netcf} \
1354            %{?_without_selinux} \
1355            %{?_with_selinux_mount} \
1356            %{?_without_hal} \
1357            %{?_without_udev} \
1358            %{?_without_yajl} \
1359            %{?_without_sanlock} \
1360            %{?_without_libpcap} \
1361            %{?_without_macvtap} \
1362            %{?_without_audit} \
1363            %{?_without_dtrace} \
1364            %{?_without_driver_modules} \
1365            %{?_with_firewalld} \
1366            %{with_packager} \
1367            %{with_packager_version} \
1368            --with-qemu-user=%{qemu_user} \
1369            --with-qemu-group=%{qemu_group} \
1370            %{init_scripts}
1371 make %{?_smp_mflags}
1372 gzip -9 ChangeLog
1373
1374 %install
1375 rm -fr %{buildroot}
1376
1377 %makeinstall SYSTEMD_UNIT_DIR=%{buildroot}%{_unitdir}
1378 for i in domain-events/events-c dominfo domsuspend hellolibvirt openauth python xml/nwfilter systemtap
1379 do
1380   (cd examples/$i ; make clean ; rm -rf .deps .libs Makefile Makefile.in)
1381 done
1382 rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
1383 rm -f $RPM_BUILD_ROOT%{_libdir}/*.a
1384 rm -f $RPM_BUILD_ROOT%{_libdir}/python*/site-packages/*.la
1385 rm -f $RPM_BUILD_ROOT%{_libdir}/python*/site-packages/*.a
1386 rm -f $RPM_BUILD_ROOT%{_libdir}/libvirt/lock-driver/*.la
1387 rm -f $RPM_BUILD_ROOT%{_libdir}/libvirt/lock-driver/*.a
1388 %if %{with_driver_modules}
1389 rm -f $RPM_BUILD_ROOT%{_libdir}/libvirt/connection-driver/*.la
1390 rm -f $RPM_BUILD_ROOT%{_libdir}/libvirt/connection-driver/*.a
1391 %endif
1392
1393 %if %{with_network}
1394 install -d -m 0755 $RPM_BUILD_ROOT%{_datadir}/lib/libvirt/dnsmasq/
1395 # We don't want to install /etc/libvirt/qemu/networks in the main %files list
1396 # because if the admin wants to delete the default network completely, we don't
1397 # want to end up re-incarnating it on every RPM upgrade.
1398 install -d -m 0755 $RPM_BUILD_ROOT%{_datadir}/libvirt/networks/
1399 cp $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/qemu/networks/default.xml \
1400    $RPM_BUILD_ROOT%{_datadir}/libvirt/networks/default.xml
1401 rm -f $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/qemu/networks/default.xml
1402 rm -f $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/qemu/networks/autostart/default.xml
1403 # Strip auto-generated UUID - we need it generated per-install
1404 sed -i -e "/<uuid>/d" $RPM_BUILD_ROOT%{_datadir}/libvirt/networks/default.xml
1405 %else
1406 rm -f $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/qemu/networks/default.xml
1407 rm -f $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/qemu/networks/autostart/default.xml
1408 %endif
1409 %if ! %{with_qemu}
1410 rm -f $RPM_BUILD_ROOT%{_datadir}/augeas/lenses/libvirtd_qemu.aug
1411 rm -f $RPM_BUILD_ROOT%{_datadir}/augeas/lenses/tests/test_libvirtd_qemu.aug
1412 %endif
1413 %find_lang %{name}
1414
1415 %if ! %{with_sanlock}
1416 rm -f $RPM_BUILD_ROOT%{_datadir}/augeas/lenses/libvirt_sanlock.aug
1417 rm -f $RPM_BUILD_ROOT%{_datadir}/augeas/lenses/tests/test_libvirt_sanlock.aug
1418 %endif
1419
1420 %if ! %{with_lxc}
1421 rm -f $RPM_BUILD_ROOT%{_datadir}/augeas/lenses/libvirtd_lxc.aug
1422 rm -f $RPM_BUILD_ROOT%{_datadir}/augeas/lenses/tests/test_libvirtd_lxc.aug
1423 %endif
1424
1425 %if ! %{with_python}
1426 rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/libvirt-python-%{version}
1427 %else
1428 rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/libvirt-python-%{version}/examples
1429 %endif
1430
1431 %if ! %{with_qemu}
1432 rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/qemu.conf
1433 rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/libvirtd.qemu
1434 %endif
1435 %if ! %{with_lxc}
1436 rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/libvirt/lxc.conf
1437 rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/libvirtd.lxc
1438 %endif
1439 %if ! %{with_uml}
1440 rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/libvirtd.uml
1441 %endif
1442
1443 mv $RPM_BUILD_ROOT%{_datadir}/doc/libvirt-%{version} \
1444    $RPM_BUILD_ROOT%{_datadir}/doc/libvirt-docs-%{version}
1445
1446 %if %{with_dtrace}
1447     %ifarch %{power64} s390x x86_64 ia64 alpha sparc64
1448 mv $RPM_BUILD_ROOT%{_datadir}/systemtap/tapset/libvirt_probes.stp \
1449    $RPM_BUILD_ROOT%{_datadir}/systemtap/tapset/libvirt_probes-64.stp
1450 mv $RPM_BUILD_ROOT%{_datadir}/systemtap/tapset/libvirt_qemu_probes.stp \
1451    $RPM_BUILD_ROOT%{_datadir}/systemtap/tapset/libvirt_qemu_probes-64.stp
1452     %endif
1453 %endif
1454
1455 %if 0%{?fedora} < 14 && 0%{?rhel} < 6
1456 rm -f $RPM_BUILD_ROOT%{_prefix}/lib/sysctl.d/libvirtd.conf
1457 %endif
1458
1459 %clean
1460 rm -fr %{buildroot}
1461
1462 %check
1463 cd tests
1464 make
1465 # These tests don't current work in a mock build root
1466 for i in nodeinfotest seclabeltest
1467 do
1468   rm -f $i
1469   printf 'int main(void) { return 0; }' > $i.c
1470   printf '#!/bin/sh\nexit 0\n' > $i
1471   chmod +x $i
1472 done
1473 make check
1474
1475 %if %{with_libvirtd}
1476 %pre daemon
1477     %if 0%{?fedora} >= 12 || 0%{?rhel} >= 6
1478 # Normally 'setup' adds this in /etc/passwd, but this is
1479 # here for case of upgrades from earlier Fedora/RHEL. This
1480 # UID/GID pair is reserved for qemu:qemu
1481 getent group kvm >/dev/null || groupadd -g 36 -r kvm
1482 getent group qemu >/dev/null || groupadd -g 107 -r qemu
1483 getent passwd qemu >/dev/null || \
1484   useradd -r -u 107 -g qemu -G kvm -d / -s /sbin/nologin \
1485     -c "qemu user" qemu
1486     %endif
1487
1488 %post daemon
1489
1490     %if %{with_network}
1491 # All newly defined networks will have a mac address for the bridge
1492 # auto-generated, but networks already existing at the time of upgrade
1493 # will not. We need to go through all the network configs, look for
1494 # those that don't have a mac address, and add one.
1495
1496 network_files=$( (cd %{_localstatedir}/lib/libvirt/network && \
1497                   grep -L "mac address" *.xml; \
1498                   cd %{_sysconfdir}/libvirt/qemu/networks && \
1499                   grep -L "mac address" *.xml) 2>/dev/null \
1500                 | sort -u)
1501
1502 for file in $network_files
1503 do
1504    # each file exists in either the config or state directory (or both) and
1505    # does not have a mac address specified in either. We add the same mac
1506    # address to both files (or just one, if the other isn't there)
1507
1508    mac4=`printf '%X' $(($RANDOM % 256))`
1509    mac5=`printf '%X' $(($RANDOM % 256))`
1510    mac6=`printf '%X' $(($RANDOM % 256))`
1511    for dir in %{_localstatedir}/lib/libvirt/network \
1512               %{_sysconfdir}/libvirt/qemu/networks
1513    do
1514       if test -f $dir/$file
1515       then
1516          sed -i.orig -e \
1517            "s|\(<bridge.*$\)|\0\n  <mac address='52:54:00:$mac4:$mac5:$mac6'/>|" \
1518            $dir/$file
1519          if test $? != 0
1520          then
1521              echo "failed to add <mac address='52:54:00:$mac4:$mac5:$mac6'/>" \
1522                   "to $dir/$file"
1523              mv -f $dir/$file.orig $dir/$file
1524          else
1525              rm -f $dir/$file.orig
1526          fi
1527       fi
1528    done
1529 done
1530     %endif
1531
1532     %if %{with_systemd}
1533         %if %{with_systemd_macros}
1534             %systemd_post libvirtd.service
1535         %else
1536 if [ $1 -eq 1 ] ; then
1537     # Initial installation
1538     /bin/systemctl enable virtlockd.socket >/dev/null 2>&1 || :
1539     /bin/systemctl enable libvirtd.service >/dev/null 2>&1 || :
1540 fi
1541         %endif
1542     %else
1543         %if %{with_cgconfig}
1544 # Starting with Fedora 16/RHEL-7, systemd automounts all cgroups,
1545 # and cgconfig is no longer a necessary service.
1546             %if (0%{?rhel} && 0%{?rhel} < 7) || (0%{?fedora} && 0%{?fedora} < 16)
1547 if [ "$1" -eq "1" ]; then
1548 /sbin/chkconfig cgconfig on
1549 fi
1550             %endif
1551         %endif
1552
1553 /sbin/chkconfig --add libvirtd
1554 if [ "$1" -ge "1" ]; then
1555     /sbin/service libvirtd condrestart > /dev/null 2>&1
1556 fi
1557     %endif
1558
1559 %preun daemon
1560     %if %{with_systemd}
1561         %if %{with_systemd_macros}
1562             %systemd_preun libvirtd.service
1563         %else
1564 if [ $1 -eq 0 ] ; then
1565     # Package removal, not upgrade
1566     /bin/systemctl --no-reload disable virtlockd.socket > /dev/null 2>&1 || :
1567     /bin/systemctl --no-reload disable libvirtd.service > /dev/null 2>&1 || :
1568     /bin/systemctl stop libvirtd.service > /dev/null 2>&1 || :
1569     /bin/systemctl stop virtlockd.service > /dev/null 2>&1 || :
1570 fi
1571         %endif
1572     %else
1573 if [ $1 = 0 ]; then
1574     /sbin/service libvirtd stop 1>/dev/null 2>&1
1575     /sbin/chkconfig --del libvirtd
1576 fi
1577     %endif
1578
1579 %postun daemon
1580     %if %{with_systemd}
1581         %if %{with_systemd_macros}
1582             %systemd_postun_with_restart libvirtd.service
1583         %else
1584 /bin/systemctl daemon-reload >/dev/null 2>&1 || :
1585 if [ $1 -ge 1 ] ; then
1586     # Package upgrade, not uninstall
1587     /bin/systemctl status virtlockd.service >/dev/null 2>&1
1588     if [ $? = 1 ] ; then
1589         /bin/systemctl kill --signal=USR1 virtlockd.service >/dev/null 2>&1 || :
1590     fi
1591     /bin/systemctl try-restart libvirtd.service >/dev/null 2>&1 || :
1592 fi
1593         %endif
1594     %endif
1595
1596     %if %{with_network}
1597 %post daemon-config-network
1598 if test $1 -eq 1 && test ! -f %{_sysconfdir}/libvirt/qemu/networks/default.xml ; then
1599     UUID=`/usr/bin/uuidgen`
1600     sed -e "s,</name>,</name>\n  <uuid>$UUID</uuid>," \
1601          < %{_datadir}/libvirt/networks/default.xml \
1602          > %{_sysconfdir}/libvirt/qemu/networks/default.xml
1603     ln -s ../default.xml %{_sysconfdir}/libvirt/qemu/networks/autostart/default.xml
1604 fi
1605     %endif
1606
1607     %if %{with_systemd}
1608 %triggerun -- libvirt < 0.9.4
1609 %{_bindir}/systemd-sysv-convert --save libvirtd >/dev/null 2>&1 ||:
1610
1611 # If the package is allowed to autostart:
1612 /bin/systemctl --no-reload enable libvirtd.service >/dev/null 2>&1 ||:
1613
1614 # Run these because the SysV package being removed won't do them
1615 /sbin/chkconfig --del libvirtd >/dev/null 2>&1 || :
1616 /bin/systemctl try-restart libvirtd.service >/dev/null 2>&1 || :
1617     %endif
1618 %endif # %{with_libvirtd}
1619
1620 %preun client
1621
1622 %if %{with_systemd}
1623     %if %{with_systemd_macros}
1624         %systemd_preun libvirt-guests.service
1625     %endif
1626 %else
1627 if [ $1 = 0 ]; then
1628     /sbin/chkconfig --del libvirt-guests
1629     rm -f /var/lib/libvirt/libvirt-guests
1630 fi
1631 %endif
1632
1633 %post client
1634
1635 /sbin/ldconfig
1636 %if %{with_systemd}
1637     %if %{with_systemd_macros}
1638         %systemd_post libvirt-guests.service
1639     %endif
1640 %else
1641 /sbin/chkconfig --add libvirt-guests
1642 %endif
1643
1644 %postun client
1645
1646 /sbin/ldconfig
1647 %if %{with_systemd}
1648     %if %{with_systemd_macros}
1649         %systemd_postun_with_restart libvirt-guests.service
1650     %endif
1651 %triggerun client -- libvirt < 0.9.4
1652 %{_bindir}/systemd-sysv-convert --save libvirt-guests >/dev/null 2>&1 ||:
1653
1654 # If the package is allowed to autostart:
1655 /bin/systemctl --no-reload enable libvirt-guests.service >/dev/null 2>&1 ||:
1656
1657 # Run these because the SysV package being removed won't do them
1658 /sbin/chkconfig --del libvirt-guests >/dev/null 2>&1 || :
1659 /bin/systemctl try-restart libvirt-guests.service >/dev/null 2>&1 || :
1660 %endif
1661
1662 %if %{with_sanlock}
1663 %post lock-sanlock
1664 if getent group sanlock > /dev/null ; then
1665     chmod 0770 %{_localstatedir}/lib/libvirt/sanlock
1666     chown root:sanlock %{_localstatedir}/lib/libvirt/sanlock
1667 fi
1668 %endif
1669
1670 %files
1671 %defattr(-, root, root)
1672
1673 %files docs
1674 %defattr(-, root, root)
1675 # Website
1676 %dir %{_datadir}/doc/libvirt-docs-%{version}
1677 %dir %{_datadir}/doc/libvirt-docs-%{version}/html
1678 %{_datadir}/doc/libvirt-docs-%{version}/html/*
1679
1680 # API docs
1681 %dir %{_datadir}/gtk-doc/html/libvirt/
1682 %doc %{_datadir}/gtk-doc/html/libvirt/*.devhelp
1683 %doc %{_datadir}/gtk-doc/html/libvirt/*.html
1684 %doc %{_datadir}/gtk-doc/html/libvirt/*.png
1685 %doc %{_datadir}/gtk-doc/html/libvirt/*.css
1686
1687 %if %{with_libvirtd}
1688 %files daemon
1689 %defattr(-, root, root)
1690
1691 %doc AUTHORS ChangeLog.gz NEWS README COPYING.LIB TODO
1692 %dir %attr(0700, root, root) %{_sysconfdir}/libvirt/
1693
1694     %if %{with_network}
1695 %dir %attr(0700, root, root) %{_sysconfdir}/libvirt/qemu/
1696 %dir %attr(0700, root, root) %{_sysconfdir}/libvirt/qemu/networks/
1697 %dir %attr(0700, root, root) %{_sysconfdir}/libvirt/qemu/networks/autostart
1698     %endif
1699
1700 %dir %attr(0700, root, root) %{_sysconfdir}/libvirt/nwfilter/
1701
1702     %if %{with_systemd}
1703 %{_unitdir}/libvirtd.service
1704 %{_unitdir}/virtlockd.service
1705 %{_unitdir}/virtlockd.socket
1706     %else
1707 %{_sysconfdir}/rc.d/init.d/libvirtd
1708 %{_sysconfdir}/rc.d/init.d/virtlockd
1709     %endif
1710 %doc daemon/libvirtd.upstart
1711 %config(noreplace) %{_sysconfdir}/sysconfig/libvirtd
1712 %config(noreplace) %{_sysconfdir}/sysconfig/virtlockd
1713 %config(noreplace) %{_sysconfdir}/libvirt/libvirtd.conf
1714     %if 0%{?fedora} >= 14 || 0%{?rhel} >= 6
1715 %config(noreplace) %{_prefix}/lib/sysctl.d/libvirtd.conf
1716     %endif
1717 %dir %attr(0700, root, root) %{_localstatedir}/log/libvirt/qemu/
1718 %dir %attr(0700, root, root) %{_localstatedir}/log/libvirt/lxc/
1719 %dir %attr(0700, root, root) %{_localstatedir}/log/libvirt/uml/
1720     %if %{with_libxl}
1721 %dir %attr(0700, root, root) %{_localstatedir}/log/libvirt/libxl/
1722     %endif
1723
1724 %config(noreplace) %{_sysconfdir}/logrotate.d/libvirtd
1725     %if %{with_qemu}
1726 %config(noreplace) %{_sysconfdir}/libvirt/qemu.conf
1727 %config(noreplace) %{_sysconfdir}/libvirt/qemu-lockd.conf
1728 %config(noreplace) %{_sysconfdir}/logrotate.d/libvirtd.qemu
1729     %endif
1730     %if %{with_lxc}
1731 %config(noreplace) %{_sysconfdir}/libvirt/lxc.conf
1732 %config(noreplace) %{_sysconfdir}/logrotate.d/libvirtd.lxc
1733     %endif
1734     %if %{with_uml}
1735 %config(noreplace) %{_sysconfdir}/logrotate.d/libvirtd.uml
1736     %endif
1737
1738 %dir %{_datadir}/libvirt/
1739
1740     %if %{with_network}
1741 %dir %{_datadir}/libvirt/networks/
1742 %{_datadir}/libvirt/networks/default.xml
1743     %endif
1744
1745 %ghost %dir %{_localstatedir}/run/libvirt/
1746
1747 %dir %attr(0711, root, root) %{_localstatedir}/lib/libvirt/images/
1748 %dir %attr(0711, root, root) %{_localstatedir}/lib/libvirt/filesystems/
1749 %dir %attr(0711, root, root) %{_localstatedir}/lib/libvirt/boot/
1750 %dir %attr(0711, root, root) %{_localstatedir}/cache/libvirt/
1751
1752     %if %{with_qemu}
1753 %ghost %dir %attr(0700, root, root) %{_localstatedir}/run/libvirt/qemu/
1754 %dir %attr(0750, %{qemu_user}, %{qemu_group}) %{_localstatedir}/lib/libvirt/qemu/
1755 %dir %attr(0750, %{qemu_user}, %{qemu_group}) %{_localstatedir}/cache/libvirt/qemu/
1756     %endif
1757     %if %{with_lxc}
1758 %ghost %dir %{_localstatedir}/run/libvirt/lxc/
1759 %dir %attr(0700, root, root) %{_localstatedir}/lib/libvirt/lxc/
1760     %endif
1761     %if %{with_uml}
1762 %ghost %dir %{_localstatedir}/run/libvirt/uml/
1763 %dir %attr(0700, root, root) %{_localstatedir}/lib/libvirt/uml/
1764     %endif
1765     %if %{with_libxl}
1766 %ghost %dir %{_localstatedir}/run/libvirt/libxl/
1767 %dir %attr(0700, root, root) %{_localstatedir}/lib/libvirt/libxl/
1768     %endif
1769     %if %{with_xen}
1770 %dir %attr(0700, root, root) %{_localstatedir}/lib/libvirt/xen/
1771     %endif
1772     %if %{with_network}
1773 %ghost %dir %{_localstatedir}/run/libvirt/network/
1774 %dir %attr(0700, root, root) %{_localstatedir}/lib/libvirt/network/
1775 %dir %attr(0755, root, root) %{_localstatedir}/lib/libvirt/dnsmasq/
1776     %endif
1777
1778 %dir %attr(0755, root, root) %{_libdir}/libvirt/lock-driver
1779 %attr(0755, root, root) %{_libdir}/libvirt/lock-driver/lockd.so
1780
1781     %if %{with_qemu}
1782 %{_datadir}/augeas/lenses/libvirtd_qemu.aug
1783 %{_datadir}/augeas/lenses/tests/test_libvirtd_qemu.aug
1784     %endif
1785
1786     %if %{with_lxc}
1787 %{_datadir}/augeas/lenses/libvirtd_lxc.aug
1788 %{_datadir}/augeas/lenses/tests/test_libvirtd_lxc.aug
1789     %endif
1790
1791 %{_datadir}/augeas/lenses/libvirtd.aug
1792 %{_datadir}/augeas/lenses/tests/test_libvirtd.aug
1793 %{_datadir}/augeas/lenses/libvirt_lockd.aug
1794 %{_datadir}/augeas/lenses/tests/test_libvirt_lockd.aug
1795
1796     %if %{with_polkit}
1797         %if 0%{?fedora} >= 12 || 0%{?rhel} >= 6
1798 %{_datadir}/polkit-1/actions/org.libvirt.unix.policy
1799         %else
1800 %{_datadir}/PolicyKit/policy/org.libvirt.unix.policy
1801         %endif
1802     %endif
1803
1804 %dir %attr(0700, root, root) %{_localstatedir}/log/libvirt/
1805
1806     %if %{with_lxc}
1807 %attr(0755, root, root) %{_libexecdir}/libvirt_lxc
1808     %endif
1809
1810     %if %{with_storage_disk}
1811 %attr(0755, root, root) %{_libexecdir}/libvirt_parthelper
1812     %endif
1813
1814 %attr(0755, root, root) %{_libexecdir}/libvirt_iohelper
1815 %attr(0755, root, root) %{_sbindir}/libvirtd
1816 %attr(0755, root, root) %{_sbindir}/virtlockd
1817
1818 %{_mandir}/man8/libvirtd.8*
1819
1820     %if %{with_driver_modules}
1821         %if %{with_network}
1822 %files daemon-config-network
1823 %defattr(-, root, root)
1824         %endif
1825
1826         %if %{with_nwfilter}
1827 %files daemon-config-nwfilter
1828 %defattr(-, root, root)
1829 %{_sysconfdir}/libvirt/nwfilter/*.xml
1830         %endif
1831
1832         %if %{with_interface}
1833 %files daemon-driver-interface
1834 %defattr(-, root, root)
1835 %{_libdir}/%{name}/connection-driver/libvirt_driver_interface.so
1836         %endif
1837
1838         %if %{with_network}
1839 %files daemon-driver-network
1840 %defattr(-, root, root)
1841 %{_libdir}/%{name}/connection-driver/libvirt_driver_network.so
1842         %endif
1843
1844         %if %{with_nodedev}
1845 %files daemon-driver-nodedev
1846 %defattr(-, root, root)
1847 %{_libdir}/%{name}/connection-driver/libvirt_driver_nodedev.so
1848         %endif
1849
1850         %if %{with_nwfilter}
1851 %files daemon-driver-nwfilter
1852 %defattr(-, root, root)
1853 %{_libdir}/%{name}/connection-driver/libvirt_driver_nwfilter.so
1854         %endif
1855
1856 %files daemon-driver-secret
1857 %defattr(-, root, root)
1858 %{_libdir}/%{name}/connection-driver/libvirt_driver_secret.so
1859
1860         %if %{with_storage}
1861 %files daemon-driver-storage
1862 %defattr(-, root, root)
1863 %{_libdir}/%{name}/connection-driver/libvirt_driver_storage.so
1864         %endif
1865
1866         %if %{with_qemu}
1867 %files daemon-driver-qemu
1868 %defattr(-, root, root)
1869 %{_libdir}/%{name}/connection-driver/libvirt_driver_qemu.so
1870         %endif
1871
1872         %if %{with_lxc}
1873 %files daemon-driver-lxc
1874 %defattr(-, root, root)
1875 %{_libdir}/%{name}/connection-driver/libvirt_driver_lxc.so
1876         %endif
1877
1878         %if %{with_uml}
1879 %files daemon-driver-uml
1880 %defattr(-, root, root)
1881 %{_libdir}/%{name}/connection-driver/libvirt_driver_uml.so
1882         %endif
1883
1884         %if %{with_xen}
1885 %files daemon-driver-xen
1886 %defattr(-, root, root)
1887 %{_libdir}/%{name}/connection-driver/libvirt_driver_xen.so
1888         %endif
1889
1890         %if %{with_libxl}
1891 %files daemon-driver-libxl
1892 %defattr(-, root, root)
1893 %{_libdir}/%{name}/connection-driver/libvirt_driver_libxl.so
1894         %endif
1895     %endif # %{with_driver_modules}
1896
1897     %if %{with_qemu_tcg}
1898 %files daemon-qemu
1899 %defattr(-, root, root)
1900     %endif
1901
1902     %if %{with_qemu_kvm}
1903 %files daemon-kvm
1904 %defattr(-, root, root)
1905     %endif
1906
1907     %if %{with_lxc}
1908 %files daemon-lxc
1909 %defattr(-, root, root)
1910     %endif
1911
1912     %if %{with_uml}
1913 %files daemon-uml
1914 %defattr(-, root, root)
1915     %endif
1916
1917     %if %{with_xen} || %{with_libxl}
1918 %files daemon-xen
1919 %defattr(-, root, root)
1920     %endif
1921 %endif # %{with_libvirtd}
1922
1923 %if %{with_sanlock}
1924 %files lock-sanlock
1925 %defattr(-, root, root)
1926     %if %{with_qemu}
1927 %config(noreplace) %{_sysconfdir}/libvirt/qemu-sanlock.conf
1928     %endif
1929 %attr(0755, root, root) %{_libdir}/libvirt/lock-driver/sanlock.so
1930 %{_datadir}/augeas/lenses/libvirt_sanlock.aug
1931 %{_datadir}/augeas/lenses/tests/test_libvirt_sanlock.aug
1932 %dir %attr(0700, root, root) %{_localstatedir}/lib/libvirt/sanlock
1933 %{_sbindir}/virt-sanlock-cleanup
1934 %{_mandir}/man8/virt-sanlock-cleanup.8*
1935 %attr(0755, root, root) %{_libexecdir}/libvirt_sanlock_helper
1936 %endif
1937
1938 %files client -f %{name}.lang
1939 %defattr(-, root, root)
1940 %doc AUTHORS ChangeLog.gz NEWS README COPYING.LIB TODO
1941
1942 %config(noreplace) %{_sysconfdir}/libvirt/libvirt.conf
1943 %{_mandir}/man1/virsh.1*
1944 %{_mandir}/man1/virt-xml-validate.1*
1945 %{_mandir}/man1/virt-pki-validate.1*
1946 %{_mandir}/man1/virt-host-validate.1*
1947 %{_bindir}/virsh
1948 %{_bindir}/virt-xml-validate
1949 %{_bindir}/virt-pki-validate
1950 %{_bindir}/virt-host-validate
1951 %{_libdir}/lib*.so.*
1952
1953 %if %{with_dtrace}
1954 %{_datadir}/systemtap/tapset/libvirt_probes*.stp
1955 %{_datadir}/systemtap/tapset/libvirt_qemu_probes*.stp
1956 %{_datadir}/systemtap/tapset/libvirt_functions.stp
1957 %endif
1958
1959 %dir %{_datadir}/libvirt/
1960 %dir %{_datadir}/libvirt/schemas/
1961
1962 %{_datadir}/libvirt/schemas/basictypes.rng
1963 %{_datadir}/libvirt/schemas/capability.rng
1964 %{_datadir}/libvirt/schemas/domain.rng
1965 %{_datadir}/libvirt/schemas/domaincommon.rng
1966 %{_datadir}/libvirt/schemas/domainsnapshot.rng
1967 %{_datadir}/libvirt/schemas/interface.rng
1968 %{_datadir}/libvirt/schemas/network.rng
1969 %{_datadir}/libvirt/schemas/networkcommon.rng
1970 %{_datadir}/libvirt/schemas/nodedev.rng
1971 %{_datadir}/libvirt/schemas/nwfilter.rng
1972 %{_datadir}/libvirt/schemas/secret.rng
1973 %{_datadir}/libvirt/schemas/storageencryption.rng
1974 %{_datadir}/libvirt/schemas/storagepool.rng
1975 %{_datadir}/libvirt/schemas/storagevol.rng
1976
1977 %{_datadir}/libvirt/cpu_map.xml
1978
1979 %if %{with_systemd}
1980 %{_unitdir}/libvirt-guests.service
1981 %else
1982 %{_sysconfdir}/rc.d/init.d/libvirt-guests
1983 %endif
1984 %config(noreplace) %{_sysconfdir}/sysconfig/libvirt-guests
1985 %attr(0755, root, root) %{_libexecdir}/libvirt-guests.sh
1986 %dir %attr(0755, root, root) %{_localstatedir}/lib/libvirt/
1987
1988 %if %{with_sasl}
1989 %config(noreplace) %{_sysconfdir}/sasl2/libvirt.conf
1990 %endif
1991
1992 %files devel
1993 %defattr(-, root, root)
1994
1995 %{_libdir}/lib*.so
1996 %dir %{_includedir}/libvirt
1997 %{_includedir}/libvirt/*.h
1998 %{_libdir}/pkgconfig/libvirt.pc
1999
2000 %dir %{_datadir}/libvirt/api/
2001 %{_datadir}/libvirt/api/libvirt-api.xml
2002 %{_datadir}/libvirt/api/libvirt-qemu-api.xml
2003 %{_datadir}/libvirt/api/libvirt-lxc-api.xml
2004
2005 %doc docs/*.html docs/html docs/*.gif
2006 %doc docs/libvirt-api.xml
2007 %doc examples/hellolibvirt
2008 %doc examples/domain-events/events-c
2009 %doc examples/dominfo
2010 %doc examples/domsuspend
2011 %doc examples/openauth
2012 %doc examples/xml
2013 %doc examples/systemtap
2014
2015 %if %{with_python}
2016 %files python
2017 %defattr(-, root, root)
2018
2019 %doc AUTHORS NEWS README COPYING.LIB
2020 %{_libdir}/python*/site-packages/libvirt.py*
2021 %{_libdir}/python*/site-packages/libvirt_qemu.py*
2022 %{_libdir}/python*/site-packages/libvirt_lxc.py*
2023 %{_libdir}/python*/site-packages/libvirtmod*
2024 %doc python/tests/*.py
2025 %doc python/TODO
2026 %doc examples/python
2027 %doc examples/domain-events/events-python
2028 %endif
2029
2030 %changelog
2031 * Wed Jan 30 2013 Daniel Veillard <veillard@redhat.com> - 1.0.2-1
2032 - LXC improvements
2033 - S390 architecture improvement
2034 - Power architecture improvement
2035 - large Coverity report cleanups and associated bug fixes
2036 - virTypedParams* APIs to helps with those data structures
2037 - a lot of bug fixes and overall improvements
2038
2039 * Fri Nov  2 2012 Daniel Veillard <veillard@redhat.com> - 1.0.0-1
2040 - virNodeGetCPUMap: Define public API
2041 - Add systemd journal support
2042 - Add a qemu capabilities cache manager
2043 - USB migration support
2044 - various improvement and fixes when using QMP QEmu interface
2045 - Support for Xen 4.2
2046 - Lot of localization enhancements
2047 - a lot of bug fixes, improvements and portability work
2048
2049 * Mon Sep 24 2012 Daniel Veillard <veillard@redhat.com> - 0.10.2-1
2050 - network: define new API virNetworkUpdate
2051 - add support for QEmu sandbox support
2052 - blockjob: add virDomainBlockCommit
2053 - New APIs to get/set Node memory parameters
2054 - new API virConnectListAllSecrets
2055 - new API virConnectListAllNWFilters
2056 - new API virConnectListAllNodeDevices
2057 - parallels: add support of containers to the driver
2058 - new API virConnectListAllInterfaces
2059 - new API virConnectListAllNetworks
2060 - new API virStoragePoolListAllVolumes
2061 - Add PMSUSPENDED life cycle event
2062 - new API virStorageListAllStoragePools
2063 - Add per-guest S3/S4 state configuration
2064 - qemu: Support for Block Device IO Limits
2065 - a lot of bug fixes, improvements and portability work
2066
2067 * Fri Aug 31 2012 Daniel Veillard <veillard@redhat.com> - 0.10.1-1
2068 - bugfixes and a brown paper bag
2069
2070 * Wed Aug 29 2012 Daniel Veillard <veillard@redhat.com> - 0.10.0-1
2071 - agent: add qemuAgentArbitraryCommand() for general qemu agent command
2072 - Introduce virDomainPinEmulator and virDomainGetEmulatorPinInfo functions
2073 - network: use firewalld instead of iptables, when available
2074 - network: make network driver vlan-aware
2075 - esx: Implement network driver
2076 - driver for parallels hypervisor
2077 - Various LXC improvements
2078 - Add virDomainGetHostname
2079 - a lot of bug fixes, improvements and portability work
2080
2081 * Mon Jul  2 2012 Daniel Veillard <veillard@redhat.com> - 0.9.13-1
2082 - S390: support for s390(x)
2083 - snapshot: implement new APIs for esx and vbox
2084 - snapshot: new query APIs and many improvements
2085 - virsh: Allow users to reedit rejected XML
2086 - nwfilter: add DHCP snooping
2087 - Enable driver modules in libvirt RPM
2088 - Default to enable driver modules for libvirtd
2089 - storage backend: Add RBD (RADOS Block Device) support
2090 - sVirt support for LXC domains inprovement
2091 - a lot of bug fixes, improvements and portability work
2092
2093 * Mon May 14 2012 Daniel Veillard <veillard@redhat.com> - 0.9.12-1
2094 - qemu: allow snapshotting of sheepdog and rbd disks
2095 - blockjob: add new APIs
2096 - a lot of bug fixes, improvements and portability work
2097
2098 * Tue Apr  3 2012 Daniel Veillard <veillard@redhat.com> - 0.9.11-1
2099 - Add support for the suspend event
2100 - Add support for event tray moved of removable disks
2101 - qemu: Support numad
2102 - cpustats: API, improvements and qemu support
2103 - qemu: support type='hostdev' network devices at domain start
2104 - Introduce virDomainPMWakeup API
2105 - network: support Open vSwitch
2106 - a number of snapshot improvements
2107 - many improvements and bug fixes
2108
2109 * Mon Feb 13 2012 Daniel Veillard <veillard@redhat.com> - 0.9.10-1
2110 - Add support for sVirt in the LXC driver
2111 - block rebase: add new API virDomainBlockRebase
2112 - API: Add api to set and get domain metadata
2113 - virDomainGetDiskErrors public API
2114 - conf: add rawio attribute to disk element of domain XML
2115 - Add new public API virDomainGetCPUStats()
2116 - Introduce virDomainPMSuspendForDuration API
2117 - resize: add virStorageVolResize() API
2118 - Add a virt-host-validate command to sanity check HV config
2119 - Add new virDomainShutdownFlags API
2120 - QEMU guest agent support
2121 - many improvements and bug fixes
2122
2123 * Sat Jan  7 2012 Daniel Veillard <veillard@redhat.com> - 0.9.9-1
2124 - Add API virDomain{S,G}etInterfaceParameters
2125 - Add API virDomain{G, S}etNumaParameters
2126 - Add support for ppc64 qemu
2127 - Support Xen domctl v8
2128 - many improvements and bug fixes
2129
2130 * Thu Dec  8 2011 Daniel Veillard <veillard@redhat.com> - 0.9.8-1
2131 - Add support for QEMU 1.0
2132 - Add preliminary PPC cpu driver
2133 - Add new API virDomain{Set, Get}BlockIoTune
2134 - block_resize: Define the new API
2135 - Add a public API to invoke suspend/resume on the host
2136 - various improvements for LXC containers
2137 - Define keepalive protocol and add virConnectIsAlive API
2138 - Add support for STP and VLAN filtering
2139 - many improvements and bug fixes
2140
2141 * Tue Nov  8 2011 Daniel Veillard <veillard@redhat.com> - 0.9.7-1
2142 - esx: support vSphere 5.x
2143 - vbox: support for VirtualBox 4.1
2144 - Introduce the virDomainOpenGraphics API
2145 - Add AHCI support to qemu driver
2146 - snapshot: many improvements and 2 new APIs
2147 - api: Add public api for 'reset'
2148 - many improvements and bug fixes
2149
2150 * Thu Sep 22 2011 Daniel Veillard <veillard@redhat.com> - 0.9.6-1
2151 - Fix the qemu reboot bug and a few others bug fixes
2152
2153 * Tue Sep 20 2011 Daniel Veillard <veillard@redhat.com> - 0.9.5-1
2154 - many snapshot improvements (Eric Blake)
2155 - latency: Define new public API and structure (Osier Yang)
2156 - USB2 and various USB improvements (Marc-André Lureau)
2157 - storage: Add fs pool formatting (Osier Yang)
2158 - Add public API for getting migration speed (Jim Fehlig)
2159 - Add basic driver for Microsoft Hyper-V (Matthias Bolte)
2160 - many improvements and bug fixes
2161
2162 * Wed Aug  3 2011 Daniel Veillard <veillard@redhat.com> - 0.9.4-1
2163 - network bandwidth QoS control
2164 - Add new API virDomainBlockPull*
2165 - save: new API to manipulate save file images
2166 - CPU bandwidth limits support
2167 - allow to send NMI and key event to guests
2168 - new API virDomainUndefineFlags
2169 - Implement code to attach to external QEMU instances
2170 - bios: Add support for SGA
2171 - various missing python binding
2172 - many improvements and bug fixes
2173
2174 * Mon Jul  4 2011 Daniel Veillard <veillard@redhat.com> - 0.9.3-1
2175 - new API virDomainGetVcpupinInfo
2176 - Add TXT record support for virtual DNS service
2177 - Support reboots with the QEMU driver
2178 - New API virDomainGetControlInfo API
2179 - New API virNodeGetMemoryStats
2180 - New API virNodeGetCPUTime
2181 - New API for send-key
2182 - New API virDomainPinVcpuFlags
2183 - support multifunction PCI device
2184 - lxc: various improvements
2185 - many improvements and bug fixes
2186
2187 * Mon Jun  6 2011 Daniel Veillard <veillard@redhat.com> - 0.9.2-1
2188 - Framework for lock manager plugins
2189 - API for network config change transactions
2190 - flags for setting memory parameters
2191 - virDomainGetState public API
2192 - qemu: allow blkstat/blkinfo calls during migration
2193 - Introduce migration v3 API
2194 - Defining the Screenshot public API
2195 - public API for NMI injection
2196 - Various improvements and bug fixes
2197
2198 * Thu May  5 2011 Daniel Veillard <veillard@redhat.com> - 0.9.1-1
2199 - support various persistent domain updates
2200 - improvements on memory APIs
2201 - Add virDomainEventRebootNew
2202 - various improvements to libxl driver
2203 - Spice: support audio, images and stream compression
2204 - Various improvements and bug fixes
2205
2206 * Mon Apr  4 2011 Daniel Veillard <veillard@redhat.com> - 0.9.0-1
2207 - Support cputune cpu usage tuning
2208 - Add public APIs for storage volume upload/download
2209 - Add public API for setting migration speed on the fly
2210 - Add libxenlight driver
2211 - qemu: support migration to fd
2212 - libvirt: add virDomain{Get,Set}BlkioParameters
2213 - setmem: introduce a new libvirt API (virDomainSetMemoryFlags)
2214 - Expose event loop implementation as a public API
2215 - Dump the debug buffer to libvirtd.log on fatal signal
2216 - Audit support
2217 - Various improvements and bug fixes
2218
2219 * Thu Feb 17 2011 Daniel Veillard <veillard@redhat.com> - 0.8.8-1
2220 - expose new API for sysinfo extraction
2221 - cgroup blkio weight support
2222 - smartcard device support
2223 - qemu: Support per-device boot ordering
2224 - Various improvements and bug fixes
2225
2226 * Tue Jan  4 2011 Daniel Veillard <veillard@redhat.com> - 0.8.7-1
2227 - Preliminary support for VirtualBox 4.0
2228 - IPv6 support
2229 - Add VMware Workstation and Player driver driver
2230 - Add network disk support
2231 - Various improvements and bug fixes
2232
2233 * Tue Nov 30 2010 Daniel Veillard <veillard@redhat.com> - 0.8.6-1
2234 - Add support for iSCSI target auto-discovery
2235 - QED: Basic support for QED images
2236 - remote console support
2237 - support for SPICE graphics
2238 - sysinfo and VMBIOS support
2239 - virsh qemu-monitor-command
2240 - various improvements and bug fixes
2241
2242 * Fri Oct 29 2010 Daniel Veillard <veillard@redhat.com> - 0.8.5-1
2243 - Enable JSON and netdev features in QEMU >= 0.13
2244 - framework for auditing integration
2245 - framework DTrace/SystemTap integration
2246 - Setting the number of vcpu at boot
2247 - Enable support for nested SVM
2248 - Virtio plan9fs filesystem QEMU
2249 - Memory parameter controls
2250 - various improvements and bug fixes
2251
2252 * Fri Sep 10 2010 Daniel Veillard <veillard@redhat.com> - 0.8.4-1
2253 - big improvements to UML driver
2254 - various improvements and bug fixes
2255
2256 * Wed Aug  4 2010 Daniel Veillard <veillard@redhat.com> - 0.8.3-1
2257 - esx: Support vSphere 4.1
2258 - Qemu arbitrary monitor commands
2259 - Qemu Monitor API entry point
2260 - various improvements and bug fixes
2261
2262 * Mon Jul  5 2010 Daniel Veillard <veillard@redhat.com> - 0.8.2-1
2263 - phyp: adding support for IVM
2264 - libvirt: introduce domainCreateWithFlags API
2265 - add 802.1Qbh and 802.1Qbg switches handling
2266 - Support for VirtualBox version 3.2
2267 - Init script for handling guests on shutdown/boot
2268 - qemu: live migration with non-shared storage for kvm
2269
2270 * Fri Apr 30 2010 Daniel Veillard <veillard@redhat.com> - 0.8.1-1
2271 - Starts dnsmasq from libvirtd with --dhcp-hostsfile
2272 - Add virDomainGetBlockInfo API to query disk sizing
2273 - a lot of bug fixes and cleanups
2274
2275 * Mon Apr 12 2010 Daniel Veillard <veillard@redhat.com> - 0.8.0-1
2276 - Snapshotting support (QEmu/VBox/ESX)
2277 - Network filtering API
2278 - XenAPI driver
2279 - new APIs for domain events
2280 - Libvirt managed save API
2281 - timer subselection for domain clock
2282 - synchronous hooks
2283 - API to update guest CPU to host CPU
2284 - virDomainUpdateDeviceFlags new API
2285 - migrate max downtime API
2286 - volume wiping API
2287 - and many bug fixes
2288
2289 * Fri Mar  5 2010 Daniel Veillard <veillard@redhat.com> - 0.7.7-1
2290 - macvtap support
2291 - async job handling
2292 - virtio channel
2293 - computing baseline CPU
2294 - virDomain{Attach,Detach}DeviceFlags
2295 - assorted bug fixes and lots of cleanups
2296
2297 * Wed Feb  3 2010 Daniel Veillard <veillard@redhat.com> - 0.7.6-1
2298
2299 * Wed Dec 23 2009 Daniel Veillard <veillard@redhat.com> - 0.7.5-1
2300 - Add new API virDomainMemoryStats
2301 - Public API and domain extension for CPU flags
2302 - vbox: Add support for version 3.1
2303 - Support QEMU's virtual FAT block device driver
2304 - a lot of fixes
2305
2306 * Fri Nov 20 2009 Daniel Veillard <veillard@redhat.com> - 0.7.3-1
2307 - udev node device backend
2308 - API to check object properties
2309 - better QEmu monitor processing
2310 - MAC address based port filtering for qemu
2311 - support IPv6 and multiple addresses per interfaces
2312 - a lot of fixes
2313
2314 * Tue Sep 15 2009 Daniel Veillard <veillard@redhat.com> - 0.7.1-1
2315 - ESX, VBox driver updates
2316 - mutipath support
2317 - support for encrypted (qcow) volume
2318 - compressed save image format for Qemu/KVM
2319 - QEmu host PCI device hotplug support
2320 - configuration of huge pages in guests
2321 - a lot of fixes
2322
2323 * Wed Aug  5 2009 Daniel Veillard <veillard@redhat.com> - 0.7.0-1
2324 - ESX, VBox3, Power Hypervisor drivers
2325 - new net filesystem glusterfs
2326 - Storage cloning for LVM and Disk backends
2327 - interface implementation based on netcf
2328 - Support cgroups in QEMU driver
2329 - QEmu hotplug NIC support
2330 - a lot of fixes
2331
2332 * Fri Jul  3 2009 Daniel Veillard <veillard@redhat.com> - 0.6.5-1
2333 - release of 0.6.5
2334
2335 * Fri May 29 2009 Daniel Veillard <veillard@redhat.com> - 0.6.4-1
2336 - release of 0.6.4
2337 - various new APIs
2338
2339 * Fri Apr 24 2009 Daniel Veillard <veillard@redhat.com> - 0.6.3-1
2340 - release of 0.6.3
2341 - VirtualBox driver
2342
2343 * Fri Apr  3 2009 Daniel Veillard <veillard@redhat.com> - 0.6.2-1
2344 - release of 0.6.2
2345
2346 * Fri Mar  4 2009 Daniel Veillard <veillard@redhat.com> - 0.6.1-1
2347 - release of 0.6.1
2348
2349 * Sat Jan 31 2009 Daniel Veillard <veillard@redhat.com> - 0.6.0-1
2350 - release of 0.6.0
2351
2352 * Tue Nov 25 2008 Daniel Veillard <veillard@redhat.com> - 0.5.0-1
2353 - release of 0.5.0
2354
2355 * Tue Sep 23 2008 Daniel Veillard <veillard@redhat.com> - 0.4.6-1
2356 - release of 0.4.6
2357
2358 * Mon Sep  8 2008 Daniel Veillard <veillard@redhat.com> - 0.4.5-1
2359 - release of 0.4.5
2360
2361 * Wed Jun 25 2008 Daniel Veillard <veillard@redhat.com> - 0.4.4-1
2362 - release of 0.4.4
2363 - mostly a few bug fixes from 0.4.3
2364
2365 * Thu Jun 12 2008 Daniel Veillard <veillard@redhat.com> - 0.4.3-1
2366 - release of 0.4.3
2367 - lots of bug fixes and small improvements
2368
2369 * Tue Apr  8 2008 Daniel Veillard <veillard@redhat.com> - 0.4.2-1
2370 - release of 0.4.2
2371 - lots of bug fixes and small improvements
2372
2373 * Mon Mar  3 2008 Daniel Veillard <veillard@redhat.com> - 0.4.1-1
2374 - Release of 0.4.1
2375 - Storage APIs
2376 - xenner support
2377 - lots of assorted improvements, bugfixes and cleanups
2378 - documentation and localization improvements
2379
2380 * Tue Dec 18 2007 Daniel Veillard <veillard@redhat.com> - 0.4.0-1
2381 - Release of 0.4.0
2382 - SASL based authentication
2383 - PolicyKit authentication
2384 - improved NUMA and statistics support
2385 - lots of assorted improvements, bugfixes and cleanups
2386 - documentation and localization improvements
2387
2388 * Sun Sep 30 2007 Daniel Veillard <veillard@redhat.com> - 0.3.3-1
2389 - Release of 0.3.3
2390 - Avahi support
2391 - NUMA support
2392 - lots of assorted improvements, bugfixes and cleanups
2393 - documentation and localization improvements
2394
2395 * Tue Aug 21 2007 Daniel Veillard <veillard@redhat.com> - 0.3.2-1
2396 - Release of 0.3.2
2397 - API for domains migration
2398 - APIs for collecting statistics on disks and interfaces
2399 - lots of assorted bugfixes and cleanups
2400 - documentation and localization improvements
2401
2402 * Tue Jul 24 2007 Daniel Veillard <veillard@redhat.com> - 0.3.1-1
2403 - Release of 0.3.1
2404 - localtime clock support
2405 - PS/2 and USB input devices
2406 - lots of assorted bugfixes and cleanups
2407 - documentation and localization improvements
2408
2409 * Mon Jul  9 2007 Daniel Veillard <veillard@redhat.com> - 0.3.0-1
2410 - Release of 0.3.0
2411 - Secure remote access support
2412 - unification of daemons
2413 - lots of assorted bugfixes and cleanups
2414 - documentation and localization improvements
2415
2416 * Fri Jun  8 2007 Daniel Veillard <veillard@redhat.com> - 0.2.3-1
2417 - Release of 0.2.3
2418 - lot of assorted bugfixes and cleanups
2419 - support for Xen-3.1
2420 - new scheduler API
2421
2422 * Tue Apr 17 2007 Daniel Veillard <veillard@redhat.com> - 0.2.2-1
2423 - Release of 0.2.2
2424 - lot of assorted bugfixes and cleanups
2425 - preparing for Xen-3.0.5
2426
2427 * Thu Mar 22 2007 Jeremy Katz <katzj@redhat.com> - 0.2.1-2.fc7
2428 - don't require xen; we don't need the daemon and can control non-xen now
2429 - fix scriptlet error (need to own more directories)
2430 - update description text
2431
2432 * Fri Mar 16 2007 Daniel Veillard <veillard@redhat.com> - 0.2.1-1
2433 - Release of 0.2.1
2434 - lot of bug and portability fixes
2435 - Add support for network autostart and init scripts
2436 - New API to detect the virtualization capabilities of a host
2437 - Documentation updates
2438
2439 * Fri Feb 23 2007 Daniel P. Berrange <berrange@redhat.com> - 0.2.0-4.fc7
2440 - Fix loading of guest & network configs
2441
2442 * Fri Feb 16 2007 Daniel P. Berrange <berrange@redhat.com> - 0.2.0-3.fc7
2443 - Disable kqemu support since its not in Fedora qemu binary
2444 - Fix for -vnc arg syntax change in 0.9.0  QEMU
2445
2446 * Thu Feb 15 2007 Daniel P. Berrange <berrange@redhat.com> - 0.2.0-2.fc7
2447 - Fixed path to qemu daemon for autostart
2448 - Fixed generation of <features> block in XML
2449 - Pre-create config directory at startup
2450
2451 * Wed Feb 14 2007 Daniel Veillard <veillard@redhat.com> 0.2.0-1.fc7
2452 - support for KVM and QEmu
2453 - support for network configuration
2454 - assorted fixes
2455
2456 * Mon Jan 22 2007 Daniel Veillard <veillard@redhat.com> 0.1.11-1.fc7
2457 - finish inactive Xen domains support
2458 - memory leak fix
2459 - RelaxNG schemas for XML configs
2460
2461 * Wed Dec 20 2006 Daniel Veillard <veillard@redhat.com> 0.1.10-1.fc7
2462 - support for inactive Xen domains
2463 - improved support for Xen display and vnc
2464 - a few bug fixes
2465 - localization updates
2466
2467 * Thu Dec  7 2006 Jeremy Katz <katzj@redhat.com> - 0.1.9-2
2468 - rebuild against python 2.5
2469
2470 * Wed Nov 29 2006 Daniel Veillard <veillard@redhat.com> 0.1.9-1
2471 - better error reporting
2472 - python bindings fixes and extensions
2473 - add support for shareable drives
2474 - add support for non-bridge style networking
2475 - hot plug device support
2476 - added support for inactive domains
2477 - API to dump core of domains
2478 - various bug fixes, cleanups and improvements
2479 - updated the localization
2480
2481 * Tue Nov  7 2006 Daniel Veillard <veillard@redhat.com> 0.1.8-3
2482 - it's pkgconfig not pgkconfig !
2483
2484 * Mon Nov  6 2006 Daniel Veillard <veillard@redhat.com> 0.1.8-2
2485 - fixing spec file, added %dist, -devel requires pkgconfig and xen-devel
2486 - Resolves: rhbz#202320
2487
2488 * Mon Oct 16 2006 Daniel Veillard <veillard@redhat.com> 0.1.8-1
2489 - fix missing page size detection code for ia64
2490 - fix mlock size when getting domain info list from hypervisor
2491 - vcpu number initialization
2492 - don't label crashed domains as shut off
2493 - fix virsh man page
2494 - blktapdd support for alternate drivers like blktap
2495 - memory leak fixes (xend interface and XML parsing)
2496 - compile fix
2497 - mlock/munlock size fixes
2498
2499 * Fri Sep 22 2006 Daniel Veillard <veillard@redhat.com> 0.1.7-1
2500 - Fix bug when running against xen-3.0.3 hypercalls
2501 - Fix memory bug when getting vcpus info from xend
2502
2503 * Fri Sep 22 2006 Daniel Veillard <veillard@redhat.com> 0.1.6-1
2504 - Support for localization
2505 - Support for new Xen-3.0.3 cdrom and disk configuration
2506 - Support for setting VNC port
2507 - Fix bug when running against xen-3.0.2 hypercalls
2508 - Fix reconnection problem when talking directly to http xend
2509
2510 * Tue Sep  5 2006 Jeremy Katz <katzj@redhat.com> - 0.1.5-3
2511 - patch from danpb to support new-format cd devices for HVM guests
2512
2513 * Tue Sep  5 2006 Daniel Veillard <veillard@redhat.com> 0.1.5-2
2514 - reactivating ia64 support
2515
2516 * Tue Sep  5 2006 Daniel Veillard <veillard@redhat.com> 0.1.5-1
2517 - new release
2518 - bug fixes
2519 - support for new hypervisor calls
2520 - early code for config files and defined domains
2521
2522 * Mon Sep  4 2006 Daniel Berrange <berrange@redhat.com> - 0.1.4-5
2523 - add patch to address dom0_ops API breakage in Xen 3.0.3 tree
2524
2525 * Mon Aug 28 2006 Jeremy Katz <katzj@redhat.com> - 0.1.4-4
2526 - add patch to support paravirt framebuffer in Xen
2527
2528 * Mon Aug 21 2006 Daniel Veillard <veillard@redhat.com> 0.1.4-3
2529 - another patch to fix network handling in non-HVM guests
2530
2531 * Thu Aug 17 2006 Daniel Veillard <veillard@redhat.com> 0.1.4-2
2532 - patch to fix virParseUUID()
2533
2534 * Wed Aug 16 2006 Daniel Veillard <veillard@redhat.com> 0.1.4-1
2535 - vCPUs and affinity support
2536 - more complete XML, console and boot options
2537 - specific features support
2538 - enforced read-only connections
2539 - various improvements, bug fixes
2540
2541 * Wed Aug  2 2006 Jeremy Katz <katzj@redhat.com> - 0.1.3-6
2542 - add patch from pvetere to allow getting uuid from libvirt
2543
2544 * Wed Aug  2 2006 Jeremy Katz <katzj@redhat.com> - 0.1.3-5
2545 - build on ia64 now
2546
2547 * Thu Jul 27 2006 Jeremy Katz <katzj@redhat.com> - 0.1.3-4
2548 - don't BR xen, we just need xen-devel
2549
2550 * Thu Jul 27 2006 Daniel Veillard <veillard@redhat.com> 0.1.3-3
2551 - need rebuild since libxenstore is now versionned
2552
2553 * Mon Jul 24 2006 Mark McLoughlin <markmc@redhat.com> - 0.1.3-2
2554 - Add BuildRequires: xen-devel
2555
2556 * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.1.3-1.1
2557 - rebuild
2558
2559 * Tue Jul 11 2006 Daniel Veillard <veillard@redhat.com> 0.1.3-1
2560 - support for HVM Xen guests
2561 - various bugfixes
2562
2563 * Mon Jul  3 2006 Daniel Veillard <veillard@redhat.com> 0.1.2-1
2564 - added a proxy mechanism for read only access using httpu
2565 - fixed header includes paths
2566
2567 * Wed Jun 21 2006 Daniel Veillard <veillard@redhat.com> 0.1.1-1
2568 - extend and cleanup the driver infrastructure and code
2569 - python examples
2570 - extend uuid support
2571 - bug fixes, buffer handling cleanups
2572 - support for new Xen hypervisor API
2573 - test driver for unit testing
2574 - virsh --conect argument
2575
2576 * Mon Apr 10 2006 Daniel Veillard <veillard@redhat.com> 0.1.0-1
2577 - various fixes
2578 - new APIs: for Node information and Reboot
2579 - virsh improvements and extensions
2580 - documentation updates and man page
2581 - enhancement and fixes of the XML description format
2582
2583 * Tue Feb 28 2006 Daniel Veillard <veillard@redhat.com> 0.0.6-1
2584 - added error handling APIs
2585 - small bug fixes
2586 - improve python bindings
2587 - augment documentation and regression tests
2588
2589 * Thu Feb 23 2006 Daniel Veillard <veillard@redhat.com> 0.0.5-1
2590 - new domain creation API
2591 - new UUID based APIs
2592 - more tests, documentation, devhelp
2593 - bug fixes
2594
2595 * Fri Feb 10 2006 Daniel Veillard <veillard@redhat.com> 0.0.4-1
2596 - fixes some problems in 0.0.3 due to the change of names
2597
2598 * Wed Feb  8 2006 Daniel Veillard <veillard@redhat.com> 0.0.3-1
2599 - changed library name to libvirt from libvir, complete and test the python
2600   bindings
2601
2602 * Sun Jan 29 2006 Daniel Veillard <veillard@redhat.com> 0.0.2-1
2603 - upstream release of 0.0.2, use xend, save and restore added, python bindings
2604   fixed
2605
2606 * Wed Nov  2 2005 Daniel Veillard <veillard@redhat.com> 0.0.1-1
2607 - created