Gentoo Archives: gentoo-commits

From: "Doug Goldstein (cardoe)" <cardoe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/libvirt: libvirt-9999.ebuild ChangeLog libvirt-0.9.10-r3.ebuild
Date: Thu, 01 Mar 2012 10:07:43
Message-Id: 20120301100731.8C9C42004B@flycatcher.gentoo.org
1 cardoe 12/03/01 10:07:31
2
3 Modified: libvirt-9999.ebuild ChangeLog
4 libvirt-0.9.10-r3.ebuild
5 Log:
6 Drop the json USE flag since using the HMP over QMP in qemu isn't supported anymore.
7
8 (Portage version: 2.1.10.49/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.23 app-emulation/libvirt/libvirt-9999.ebuild
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/libvirt-9999.ebuild?rev=1.23&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/libvirt-9999.ebuild?rev=1.23&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/libvirt-9999.ebuild?r1=1.22&r2=1.23
16
17 Index: libvirt-9999.ebuild
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-9999.ebuild,v
20 retrieving revision 1.22
21 retrieving revision 1.23
22 diff -u -r1.22 -r1.23
23 --- libvirt-9999.ebuild 23 Feb 2012 16:34:57 -0000 1.22
24 +++ libvirt-9999.ebuild 1 Mar 2012 10:07:31 -0000 1.23
25 @@ -1,8 +1,8 @@
26 # Copyright 1999-2012 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-9999.ebuild,v 1.22 2012/02/23 16:34:57 cardoe Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-9999.ebuild,v 1.23 2012/03/01 10:07:31 cardoe Exp $
30
31 -#BACKPORTS=2
32 +BACKPORTS=1
33 #AUTOTOOLIZE=yes
34
35 EAPI="4"
36 @@ -28,8 +28,7 @@
37 SRC_URI="http://libvirt.org/sources/${MY_P}.tar.gz
38 ftp://libvirt.org/libvirt/${MY_P}.tar.gz
39 ${BACKPORTS:+
40 - http://dev.gentoo.org/~flameeyes/${PN}/${MY_P}-backports-${BACKPORTS}.tar.bz2
41 - http://dev.gentoo.org/~cardoe/distfiles/${MY_P}-backports-${BACKPORTS}.tar.bz2}"
42 + http://dev.gentoo.org/~cardoe/distfiles/${MY_P}-bp-${BACKPORTS}.tar.bz2}"
43 KEYWORDS="~amd64 ~x86"
44 fi
45 S="${WORKDIR}/${P%_rc*}"
46 @@ -38,7 +37,7 @@
47 HOMEPAGE="http://www.libvirt.org/"
48 LICENSE="LGPL-2.1"
49 SLOT="0"
50 -IUSE="avahi caps debug iscsi +json +libvirtd lvm +lxc macvtap nfs \
51 +IUSE="avahi caps debug iscsi +libvirtd lvm +lxc macvtap nfs \
52 nls numa openvz parted pcap phyp policykit python qemu sasl selinux +udev \
53 uml virtualbox virt-network xen elibc_glibc"
54 # IUSE=one : bug #293416 & bug #299011
55 @@ -54,6 +53,7 @@
56 >=dev-libs/libxml2-2.7.6
57 >=dev-libs/libnl-1.1:1.1
58 >=net-libs/gnutls-1.0.25
59 + sys-apps/dmidecode
60 >=sys-apps/util-linux-2.17
61 sys-devel/gettext
62 >=net-analyzer/netcat6-1.0-r2
63 @@ -61,7 +61,6 @@
64 avahi? ( >=net-dns/avahi-0.6[dbus] )
65 caps? ( sys-libs/libcap-ng )
66 iscsi? ( sys-block/open-iscsi )
67 - json? ( dev-libs/yajl )
68 libvirtd? ( net-misc/bridge-utils )
69 lvm? ( >=sys-fs/lvm2-2.02.48-r2 )
70 nfs? ( net-fs/nfs-utils )
71 @@ -74,7 +73,8 @@
72 pcap? ( >=net-libs/libpcap-1.0.0 )
73 phyp? ( net-libs/libssh2 )
74 policykit? ( >=sys-auth/polkit-0.9 )
75 - qemu? ( || ( app-emulation/qemu-kvm >=app-emulation/qemu-0.10.0 ) )
76 + qemu? ( || ( app-emulation/qemu-kvm >=app-emulation/qemu-0.10.0 )
77 + dev-libs/yajl )
78 sasl? ( dev-libs/cyrus-sasl )
79 selinux? ( >=sys-libs/libselinux-2.0.85 )
80 virtualbox? ( || ( app-emulation/virtualbox >=app-emulation/virtualbox-bin-2.2.0 ) )
81 @@ -128,6 +128,7 @@
82 fi
83 myconf="${myconf} $(use_with uml)"
84 myconf="${myconf} $(use_with qemu)"
85 + myconf="${myconf} $(use_with qemu yajl)" # Use QMP over HMP
86 # doesn't belong with hypervisors but links to libvirtd for some reason
87 #myconf="${myconf} $(use_with one)"
88
89 @@ -162,7 +163,6 @@
90 ## other
91 myconf="${myconf} $(use_enable nls)"
92 myconf="${myconf} $(use_with python)"
93 - myconf="${myconf} $(use_with json yajl)"
94
95 ## stuff we don't yet support
96 myconf="${myconf} --without-netcf --without-audit"
97
98
99
100 1.162 app-emulation/libvirt/ChangeLog
101
102 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/ChangeLog?rev=1.162&view=markup
103 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/ChangeLog?rev=1.162&content-type=text/plain
104 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/ChangeLog?r1=1.161&r2=1.162
105
106 Index: ChangeLog
107 ===================================================================
108 RCS file: /var/cvsroot/gentoo-x86/app-emulation/libvirt/ChangeLog,v
109 retrieving revision 1.161
110 retrieving revision 1.162
111 diff -u -r1.161 -r1.162
112 --- ChangeLog 23 Feb 2012 16:34:57 -0000 1.161
113 +++ ChangeLog 1 Mar 2012 10:07:31 -0000 1.162
114 @@ -1,6 +1,11 @@
115 # ChangeLog for app-emulation/libvirt
116 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
117 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/ChangeLog,v 1.161 2012/02/23 16:34:57 cardoe Exp $
118 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/ChangeLog,v 1.162 2012/03/01 10:07:31 cardoe Exp $
119 +
120 + 01 Mar 2012; Doug Goldstein <cardoe@g.o> libvirt-0.9.10-r3.ebuild,
121 + libvirt-9999.ebuild:
122 + Drop the json USE flag since using the HMP over QMP in qemu isn't supported
123 + anymore.
124
125 *libvirt-0.9.10-r3 (23 Feb 2012)
126
127
128
129
130 1.2 app-emulation/libvirt/libvirt-0.9.10-r3.ebuild
131
132 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/libvirt-0.9.10-r3.ebuild?rev=1.2&view=markup
133 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/libvirt-0.9.10-r3.ebuild?rev=1.2&content-type=text/plain
134 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/libvirt-0.9.10-r3.ebuild?r1=1.1&r2=1.2
135
136 Index: libvirt-0.9.10-r3.ebuild
137 ===================================================================
138 RCS file: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-0.9.10-r3.ebuild,v
139 retrieving revision 1.1
140 retrieving revision 1.2
141 diff -u -r1.1 -r1.2
142 --- libvirt-0.9.10-r3.ebuild 23 Feb 2012 16:34:57 -0000 1.1
143 +++ libvirt-0.9.10-r3.ebuild 1 Mar 2012 10:07:31 -0000 1.2
144 @@ -1,6 +1,6 @@
145 # Copyright 1999-2012 Gentoo Foundation
146 # Distributed under the terms of the GNU General Public License v2
147 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-0.9.10-r3.ebuild,v 1.1 2012/02/23 16:34:57 cardoe Exp $
148 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-0.9.10-r3.ebuild,v 1.2 2012/03/01 10:07:31 cardoe Exp $
149
150 BACKPORTS=1
151 #AUTOTOOLIZE=yes
152 @@ -37,7 +37,7 @@
153 HOMEPAGE="http://www.libvirt.org/"
154 LICENSE="LGPL-2.1"
155 SLOT="0"
156 -IUSE="avahi caps debug iscsi +json +libvirtd lvm +lxc macvtap nfs \
157 +IUSE="avahi caps debug iscsi +libvirtd lvm +lxc macvtap nfs \
158 nls numa openvz parted pcap phyp policykit python qemu sasl selinux +udev \
159 uml virtualbox virt-network xen elibc_glibc"
160 # IUSE=one : bug #293416 & bug #299011
161 @@ -61,7 +61,6 @@
162 avahi? ( >=net-dns/avahi-0.6[dbus] )
163 caps? ( sys-libs/libcap-ng )
164 iscsi? ( sys-block/open-iscsi )
165 - json? ( dev-libs/yajl )
166 libvirtd? ( net-misc/bridge-utils )
167 lvm? ( >=sys-fs/lvm2-2.02.48-r2 )
168 nfs? ( net-fs/nfs-utils )
169 @@ -74,7 +73,8 @@
170 pcap? ( >=net-libs/libpcap-1.0.0 )
171 phyp? ( net-libs/libssh2 )
172 policykit? ( >=sys-auth/polkit-0.9 )
173 - qemu? ( || ( app-emulation/qemu-kvm >=app-emulation/qemu-0.10.0 ) )
174 + qemu? ( || ( app-emulation/qemu-kvm >=app-emulation/qemu-0.10.0 )
175 + dev-libs/yajl )
176 sasl? ( dev-libs/cyrus-sasl )
177 selinux? ( >=sys-libs/libselinux-2.0.85 )
178 virtualbox? ( || ( app-emulation/virtualbox >=app-emulation/virtualbox-bin-2.2.0 ) )
179 @@ -128,6 +128,7 @@
180 fi
181 myconf="${myconf} $(use_with uml)"
182 myconf="${myconf} $(use_with qemu)"
183 + myconf="${myconf} $(use_with qemu yajl)" # Use QMP over HMP
184 # doesn't belong with hypervisors but links to libvirtd for some reason
185 #myconf="${myconf} $(use_with one)"
186
187 @@ -162,7 +163,6 @@
188 ## other
189 myconf="${myconf} $(use_enable nls)"
190 myconf="${myconf} $(use_with python)"
191 - myconf="${myconf} $(use_with json yajl)"
192
193 ## stuff we don't yet support
194 myconf="${myconf} --without-netcf --without-audit"