From e86eb0b226fb7d73624781995f3828187ae5ca37 Mon Sep 17 00:00:00 2001 From: Leonardo Arena Date: Thu, 7 Oct 2010 12:23:02 +0000 Subject: testing/libvirt: new aport --- testing/libvirt/APKBUILD | 42 +++++++++++++++++++++ testing/libvirt/libvirt.confd | 27 ++++++++++++++ testing/libvirt/libvirt.initd | 87 +++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 156 insertions(+) create mode 100644 testing/libvirt/APKBUILD create mode 100644 testing/libvirt/libvirt.confd create mode 100644 testing/libvirt/libvirt.initd (limited to 'testing/libvirt') diff --git a/testing/libvirt/APKBUILD b/testing/libvirt/APKBUILD new file mode 100644 index 0000000000..ab0e5d490d --- /dev/null +++ b/testing/libvirt/APKBUILD @@ -0,0 +1,42 @@ +# Maintainer: Leonardo Arena +pkgname=libvirt +pkgver=0.8.4 +pkgrel=0 +pkgdesc="A virtualization API for several hypervisor and container systems" +url="http://libvirt.org/" +license="LGPL" +depends="python" +makedepends="libxml2-dev gnutls-dev lvm2-dev" +install= +subpackages="$pkgname-dev $pkgname-doc" +source="http://libvirt.org/sources/$pkgname-$pkgver.tar.gz + libvirt.confd + libvirt.initd" + +_builddir="$srcdir"/$pkgname-$pkgver + +#prepare() { +# cd "$_builddir" +# # apply patches here +#} + +build() { + cd "$_builddir" + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --libexec=/usr/lib/"$pkgname" + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install + install -D -m755 $srcdir/$pkgname.initd $pkgdir/etc/init.d/libvirtd + install -D -m755 $srcdir/$pkgname.confd $pkgdir/etc/conf.d/libvirtd +} + +md5sums="a9300a068a07bcd72f86e4967d7f4d69 libvirt-0.8.4.tar.gz +1c84a7baeafe0a7f4e9d7ae5180311b7 libvirt.confd +3d32c12642cb9a84baf019c7b0971755 libvirt.initd" diff --git a/testing/libvirt/libvirt.confd b/testing/libvirt/libvirt.confd new file mode 100644 index 0000000000..d51bdb99d1 --- /dev/null +++ b/testing/libvirt/libvirt.confd @@ -0,0 +1,27 @@ +# /etc/conf.d/libvirtd + +# You may want to add '--listen' to have libvirtd listen for tcp/ip connections +# if you want to use libvirt for remote control + +# Please consult 'libvirtd --help' for more options + +#LIBVIRTD_OPTS="--listen" + +# Valid options: +# * shutdown - Sends an ACPI shutdown (think when you tap the power button +# on your machine and it begins a graceful shutdown). If your +# VM ignores this, it will have the power yanked out from under +# it in LIBVIRTD_KVM_SHUTDOWN_MAXWAIT seconds. +# * managedsave - Performs a state save external to the VM. qemu-kvm will stop +# stop the CPU and save off all state to a separate file. When +# the machine is started again, it will resume like nothing ever +# happened. This is guarenteed to always successfully stop your +# machine and restart it. However it may take some time to finish. +# * none - No attempts will be made to stop any VMs. If you are restarting your +# machine the qemu-kvm process will be simply killed, which may result +# in your VMs having disk corruption. +LIBVIRTD_KVM_SHUTDOWN="managedsave" + +# Timeout in seconds until stopping libvirtd and "pulling the plug" on the +# remaining VM's still in a running state +#LIBVIRTD_KVM_SHUTDOWN_MAXWAIT="500" diff --git a/testing/libvirt/libvirt.initd b/testing/libvirt/libvirt.initd new file mode 100644 index 0000000000..d0b9d34a01 --- /dev/null +++ b/testing/libvirt/libvirt.initd @@ -0,0 +1,87 @@ +#!/sbin/runscript + +opts="start stop status reload restart" + +depend() { + need net + after firewall +} + +libvirtd_virsh() { + # Silence errors because virsh always throws an error about + # not finding the hypervisor version when connecting to libvirtd + LC_ALL=C virsh -c qemu:///system "$@" 2>/dev/null +} + +libvirtd_dom_list() { + # Make sure that it wouldn't be confused if the domain name + # contains the word running. + libvirtd_virsh list | awk '$3 == "running" { print $1 }' +} + +libvirtd_dom_count() { + # Make sure that it wouldn't be confused if the domain name + # contains the word running. + libvirtd_virsh list | awk 'BEGIN { count = 0 } \ + $3 == "running" { count++ } \ + END { print count }' +} + +start() { + ebegin "Starting libvirtd" + start-stop-daemon --start \ + --env KRB5_KTNAME=/etc/libvirt/krb5.tab \ + --exec /usr/sbin/libvirtd -- -d ${LIBVIRTD_OPTS} + eend $? +} + +stop() { + ebegin "Stopping libvirtd" + # try to shutdown all (KVM/Qemu) domains + DOM_COUNT="$(libvirtd_dom_count)" + if [ "${LIBVIRTD_KVM_SHUTDOWN}" != "none" ] \ + && [ "${DOM_COUNT}" != "0" ] ; then + + einfo " Shutting down domain(s):" + for DOM_ID in $(libvirtd_dom_list) ; do + NAME="$(libvirtd_virsh domname ${DOM_ID} | head -n 1)" + einfo " ${NAME}" + libvirtd_virsh ${LIBVIRTD_KVM_SHUTDOWN} ${DOM_ID} > /dev/null + done + + if [ -n "${LIBVIRTD_KVM_SHUTDOWN_MAXWAIT}" ] ; then + COUNTER="${LIBVIRTD_KVM_SHUTDOWN_MAXWAIT}" + else + COUNTER=500 + fi + + if [ "${LIBVIRTD_KVM_SHUTDOWN}" = "shutdown" ]; then + einfo " Waiting ${COUNTER} seconds while domains shutdown ..." + DOM_COUNT="$(libvirtd_dom_count)" + while [ ${DOM_COUNT} -gt 0 ] && [ ${COUNTER} -gt 0 ] ; do + DOM_COUNT="$(libvirtd_dom_count)" + sleep 1 + COUNTER=$((${COUNTER} - 1)) + echo -n "." + done + fi + + DOM_COUNT="$(libvirtd_dom_count)" + if [ "${DOM_COUNT}" != "0" ] ; then + eerror " !!! Some guests are still running, stopping anyways" + fi + + fi + start-stop-daemon --stop --quiet --exec /usr/sbin/libvirtd --pidfile=/var/run/libvirtd.pid + eend $? +} + +reload() { + ebegin "Reloading libvirtd without shutting down your VMs" + start-stop-daemon --stop --quiet --exec /usr/sbin/libvirtd --pidfile=/var/run/libvirtd.pid + if [ $? -ne 0 ]; then + eend $? + fi + start-stop-daemon --start --quiet --exec /usr/sbin/libvirtd -- -d ${LIBVIRTD_OPTS} + eend $? +} -- cgit v1.2.3 From 35331f7504d27b1c915a33064fa0a613a2d8b3c0 Mon Sep 17 00:00:00 2001 From: Leonardo Arena Date: Thu, 7 Oct 2010 12:32:52 +0000 Subject: testing/libvirt: disable parallel building --- testing/libvirt/APKBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testing/libvirt') diff --git a/testing/libvirt/APKBUILD b/testing/libvirt/APKBUILD index ab0e5d490d..63978f847d 100644 --- a/testing/libvirt/APKBUILD +++ b/testing/libvirt/APKBUILD @@ -27,7 +27,7 @@ build() { --mandir=/usr/share/man \ --infodir=/usr/share/info \ --libexec=/usr/lib/"$pkgname" - make || return 1 + make -j1 || return 1 } package() { -- cgit v1.2.3 From e6c027abc839aad6a5022760c7cf275b025d9321 Mon Sep 17 00:00:00 2001 From: Leonardo Arena Date: Thu, 7 Oct 2010 12:43:28 +0000 Subject: testing/libvirt: perl added in makedepends (pod2man) --- testing/libvirt/APKBUILD | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'testing/libvirt') diff --git a/testing/libvirt/APKBUILD b/testing/libvirt/APKBUILD index 63978f847d..76e1299a1b 100644 --- a/testing/libvirt/APKBUILD +++ b/testing/libvirt/APKBUILD @@ -1,12 +1,12 @@ # Maintainer: Leonardo Arena pkgname=libvirt pkgver=0.8.4 -pkgrel=0 +pkgrel=1 pkgdesc="A virtualization API for several hypervisor and container systems" url="http://libvirt.org/" license="LGPL" depends="python" -makedepends="libxml2-dev gnutls-dev lvm2-dev" +makedepends="libxml2-dev gnutls-dev lvm2-dev perl" install= subpackages="$pkgname-dev $pkgname-doc" source="http://libvirt.org/sources/$pkgname-$pkgver.tar.gz @@ -27,7 +27,7 @@ build() { --mandir=/usr/share/man \ --infodir=/usr/share/info \ --libexec=/usr/lib/"$pkgname" - make -j1 || return 1 + make || return 1 } package() { -- cgit v1.2.3 From 1ea4c4606029adb601841b950801d310c403847f Mon Sep 17 00:00:00 2001 From: Leonardo Arena Date: Thu, 21 Oct 2010 15:07:32 +0000 Subject: testing/libvirt: deps fix --- testing/libvirt/APKBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'testing/libvirt') diff --git a/testing/libvirt/APKBUILD b/testing/libvirt/APKBUILD index 76e1299a1b..9039d49890 100644 --- a/testing/libvirt/APKBUILD +++ b/testing/libvirt/APKBUILD @@ -6,7 +6,8 @@ pkgdesc="A virtualization API for several hypervisor and container systems" url="http://libvirt.org/" license="LGPL" depends="python" -makedepends="libxml2-dev gnutls-dev lvm2-dev perl" +makedepends="device-mapper libgpg-error-dev libxml2-dev libtasn1-dev + lvm2-dev gnutls-dev perl zlib-dev" install= subpackages="$pkgname-dev $pkgname-doc" source="http://libvirt.org/sources/$pkgname-$pkgver.tar.gz -- cgit v1.2.3 From 5eed8ffd91777be00e1d2ca99751bdac49cd9e51 Mon Sep 17 00:00:00 2001 From: Leonardo Arena Date: Sat, 13 Nov 2010 16:11:11 +0000 Subject: testing/libvirt: upgrade to 0.8.5 --- testing/libvirt/APKBUILD | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'testing/libvirt') diff --git a/testing/libvirt/APKBUILD b/testing/libvirt/APKBUILD index 9039d49890..cf16036a16 100644 --- a/testing/libvirt/APKBUILD +++ b/testing/libvirt/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Leonardo Arena pkgname=libvirt -pkgver=0.8.4 -pkgrel=1 +pkgver=0.8.5 +pkgrel=0 pkgdesc="A virtualization API for several hypervisor and container systems" url="http://libvirt.org/" license="LGPL" @@ -38,6 +38,6 @@ package() { install -D -m755 $srcdir/$pkgname.confd $pkgdir/etc/conf.d/libvirtd } -md5sums="a9300a068a07bcd72f86e4967d7f4d69 libvirt-0.8.4.tar.gz +md5sums="92a96b3e534209a6103fa7a4bee9fbc1 libvirt-0.8.5.tar.gz 1c84a7baeafe0a7f4e9d7ae5180311b7 libvirt.confd 3d32c12642cb9a84baf019c7b0971755 libvirt.initd" -- cgit v1.2.3 From 8457985d612531269ceca5b651073448f435f7e7 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Mon, 13 Dec 2010 16:02:13 +0000 Subject: testing/*: add arch --- testing/libvirt/APKBUILD | 1 + 1 file changed, 1 insertion(+) (limited to 'testing/libvirt') diff --git a/testing/libvirt/APKBUILD b/testing/libvirt/APKBUILD index cf16036a16..19b8edf8d3 100644 --- a/testing/libvirt/APKBUILD +++ b/testing/libvirt/APKBUILD @@ -4,6 +4,7 @@ pkgver=0.8.5 pkgrel=0 pkgdesc="A virtualization API for several hypervisor and container systems" url="http://libvirt.org/" +arch="x86 x86_64" license="LGPL" depends="python" makedepends="device-mapper libgpg-error-dev libxml2-dev libtasn1-dev -- cgit v1.2.3 From a6526fe70a6b61239789cc9b4fc730b927c5ecd6 Mon Sep 17 00:00:00 2001 From: Leonardo Arena Date: Tue, 14 Dec 2010 08:00:01 +0000 Subject: testing/libvirt: upgrade to 0.8.6 --- testing/libvirt/APKBUILD | 18 ++-- ...ol_error_when_macvtap_support_is_disabled.patch | 117 +++++++++++++++++++++ 2 files changed, 127 insertions(+), 8 deletions(-) create mode 100644 testing/libvirt/fix_undefined_symbol_error_when_macvtap_support_is_disabled.patch (limited to 'testing/libvirt') diff --git a/testing/libvirt/APKBUILD b/testing/libvirt/APKBUILD index 19b8edf8d3..f1e6a51332 100644 --- a/testing/libvirt/APKBUILD +++ b/testing/libvirt/APKBUILD @@ -1,6 +1,6 @@ # Maintainer: Leonardo Arena pkgname=libvirt -pkgver=0.8.5 +pkgver=0.8.6 pkgrel=0 pkgdesc="A virtualization API for several hypervisor and container systems" url="http://libvirt.org/" @@ -13,14 +13,15 @@ install= subpackages="$pkgname-dev $pkgname-doc" source="http://libvirt.org/sources/$pkgname-$pkgver.tar.gz libvirt.confd - libvirt.initd" + libvirt.initd + fix_undefined_symbol_error_when_macvtap_support_is_disabled.patch" _builddir="$srcdir"/$pkgname-$pkgver -#prepare() { -# cd "$_builddir" -# # apply patches here -#} +prepare() { + cd "$_builddir" + patch -p1 < ../fix_undefined_symbol_error_when_macvtap_support_is_disabled.patch || return 1 +} build() { cd "$_builddir" @@ -39,6 +40,7 @@ package() { install -D -m755 $srcdir/$pkgname.confd $pkgdir/etc/conf.d/libvirtd } -md5sums="92a96b3e534209a6103fa7a4bee9fbc1 libvirt-0.8.5.tar.gz +md5sums="9ed61a02983dc42d0ea0224711ace025 libvirt-0.8.6.tar.gz 1c84a7baeafe0a7f4e9d7ae5180311b7 libvirt.confd -3d32c12642cb9a84baf019c7b0971755 libvirt.initd" +3d32c12642cb9a84baf019c7b0971755 libvirt.initd +85045a97007ecd6355d4d79251f5051b fix_undefined_symbol_error_when_macvtap_support_is_disabled.patch" diff --git a/testing/libvirt/fix_undefined_symbol_error_when_macvtap_support_is_disabled.patch b/testing/libvirt/fix_undefined_symbol_error_when_macvtap_support_is_disabled.patch new file mode 100644 index 0000000000..c00d38bd1f --- /dev/null +++ b/testing/libvirt/fix_undefined_symbol_error_when_macvtap_support_is_disabled.patch @@ -0,0 +1,117 @@ +diff --git a/src/libvirt_macvtap.syms b/src/libvirt_macvtap.syms +index 107b7da..b48565b 100644 +--- a/src/libvirt_macvtap.syms ++++ b/src/libvirt_macvtap.syms +@@ -1,9 +1,10 @@ + # ++# These symbols are dependent on WITH_MACVTAP. ++# ++ + + # macvtap.h + delMacvtap; + openMacvtapTap; +-virVMOperationTypeFromString; +-virVMOperationTypeToString; + vpAssociatePortProfileId; + vpDisassociatePortProfileId; +diff --git a/src/libvirt_private.syms b/src/libvirt_private.syms +index 310d8f4..3c1c823 100644 +--- a/src/libvirt_private.syms ++++ b/src/libvirt_private.syms +@@ -504,6 +504,11 @@ virLogStartup; + virLogUnlock; + + ++# macvtap.h ++virVMOperationTypeFromString; ++virVMOperationTypeToString; ++ ++ + # memory.h + virAlloc; + virAllocN; +diff --git a/src/qemu/qemu_driver.c b/src/qemu/qemu_driver.c +index fcb90a3..aa3478f 100644 +--- a/src/qemu/qemu_driver.c ++++ b/src/qemu/qemu_driver.c +@@ -11879,6 +11879,7 @@ cleanup: + return ret; + } + ++#if WITH_MACVTAP + static void + qemudVPAssociatePortProfiles(virDomainDefPtr def) { + int i; +@@ -11913,6 +11914,7 @@ err_exit: + } + } + } ++#endif /* WITH_MACVTAP */ + + /* Finish is the third and final step, and it runs on the destination host. */ + static virDomainPtr +@@ -11974,7 +11976,9 @@ qemudDomainMigrateFinish2 (virConnectPtr dconn, + goto cleanup; + } + ++#if WITH_MACVTAP + qemudVPAssociatePortProfiles(vm->def); ++#endif /* WITH_MACVTAP */ + + if (flags & VIR_MIGRATE_PERSIST_DEST) { + if (vm->persistent) +diff --git a/src/util/macvtap.h b/src/util/macvtap.h +index 389d1fd..3ae2c24 100644 +--- a/src/util/macvtap.h ++++ b/src/util/macvtap.h +@@ -57,11 +57,6 @@ struct _virVirtualPortProfileParams { + } u; + }; + +- +-# if defined(WITH_MACVTAP) +- +-# include "internal.h" +- + enum virVMOperationType { + VIR_VM_OP_CREATE, + VIR_VM_OP_SAVE, +@@ -75,6 +70,10 @@ enum virVMOperationType { + VIR_VM_OP_LAST + }; + ++# if WITH_MACVTAP ++ ++# include "internal.h" ++ + int openMacvtapTap(const char *ifname, + const unsigned char *macaddress, + const char *linkdev, +@@ -90,11 +89,9 @@ void delMacvtap(const char *ifname, + const char *linkdev, + virVirtualPortProfileParamsPtr virtPortProfile); + +-# endif /* WITH_MACVTAP */ +- +-# define MACVTAP_MODE_PRIVATE_STR "private" +-# define MACVTAP_MODE_VEPA_STR "vepa" +-# define MACVTAP_MODE_BRIDGE_STR "bridge" ++# define MACVTAP_MODE_PRIVATE_STR "private" ++# define MACVTAP_MODE_VEPA_STR "vepa" ++# define MACVTAP_MODE_BRIDGE_STR "bridge" + + int vpAssociatePortProfileId(const char *macvtap_ifname, + const unsigned char *macvtap_macaddr, +@@ -109,6 +106,8 @@ int vpDisassociatePortProfileId(const char *macvtap_ifname, + const virVirtualPortProfileParamsPtr virtPort, + enum virVMOperationType vmOp); + ++# endif /* WITH_MACVTAP */ ++ + VIR_ENUM_DECL(virVirtualPort) + VIR_ENUM_DECL(virVMOperation) + +-- +1.7.0.4 + -- cgit v1.2.3 From eecd0878abc456ed5748ded155c8800ec695993d Mon Sep 17 00:00:00 2001 From: Leonardo Arena Date: Tue, 14 Dec 2010 09:50:22 +0000 Subject: testing/libvirt: local storage, iscsi and capability support added --- testing/libvirt/APKBUILD | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'testing/libvirt') diff --git a/testing/libvirt/APKBUILD b/testing/libvirt/APKBUILD index f1e6a51332..0f67306039 100644 --- a/testing/libvirt/APKBUILD +++ b/testing/libvirt/APKBUILD @@ -1,14 +1,15 @@ # Maintainer: Leonardo Arena pkgname=libvirt pkgver=0.8.6 -pkgrel=0 +pkgrel=1 pkgdesc="A virtualization API for several hypervisor and container systems" url="http://libvirt.org/" arch="x86 x86_64" license="LGPL" depends="python" -makedepends="device-mapper libgpg-error-dev libxml2-dev libtasn1-dev - lvm2-dev gnutls-dev perl zlib-dev" +makedepends="bridge-utils-dev device-mapper e2fsprogs-dev libcap-ng-dev + libgpg-error-dev libxml2-dev libtasn1-dev lvm2-dev gnutls-dev + open-iscsi parted-dev perl zlib-dev" install= subpackages="$pkgname-dev $pkgname-doc" source="http://libvirt.org/sources/$pkgname-$pkgver.tar.gz -- cgit v1.2.3 From 5378573c7b4126f49227650418a07eba9b37e553 Mon Sep 17 00:00:00 2001 From: Leonardo Arena Date: Tue, 14 Dec 2010 10:37:14 +0000 Subject: testing/libvirt: enable physical interface (netcf) support --- testing/libvirt/APKBUILD | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'testing/libvirt') diff --git a/testing/libvirt/APKBUILD b/testing/libvirt/APKBUILD index 0f67306039..36214f7b4c 100644 --- a/testing/libvirt/APKBUILD +++ b/testing/libvirt/APKBUILD @@ -1,15 +1,16 @@ # Maintainer: Leonardo Arena pkgname=libvirt pkgver=0.8.6 -pkgrel=1 +pkgrel=2 pkgdesc="A virtualization API for several hypervisor and container systems" url="http://libvirt.org/" arch="x86 x86_64" license="LGPL" depends="python" -makedepends="bridge-utils-dev device-mapper e2fsprogs-dev libcap-ng-dev - libgpg-error-dev libxml2-dev libtasn1-dev lvm2-dev gnutls-dev - open-iscsi parted-dev perl zlib-dev" +makedepends="augeas-dev bridge-utils-dev device-mapper e2fsprogs-dev gnutls-dev + libcap-ng-dev libgpg-error-dev libnetcf-dev libnl-dev libxml2-dev + libxslt-dev libtasn1-dev lvm2-dev gnutls-dev open-iscsi parted-dev perl + pkgconfig udev-dev zlib-dev" install= subpackages="$pkgname-dev $pkgname-doc" source="http://libvirt.org/sources/$pkgname-$pkgver.tar.gz -- cgit v1.2.3 From ddcb83871c5a882a064abdda5b2c8850eef5b96f Mon Sep 17 00:00:00 2001 From: Leonardo Arena Date: Mon, 10 Jan 2011 16:01:23 +0000 Subject: testing/libvirt: upgrade to 0.8.7 --- testing/libvirt/APKBUILD | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'testing/libvirt') diff --git a/testing/libvirt/APKBUILD b/testing/libvirt/APKBUILD index 36214f7b4c..46acb89613 100644 --- a/testing/libvirt/APKBUILD +++ b/testing/libvirt/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Leonardo Arena pkgname=libvirt -pkgver=0.8.6 -pkgrel=2 +pkgver=0.8.7 +pkgrel=0 pkgdesc="A virtualization API for several hypervisor and container systems" url="http://libvirt.org/" arch="x86 x86_64" @@ -15,14 +15,14 @@ install= subpackages="$pkgname-dev $pkgname-doc" source="http://libvirt.org/sources/$pkgname-$pkgver.tar.gz libvirt.confd - libvirt.initd - fix_undefined_symbol_error_when_macvtap_support_is_disabled.patch" + libvirt.initd" _builddir="$srcdir"/$pkgname-$pkgver prepare() { cd "$_builddir" - patch -p1 < ../fix_undefined_symbol_error_when_macvtap_support_is_disabled.patch || return 1 +# patch -p1 < ../fix_undefined_symbol_error_when_macvtap_support_is_disabled.patch || return 1 + return 0 } build() { @@ -42,7 +42,6 @@ package() { install -D -m755 $srcdir/$pkgname.confd $pkgdir/etc/conf.d/libvirtd } -md5sums="9ed61a02983dc42d0ea0224711ace025 libvirt-0.8.6.tar.gz +md5sums="596bafb53bb6c079a0703f1726cb2305 libvirt-0.8.7.tar.gz 1c84a7baeafe0a7f4e9d7ae5180311b7 libvirt.confd -3d32c12642cb9a84baf019c7b0971755 libvirt.initd -85045a97007ecd6355d4d79251f5051b fix_undefined_symbol_error_when_macvtap_support_is_disabled.patch" +3d32c12642cb9a84baf019c7b0971755 libvirt.initd" -- cgit v1.2.3