1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
|
# This file modified from Zope3/Makefile
# Licensed under the ZPL, (c) Zope Corporation and contributors.
PYTHON=python
WD:=$(shell pwd)
PY=$(WD)/bin/py
PYTHONPATH:=$(WD)/lib:$(WD)/lib/mailman:${PYTHONPATH}
BUILDOUT_CFG=buildout.cfg
VERBOSITY=-vv
TESTFLAGS=-p $(VERBOSITY)
TESTOPTS=
SHHH=utilities/shhh.py
HERE:=$(shell pwd)
LPCONFIG=development
JSFLAGS=
ICING=lib/canonical/launchpad/icing
LP_BUILT_JS_ROOT=${ICING}/build
LAZR_BUILT_JS_ROOT=lazr-js/build
MINS_TO_SHUTDOWN=15
CODEHOSTING_ROOT=/var/tmp/bazaar.launchpad.dev
BZR_VERSION_INFO = bzr-version-info.py
APIDOC_DIR = lib/canonical/launchpad/apidoc
WADL_TEMPLATE = $(APIDOC_DIR).tmp/wadl-$(LPCONFIG)-%(version)s.xml
API_INDEX = $(APIDOC_DIR)/index.html
# Do not add bin/buildout to this list.
# It is impossible to get buildout to tell us all the files it would
# build, since each egg's setup.py doesn't tell us that information.
BUILDOUT_BIN = \
$(PY) bin/apiindex bin/combine-css bin/fl-build-report \
bin/fl-credential-ctl bin/fl-install-demo bin/fl-monitor-ctl \
bin/fl-record bin/fl-run-bench bin/fl-run-test bin/googletestservice \
bin/i18ncompile bin/i18nextract bin/i18nmergeall bin/i18nstats \
bin/harness bin/iharness bin/ipy bin/jsbuild bin/jslint bin/jssize \
bin/jstest bin/killservice bin/kill-test-services bin/lint.sh \
bin/lp-windmill bin/retest bin/run bin/sprite-util \
bin/start_librarian bin/stxdocs bin/tags bin/test bin/tracereport \
bin/twistd bin/update-download-cache bin/windmill
# DO NOT ALTER : this should just build by default
default: inplace
schema: build clean_codehosting
$(MAKE) -C database/schema
$(RM) -r /var/tmp/fatsam
newsampledata:
$(MAKE) -C database/schema newsampledata
hosted_branches: $(PY)
$(PY) ./utilities/make-dummy-hosted-branches
$(API_INDEX): $(BZR_VERSION_INFO)
mkdir -p $(APIDOC_DIR).tmp
LPCONFIG=$(LPCONFIG) $(PY) ./utilities/create-lp-wadl-and-apidoc.py "$(WADL_TEMPLATE)"
mv $(APIDOC_DIR).tmp $(APIDOC_DIR)
apidoc: compile $(API_INDEX)
# Run by PQM.
check_merge: $(PY)
[ `PYTHONPATH= bzr status -S database/schema/ | \
grep -v "\(^P\|pending\|security.cfg\|Makefile\|unautovacuumable\|_pythonpath.py\)" | wc -l` -eq 0 ]
${PY} lib/canonical/tests/test_no_conflict_marker.py
check_db_merge: $(PY)
${PY} lib/canonical/tests/test_no_conflict_marker.py
check_config: build
bin/test -m canonical.config.tests -vvt test_config
check_schema: build
${PY} utilities/check-db-revision.py
# Clean before running the test suite, since the build might fail depending
# what source changes happened. (e.g. apidoc depends on interfaces)
check: clean build
# Run all tests. test_on_merge.py takes care of setting up the
# database.
${PY} -t ./test_on_merge.py $(VERBOSITY) $(TESTOPTS)
jscheck: build
# Run all JavaScript integration tests. The test runner takes care of
# setting up the test environment.
@echo
@echo "Running the JavaScript integration test suite"
@echo
bin/test $(VERBOSITY) $(TESTOPTS) --layer=WindmillLayer
jscheck_functest: build
# Run the old functest Windmill integration tests. The test runner
# takes care of setting up the test environment.
@echo
@echo "Running Windmill funtest integration test suite"
@echo
bin/jstest
check_mailman: build
# Run all tests, including the Mailman integration
# tests. test_on_merge.py takes care of setting up the database.
${PY} -t ./test_on_merge.py $(VERBOSITY) $(TESTOPTS) \
--layer=MailmanLayer
lint: ${PY}
@bash ./bin/lint.sh
lint-verbose: ${PY}
@bash ./bin/lint.sh -v
xxxreport: $(PY)
${PY} -t ./utilities/xxxreport.py -f csv -o xxx-report.csv ./
check-configs: $(PY)
${PY} utilities/check-configs.py
pagetests: build
env PYTHONPATH=$(PYTHONPATH) bin/test test_pages
inplace: build
build: compile apidoc jsbuild css_combine
css_combine: sprite_css bin/combine-css
${SHHH} bin/combine-css
sprite_css: ${LP_BUILT_JS_ROOT}/style-3-0.css
${LP_BUILT_JS_ROOT}/style-3-0.css: bin/sprite-util ${ICING}/style-3-0.css.in ${ICING}/icon-sprites.positioning
${SHHH} bin/sprite-util create-css
sprite_image:
${SHHH} bin/sprite-util create-image
jsbuild_lazr: bin/jsbuild
# We absolutely do not want to include the lazr.testing module and its
# jsTestDriver test harness modifications in the lazr.js and launchpad.js
# roll-up files. They fiddle with built-in functions! See Bug 482340.
${SHHH} bin/jsbuild $(JSFLAGS) -b $(LAZR_BUILT_JS_ROOT) -x testing/ -c $(LAZR_BUILT_JS_ROOT)/yui
jsbuild: jsbuild_lazr bin/jsbuild bin/jssize
${SHHH} bin/jsbuild \
$(JSFLAGS) \
-n launchpad \
-s lib/canonical/launchpad/javascript \
-b $(LP_BUILT_JS_ROOT) \
$(shell $(HERE)/utilities/yui-deps.py) \
$(shell $(PY) $(HERE)/utilities/lp-deps.py) \
lib/canonical/launchpad/icing/lazr/build/lazr.js
${SHHH} bin/jssize
eggs:
# Usually this is linked via link-external-sourcecode, but in
# deployment we create this ourselves.
mkdir eggs
# LP_SOURCEDEPS_PATH should point to the sourcecode directory, but we
# want the parent directory where the download-cache and eggs directory
# are. We re-use the variable that is using for the rocketfuel-get script.
download-cache:
ifdef LP_SOURCEDEPS_PATH
utilities/link-external-sourcecode $(LP_SOURCEDEPS_PATH)/..
else
@echo "Missing ./download-cache."
@echo "Developers: please run utilities/link-external-sourcecode."
@exit 1
endif
buildonce_eggs: $(PY)
find eggs -name '*.pyc' -exec rm {} \;
# The download-cache dependency comes *before* eggs so that developers get the
# warning before the eggs directory is made. The target for the eggs directory
# is only there for deployment convenience.
bin/buildout: download-cache eggs
$(SHHH) PYTHONPATH= $(PYTHON) bootstrap.py\
--setup-source=ez_setup.py \
--download-base=download-cache/dist --eggs=eggs
# This target is used by LOSAs to prepare a build to be pushed out to
# destination machines. We only want eggs: they are the expensive bits,
# and the other bits might run into problems like bug 575037. This
# target runs buildout, and then removes everything created except for
# the eggs.
build_eggs: $(BUILDOUT_BIN) clean_buildout
# This builds bin/py and all the other bin files except bin/buildout.
# Remove the target before calling buildout to ensure that buildout
# updates the timestamp.
$(BUILDOUT_BIN): bin/buildout versions.cfg $(BUILDOUT_CFG) setup.py
$(RM) $@
$(SHHH) PYTHONPATH= ./bin/buildout \
configuration:instance_name=${LPCONFIG} -c $(BUILDOUT_CFG)
compile: $(PY) $(BZR_VERSION_INFO)
mkdir -p /var/tmp/vostok-archive
${SHHH} $(MAKE) -C sourcecode build PYTHON=${PYTHON} \
LPCONFIG=${LPCONFIG}
${SHHH} LPCONFIG=${LPCONFIG} ${PY} -t buildmailman.py
test_build: build
bin/test $(TESTFLAGS) $(TESTOPTS)
test_inplace: inplace
bin/test $(TESTFLAGS) $(TESTOPTS)
ftest_build: build
bin/test -f $(TESTFLAGS) $(TESTOPTS)
ftest_inplace: inplace
bin/test -f $(TESTFLAGS) $(TESTOPTS)
merge-proposal-jobs:
# Handle merge proposal email jobs.
$(PY) cronscripts/merge-proposal-jobs.py -v
run: check_schema inplace stop
$(RM) thread*.request
bin/run -r librarian,google-webservice,memcached -i $(LPCONFIG)
start-gdb: check_schema inplace stop support_files
$(RM) thread*.request
nohup gdb -x run.gdb --args bin/run -i $(LPCONFIG) \
-r librarian,google-webservice
> ${LPCONFIG}-nohup.out 2>&1 &
run_all: check_schema inplace stop hosted_branches
$(RM) thread*.request
bin/run -r librarian,sftp,mailman,codebrowse,google-webservice,memcached \
-i $(LPCONFIG)
run_codebrowse: build
BZR_PLUGIN_PATH=bzrplugins $(PY) scripts/start-loggerhead.py -f
start_codebrowse: build
BZR_PLUGIN_PATH=$(shell pwd)/bzrplugins $(PY) scripts/start-loggerhead.py
stop_codebrowse:
$(PY) scripts/stop-loggerhead.py
run_codehosting: check_schema inplace stop hosted_branches
$(RM) thread*.request
bin/run -r librarian,sftp,codebrowse -i $(LPCONFIG)
start_librarian: compile
bin/start_librarian
stop_librarian:
bin/killservice librarian
pull_branches: support_files
$(PY) cronscripts/supermirror-pull.py
scan_branches:
# Scan branches from the filesystem into the database.
$(PY) cronscripts/scan_branches.py
sync_branches: pull_branches scan_branches merge-proposal-jobs
$(BZR_VERSION_INFO):
scripts/update-bzr-version-info.sh
support_files: $(API_INDEX) $(BZR_VERSION_INFO)
# Intended for use on developer machines
start: inplace stop support_files initscript-start
# Run as a daemon - hack using nohup until we move back to using zdaemon
# properly. We also should really wait until services are running before
# exiting, as running 'make stop' too soon after running 'make start'
# will not work as expected. For use on production servers, where
# we know we don't need the extra steps in a full "make start"
# because of how the code is deployed/built.
initscript-start:
nohup bin/run -i $(LPCONFIG) > ${LPCONFIG}-nohup.out 2>&1 &
# Intended for use on developer machines
stop: build initscript-stop
# Kill launchpad last - other services will probably shutdown with it,
# so killing them after is a race condition. For use on production
# servers, where we know we don't need the extra steps in a full
# "make stop" because of how the code is deployed/built.
initscript-stop:
bin/killservice librarian launchpad mailman
shutdown: scheduleoutage stop
$(RM) +maintenancetime.txt
scheduleoutage:
echo Scheduling outage in ${MINS_TO_SHUTDOWN} mins
date --iso-8601=minutes -u -d +${MINS_TO_SHUTDOWN}mins > +maintenancetime.txt
echo Sleeping ${MINS_TO_SHUTDOWN} mins
sleep ${MINS_TO_SHUTDOWN}m
harness: bin/harness
bin/harness
iharness: bin/iharness
bin/iharness
rebuildfti:
@echo Rebuilding FTI indexes on launchpad_dev database
$(PY) database/schema/fti.py -d launchpad_dev --force
clean_js:
$(RM) $(LP_BUILT_JS_ROOT)/launchpad.js
$(RM) -r $(LAZR_BUILT_JS_ROOT)
clean_buildout:
$(RM) -r bin
$(RM) -r parts
$(RM) -r develop-eggs
$(RM) .installed.cfg
$(RM) -r build
$(RM) _pythonpath.py
clean: clean_js clean_buildout
$(MAKE) -C sourcecode/pygettextpo clean
# XXX gary 2009-11-16 bug 483782
# The pygettextpo Makefile should have this next line in it for its make
# clean, and then we should remove this line.
$(RM) sourcecode/pygpgme/gpgme/*.so
if test -f sourcecode/mailman/Makefile; then \
$(MAKE) -C sourcecode/mailman clean; \
fi
find . -path ./eggs -prune -false -o \
-type f \( -name '*.o' -o -name '*.so' -o -name '*.la' -o \
-name '*.lo' -o -name '*.py[co]' -o -name '*.dll' \) \
-print0 | xargs -r0 $(RM)
$(RM) thread*.request
$(RM) -r lib/mailman
$(RM) -rf lib/canonical/launchpad/icing/build/*
$(RM) -r $(CODEHOSTING_ROOT)
$(RM) -rf $(APIDOC_DIR)
$(RM) -rf $(APIDOC_DIR).tmp
$(RM) $(BZR_VERSION_INFO)
$(RM) +config-overrides.zcml
$(RM) -rf \
/var/tmp/builddmaster \
/var/tmp/bzrsync \
/var/tmp/codehosting.test \
/var/tmp/codeimport \
/var/tmp/fatsam.appserver \
/var/tmp/lperr \
/var/tmp/lperr.test \
/var/tmp/mailman \
/var/tmp/mailman-xmlrpc.test \
/var/tmp/ppa \
/var/tmp/ppa.test \
/var/tmp/zeca
# /var/tmp/launchpad_mailqueue is created read-only on ec2test
# instances.
if [ -w /var/tmp/launchpad_mailqueue ]; then $(RM) -rf /var/tmp/launchpad_mailqueue; fi
$(RM) -f lp.sfood lp-clustered.sfood lp-clustered.dot lp-clustered.svg
realclean: clean
$(RM) TAGS tags
clean_codehosting:
$(RM) -r $(CODEHOSTING_ROOT)
mkdir -p $(CODEHOSTING_ROOT)/mirrors
mkdir -p $(CODEHOSTING_ROOT)/push-branches
mkdir -p $(CODEHOSTING_ROOT)/config
mkdir -p /var/tmp/bzrsync
touch $(CODEHOSTING_ROOT)/config/launchpad-lookup.txt
zcmldocs:
mkdir -p doc/zcml/namespaces.zope.org
bin/stxdocs \
-f sourcecode/zope/src/zope/app/zcmlfiles/meta.zcml \
-o doc/zcml/namespaces.zope.org
potemplates: launchpad.pot
# Generate launchpad.pot by extracting message ids from the source
launchpad.pot:
bin/i18nextract.py
# Called by the rocketfuel-setup script. You probably don't want to run this
# on its own.
install: reload-apache
copy-certificates:
mkdir -p /etc/apache2/ssl
cp configs/development/launchpad.crt /etc/apache2/ssl/
cp configs/development/launchpad.key /etc/apache2/ssl/
copy-apache-config:
# We insert the absolute path to the branch-rewrite script
# into the Apache config as we copy the file into position.
sed -e 's,%BRANCH_REWRITE%,$(shell pwd)/scripts/branch-rewrite.py,' configs/development/local-launchpad-apache > /etc/apache2/sites-available/local-launchpad
cp configs/development/local-vostok-apache /etc/apache2/sites-available/local-vosok
touch /var/tmp/bazaar.launchpad.dev/rewrite.log
chown $(SUDO_UID):$(SUDO_GID) /var/tmp/bazaar.launchpad.dev/rewrite.log
enable-apache-launchpad: copy-apache-config copy-certificates
a2ensite local-launchpad
a2ensite local-vostok
reload-apache: enable-apache-launchpad
/etc/init.d/apache2 restart
TAGS: compile
# emacs tags
bin/tags -e
tags: compile
# vi tags
bin/tags -v
ID: compile
# idutils ID file
bin/tags -i
lp.sfood:
# Generate import dependency graph
sfood -i -u -I lib/sqlobject -I lib/schoolbell -I lib/devscripts -I lib/contrib \
-I lib/canonical/not-used lib/canonical lib/lp 2>/dev/null | grep -v contrib/ \
| grep -v sqlobject | grep -v BeautifulSoup | grep -v psycopg \
| grep -v schoolbell > lp.sfood.tmp
mv lp.sfood.tmp lp.sfood
lp-clustered.sfood: lp.sfood lp-sfood-packages
# Cluster the import dependency graph
sfood-cluster -f lp-sfood-packages < lp.sfood > lp-clustered.sfood.tmp
mv lp-clustered.sfood.tmp lp-clustered.sfood
lp-clustered.dot: lp-clustered.sfood
# Build the visual graph
sfood-graph -p < lp-clustered.sfood > lp-clustered.dot.tmp
mv lp-clustered.dot.tmp lp-clustered.dot
lp-clustered.svg: lp-clustered.dot
# Render to svg
dot -Tsvg < lp-clustered.dot > lp-clustered.svg.tmp
mv lp-clustered.svg.tmp lp-clustered.svg
PYDOCTOR = pydoctor
PYDOCTOR_OPTIONS =
pydoctor:
$(PYDOCTOR) --make-html --html-output=apidocs --add-package=lib/lp \
--add-package=lib/canonical --project-name=Launchpad \
--docformat restructuredtext --verbose-about epytext-summary \
$(PYDOCTOR_OPTIONS)
.PHONY: apidoc check tags TAGS zcmldocs realclean clean debug stop\
start run ftest_build ftest_inplace test_build test_inplace pagetests\
check check_merge \
schema default launchpad.pot check_merge_ui pull scan sync_branches\
reload-apache hosted_branches check_db_merge check_mailman check_config\
jsbuild jsbuild_lazr clean_js clean_buildout buildonce_eggs build_eggs\
sprite_css sprite_image css_combine compile check_schema pydoctor
|