- remove deprecated resman package from build
[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$
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 #
35 # kernel
36 #
37
38 kernel-MODULE := linux-2.6
39 kernel-SPEC := linux-2.6/scripts/kernel-2.6-planetlab.spec
40 ALL += kernel
41
42 #
43 # vnet
44 #
45
46 vnet-MODULE := vnet
47 vnet-SPEC := vnet/vnet.spec
48 ALL += vnet
49
50 # Build kernel first so we can bootstrap off of its build
51 vnet: kernel
52
53 #
54 # util-vserver
55 #
56
57 util-vserver-MODULE := util-vserver
58 util-vserver-SPEC := util-vserver/util-vserver.spec
59 ALL += util-vserver
60
61 #
62 # lkcdutils
63 #
64
65 lkcdutils-MODULE := lkcdutils
66 lkcdutils-SPEC := lkcdutils/spec/lkcdutils.spec
67 ALL += lkcdutils
68
69 # Build kernel first so we can bootstrap off of its build
70 lkcdutils: kernel
71
72 #
73 # yum
74 #
75
76 yum-MODULE := yum
77 yum-SPEC := yum/yum.spec
78 ALL += yum
79
80 #
81 # ksymoops
82 #
83
84 ksymoops-MODULE := ksymoops
85 ksymoops-SPEC := ksymoops/ksymoops.spec
86 ALL += ksymoops
87
88 #
89 # PlanetLabAccounts
90 #
91
92 PlanetLabAccounts-MODULE := PlanetLabAccounts
93 PlanetLabAccounts-SPEC := PlanetLabAccounts/PlanetLabAccounts.spec
94 ALL += PlanetLabAccounts
95
96 #
97 # NodeUpdate
98 #
99
100 NodeUpdate-MODULE := NodeUpdate
101 NodeUpdate-SPEC := NodeUpdate/NodeUpdate.spec
102 ALL += NodeUpdate
103
104 #
105 # PlanetLabConf
106 #
107
108 PlanetLabConf-MODULE := PlanetLabConf
109 PlanetLabConf-SPEC := PlanetLabConf/PlanetLabConf.spec
110 ALL += PlanetLabConf
111
112 #
113 # ipod
114 #
115
116 ipod-MODULE := ipod
117 ipod-SPEC := ipod/ipod.spec
118 ALL += ipod
119
120 #
121 # sudo
122 #
123
124 sudo-MODULE := sudo
125 sudo-SPEC := sudo/planetlab_sudo.spec
126 ALL += sudo
127
128 #
129 # pycurl
130 #
131
132 pycurl-MODULE := pycurl
133 pycurl-SPEC := pycurl/pycurl.spec
134 ALL += pycurl
135
136 #
137 # BootServerRequest
138 #
139
140 BootServerRequest-MODULE := BootServerRequest
141 BootServerRequest-SPEC := BootServerRequest/PLBootServerRequest.spec
142 ALL += BootServerRequest
143
144 #
145 # PlanetLabID
146 #
147
148 PlanetLabID-MODULE := PlanetLabID
149 PlanetLabID-SPEC := PlanetLabID/PlanetLabID.spec
150 ALL += PlanetLabID
151
152 #
153 # Node Manager
154 #
155
156 sidewinder-MODULE := sidewinder
157 sidewinder-SPEC := sidewinder/sidewinder.spec
158 ALL += sidewinder
159
160 #
161 # pl_sshd
162 #
163
164 pl_sshd-MODULE := pl_sshd
165 pl_sshd-SPEC := pl_sshd/pl_sshd.spec
166 ALL += pl_sshd
167
168 #
169 # libhttpd++: 
170 #
171
172 libhttpd++-MODULE := libhttpd++
173 libhttpd++-SPEC := libhttpd++/libhttpd++.spec
174 ALL += libhttpd++
175
176 #
177 # Proper: Privileged Operations Service
178 #
179
180 proper-MODULE := proper
181 proper-SPEC := proper/proper.spec
182 ALL += proper
183
184 proper: libhttpd++
185
186 #
187 # ulogd
188 #
189
190 ulogd-MODULE := ulogd
191 ulogd-SPEC := ulogd/ulogd.spec
192 ALL += ulogd
193
194 ulogd: kernel proper
195
196 #
197 # netflow
198 #
199
200 netflow-MODULE := netflow
201 netflow-SPEC := netflow/netflow.spec
202 ALL += netflow
203
204 #
205 # PlanetLab Mom: Cleans up your mess
206 #
207
208 pl_mom-MODULE := pl_mom
209 pl_mom-SPEC := pl_mom/pl_mom.spec
210 ALL += pl_mom
211
212 #
213 # iptables
214 #
215
216 iptables-MODULE := iptables
217 iptables-SPEC := iptables/iptables.spec
218 ALL += iptables
219
220 iptables: kernel
221
222 #
223 # iproute
224 #
225
226 iproute-MODULE := iproute2
227 iproute-SPEC := iproute2/iproute.spec
228 ALL += iproute
229
230 #
231 # kexec-tools
232 #
233
234 kexec-tools-MODULE := kexec-tools
235 kexec-tools-SPEC := kexec-tools/kexec-tools.spec
236 ALL += kexec-tools
237
238 #
239 # dhcp
240 #
241
242 dhcp-MODULE := dhcp
243 dhcp-SPEC := dhcp/dhcp.spec
244 ALL += dhcp
245
246 #
247 # util-python
248 #
249
250 util-python-MODULE := util-python
251 util-python-SPEC := util-python/util-python.spec
252 ALL += util-python
253
254 # proper and util-vserver both use scripts in util-python for building
255 proper: util-python
256 util-vserver: util-python
257
258 #
259 # plcapilib
260 #
261
262 plcapilib-MODULE := plcmdline
263 plcapilib-SPEC := plcmdline/plcapilib.spec
264 ALL += plcapilib
265
266 #
267 # vserver-reference
268 #
269
270 vserver-reference-MODULE := vserver-reference
271 vserver-reference-SPEC := vserver-reference/vserver-reference.spec
272 # Package must be built as root
273 vserver-reference-RPMBUILD := sudo rpmbuild
274 ALL += vserver-reference
275
276 # vserver-reference may require current packages
277 vserver-reference: $(filter-out vserver-reference,$(ALL))
278
279 # ...and the yum manifest
280 vserver-reference: RPMS/yumgroups.xml
281
282 #
283 # bootmanager
284 #
285
286 bootmanager-MODULE := bootmanager
287 bootmanager-SPEC := bootmanager/bootmanager.spec
288 bootmanager-RPMBUILD := sudo rpmbuild
289 ALL += bootmanager
290
291 # bootmanager requires current packages
292 bootmanager: $(filter-out bootmanager,$(ALL))
293
294 # ...and the yum manifest
295 bootmanager: RPMS/yumgroups.xml
296
297 #
298 # bootcd
299 #
300
301 bootcd-MODULE := bootcd_v3
302 bootcd-SPEC := bootcd_v3/bootcd.spec
303 bootcd-RPMBUILD := sudo rpmbuild
304 ALL += bootcd
305
306 # bootcd requires current packages
307 bootcd: $(filter-out bootcd,$(ALL))
308
309 # ...and the yum manifest
310 bootcd: RPMS/yumgroups.xml
311
312 #
313 # MyPLC
314 #
315
316 myplc-MODULE := myplc build pl_db plc_api plc_www plc/scripts
317 myplc-SPEC := myplc/myplc.spec
318 # Package must be built as root
319 myplc-RPMBUILD := sudo rpmbuild
320 ALL += myplc
321
322 # MyPLC may require current packages
323 myplc: $(filter-out myplc,$(ALL))
324
325 # ...and the yum manifest
326 myplc: RPMS/yumgroups.xml
327
328 #
329 # Installation rules
330
331
332 # Upload packages to boot server
333 SERVER := build@boot.planet-lab.org
334 ARCHIVE := /var/www/html/install-rpms/archive
335
336 # Put nightly alpha builds in a subdirectory
337 ifeq ($(TAG),HEAD)
338 ARCHIVE := $(ARCHIVE)/planetlab-alpha
339 REPOS := /var/www/html/install-rpms/planetlab-alpha
340 endif
341
342 RPMS/yumgroups.xml:
343         install -D -m 644 groups/v3_yumgroups.xml RPMS/yumgroups.xml
344
345 install:
346 ifeq ($(BASE),)
347         @echo make install is only meant to be called from ./build.sh
348 else
349 ifneq ($(BUILDS),)
350         # Remove old runs
351         echo "cd $(ARCHIVE) && ls -t | sed -n $(BUILDS)~1p | xargs rm -rf" | ssh $(SERVER) /bin/bash -s
352 endif
353         # Create package manifest
354         sh ./packages.sh -b "http://build.planet-lab.org/$(subst $(HOME)/,,$(shell pwd))/SRPMS" SRPMS > SRPMS/packages.xml
355         # Populate repository
356         ssh $(SERVER) mkdir -p $(ARCHIVE)/$(BASE)/RPMS $(ARCHIVE)/$(BASE)/SRPMS
357         rsync --delete --links --perms --times --group --compress --rsh=ssh \
358             $(sort $(subst -debuginfo,,$(wildcard RPMS/yumgroups.xml RPMS/*/*))) $(SERVER):$(ARCHIVE)/$(BASE)/RPMS/
359         ssh $(SERVER) yum-arch $(ARCHIVE)/$(BASE)/RPMS >/dev/null
360         ssh $(SERVER) createrepo $(ARCHIVE)/$(BASE)/RPMS >/dev/null
361         rsync --delete --links --perms --times --group --compress --rsh=ssh \
362             $(wildcard SRPMS/*) $(SERVER):$(ARCHIVE)/$(BASE)/SRPMS/
363         ssh $(SERVER) yum-arch $(ARCHIVE)/$(BASE)/SRPMS >/dev/null
364         ssh $(SERVER) createrepo $(ARCHIVE)/$(BASE)/SRPMS >/dev/null
365 ifeq ($(TAG),HEAD)
366         # Update nightly alpha symlink if it does not exist or is broken, or it is Monday
367         if ! ssh $(SERVER) "[ -e $(REPOS) ] && exit 0 || exit 1" || [ "$(shell date +%A)" = "Monday" ] ; then \
368             ssh $(SERVER) ln -nsf $(ARCHIVE)/$(BASE)/RPMS/ $(REPOS) ; \
369         fi
370 endif
371 endif
372
373 .PHONY: install