rvm-ruby does not build on f20 either
[build.git] / lxc.mk
1 #
2 # declare the packages to be built and their dependencies
3 # initial version from Mark Huang
4 # Mark Huang <mlhuang@cs.princeton.edu>
5 # Copyright (C) 2003-2006 The Trustees of Princeton University
6 # rewritten by Thierry Parmentelat - INRIA Sophia Antipolis
7 #
8 # see doc in Makefile  
9 #
10
11 ### the madwifi drivers ship with fedora16's kernel rpm
12
13 #
14 # lxc-userspace: scripts for entering containers
15 #
16 lxc-userspace-MODULES := lxc-userspace
17 lxc-userspace-SPEC := lxc-userspace.spec
18 ALL += lxc-userspace
19 IN_NODEIMAGE += lxc-userspace
20
21 #
22 #
23 # transforward: root context module for transparent port forwarding
24 #
25 transforward-MODULES := transforward
26 transforward-SPEC := transforward.spec
27 ALL += transforward
28 IN_NODEIMAGE += transforward
29
30 #
31 # procprotect: root context module for protecting against weaknesses in /proc
32 #
33 procprotect-MODULES := procprotect
34 procprotect-SPEC := procprotect.spec
35 ALL += procprotect
36 IN_NODEIMAGE += procprotect
37
38 #
39 # ipfw: root context module, and slice companion
40 #
41 # this module won't build yet under f20
42 ifeq "$(DISTRONAME)" "f18"
43 ipfwroot-MODULES := ipfw
44 ipfwroot-SPEC := planetlab/ipfwroot.spec
45 ALL += ipfwroot
46 IN_NODEIMAGE += ipfwroot
47
48 ipfwslice-MODULES := ipfw
49 ipfwslice-SPEC := planetlab/ipfwslice.spec
50 ALL += ipfwslice
51 endif
52
53 #
54 # comgt - a companion to umts tools
55
56 comgt-MODULES := comgt
57 comgt-SPEC := comgt.spec
58 IN_NODEIMAGE += comgt
59 ALL += comgt
60
61 #
62 # umts: root context stuff
63 #
64 umts-backend-MODULES := planetlab-umts-tools
65 umts-backend-SPEC := backend.spec
66 IN_NODEIMAGE += umts-backend
67 ALL += umts-backend
68
69 #
70 # umts: slice tools
71 #
72 umts-frontend-MODULES := planetlab-umts-tools
73 umts-frontend-SPEC := frontend.spec
74 IN_SLICEIMAGE += umts-frontend
75 ALL += umts-frontend
76
77 #
78 # NodeUpdate
79 #
80 nodeupdate-MODULES := nodeupdate
81 nodeupdate-SPEC := NodeUpdate.spec
82 ALL += nodeupdate
83 IN_NODEIMAGE += nodeupdate
84
85 #
86 # ipod
87 #
88 ipod-MODULES := PingOfDeath
89 ipod-SPEC := ipod.spec
90 ALL += ipod
91 IN_NODEIMAGE += ipod
92
93 #
94 # plnode-utils
95
96 plnode-utils-MODULES := plnode-utils
97 plnode-utils-SPEC := plnode-utils-lxc.spec
98 ALL += plnode-utils
99 IN_NODEIMAGE += plnode-utils
100
101 #
102 # nodemanager
103 #
104 nodemanager-lib-MODULES := nodemanager
105 nodemanager-lib-SPEC := nodemanager-lib.spec
106 ALL += nodemanager-lib
107 IN_NODEIMAGE += nodemanager-lib
108
109 nodemanager-lxc-MODULES := nodemanager
110 nodemanager-lxc-SPEC := nodemanager-lxc.spec
111 ALL += nodemanager-lxc
112 IN_NODEIMAGE += nodemanager-lxc
113
114 #
115 # pl_sshd
116 #
117 sshd-MODULES := pl_sshd
118 sshd-SPEC := pl_sshd.spec
119 ALL += sshd
120 IN_NODEIMAGE += sshd
121
122 #
123 # codemux: Port 80 demux
124 #
125 codemux-MODULES := codemux
126 codemux-SPEC   := codemux.spec
127 ALL += codemux
128 IN_NODEIMAGE += codemux
129
130 #
131 # fprobe-ulog
132 #
133 fprobe-ulog-MODULES := fprobe-ulog
134 fprobe-ulog-SPEC := fprobe-ulog.spec
135 ALL += fprobe-ulog
136 IN_NODEIMAGE += fprobe-ulog
137
138 #################### libvirt version selection
139 # settling with using version 1.2.1 on all fedoras
140 # although this does not solve the slice re-creation issue seen on f20
141
142 local_libvirt=true
143 separate_libvirt_python=true
144
145 #
146 # libvirt
147 #
148 ifeq "$(local_libvirt)" "true"
149
150 libvirt-MODULES := libvirt
151 libvirt-SPEC    := libvirt.spec
152 libvirt-BUILD-FROM-SRPM := yes
153 # The --without options are breaking spec2make : hard-wired in the specfile instead
154 libvirt-STOCK-DEVEL-RPMS += xhtml1-dtds gettext gettext-devel libtasn1-devel gnutls-devel 
155 libvirt-STOCK-DEVEL-RPMS += libattr-devel augeas libpciaccess-devel yajl-devel 
156 libvirt-STOCK-DEVEL-RPMS += libpcap-devel radvd ebtables device-mapper-devel 
157 libvirt-STOCK-DEVEL-RPMS += ceph-devel numactl-devel libcap-ng-devel scrub 
158 # for 1.2.1 - first seen on f20, not sure for the other ones
159 libvirt-STOCK-DEVEL-RPMS += libblkid-devel glusterfs-api-devel glusterfs-devel
160 # strictly speaking fuse-devel is not required anymore but we might wish to turn fuse back on again in the future
161 libvirt-STOCK-DEVEL-RPMS += fuse-devel libssh2-devel dbus-devel numad 
162 libvirt-STOCK-DEVEL-RPMS += systemd-devel libnl3-devel iptables-ipv6 libgcrypt-devel netcf-devel
163 ALL += libvirt
164 IN_NODEREPO += libvirt
165 IN_NODEIMAGE += libvirt
166
167 endif
168
169 #
170 ## libvirt-python
171 #
172 ifeq "$(separate_libvirt_python)" "true"
173
174 libvirt-python-MODULES := libvirt-python
175 libvirt-python-SPEC    := libvirt-python.spec
176 libvirt-python-BUILD-FROM-SRPM := yes
177 libvirt-python-STOCK-DEVEL-RPMS += gnutls-utils nc pm-utils 
178 libvirt-python-LOCAL-DEVEL-RPMS += libvirt-devel libvirt-docs libvirt-client
179 libvirt-python-RPMFLAGS :=     --define 'packager PlanetLab'
180 ALL += libvirt-python
181 IN_NODEREPO += libvirt-python
182 IN_NODEIMAGE += libvirt-python
183
184 endif
185
186 #
187 # DistributedRateLimiting
188 #
189 #DistributedRateLimiting-MODULES := DistributedRateLimiting
190 #DistributedRateLimiting-SPEC := DistributedRateLimiting.spec
191 #ALL += DistributedRateLimiting
192 #IN_NODEREPO += DistributedRateLimiting
193
194 #
195 # pf2slice
196 #
197 pf2slice-MODULES := pf2slice
198 pf2slice-SPEC := pf2slice.spec
199 ALL += pf2slice
200
201 ##
202 ## PlanetLab Mom: Cleans up your mess
203 ##
204 #mom-MODULES := mom
205 #mom-SPEC := pl_mom.spec
206 #ALL += mom
207 #IN_NODEIMAGE += mom
208
209 #
210 # openvswitch
211 #
212 # openvswitch-MODULES := openvswitch
213 # openvswitch-SPEC := openvswitch.spec
214 # openvswitch-STOCK-DEVEL-RPMS += kernel-devel
215 # IN_NODEIMAGE += openvswitch
216 # # build only on f14 as f16 has this natively
217 # ifeq "$(DISTRONAME)" "$(filter $(DISTRONAME),f14)"
218 # ALL += openvswitch
219 # endif
220
221 #
222 # vsys
223 #
224 vsys-MODULES := vsys
225 vsys-SPEC := vsys.spec
226 # ocaml-docs is not needed anymore but keep it on a tmp basis as some tags may still have it
227 vsys-STOCK-DEVEL-RPMS += ocaml-ocamldoc ocaml-docs
228 IN_NODEIMAGE += vsys
229 ALL += vsys
230
231 #
232 # vsyssh : installed in slivers
233 #
234 vsyssh-MODULES := vsys
235 vsyssh-SPEC := vsyssh.spec
236 IN_SLICEIMAGE += vsyssh
237 ALL += vsyssh
238
239 #
240 # vsys-scripts
241 #
242 vsys-scripts-MODULES := vsys-scripts
243 vsys-scripts-SPEC := root-context/vsys-scripts.spec
244 IN_NODEIMAGE += vsys-scripts
245 ALL += vsys-scripts
246
247 #
248 # bind_public
249 #
250 bind_public-MODULES := bind_public
251 bind_public-SPEC := bind_public.spec
252 IN_SLICEIMAGE += bind_public
253 ALL += bind_public
254
255 #
256 # sliver-openvswitch
257 #
258 sliver-openvswitch-MODULES := sliver-openvswitch
259 sliver-openvswitch-SPEC := sliver-openvswitch.spec
260 IN_SLICEIMAGE += sliver-openvswitch
261 ALL += sliver-openvswitch
262
263 #
264 # plcapi
265 #
266 plcapi-MODULES := plcapi
267 plcapi-SPEC := plcapi.spec
268 ALL += plcapi
269 IN_MYPLC += plcapi
270
271 #
272 # drupal
273
274 drupal-MODULES := drupal
275 drupal-SPEC := drupal.spec
276 drupal-BUILD-FROM-SRPM := yes
277 ALL += drupal
278 IN_MYPLC += drupal
279
280 #
281 # use the plewww module instead
282 #
283 plewww-MODULES := plewww
284 plewww-SPEC := plewww.spec
285 ALL += plewww
286 IN_MYPLC += plewww
287
288 #
289 # www-register-wizard
290 #
291 www-register-wizard-MODULES := www-register-wizard
292 www-register-wizard-SPEC := www-register-wizard.spec
293 ALL += www-register-wizard
294 IN_MYPLC += www-register-wizard
295
296 #
297 # pcucontrol
298 #
299 pcucontrol-MODULES := pcucontrol
300 pcucontrol-SPEC := pcucontrol.spec
301 ALL += pcucontrol
302
303 #
304 # monitor
305 #
306 #monitor-MODULES := monitor
307 #monitor-SPEC := Monitor.spec
308 #monitor-STOCK-DEVEL-RPMS += net-snmp net-snmp-devel
309 #ALL += monitor
310 #IN_NODEIMAGE += monitor
311
312 #
313 # PLC RT
314 #
315 plcrt-MODULES := PLCRT
316 plcrt-SPEC := plcrt.spec
317 ALL += plcrt
318
319 # f12 has 0.9-1 already
320 ifeq "$(DISTRONAME)" "$(filter $(DISTRONAME),f8 centos5)"
321 #
322 # pyopenssl
323 #
324 pyopenssl-MODULES := pyopenssl
325 pyopenssl-SPEC := pyOpenSSL.spec
326 pyopenssl-BUILD-FROM-SRPM := yes
327 ALL += pyopenssl
328 endif
329
330 #
331 # pyaspects
332 #
333 pyaspects-MODULES := pyaspects
334 pyaspects-SPEC := pyaspects.spec
335 pyaspects-BUILD-FROM-SRPM := yes
336 ALL += pyaspects
337
338 #
339 # nodeconfig
340 #
341 nodeconfig-MODULES := nodeconfig
342 nodeconfig-SPEC := nodeconfig.spec
343 ALL += nodeconfig
344 IN_MYPLC += nodeconfig
345
346 #
347 # bootmanager
348 #
349 bootmanager-MODULES := bootmanager
350 bootmanager-SPEC := bootmanager.spec
351 ALL += bootmanager
352 IN_MYPLC += bootmanager
353
354 #
355 # pypcilib : used in bootcd
356
357 pypcilib-MODULES := pypcilib
358 pypcilib-SPEC := pypcilib.spec
359 ALL += pypcilib
360 IN_BOOTCD += pypcilib
361
362 #
363 # pyplnet
364 #
365 pyplnet-MODULES := pyplnet
366 pyplnet-SPEC := pyplnet.spec
367 ALL += pyplnet
368 IN_NODEIMAGE += pyplnet
369 IN_MYPLC += pyplnet
370 IN_BOOTCD += pyplnet
371
372 #
373 # for OMF resource controller as a gem : rvm-ruby has right version of ruby and related gem stuff
374 #
375 ifneq "$(DISTRONAME)" "$(filter $(DISTRONAME),f18 f20)"
376 rvm-ruby-MODULES := rvm-ruby
377 rvm-ruby-SPEC := rpm/rvm-ruby.spec
378 rvm-ruby-STOCK-DEVEL-RPMS := chrpath libyaml-devel libffi-devel libxslt-devel
379 # Since Oct 22. 2013, f18 has a new release of openssl that ruby is not too happy to build against
380 # turning this off for now, Christoph Dwertmann to monitor the status of this bug/incompatibility upstream
381 ALL += rvm-ruby
382 endif
383
384 #
385 # OML measurement library
386 #
387 oml-MODULES := oml
388 oml-STOCK-DEVEL-RPMS += sqlite-devel 
389 oml-SPEC := liboml.spec
390 ALL += oml
391
392 #
393 # bootcd
394 #
395 bootcd-MODULES := bootcd build
396 bootcd-SPEC := bootcd.spec
397 bootcd-DEPEND-PACKAGES := $(IN_BOOTCD)
398 bootcd-DEPEND-FILES := RPMS/yumgroups.xml
399 bootcd-RPMDATE := yes
400 ALL += bootcd
401 IN_MYPLC += bootcd
402
403 #
404 # images for slices
405 #
406 sliceimage-MODULES := sliceimage build
407 sliceimage-SPEC := sliceimage.spec
408 sliceimage-DEPEND-PACKAGES := $(IN_SLICEIMAGE)
409 sliceimage-DEPEND-FILES := RPMS/yumgroups.xml
410 sliceimage-RPMDATE := yes
411 ALL += sliceimage
412 IN_NODEIMAGE += sliceimage
413
414 #
415 # lxc-specific sliceimage initialization
416
417 lxc-sliceimage-MODULES  := sliceimage
418 lxc-sliceimage-SPEC     := lxc-sliceimage.spec
419 lxc-sliceimage-RPMDATE  := yes
420 ALL                     += lxc-sliceimage
421 IN_NODEIMAGE            += lxc-sliceimage
422
423 #
424 # nodeimage
425 #
426 nodeimage-MODULES := nodeimage build
427 nodeimage-SPEC := nodeimage.spec
428 nodeimage-DEPEND-PACKAGES := $(IN_NODEIMAGE)
429 nodeimage-DEPEND-FILES := RPMS/yumgroups.xml
430 nodeimage-RPMDATE := yes
431 ALL += nodeimage
432 IN_MYPLC += nodeimage
433
434 #
435 # noderepo
436 #
437 # all rpms resulting from packages marked as being in nodeimage and sliceimage
438 NODEREPO_RPMS = $(foreach package,$(IN_NODEIMAGE) $(IN_NODEREPO) $(IN_SLICEIMAGE),$($(package).rpms))
439 # replace space with +++ (specvars cannot deal with spaces)
440 SPACE=$(subst x, ,x)
441 NODEREPO_RPMS_3PLUS = $(subst $(SPACE),+++,$(NODEREPO_RPMS))
442
443 noderepo-MODULES := nodeimage
444 noderepo-SPEC := noderepo.spec
445 # package requires all embedded packages
446 noderepo-DEPEND-PACKAGES := $(IN_NODEIMAGE) $(IN_NODEREPO) $(IN_SLICEIMAGE)
447 noderepo-DEPEND-FILES := RPMS/yumgroups.xml
448 #export rpm list to the specfile
449 noderepo-SPECVARS = node_rpms_plus=$(NODEREPO_RPMS_3PLUS)
450 noderepo-RPMDATE := yes
451 ALL += noderepo
452 IN_MYPLC += noderepo
453
454 #
455 # slicerepo
456 #
457 # all rpms resulting from packages marked as being in vserver
458 SLICEREPO_RPMS = $(foreach package,$(IN_SLICEIMAGE),$($(package).rpms))
459 # replace space with +++ (specvars cannot deal with spaces)
460 SPACE=$(subst x, ,x)
461 SLICEREPO_RPMS_3PLUS = $(subst $(SPACE),+++,$(SLICEREPO_RPMS))
462
463 slicerepo-MODULES := nodeimage
464 slicerepo-SPEC := slicerepo.spec
465 # package requires all embedded packages
466 slicerepo-DEPEND-PACKAGES := $(IN_SLICEIMAGE)
467 slicerepo-DEPEND-FILES := RPMS/yumgroups.xml
468 #export rpm list to the specfile
469 slicerepo-SPECVARS = slice_rpms_plus=$(SLICEREPO_RPMS_3PLUS)
470 slicerepo-RPMDATE := yes
471 ALL += slicerepo
472
473 #
474 # MyPLC : lightweight packaging, dependencies are yum-installed in a vserver
475 #
476 myplc-MODULES := myplc
477 myplc-SPEC := myplc.spec
478 myplc-DEPEND-FILES := myplc-release RPMS/yumgroups.xml
479 ALL += myplc
480
481 # myplc-docs only contains docs for PLCAPI and NMAPI, but
482 # we still need to pull MyPLC, as it is where the specfile lies, 
483 # together with the utility script docbook2drupal.sh
484 myplc-docs-MODULES := myplc plcapi nodemanager monitor
485 myplc-docs-SPEC := myplc-docs.spec
486 ALL += myplc-docs
487
488 # using some other name than myplc-release, as this is a make target already
489 release-MODULES := myplc
490 release-SPEC := myplc-release.spec
491 release-RPMDATE := yes
492 ALL += release
493
494 ##############################
495 # sfa requires python-2.7
496 build_sfa=true
497 ifeq "$(DISTRONAME)" "$(filter $(DISTRONAME),f8 f12 centos5)"
498 build_sfa=false
499 endif
500
501 ifeq "$(build_sfa)" "true"
502 #
503 # sfa - Slice Facility Architecture
504 #
505 sfa-MODULES := sfa
506 sfa-SPEC := sfa.spec
507 ALL += sfa
508
509 #sface-MODULES := sface
510 #sface-SPEC := sface.spec
511 #ALL += sface
512 endif
513
514 ##############################
515 # don't build these by default, we have separate builds for that
516 myslice-MODULES := myslice
517 myslice-SPEC := myslice.spec
518 myslice-STOCK-DEVEL-RPMS := python-django
519 myslice-STOCK-DEVEL-DEBS := python-django python-django-south
520 #ALL += myslice
521
522 manifold-MODULES := manifold
523 manifold-SPEC := manifold.spec
524 #ALL += manifold