tamiko 14/11/08 17:24:40 Modified: libvirt-9999.ebuild ChangeLog Log: disable -Werror for live builds; minor cleanup (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key BD3A97A3)
Revision Changes Path 1.65 app-emulation/libvirt/libvirt-9999.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/libvirt-9999.ebuild?rev=1.65&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/libvirt-9999.ebuild?rev=1.65&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/libvirt-9999.ebuild?r1=1.64&r2=1.65 Index: libvirt-9999.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-9999.ebuild,v retrieving revision 1.64 retrieving revision 1.65 diff -u -r1.64 -r1.65 --- libvirt-9999.ebuild 6 Nov 2014 22:36:08 -0000 1.64 +++ libvirt-9999.ebuild 8 Nov 2014 17:24:40 -0000 1.65 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-9999.ebuild,v 1.64 2014/11/06 22:36:08 tamiko Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-9999.ebuild,v 1.65 2014/11/08 17:24:40 tamiko Exp $ EAPI=5 @@ -250,92 +250,92 @@ local myconf="" ## enable/disable daemon, otherwise client only utils - myconf="${myconf} $(use_with libvirtd)" + myconf+=" $(use_with libvirtd)" ## enable/disable the daemon using avahi to find VMs - myconf="${myconf} $(use_with avahi)" + myconf+=" $(use_with avahi)" ## hypervisors on the local host - myconf="${myconf} $(use_with xen) $(use_with xen xen-inotify)" + myconf+=" $(use_with xen) $(use_with xen xen-inotify)" myconf+=" --without-xenapi" if use xen && has_version ">=app-emulation/xen-tools-4.2.0"; then myconf+=" --with-libxl" else myconf+=" --without-libxl" fi - myconf="${myconf} $(use_with openvz)" - myconf="${myconf} $(use_with lxc)" + myconf+=" $(use_with openvz)" + myconf+=" $(use_with lxc)" if use virtualbox && has_version app-emulation/virtualbox-ose; then - myconf="${myconf} --with-vbox=/usr/lib/virtualbox-ose/" + myconf+=" --with-vbox=/usr/lib/virtualbox-ose/" else - myconf="${myconf} $(use_with virtualbox vbox)" + myconf+=" $(use_with virtualbox vbox)" fi - myconf="${myconf} $(use_with uml)" - myconf="${myconf} $(use_with qemu)" - myconf="${myconf} $(use_with qemu yajl)" # Use QMP over HMP - myconf="${myconf} $(use_with phyp)" - myconf="${myconf} --with-esx" - myconf="${myconf} --with-vmware" + myconf+=" $(use_with uml)" + myconf+=" $(use_with qemu)" + myconf+=" $(use_with qemu yajl)" # Use QMP over HMP + myconf+=" $(use_with phyp)" + myconf+=" --with-esx" + myconf+=" --with-vmware" ## additional host drivers - myconf="${myconf} $(use_with virt-network network)" - myconf="${myconf} --with-storage-fs" - myconf="${myconf} $(use_with lvm storage-lvm)" - myconf="${myconf} $(use_with iscsi storage-iscsi)" - myconf="${myconf} $(use_with parted storage-disk)" - myconf="${myconf} $(use_with lvm storage-mpath)" - myconf="${myconf} $(use_with rbd storage-rbd)" - myconf="${myconf} $(use_with numa numactl)" - myconf="${myconf} $(use_with numa numad)" - myconf="${myconf} $(use_with selinux)" - myconf="${myconf} $(use_with fuse)" + myconf+=" $(use_with virt-network network)" + myconf+=" --with-storage-fs" + myconf+=" $(use_with lvm storage-lvm)" + myconf+=" $(use_with iscsi storage-iscsi)" + myconf+=" $(use_with parted storage-disk)" + myconf+=" $(use_with lvm storage-mpath)" + myconf+=" $(use_with rbd storage-rbd)" + myconf+=" $(use_with numa numactl)" + myconf+=" $(use_with numa numad)" + myconf+=" $(use_with selinux)" + myconf+=" $(use_with fuse)" # udev for device support details - myconf="${myconf} $(use_with udev)" + myconf+=" $(use_with udev)" # linux capability support so we don't need privileged accounts - myconf="${myconf} $(use_with caps capng)" + myconf+=" $(use_with caps capng)" ## auth stuff - myconf="${myconf} $(use_with policykit polkit)" - myconf="${myconf} $(use_with sasl)" + myconf+=" $(use_with policykit polkit)" + myconf+=" $(use_with sasl)" # network bits - myconf="${myconf} $(use_with macvtap)" - myconf="${myconf} $(use_with pcap libpcap)" - myconf="${myconf} $(use_with vepa virtualport)" - myconf="${myconf} $(use_with firewalld)" + myconf+=" $(use_with macvtap)" + myconf+=" $(use_with pcap libpcap)" + myconf+=" $(use_with vepa virtualport)" + myconf+=" $(use_with firewalld)" ## other - myconf="${myconf} $(use_enable nls)" + myconf+=" $(use_enable nls)" # user privilege bits fir qemu/kvm if use caps; then - myconf="${myconf} --with-qemu-user=qemu" - myconf="${myconf} --with-qemu-group=qemu" + myconf+=" --with-qemu-user=qemu" + myconf+=" --with-qemu-group=qemu" else - myconf="${myconf} --with-qemu-user=root" - myconf="${myconf} --with-qemu-group=root" + myconf+=" --with-qemu-user=root" + myconf+=" --with-qemu-group=root" fi # audit support - myconf="${myconf} $(use_with audit)" + myconf+=" $(use_with audit)" # wireshark dissector - myconf="${myconf} $(use_with wireshark-plugins wireshark-dissector)" + myconf+=" $(use_with wireshark-plugins wireshark-dissector)" ## stuff we don't yet support - myconf="${myconf} --without-netcf" + myconf+=" --without-netcf" # we use udev over hal - myconf="${myconf} --without-hal" + myconf+=" --without-hal" # locking support - myconf="${myconf} --without-sanlock" + myconf+=" --without-sanlock" # systemd unit files - myconf="${myconf} $(use_with systemd systemd-daemon)" - use systemd && myconf="${myconf} --with-init-script=systemd" + myconf+=" $(use_with systemd systemd-daemon)" + use systemd && myconf+=" --with-init-script=systemd" # this is a nasty trick to work around the problem in bug # #275073. The reason why we don't solve this properly is that @@ -354,8 +354,9 @@ econf \ ${myconf} \ --disable-static \ - --docdir=/usr/share/doc/${PF} \ + --disable-werror \ --with-remote \ + --docdir=/usr/share/doc/${PF} \ --localstatedir=/var if [[ ${PV} = *9999* ]]; then 1.384 app-emulation/libvirt/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/ChangeLog?rev=1.384&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/ChangeLog?rev=1.384&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/ChangeLog?r1=1.383&r2=1.384 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-emulation/libvirt/ChangeLog,v retrieving revision 1.383 retrieving revision 1.384 diff -u -r1.383 -r1.384 --- ChangeLog 6 Nov 2014 22:36:08 -0000 1.383 +++ ChangeLog 8 Nov 2014 17:24:40 -0000 1.384 @@ -1,6 +1,9 @@ # ChangeLog for app-emulation/libvirt # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/ChangeLog,v 1.383 2014/11/06 22:36:08 tamiko Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/ChangeLog,v 1.384 2014/11/08 17:24:40 tamiko Exp $ + + 08 Nov 2014; Matthias Maier <[email protected]> libvirt-9999.ebuild: + disable -Werror for live builds; minor cleanup *libvirt-1.2.10 (06 Nov 2014) *libvirt-1.2.9-r2 (06 Nov 2014)
