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
|
# This file modified from Zope3/Makefile
# Licensed under the ZPL, (c) Zope Corporation and contributors.
PYTHON_VERSION=2.4
PYTHON=python${PYTHON_VERSION}
PYTHONPATH:=$(shell pwd)/lib:${PYTHONPATH}
TESTFLAGS=-p -v
TESTOPTS=
SHHH=${PYTHON} utilities/shhh.py
STARTSCRIPT=runlaunchpad.py
Z3LIBPATH=$(shell pwd)/sourcecode/zope/src
HERE:=$(shell pwd)
LPCONFIG=default
CONFFILE=configs/${LPCONFIG}/launchpad.conf
# DO NOT ALTER : this should just build by default
default: inplace
schema: build
$(MAKE) -C database/schema
newsampledata:
$(MAKE) -C database/schema newsampledata
check_merge: build check importdcheck
# Work around the current idiom of 'make check' getting too long
# because of hct and related tests. note that this is a short
# term solution, the long term solution will need to be
# finer grained testing anyway.
# Run all tests. test_on_merge.py takes care of setting up the
# database.
env PYTHONPATH=$(PYTHONPATH) \
${PYTHON} -t ./test_on_merge.py -vv \
--dir hct --dir sourcerer
$(MAKE) -C sourcecode check PYTHON=${PYTHON} \
PYTHON_VERSION=${PYTHON_VERSION} PYTHONPATH=$(PYTHONPATH)
importdcheck: build
env PYTHONPATH=$(PYTHONPATH) \
${PYTHON} -t ./lib/importd/test_all.py
check: build
# Run all tests. test_on_merge.py takes care of setting up the
# database..
env PYTHONPATH=$(PYTHONPATH) \
${PYTHON} -t ./test_on_merge.py -vv
lint:
@sh ./utilities/lint.sh
#lintmerge:
# @# Thank Stuart, not me!
# @baz diff -s rocketfuel@canonical.com/launchpad--devel--0 | \
# grep -v "^*" | \
# grep -v "{arch}" | \
# cut -c4- | \
# xargs sh ./utilities/lint.sh
pagetests: build
env PYTHONPATH=$(PYTHONPATH) ${PYTHON} test.py test_pages
inplace: build
build:
${SHHH} $(MAKE) -C sourcecode build PYTHON=${PYTHON} \
PYTHON_VERSION=${PYTHON_VERSION} LPCONFIG=${LPCONFIG}
runners:
echo "#!/bin/sh" > bin/runzope;
echo "exec $(PYTHON) $(STARTSCRIPT) -C $(CONFFILE)" >> bin/runzope;
chmod +x bin/runzope
echo "#!/bin/sh" > bin/zopectl;
echo "$(PYTHON) $(PWD)/src/zdaemon/zdctl.py \
-S schema.xml \
-C zdaemon.conf -d \$$*" >> bin/zopectl
chmod +x bin/zopectl
test_build: build
$(PYTHON) test.py $(TESTFLAGS) $(TESTOPTS)
test_inplace: inplace
$(PYTHON) test.py $(TESTFLAGS) $(TESTOPTS)
ftest_build: build
env PYTHONPATH=$(PYTHONPATH) \
$(PYTHON) test.py -f $(TESTFLAGS) $(TESTOPTS)
ftest_inplace: inplace
env PYTHONPATH=$(PYTHONPATH) \
$(PYTHON) test.py -f $(TESTFLAGS) $(TESTOPTS)
run: inplace stop
rm -f thread*.request
LPCONFIG=${LPCONFIG} PYTHONPATH=$(Z3LIBPATH):$(PYTHONPATH) \
$(PYTHON) -t $(STARTSCRIPT) -C $(CONFFILE)
# 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.
start: inplace stop
LPCONFIG=${LPCONFIG} PYTHONPATH=$(Z3LIBPATH):$(PYTHONPATH) \
nohup $(PYTHON) -t $(STARTSCRIPT) -C $(CONFFILE) \
> ${LPCONFIG}-nohup.out 2>&1 &
# Kill launchpad last - other services will probably shutdown with it,
# so killing them after is a race condition.
stop: build
@ LPCONFIG=${LPCONFIG} ${PYTHON} \
utilities/killservice.py librarian trebuchet \
buildsequencer launchpad
harness:
PYTHONPATH=lib python -i lib/canonical/database/harness.py
rebuildfti:
@echo Rebuilding FTI indexes on launchpad_dev database
database/schema/fti.py -d launchpad_dev --force
debug:
LPCONFIG=${LPCONFIG} PYTHONPATH=$(Z3LIBPATH):$(PYTHONPATH) \
$(PYTHON) -i -c \ "from zope.app import Application;\
app = Application('Data.fs', 'site.zcml')()"
clean:
(cd sourcecode/pygettextpo; make clean)
find . -type f \( -name '*.o' -o -name '*.so' \
-o -name '*.la' -o -name '*.lo' \
-o -name '*.py[co]' -o -name '*.dll' \) -exec rm -f {} \;
rm -rf build
realclean: clean
rm -f TAGS tags
$(PYTHON) setup.py clean -a
zcmldocs:
PYTHONPATH=`pwd`/src:$(PYTHONPATH) $(PYTHON) \
./sourcecode/zope/configuration/stxdocs.py \
-f ./src/zope/app/meta.zcml -o ./doc/zcml/namespaces.zope.org
potemplates: launchpad.pot
# Generate launchpad.pot by extracting message ids from the source
launchpad.pot:
$(PYTHON) sourcecode/zope/utilities/i18nextract.py \
-d launchpad -p lib/canonical/launchpad \
-o locales
TAGS:
ctags -e -R lib sourcecode
tags:
ctags -R lib sourcecode
.PHONY: check tags TAGS zcmldocs realclean clean debug stop start run \
ftest_build ftest_inplace test_build test_inplace pagetests \
check importdcheck check_merge schema default launchpad.pot
|