]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - Makefile
Makefile: remove a stale comment about a bug fixed in Tahoe v1.3.0. refs #455
[tahoe-lafs/tahoe-lafs.git] / Makefile
1
2 # NOTE: this Makefile requires GNU make
3
4 default: build
5
6 PYTHON=python
7 export PYTHON
8
9 # setup.py will extend sys.path to include our support/lib/... directory
10 # itself. It will also create it in the beginning of the 'develop' command.
11
12 PP=$(shell $(PYTHON) setup.py -q show_pythonpath)
13 RUNPP=$(PYTHON) setup.py run_with_pythonpath
14 TAHOE=$(PYTHON) bin/tahoe
15
16 .PHONY: make-version build
17
18 # The 'darcsver' setup.py command comes in the 'darcsver' package:
19 # http://pypi.python.org/pypi/darcsver It is necessary only if you want to
20 # automatically produce a new _version.py file from the current darcs history.
21 make-version:
22         $(PYTHON) ./setup.py darcsver --count-all-patches
23
24 # We want src/allmydata/_version.py to be up-to-date, but it's a fairly
25 # expensive operation (about 6 seconds on a just-before-0.7.0 tree, probably
26 # because of the 332 patches since the last tag), and we've removed the need
27 # for an explicit 'build' step by removing the C code from src/allmydata and
28 # by running everything in place. It would be neat to do:
29 #
30 #src/allmydata/_version.py: _darcs/patches
31 #       $(MAKE) make-version
32 #
33 # since that would update the embedded version string each time new darcs
34 # patches were pulled, but without an obligatory 'build' step this rule
35 # wouldn't be run frequently enough anyways.
36 #
37 # So instead, I'll just make sure that we update the version at least once
38 # when we first start using the tree, and again whenever an explicit
39 # 'make-version' is run, since then at least the developer has some means to
40 # update things. It would be nice if 'make clean' deleted any
41 # automatically-generated _version.py too, so that 'make clean; make all'
42 # could be useable as a "what the heck is going on, get me back to a clean
43 # state', but we need 'make clean' to work on non-darcs trees without
44 # destroying useful information.
45
46 .built:
47         $(MAKE) build
48
49 src/allmydata/_version.py:
50         $(MAKE) make-version
51
52 build: src/allmydata/_version.py
53         $(PYTHON) setup.py build
54         touch .built
55
56 # 'make install' will do the following:
57 #   build+install tahoe (probably to /usr/lib/pythonN.N/site-packages)
58 # 'make install PREFIX=/usr/local/stow/tahoe-N.N' will do the same, but to
59 # a different location
60
61 install: src/allmydata/_version.py
62 ifdef PREFIX
63         mkdir -p $(PREFIX)
64         $(PYTHON) ./setup.py install --single-version-externally-managed \
65            --prefix=$(PREFIX) --record=./tahoe.files
66 else
67         $(PYTHON) ./setup.py install --single-version-externally-managed
68 endif
69
70
71 # TESTING
72
73 .PHONY: signal-error-deps test test-coverage quicktest quicktest-coverage
74 .PHONY: coverage-output get-old-coverage-coverage coverage-delta-output
75
76
77 signal-error-deps:
78         @echo
79         @echo
80         @echo "ERROR: Not all of Tahoe's dependencies are in place.  Please see docs/install.html for help on installing dependencies."
81         @echo
82         @echo
83         exit 1
84
85 check-auto-deps:
86         $(PYTHON) setup.py -q check_auto_deps || $(MAKE) signal-error-deps
87
88 .checked-deps:
89         $(MAKE) check-auto-deps
90         touch .checked-deps
91
92 # you can use 'make test TEST=allmydata.test.test_introducer' to run just
93 # test_introducer. TEST=allmydata.test.test_client.Basic.test_permute works
94 # too.
95 TEST=allmydata
96
97 # use 'make test TRIALARGS=--reporter=bwverbose' from buildbot, to
98 # suppress the ansi color sequences
99
100 test: build src/allmydata/_version.py
101         $(PYTHON) setup.py test $(TRIALARGS) -s $(TEST)
102
103 fuse-test: .built .checked-deps
104         $(RUNPP) -d contrib/fuse -p -c runtests.py
105
106 test-coverage: build src/allmydata/_version.py
107         rm -f .coverage
108         $(TAHOE) debug trial --reporter=bwverbose-coverage $(TEST)
109
110 quicktest:
111         $(TAHOE) debug trial $(TRIALARGS) $(TEST)
112
113 # code-coverage: install the "coverage" package from PyPI, do "make
114 # quicktest-coverage" to do a unit test run with coverage-gathering enabled,
115 # then use "make coverate-output-text" for a brief report, or "make
116 # coverage-output" for a pretty HTML report. Also see "make .coverage.el" and
117 # misc/coding_tools/coverage.el for emacs integration.
118
119 quicktest-coverage:
120         rm -f .coverage
121         $(TAHOE) debug trial --reporter=bwverbose-coverage $(TEST)
122 # on my laptop, "quicktest" takes 239s, "quicktest-coverage" takes 304s
123
124 # --include appeared in coverage-3.4
125 COVERAGE_OMIT=--include '$(CURDIR)/src/allmydata/*' --omit '$(CURDIR)/src/allmydata/test/*'
126 coverage-output:
127         rm -rf coverage-html
128         coverage html -i -d coverage-html $(COVERAGE_OMIT)
129         cp .coverage coverage-html/coverage.data
130         @echo "now point your browser at coverage-html/index.html"
131
132 ## use these two targets to compare this coverage against the previous run.
133 ## The deltas only work if the old test was run in the same directory, since
134 ## it compares absolute filenames.
135 #get-old-figleaf-coverage:
136 #       wget --progress=dot -O old.figleaf http://allmydata.org/tahoe-figleaf/current/figleaf.pickle
137 #
138 #figleaf-delta-output:
139 #       $(RUNPP) -p -c "misc/figleaf2html -d coverage-html -r src -x misc/figleaf.excludes -o old.figleaf"
140 #       cp .figleaf coverage-html/figleaf.pickle
141 #       @echo "now point your browser at coverage-html/index.html"
142
143 .PHONY: upload-coverage .coverage.el pyflakes count-lines
144 .PHONY: check-memory check-memory-once check-speed check-grid
145 .PHONY: repl test-darcs-boringfile test-clean clean find-trailing-spaces
146
147 .coverage.el: .coverage
148         $(PYTHON) misc/coding_tools/coverage2el.py
149
150 # 'upload-coverage' is meant to be run with an UPLOAD_TARGET=host:/dir setting
151 ifdef UPLOAD_TARGET
152
153 ifndef UPLOAD_HOST
154 $(error UPLOAD_HOST must be set when using UPLOAD_TARGET)
155 endif
156 ifndef COVERAGEDIR
157 $(error COVERAGEDIR must be set when using UPLOAD_TARGET)
158 endif
159
160 upload-coverage:
161         rsync -a coverage-html/ $(UPLOAD_TARGET)
162         ssh $(UPLOAD_HOST) make update-tahoe-coverage COVERAGEDIR=$(COVERAGEDIR)
163 else
164 upload-coverage:
165         echo "this target is meant to be run with UPLOAD_TARGET=host:/path/"
166         false
167 endif
168
169
170 pyflakes:
171         $(PYTHON) -OOu `which pyflakes` src/allmydata static misc/build_helpers bin/tahoe-script.template |sort |uniq
172 check-umids:
173         $(PYTHON) misc/coding_tools/check-umids.py `find src/allmydata -name '*.py'`
174
175 count-lines:
176         @echo -n "files: "
177         @find src -name '*.py' |grep -v /build/ |wc --lines
178         @echo -n "lines: "
179         @cat `find src -name '*.py' |grep -v /build/` |wc --lines
180         @echo -n "TODO: "
181         @grep TODO `find src -name '*.py' |grep -v /build/` | wc --lines
182
183 check-memory: .built
184         rm -rf _test_memory
185         $(RUNPP) -p -c "src/allmydata/test/check_memory.py upload"
186         $(RUNPP) -p -c "src/allmydata/test/check_memory.py upload-self"
187         $(RUNPP) -p -c "src/allmydata/test/check_memory.py upload-POST"
188         $(RUNPP) -p -c "src/allmydata/test/check_memory.py download"
189         $(RUNPP) -p -c "src/allmydata/test/check_memory.py download-GET"
190         $(RUNPP) -p -c "src/allmydata/test/check_memory.py download-GET-slow"
191         $(RUNPP) -p -c "src/allmydata/test/check_memory.py receive"
192
193 check-memory-once: .built
194         rm -rf _test_memory
195         $(RUNPP) -p -c "src/allmydata/test/check_memory.py $(MODE)"
196
197 # The check-speed target uses a pre-established client node to run a canned
198 # set of performance tests against a test network that is also
199 # pre-established (probably on a remote machine). Provide it with the path to
200 # a local directory where this client node has been created (and populated
201 # with the necessary FURLs of the test network). This target will start that
202 # client with the current code and then run the tests. Afterwards it will
203 # stop the client.
204 #
205 # The 'sleep 5' is in there to give the new client a chance to connect to its
206 # storageservers, since check_speed.py has no good way of doing that itself.
207
208 check-speed: .built
209         if [ -z '$(TESTCLIENTDIR)' ]; then exit 1; fi
210         @echo "stopping any leftover client code"
211         -$(TAHOE) stop $(TESTCLIENTDIR)
212         $(TAHOE) start $(TESTCLIENTDIR)
213         sleep 5
214         $(PYTHON) src/allmydata/test/check_speed.py $(TESTCLIENTDIR)
215         $(TAHOE) stop $(TESTCLIENTDIR)
216
217 # The check-grid target also uses a pre-established client node, along with a
218 # long-term directory that contains some well-known files. See the docstring
219 # in src/allmydata/test/check_grid.py to see how to set this up.
220 check-grid: .built
221         if [ -z '$(TESTCLIENTDIR)' ]; then exit 1; fi
222         $(PYTHON) src/allmydata/test/check_grid.py $(TESTCLIENTDIR) bin/tahoe
223
224 bench-dirnode: .built
225         $(RUNPP) -p -c src/allmydata/test/bench_dirnode.py
226
227 # 'make repl' is a simple-to-type command to get a Python interpreter loop
228 # from which you can type 'import allmydata'
229 repl:
230         $(TAHOE) debug repl
231
232 test-darcs-boringfile:
233         $(MAKE)
234         $(PYTHON) misc/build_helpers/test-darcs-boringfile.py
235
236 test-clean:
237         find . |grep -vEe "_darcs|allfiles.tmp|src/allmydata/_(version|appname).py" |sort >allfiles.tmp.old
238         $(MAKE)
239         $(MAKE) clean
240         find . |grep -vEe "_darcs|allfiles.tmp|src/allmydata/_(version|appname).py" |sort >allfiles.tmp.new
241         diff allfiles.tmp.old allfiles.tmp.new
242
243 clean:
244         rm -rf build _trial_temp _test_memory .checked-deps .built
245         rm -f `find src *.egg -name '*.so' -or -name '*.pyc'`
246         rm -rf src/allmydata_tahoe.egg-info
247         rm -rf support dist
248         rm -rf `ls -d *.egg | grep -vEe"setuptools-|setuptools_darcs-|darcsver-"`
249         rm -rf *.pyc
250         rm -rf misc/dependencies/build misc/dependencies/temp
251         rm -rf misc/dependencies/tahoe_deps.egg-info
252         rm -f bin/tahoe bin/tahoe.pyscript
253
254 find-trailing-spaces:
255         $(PYTHON) misc/coding_tools/find-trailing-spaces.py -r src
256
257 # The test-desert-island target grabs the tahoe-deps tarball, unpacks it,
258 # does a build, then asserts that the build did not try to download anything
259 # as it ran. Invoke this on a new tree, or after a 'clean', to make sure the
260 # support/lib/ directory is gone.
261
262 fetch-and-unpack-deps:
263         test -f tahoe-deps.tar.gz || wget http://allmydata.org/source/tahoe/deps/tahoe-deps.tar.gz
264         rm -rf tahoe-deps
265         tar xzf tahoe-deps.tar.gz
266
267 test-desert-island:
268         $(MAKE) fetch-and-unpack-deps
269         $(MAKE) 2>&1 | tee make.out
270         $(PYTHON) misc/build_helpers/check-build.py make.out no-downloads
271
272
273 # TARBALL GENERATION
274 .PHONY: tarballs upload-tarballs
275 tarballs:
276         $(MAKE) make-version
277         $(PYTHON) setup.py sdist --formats=bztar,gztar,zip
278         $(PYTHON) setup.py sdist --sumo --formats=bztar,gztar,zip
279
280 upload-tarballs:
281         @if [ "X${BB_BRANCH}" == "Xtrunk" ] || [ "X${BB_BRANCH}" == "X" ]; then for f in dist/allmydata-tahoe-*; do flappclient --furlfile ~/.tahoe-tarball-upload.furl upload-file $$f; done ; else echo not uploading tarballs because this is not trunk but is branch \"${BB_BRANCH}\" ; fi
282
283 # DEBIAN PACKAGING
284
285 VER=$(shell $(PYTHON) misc/build_helpers/get-version.py)
286 DEBCOMMENTS="'make deb' build"
287
288 show-version:
289         @echo $(VER)
290 show-pp:
291         @echo $(PP)
292
293 .PHONY: setup-deb deb-ARCH is-known-debian-arch
294 .PHONY: deb-etch deb-lenny deb-sid
295 .PHONY: deb-edgy deb-feisty deb-gutsy deb-hardy deb-intrepid deb-jaunty
296
297 # we use misc/debian_helpers/$TAHOE_ARCH/debian
298
299 deb-etch:      # py2.4
300         $(MAKE) deb-ARCH ARCH=etch TAHOE_ARCH=etch
301 deb-lenny:     # py2.5
302         $(MAKE) deb-ARCH ARCH=lenny TAHOE_ARCH=lenny
303 deb-sid:
304         $(MAKE) deb-ARCH ARCH=sid TAHOE_ARCH=sid
305
306 deb-edgy:     # py2.4
307         $(MAKE) deb-ARCH ARCH=edgy TAHOE_ARCH=etch
308 deb-feisty:   # py2.5
309         $(MAKE) deb-ARCH ARCH=feisty TAHOE_ARCH=lenny
310 deb-gutsy:    # py2.5
311         $(MAKE) deb-ARCH ARCH=gutsy TAHOE_ARCH=lenny
312 deb-hardy:    # py2.5
313         $(MAKE) deb-ARCH ARCH=hardy TAHOE_ARCH=lenny
314 deb-intrepid: # py2.5
315         $(MAKE) deb-ARCH ARCH=intrepid TAHOE_ARCH=lenny
316 deb-jaunty:   # py2.6
317         $(MAKE) deb-ARCH ARCH=jaunty TAHOE_ARCH=lenny
318
319
320
321 # we know how to handle the following debian architectures
322 KNOWN_DEBIAN_ARCHES := etch lenny sid  edgy feisty gutsy hardy intrepid jaunty
323
324 ifeq ($(findstring x-$(ARCH)-x,$(foreach arch,$(KNOWN_DEBIAN_ARCHES),"x-$(arch)-x")),)
325 is-known-debian-arch:
326         @echo "ARCH must be set when using setup-deb or deb-ARCH"
327         @echo "I know how to handle:" $(KNOWN_DEBIAN_ARCHES)
328         false
329 else
330 is-known-debian-arch:
331         true
332 endif
333
334 ifndef TAHOE_ARCH
335 TAHOE_ARCH=$(ARCH)
336 endif
337
338 setup-deb: is-known-debian-arch
339         rm -f debian
340         ln -s misc/debian_helpers/$(TAHOE_ARCH)/debian debian
341         chmod +x debian/rules
342
343 # etch (current debian stable) has python-simplejson-1.3, which doesn't
344 #  support indent=
345 # sid (debian unstable) currently has python-simplejson 1.7.1
346 # edgy has 1.3, which doesn't support indent=
347 # feisty has 1.4, which supports indent= but emits a deprecation warning
348 # gutsy has 1.7.1
349 #
350 # we need 1.4 or newer
351
352 deb-ARCH: is-known-debian-arch setup-deb
353         fakeroot debian/rules binary
354         @echo
355         @echo "The newly built .deb packages are in the parent directory from here."
356
357 .PHONY: increment-deb-version
358 .PHONY: deb-etch-head deb-lenny-head deb-sid-head
359 .PHONY: deb-edgy-head deb-feisty-head deb-gutsy-head deb-hardy-head deb-intrepid-head deb-jaunty-head
360
361 # The buildbot runs the following targets after each change, to produce
362 # up-to-date tahoe .debs. These steps do not create .debs for anything else.
363
364 increment-deb-version: make-version
365         debchange --newversion $(VER) $(DEBCOMMENTS)
366 deb-etch-head:
367         $(MAKE) setup-deb ARCH=etch TAHOE_ARCH=etch
368         $(MAKE) increment-deb-version
369         fakeroot debian/rules binary
370 deb-lenny-head:
371         $(MAKE) setup-deb ARCH=lenny TAHOE_ARCH=lenny
372         $(MAKE) increment-deb-version
373         fakeroot debian/rules binary
374 deb-sid-head:
375         $(MAKE) setup-deb ARCH=sid TAHOE_ARCH=lenny
376         $(MAKE) increment-deb-version
377         fakeroot debian/rules binary
378
379 deb-edgy-head:
380         $(MAKE) setup-deb ARCH=edgy TAHOE_ARCH=etch
381         $(MAKE) increment-deb-version
382         fakeroot debian/rules binary
383 deb-feisty-head:
384         $(MAKE) setup-deb ARCH=feisty TAHOE_ARCH=lenny
385         $(MAKE) increment-deb-version
386         fakeroot debian/rules binary
387 deb-gutsy-head:
388         $(MAKE) setup-deb ARCH=gutsy TAHOE_ARCH=lenny
389         $(MAKE) increment-deb-version
390         fakeroot debian/rules binary
391 deb-hardy-head:
392         $(MAKE) setup-deb ARCH=hardy TAHOE_ARCH=lenny
393         $(MAKE) increment-deb-version
394         fakeroot debian/rules binary
395 deb-intrepid-head:
396         $(MAKE) setup-deb ARCH=intrepid TAHOE_ARCH=lenny
397         $(MAKE) increment-deb-version
398         fakeroot debian/rules binary
399 deb-jaunty-head:
400         $(MAKE) setup-deb ARCH=jaunty TAHOE_ARCH=lenny
401         $(MAKE) increment-deb-version
402         fakeroot debian/rules binary
403
404 # new experimental debian-packaging-building target
405 .PHONY: EXPERIMENTAL-deb
406 EXPERIMENTAL-deb: is-known-debian-arch
407         $(PYTHON) misc/build_helpers/build-deb.py $(ARCH)