Gentoo Archives: gentoo-commits

From: "Matt Thode (prometheanfire)" <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-cluster/nova: metadata.xml nova-2013.1.9999.ebuild nova-9999.ebuild nova-2012.2.4-r10.ebuild nova-2013.1.3-r6.ebuild ChangeLog
Date: Fri, 27 Sep 2013 01:41:24
Message-Id: 20130927014121.3E9012004C@flycatcher.gentoo.org
1 prometheanfire 13/09/27 01:41:21
2
3 Modified: metadata.xml nova-2013.1.9999.ebuild
4 nova-9999.ebuild nova-2012.2.4-r10.ebuild
5 nova-2013.1.3-r6.ebuild ChangeLog
6 Log:
7 oslo-config, novnc deps, libvirt deps, kvm/xen deps, initscript name change
8
9 (Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key 0x2471eb3e40ac5ac3)
10
11 Revision Changes Path
12 1.3 sys-cluster/nova/metadata.xml
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/nova/metadata.xml?rev=1.3&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/nova/metadata.xml?rev=1.3&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/nova/metadata.xml?r1=1.2&r2=1.3
17
18 Index: metadata.xml
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sys-cluster/nova/metadata.xml,v
21 retrieving revision 1.2
22 retrieving revision 1.3
23 diff -u -r1.2 -r1.3
24 --- metadata.xml 5 Sep 2013 20:57:34 -0000 1.2
25 +++ metadata.xml 27 Sep 2013 01:41:21 -0000 1.3
26 @@ -15,10 +15,12 @@
27 <flag name="compute">Installs the initscripts for the nova volume service</flag>
28 <flag name="conductor">Installs the initscripts for the nova conductor service</flag>
29 <flag name="consoleauth">Installs the initscripts for the nova consoleauth service</flag>
30 + <flag name="kvm">qemu-kvm hypervisor support</flag>
31 <flag name="network">Installs the initscripts for the nova network service</flag>
32 <flag name="novncproxy">Installs the initscripts for the nova novncproxy service</flag>
33 <flag name="scheduler">Installs the initscripts for the nova scheduler service</flag>
34 <flag name="spicehtml5proxy">Installs the initscripts for the nova spicehtml5proxy service</flag>
35 + <flag name="xen">xen hypervisor support</flag>
36 <flag name="xvpvncproxy">Installs the initscripts for the nova xvpvncproxy service</flag>
37 </use>
38 </pkgmetadata>
39
40
41
42 1.9 sys-cluster/nova/nova-2013.1.9999.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/nova/nova-2013.1.9999.ebuild?rev=1.9&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/nova/nova-2013.1.9999.ebuild?rev=1.9&content-type=text/plain
46 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/nova/nova-2013.1.9999.ebuild?r1=1.8&r2=1.9
47
48 Index: nova-2013.1.9999.ebuild
49 ===================================================================
50 RCS file: /var/cvsroot/gentoo-x86/sys-cluster/nova/nova-2013.1.9999.ebuild,v
51 retrieving revision 1.8
52 retrieving revision 1.9
53 diff -u -r1.8 -r1.9
54 --- nova-2013.1.9999.ebuild 26 Sep 2013 00:15:33 -0000 1.8
55 +++ nova-2013.1.9999.ebuild 27 Sep 2013 01:41:21 -0000 1.9
56 @@ -1,6 +1,6 @@
57 # Copyright 1999-2013 Gentoo Foundation
58 # Distributed under the terms of the GNU General Public License v2
59 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/nova/nova-2013.1.9999.ebuild,v 1.8 2013/09/26 00:15:33 prometheanfire Exp $
60 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/nova/nova-2013.1.9999.ebuild,v 1.9 2013/09/27 01:41:21 prometheanfire Exp $
61
62 EAPI=5
63 PYTHON_COMPAT=( python2_7 )
64 @@ -16,8 +16,9 @@
65 LICENSE="Apache-2.0"
66 SLOT="0"
67 KEYWORDS=""
68 -IUSE="+api +cert +compute +conductor +consoleauth +network +novncproxy +scheduler +spicehtml5proxy +xvpvncproxy sqlite mysql postgres"
69 -REQUIRED_USE="|| ( mysql postgres sqlite )"
70 +IUSE="+api +cert +compute +conductor +consoleauth +kvm +network +novncproxy +scheduler +spicehtml5proxy +xvpvncproxy sqlite mysql postgres xen"
71 +REQUIRED_USE="|| ( mysql postgres sqlite )
72 + || ( kvm xen )"
73
74 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
75 app-admin/sudo"
76 @@ -58,7 +59,13 @@
77 >=dev-python/stevedore-0.7[${PYTHON_USEDEP}]
78 <dev-python/websockify-0.4[${PYTHON_USEDEP}]
79 >=dev-python/oslo-config-1.1.0[${PYTHON_USEDEP}]
80 - virtual/python-argparse[${PYTHON_USEDEP}]"
81 + <dev-python/oslo-config-1.2.0[${PYTHON_USEDEP}]
82 + virtual/python-argparse[${PYTHON_USEDEP}]
83 + app-emulation/libvirt[${PYTHON_USEDEP}]
84 + novncproxy? ( www-apps/novnc )
85 + kvm? ( app-emulation/qemu )
86 + xen? ( app-emulation/xen
87 + app-emulation/xen-tools )"
88
89 PATCHES=(
90 )
91 @@ -78,7 +85,7 @@
92 use conductor && dosym /etc/init.d/nova /etc/init.d/nova-conductor
93 use consoleauth && dosym /etc/init.d/nova /etc/init.d/nova-consoleauth
94 use network && dosym /etc/init.d/nova /etc/init.d/nova-network
95 - use novncproxy &&dosym /etc/init.d/nova /etc/init.d/nova-nonvncproxy
96 + use novncproxy &&dosym /etc/init.d/nova /etc/init.d/nova-novncproxy
97 use scheduler && dosym /etc/init.d/nova /etc/init.d/nova-scheduler
98 use spicehtml5proxy && dosym /etc/init.d/nova /etc/init.d/nova-spicehtml5proxy
99 use xvpvncproxy && dosym /etc/init.d/nova /etc/init.d/nova-xvpncproxy
100
101
102
103 1.10 sys-cluster/nova/nova-9999.ebuild
104
105 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/nova/nova-9999.ebuild?rev=1.10&view=markup
106 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/nova/nova-9999.ebuild?rev=1.10&content-type=text/plain
107 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/nova/nova-9999.ebuild?r1=1.9&r2=1.10
108
109 Index: nova-9999.ebuild
110 ===================================================================
111 RCS file: /var/cvsroot/gentoo-x86/sys-cluster/nova/nova-9999.ebuild,v
112 retrieving revision 1.9
113 retrieving revision 1.10
114 diff -u -r1.9 -r1.10
115 --- nova-9999.ebuild 26 Sep 2013 00:15:33 -0000 1.9
116 +++ nova-9999.ebuild 27 Sep 2013 01:41:21 -0000 1.10
117 @@ -1,6 +1,6 @@
118 # Copyright 1999-2013 Gentoo Foundation
119 # Distributed under the terms of the GNU General Public License v2
120 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/nova/nova-9999.ebuild,v 1.9 2013/09/26 00:15:33 prometheanfire Exp $
121 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/nova/nova-9999.ebuild,v 1.10 2013/09/27 01:41:21 prometheanfire Exp $
122
123 EAPI=5
124 PYTHON_COMPAT=( python2_7 )
125 @@ -15,8 +15,9 @@
126 LICENSE="Apache-2.0"
127 SLOT="0"
128 KEYWORDS=""
129 -IUSE="+api +cert +compute +conductor +consoleauth +network +novncproxy +scheduler +spicehtml5proxy +xvpvncproxy sqlite mysql postgres"
130 -REQUIRED_USE="|| ( mysql postgres sqlite )"
131 +IUSE="+api +cert +compute +conductor +consoleauth +kvm +network +novncproxy +scheduler +spicehtml5proxy +xvpvncproxy sqlite mysql postgres xen"
132 +REQUIRED_USE="|| ( mysql postgres sqlite )
133 + || ( kvm xen )"
134
135 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
136 app-admin/sudo"
137 @@ -62,9 +63,13 @@
138 >=dev-python/stevedore-0.10[${PYTHON_USEDEP}]
139 >=dev-python/websockify-0.5.1[${PYTHON_USEDEP}]
140 <dev-python/websockify-0.6[${PYTHON_USEDEP}]
141 - >=dev-python/oslo-config-1.1.0[${PYTHON_USEDEP}]
142 - virtual/python-argparse[${PYTHON_USEDEP}]"
143 -#oslo.config-1.2 is required but not released yet
144 + >=dev-python/oslo-config-1.2.0[${PYTHON_USEDEP}]
145 + virtual/python-argparse[${PYTHON_USEDEP}]
146 + app-emulation/libvirt[${PYTHON_USEDEP}]
147 + novncproxy? ( www-apps/novnc )
148 + kvm? ( app-emulation/qemu )
149 + xen? ( app-emulation/xen
150 + app-emulation/xen-tools )"
151
152 PATCHES=(
153 )
154 @@ -84,7 +89,7 @@
155 use conductor && dosym /etc/init.d/nova /etc/init.d/nova-conductor
156 use consoleauth && dosym /etc/init.d/nova /etc/init.d/nova-consoleauth
157 use network && dosym /etc/init.d/nova /etc/init.d/nova-network
158 - use novncproxy &&dosym /etc/init.d/nova /etc/init.d/nova-nonvncproxy
159 + use novncproxy &&dosym /etc/init.d/nova /etc/init.d/nova-novncproxy
160 use scheduler && dosym /etc/init.d/nova /etc/init.d/nova-scheduler
161 use spicehtml5proxy && dosym /etc/init.d/nova /etc/init.d/nova-spicehtml5proxy
162 use xvpvncproxy && dosym /etc/init.d/nova /etc/init.d/nova-xvpncproxy
163
164
165
166 1.2 sys-cluster/nova/nova-2012.2.4-r10.ebuild
167
168 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/nova/nova-2012.2.4-r10.ebuild?rev=1.2&view=markup
169 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/nova/nova-2012.2.4-r10.ebuild?rev=1.2&content-type=text/plain
170 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/nova/nova-2012.2.4-r10.ebuild?r1=1.1&r2=1.2
171
172 Index: nova-2012.2.4-r10.ebuild
173 ===================================================================
174 RCS file: /var/cvsroot/gentoo-x86/sys-cluster/nova/nova-2012.2.4-r10.ebuild,v
175 retrieving revision 1.1
176 retrieving revision 1.2
177 diff -u -r1.1 -r1.2
178 --- nova-2012.2.4-r10.ebuild 26 Sep 2013 00:15:33 -0000 1.1
179 +++ nova-2012.2.4-r10.ebuild 27 Sep 2013 01:41:21 -0000 1.2
180 @@ -1,6 +1,6 @@
181 # Copyright 1999-2013 Gentoo Foundation
182 # Distributed under the terms of the GNU General Public License v2
183 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/nova/nova-2012.2.4-r10.ebuild,v 1.1 2013/09/26 00:15:33 prometheanfire Exp $
184 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/nova/nova-2012.2.4-r10.ebuild,v 1.2 2013/09/27 01:41:21 prometheanfire Exp $
185
186 EAPI=5
187 PYTHON_COMPAT=( python2_7 )
188 @@ -15,8 +15,9 @@
189 LICENSE="Apache-2.0"
190 SLOT="0"
191 KEYWORDS="~amd64 ~x86"
192 -IUSE="+api +cert +compute +conductor +consoleauth +network +novncproxy +scheduler +spicehtml5proxy +xvpvncproxy sqlite mysql postgres"
193 -REQUIRED_USE="|| ( mysql postgres sqlite )"
194 +IUSE="+api +cert +compute +conductor +consoleauth +kvm +network +novncproxy +scheduler +spicehtml5proxy +xvpvncproxy sqlite mysql postgres xen"
195 +REQUIRED_USE="|| ( mysql postgres sqlite )
196 + || ( kvm xen )"
197
198 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
199 app-admin/sudo"
200 @@ -49,7 +50,12 @@
201 >=dev-python/setuptools-git-0.4[${PYTHON_USEDEP}]
202 >=dev-python/python-glanceclient-0.5.0[${PYTHON_USEDEP}]
203 <dev-python/python-glanceclient-2[${PYTHON_USEDEP}]
204 - >=dev-python/python-neutronclient-2.1[${PYTHON_USEDEP}]"
205 + >=dev-python/python-neutronclient-2.1[${PYTHON_USEDEP}]
206 + app-emulation/libvirt[${PYTHON_USEDEP}]
207 + novncproxy? ( www-apps/novnc )
208 + kvm? ( app-emulation/qemu )
209 + xen? ( app-emulation/xen
210 + app-emulation/xen-tools )"
211
212 PATCHES=(
213 "${FILESDIR}/nova-folsom-4-CVE-2013-2030.patch"
214 @@ -75,7 +81,7 @@
215 use conductor && dosym /etc/init.d/nova /etc/init.d/nova-conductor
216 use consoleauth && dosym /etc/init.d/nova /etc/init.d/nova-consoleauth
217 use network && dosym /etc/init.d/nova /etc/init.d/nova-network
218 - use novncproxy &&dosym /etc/init.d/nova /etc/init.d/nova-nonvncproxy
219 + use novncproxy &&dosym /etc/init.d/nova /etc/init.d/nova-novncproxy
220 use scheduler && dosym /etc/init.d/nova /etc/init.d/nova-scheduler
221 use spicehtml5proxy && dosym /etc/init.d/nova /etc/init.d/nova-spicehtml5proxy
222 use xvpvncproxy && dosym /etc/init.d/nova /etc/init.d/nova-xvpncproxy
223
224
225
226 1.2 sys-cluster/nova/nova-2013.1.3-r6.ebuild
227
228 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/nova/nova-2013.1.3-r6.ebuild?rev=1.2&view=markup
229 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/nova/nova-2013.1.3-r6.ebuild?rev=1.2&content-type=text/plain
230 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/nova/nova-2013.1.3-r6.ebuild?r1=1.1&r2=1.2
231
232 Index: nova-2013.1.3-r6.ebuild
233 ===================================================================
234 RCS file: /var/cvsroot/gentoo-x86/sys-cluster/nova/nova-2013.1.3-r6.ebuild,v
235 retrieving revision 1.1
236 retrieving revision 1.2
237 diff -u -r1.1 -r1.2
238 --- nova-2013.1.3-r6.ebuild 26 Sep 2013 00:15:33 -0000 1.1
239 +++ nova-2013.1.3-r6.ebuild 27 Sep 2013 01:41:21 -0000 1.2
240 @@ -1,6 +1,6 @@
241 # Copyright 1999-2013 Gentoo Foundation
242 # Distributed under the terms of the GNU General Public License v2
243 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/nova/nova-2013.1.3-r6.ebuild,v 1.1 2013/09/26 00:15:33 prometheanfire Exp $
244 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/nova/nova-2013.1.3-r6.ebuild,v 1.2 2013/09/27 01:41:21 prometheanfire Exp $
245
246 EAPI=5
247 PYTHON_COMPAT=( python2_7 )
248 @@ -15,8 +15,9 @@
249 LICENSE="Apache-2.0"
250 SLOT="0"
251 KEYWORDS="~amd64 ~x86"
252 -IUSE="+api +cert +compute +conductor +consoleauth +network +novncproxy +scheduler +spicehtml5proxy +xvpvncproxy sqlite mysql postgres"
253 -REQUIRED_USE="|| ( mysql postgres sqlite )"
254 +IUSE="+api +cert +compute +conductor +consoleauth +kvm +network +novncproxy +scheduler +spicehtml5proxy +xvpvncproxy xen sqlite mysql postgres"
255 +REQUIRED_USE="|| ( mysql postgres sqlite )
256 + || ( kvm xen )"
257
258 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
259 app-admin/sudo"
260 @@ -57,7 +58,13 @@
261 >=dev-python/stevedore-0.7[${PYTHON_USEDEP}]
262 <dev-python/websockify-0.4[${PYTHON_USEDEP}]
263 >=dev-python/oslo-config-1.1.0[${PYTHON_USEDEP}]
264 - virtual/python-argparse[${PYTHON_USEDEP}]"
265 + <dev-python/oslo-config-1.2.0[${PYTHON_USEDEP}]
266 + virtual/python-argparse[${PYTHON_USEDEP}]
267 + app-emulation/libvirt[${PYTHON_USEDEP}]
268 + novncproxy? ( www-apps/novnc )
269 + kvm? ( app-emulation/qemu )
270 + xen? ( app-emulation/xen
271 + app-emulation/xen-tools )"
272
273 PATCHES=(
274 "${FILESDIR}/2013.1.3-CVE-2013-4261.patch"
275 @@ -79,7 +86,7 @@
276 use conductor && dosym /etc/init.d/nova /etc/init.d/nova-conductor
277 use consoleauth && dosym /etc/init.d/nova /etc/init.d/nova-consoleauth
278 use network && dosym /etc/init.d/nova /etc/init.d/nova-network
279 - use novncproxy &&dosym /etc/init.d/nova /etc/init.d/nova-nonvncproxy
280 + use novncproxy &&dosym /etc/init.d/nova /etc/init.d/nova-novncproxy
281 use scheduler && dosym /etc/init.d/nova /etc/init.d/nova-scheduler
282 use spicehtml5proxy && dosym /etc/init.d/nova /etc/init.d/nova-spicehtml5proxy
283 use xvpvncproxy && dosym /etc/init.d/nova /etc/init.d/nova-xvpncproxy
284
285
286
287 1.30 sys-cluster/nova/ChangeLog
288
289 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/nova/ChangeLog?rev=1.30&view=markup
290 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/nova/ChangeLog?rev=1.30&content-type=text/plain
291 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/nova/ChangeLog?r1=1.29&r2=1.30
292
293 Index: ChangeLog
294 ===================================================================
295 RCS file: /var/cvsroot/gentoo-x86/sys-cluster/nova/ChangeLog,v
296 retrieving revision 1.29
297 retrieving revision 1.30
298 diff -u -r1.29 -r1.30
299 --- ChangeLog 26 Sep 2013 00:15:33 -0000 1.29
300 +++ ChangeLog 27 Sep 2013 01:41:21 -0000 1.30
301 @@ -1,6 +1,11 @@
302 # ChangeLog for sys-cluster/nova
303 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
304 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/nova/ChangeLog,v 1.29 2013/09/26 00:15:33 prometheanfire Exp $
305 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/nova/ChangeLog,v 1.30 2013/09/27 01:41:21 prometheanfire Exp $
306 +
307 + 27 Sep 2013; Matthew Thode <prometheanfire@g.o> metadata.xml,
308 + nova-2012.2.4-r10.ebuild, nova-2013.1.3-r6.ebuild, nova-2013.1.9999.ebuild,
309 + nova-9999.ebuild:
310 + oslo-config, novnc deps, libvirt deps, kvm/xen deps, initscript name change
311
312 *nova-2012.2.4-r10 (26 Sep 2013)
313 *nova-2013.1.3-r6 (26 Sep 2013)