add libnl
[build.git] / planetlab.mk
1 #
2 # PlanetLab standard components list
3 #
4 # Mark Huang <mlhuang@cs.princeton.edu>
5 # Copyright (C) 2003-2006 The Trustees of Princeton University
6 #
7 # $Id: planetlab.mk,v 1.61 2007/07/24 15:20:36 mef Exp $
8 #
9
10 #
11 # Required:
12 #
13 # CVSROOT or package-CVSROOT: CVSROOT to use
14 # TAG or package-TAG: CVS tag to use
15 # package-MODULE: CVS module name to use
16 # package-SPEC: RPM spec file template
17 #
18 # Optional:
19 #
20 # package-RPMFLAGS: Miscellaneous RPM flags
21 # package-RPMBUILD: If not rpmbuild
22 # package-CVS_RSH: If not ssh
23 #
24 # Add to ALL if you want the package built as part of the default set.
25 #
26
27 #
28 # Default values
29 #
30
31 CVSROOT := :pserver:anon@cvs.planet-lab.org:/cvs
32 TAG := HEAD
33
34 # Check if a tag has been checked out
35 ifneq ($(wildcard CVS/Root),)
36 # Check if we are able to access CVS
37 CVSTAG := $(shell cvs status planetlab.mk 2>/dev/null | sed -ne 's/[[:space:]]*Sticky Tag:[[:space:]]*\([^[:space:]]*\).*/\1/p')
38 ifneq ($(CVSTAG),)
39 CVSROOT := $(shell cat CVS/Root)
40 ifeq ($(CVSTAG),(none))
41 TAG := HEAD
42 else
43 TAG := $(CVSTAG)
44 endif
45 endif
46 endif
47
48 #
49 # kernel
50 #
51
52 # Figure out whether we are building on i386 or x86_64 host
53 HOSTARCH := $(shell uname -i)
54
55 kernel-$(HOSTARCH)-MODULE := linux-2.6
56 kernel-$(HOSTARCH)-SPEC := linux-2.6/scripts/kernel-2.6-planetlab.spec
57 ifeq ($(HOSTARCH),i386)
58 kernel-$(HOSTARCH)-RPMFLAGS:= --target i686
59 else
60 kernel-$(HOSTARCH)-RPMFLAGS:= --target $(HOSTARCH)
61 endif
62
63 ALL += kernel-$(HOSTARCH)
64
65 kernel-clean: kernel-$(HOSTARCH)-clean
66 kernel: kernel-$(HOSTARCH)
67
68 #
69 # madwifi
70 #
71
72 madwifi-ng-MODULE := madwifi-ng
73 madwifi-ng-SPEC := madwifi-ng/madwifi.spec
74 #ALL += madwifi-ng
75
76 # Build kernel first so we can bootstrap off of its build
77 madwifi-ng: kernel
78
79 #
80 # ivtv 
81 #
82
83 ivtv-MODULE := ivtv
84 ivtv-SPEC := ivtv/ivtv.spec
85 #ALL += ivtv
86
87 #
88 # util-vserver
89 #
90
91 util-vserver-MODULE := util-vserver
92 util-vserver-SPEC := util-vserver/util-vserver.spec
93 util-vserver-RPMFLAGS:= --without dietlibc
94 ALL += util-vserver
95
96 #
97 # PlanetLabAccounts
98 #
99
100 PlanetLabAccounts-MODULE := PlanetLabAccounts
101 PlanetLabAccounts-SPEC := PlanetLabAccounts/PlanetLabAccounts.spec
102 ALL += PlanetLabAccounts
103
104 #
105 # NodeUpdate
106 #
107
108 NodeUpdate-MODULE := NodeUpdate
109 NodeUpdate-SPEC := NodeUpdate/NodeUpdate.spec
110 ALL += NodeUpdate
111
112 #
113 # PlanetLabConf
114 #
115
116 PlanetLabConf-MODULE := PlanetLabConf
117 PlanetLabConf-SPEC := PlanetLabConf/PlanetLabConf.spec
118 ALL += PlanetLabConf
119
120 #
121 # ipod
122 #
123
124 ipod-MODULE := ipod
125 ipod-SPEC := ipod/ipod.spec
126 ALL += ipod
127
128 #
129 # sudo
130 #
131
132 sudo-MODULE := sudo
133 sudo-SPEC := sudo/planetlab_sudo.spec
134 ALL += sudo
135
136 #
137 # pycurl
138 #
139
140 pycurl-MODULE := pycurl
141 pycurl-SPEC := pycurl/pycurl.spec
142 ALL += pycurl
143
144 #
145 # BootServerRequest
146 #
147
148 BootServerRequest-MODULE := BootServerRequest
149 BootServerRequest-SPEC := BootServerRequest/PLBootServerRequest.spec
150 ALL += BootServerRequest
151
152 #
153 # PlanetLabID
154 #
155
156 PlanetLabID-MODULE := PlanetLabID
157 PlanetLabID-SPEC := PlanetLabID/PlanetLabID.spec
158 ALL += PlanetLabID
159
160 #
161 # Node Manager
162 #
163
164 NodeManager-MODULE := NodeManager
165 NodeManager-SPEC := NodeManager/NodeManager.spec
166 ALL += NodeManager
167
168 #
169 # pl_sshd
170 #
171
172 pl_sshd-MODULE := pl_sshd
173 pl_sshd-SPEC := pl_sshd/pl_sshd.spec
174 ALL += pl_sshd
175
176 #
177 # libhttpd++: 
178 #
179
180 libhttpd++-MODULE := libhttpd++
181 libhttpd++-SPEC := libhttpd++/libhttpd++.spec
182 ALL += libhttpd++
183
184 #
185 # Proper: Privileged Operations Service
186 #
187
188 proper-MODULE := proper
189 proper-SPEC := proper/proper.spec
190 ALL += proper
191
192 proper: libhttpd++
193
194 #
195 # CoDemux: Port 80 demux
196 #
197
198 codemux-MODULE := codemux
199 codemux-SPEC   := codemux/codemux.spec
200 #ALL += codemux
201
202 #
203 # MySQL
204 #
205
206 mysql-MODULE := mysql
207 mysql-SPEC := mysql/mysql.spec
208 ALL += mysql
209
210 #
211 # ulogd
212 #
213
214 ulogd-MODULE := ulogd
215 ulogd-SPEC := ulogd/ulogd.spec
216 ALL += ulogd
217
218 ulogd: kernel proper mysql
219
220 #
221 # netflow
222 #
223
224 netflow-MODULE := netflow
225 netflow-SPEC := netflow/netflow.spec
226 ALL += netflow
227
228 netflow: mysql
229
230 #
231 # PlanetLab Mom: Cleans up your mess
232 #
233
234 pl_mom-MODULE := pl_mom
235 pl_mom-SPEC := pl_mom/pl_mom.spec
236 ALL += pl_mom
237
238 #
239 # iptables
240 #
241
242 iptables-MODULE := iptables
243 iptables-SPEC := iptables/iptables.spec
244 ALL += iptables
245
246 iptables: kernel
247
248 #
249 # iproute
250 #
251
252 iproute-MODULE := iproute2
253 iproute-SPEC := iproute2/iproute.spec
254 ALL += iproute
255
256 #
257 # kexec-tools
258 #
259
260 kexec-tools-MODULE := kexec-tools
261 kexec-tools-SPEC := kexec-tools/kexec-tools.spec
262 ALL += kexec-tools
263
264 #
265 # util-python
266 #
267
268 util-python-MODULE := util-python
269 util-python-SPEC := util-python/util-python.spec
270 ALL += util-python
271
272 # proper and util-vserver both use scripts in util-python for building
273 proper: util-python
274 util-vserver: util-python
275 PlanetLabAuth: util-python
276
277 #
278 # PLCAPI
279 #
280
281 PLCAPI-MODULE := new_plc_api
282 PLCAPI-SPEC := new_plc_api/PLCAPI.spec
283 ALL += PLCAPI
284
285 #
286 # vserver-reference
287 #
288
289 vserver-reference-MODULE := vserver-reference build
290 vserver-reference-SPEC := vserver-reference/vserver-reference.spec
291 # Package must be built as root
292 vserver-reference-RPMBUILD := sudo rpmbuild
293 ALL += vserver-reference
294
295 # vserver-reference may require current packages
296 vserver-reference: $(filter-out vserver-reference,$(ALL))
297
298 #
299 # bootmanager
300 #
301
302 bootmanager-MODULE := bootmanager build
303 bootmanager-SPEC := bootmanager/bootmanager.spec
304 bootmanager-RPMBUILD := sudo rpmbuild
305 ALL += bootmanager
306
307 # bootmanager requires current packages
308 bootmanager: $(filter-out bootmanager,$(ALL))
309
310 # ...and the yum manifest
311 bootmanager: RPMS/yumgroups.xml
312
313 #
314 # bootcd
315 #
316
317 bootcd-MODULE := bootcd build bootmanager
318 bootcd-SPEC := bootcd/bootcd.spec
319 bootcd-RPMBUILD := sudo rpmbuild
320 ALL += bootcd
321
322 # bootcd requires current packages
323 bootcd: $(filter-out bootcd,$(ALL))
324
325 #
326 # MyPLC
327 #
328
329 myplc-MODULE := build myplc new_plc_www plc/scripts
330 myplc-SPEC := myplc/myplc.spec
331 # Package must be built as root
332 myplc-RPMBUILD := sudo rpmbuild
333 ALL += myplc
334
335 # MyPLC may require current packages
336 myplc: $(filter-out myplc,$(ALL))
337
338 # ...and the yum manifest
339 myplc: RPMS/yumgroups.xml
340
341 #
342 # MyPLC development environment
343 #
344
345 myplc-devel-MODULE := build myplc
346 myplc-devel-SPEC := myplc/myplc-devel.spec
347 # Package must be built as root
348 myplc-devel-RPMBUILD := sudo rpmbuild
349 ALL += myplc-devel
350
351 #
352 # libnl
353 #
354
355 libnl-MODULE := libnl
356 libnl-SPEC := libnl/libnl.spec
357 ALL += libnl
358
359 #
360 # Installation rules
361
362
363 # Upload packages to boot server
364 SERVERA := build@boot1.planet-lab.org
365 SERVERB := build@boot2.planet-lab.org
366 ARCHIVE := /plc/data/var/www/html/install-rpms/archive
367
368 # Put nightly alpha builds in a subdirectory
369 ifeq ($(TAG),HEAD)
370 ARCHIVE := $(ARCHIVE)/planetlab-alpha
371 REPOS := /plc/data/var/www/html/install-rpms/planetlab-alpha
372 endif
373
374 RPMS/yumgroups.xml:
375         install -D -m 644 groups/v4_yumgroups.xml RPMS/yumgroups.xml
376
377 install:
378 ifeq ($(BASE),)
379         @echo make install is only meant to be called from ./build.sh
380 else
381 ifneq ($(wildcard /etc/planetlab/secring.gpg),)
382         # Sign all RPMS. setsid detaches rpm from the terminal,
383         # allowing the (hopefully blank) GPG password to be entered
384         # from stdin instead of /dev/tty. Obviously, the build server
385         # should be secure.
386         echo | setsid rpm \
387         --define "_signature gpg" \
388         --define "_gpg_path /etc/planetlab" \
389         --define "_gpg_name PlanetLab <info@planet-lab.org>" \
390         --resign RPMS/*/*.rpm
391 endif
392 ifneq ($(BUILDS),)
393         # Remove old runs
394         echo "cd $(ARCHIVE) && ls -t | sed -n $(BUILDS)~1p | xargs rm -rf" | ssh $(SERVERA) /bin/bash -s
395         echo "cd $(ARCHIVE) && ls -t | sed -n $(BUILDS)~1p | xargs rm -rf" | ssh $(SERVERB) /bin/bash -s
396 endif
397         # Create package manifest
398         sh ./packages.sh -b "http://build.planet-lab.org/$(subst $(HOME)/,,$(shell pwd))/RPMS" RPMS > packages.xml
399         # Update yum metadata
400         yum-arch RPMS >/dev/null
401         createrepo -g yumgroups.xml RPMS >/dev/null
402         # Populate repository
403         rsync \
404         --exclude '*-debuginfo-*' \
405         --recursive --links --perms --times --group --compress --rsh=ssh \
406         RPMS/ $(SERVERA):$(ARCHIVE)/$(BASE)
407         rsync \
408         --exclude '*-debuginfo-*' \
409         --recursive --links --perms --times --group --compress --rsh=ssh \
410         RPMS/ $(SERVERB):$(ARCHIVE)/$(BASE)
411 ifeq ($(TAG),HEAD)
412         # Update nightly alpha symlink if it does not exist or is broken, or it is Monday
413         if ! ssh $(SERVERA) "[ -e $(REPOS) ] && exit 0 || exit 1" || [ "$(shell date +%A)" = "Monday" ] ; then \
414             ssh $(SERVERA) ln -nsf $(ARCHIVE)/$(BASE) $(REPOS) ; \
415         fi
416         # Update nightly alpha symlink if it does not exist or is broken, or it is Monday
417         if ! ssh $(SERVERB) "[ -e $(REPOS) ] && exit 0 || exit 1" || [ "$(shell date +%A)" = "Monday" ] ; then \
418             ssh $(SERVERB) ln -nsf $(ARCHIVE)/$(BASE) $(REPOS) ; \
419         fi
420
421 endif
422 endif
423
424 .PHONY: install