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