1
# Copyright (C) 2005-2010 Canonical Ltd
1
# Copyright (C) 2005, 2006, 2007, 2008, 2009 Canonical Ltd
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
39
39
check: docs check-nodocs
41
41
check-nodocs: extensions
42
$(PYTHON) -Werror -O ./bzr selftest -1 $(tests)
42
$(PYTHON) -Werror -O ./bzr selftest -1v $(tests)
43
@echo "Running all tests with no locale."
44
LC_CTYPE= LANG=C LC_ALL= ./bzr selftest -1v $(tests) 2>&1 | sed -e 's/^/[ascii] /'
44
46
# Run Python style checker (apt-get install pyflakes)
171
168
cd doc/en && make htmlhelp
172
169
cd doc/es && make htmlhelp
173
170
cd doc/ru && make htmlhelp
174
cd doc/ja && make htmlhelp
175
171
cd doc/developers && make htmlhelp
178
174
### Documentation Website ###
180
176
# Where to build the website
181
DOC_WEBSITE_BUILD = build_doc_website
177
DOC_WEBSITE_BUILD := build_doc_website
183
179
# Build and package docs into a website, complete with downloads.
184
180
doc-website: html-sphinx pdf-sphinx
185
181
$(PYTHON) tools/package_docs.py doc/en $(DOC_WEBSITE_BUILD)
186
182
$(PYTHON) tools/package_docs.py doc/es $(DOC_WEBSITE_BUILD)
187
183
$(PYTHON) tools/package_docs.py doc/ru $(DOC_WEBSITE_BUILD)
188
$(PYTHON) tools/package_docs.py doc/ja $(DOC_WEBSITE_BUILD)
189
184
$(PYTHON) tools/package_docs.py doc/developers $(DOC_WEBSITE_BUILD)
195
190
# support our "plain" html documentation so that Sphinx is not a hard
196
191
# dependency for packagers on older platforms.
198
rst2html = $(PYTHON) tools/rst2html.py --link-stylesheet --footnote-references=superscript --halt=warning
193
rst2html := $(PYTHON) tools/rst2html.py --link-stylesheet --footnote-references=superscript --halt=warning
200
195
# translate txt docs to html
201
derived_txt_files = \
196
derived_txt_files := \
197
doc/en/user-reference/bzr_man.txt \
202
198
doc/en/release-notes/NEWS.txt
204
200
doc/en/tutorials/tutorial.txt \
205
201
doc/en/tutorials/using_bazaar_with_launchpad.txt \
206
202
doc/en/tutorials/centralized_workflow.txt \
207
203
$(wildcard doc/es/tutorials/*.txt) \
208
$(wildcard doc/ru/tutorials/*.txt) \
209
doc/ja/tutorials/tutorial.txt \
210
doc/ja/tutorials/using_bazaar_with_launchpad.txt \
211
doc/ja/tutorials/centralized_workflow.txt \
204
$(wildcard doc/ru/tutorials/*.txt) \
212
205
$(wildcard doc/*/mini-tutorial/index.txt) \
213
206
$(wildcard doc/*/user-guide/index-plain.txt) \
214
doc/en/admin-guide/index-plain.txt \
215
207
$(wildcard doc/es/guia-usario/*.txt) \
216
208
$(derived_txt_files) \
217
209
doc/en/upgrade-guide/index.txt \
219
211
$(wildcard doc/index.*.txt)
221
213
doc/en/user-guide/index.txt \
222
214
doc/es/user-guide/index.txt \
223
doc/ja/user-guide/index.txt \
224
doc/ru/user-guide/index.txt \
225
doc/en/admin-guide/index.txt
226
txt_files = $(filter-out $(txt_nohtml), $(txt_all))
227
htm_files = $(patsubst %.txt, %.html, $(txt_files))
215
doc/ru/user-guide/index.txt
216
txt_files := $(filter-out $(txt_nohtml), $(txt_all))
217
htm_files := $(patsubst %.txt, %.html, $(txt_files))
230
220
doc/default.css \
231
221
$(wildcard doc/*/bzr-en-quick-reference.svg) \
232
222
$(wildcard doc/*/bzr-en-quick-reference.png) \
267
257
doc/developers/status.txt \
268
258
doc/developers/uncommit.txt
270
dev_txt_all = $(wildcard $(addsuffix /*.txt, doc/developers))
271
dev_txt_files = $(filter-out $(dev_txt_nohtml), $(dev_txt_all))
272
dev_htm_files = $(patsubst %.txt, %.html, $(dev_txt_files))
260
dev_txt_all := $(wildcard $(addsuffix /*.txt, doc/developers))
261
dev_txt_files := $(filter-out $(dev_txt_nohtml), $(dev_txt_all))
262
dev_htm_files := $(patsubst %.txt, %.html, $(dev_txt_files))
274
264
doc/en/user-guide/index-plain.html: $(wildcard $(addsuffix /*.txt, doc/en/user-guide))
275
265
$(rst2html) --stylesheet=../../default.css $(dir $@)index-plain.txt $@
280
270
#doc/ru/user-guide/index.html: $(wildcard $(addsuffix /*.txt, doc/ru/user-guide))
281
271
# $(rst2html) --stylesheet=../../default.css $(dir $@)index.txt $@
283
doc/en/admin-guide/index-plain.html: $(wildcard $(addsuffix /*.txt, doc/en/admin-guide))
284
$(rst2html) --stylesheet=../../default.css $(dir $@)index-plain.txt $@
286
273
doc/developers/%.html: doc/developers/%.txt
287
274
$(rst2html) --stylesheet=../default.css $< $@
296
283
$(rst2html) --stylesheet=../../default.css $< $@
285
doc/en/user-reference/bzr_man.txt: $(MAN_DEPENDENCIES)
286
$(PYTHON) tools/generate_docs.py -o $@ rstx
298
288
doc/en/release-notes/NEWS.txt: NEWS
299
289
$(PYTHON) -c "import shutil; shutil.copyfile('$<', '$@')"
337
327
# These are files that need to be copied into the build location to boostrap
338
328
# the build process.
339
329
# Note that the path is relative to tools/win32
340
BUILDOUT_FILES = buildout.cfg \
330
BUILDOUT_FILES := buildout.cfg \
341
331
buildout-templates/bin/build-installer.bat.in \
342
332
ostools.py bootstrap.py
407
397
### Packaging Targets ###
409
.PHONY: dist check-dist-tarball
399
.PHONY: dist dist-upload-escudero check-dist-tarball
411
# build a distribution source tarball
401
# build a distribution tarball and zip file.
413
403
# this method of copying the pyrex generated files is a bit ugly; it would be
414
404
# nicer to generate it from distutils.
418
408
expbasedir=`mktemp -t -d tmp_bzr_dist.XXXXXXXXXX` && \
419
409
expdir=$$expbasedir/bzr-$$version && \
420
410
tarball=$$PWD/../bzr-$$version.tar.gz && \
411
zipball=$$PWD/../bzr-$$version.zip && \
421
412
$(MAKE) clean && \
423
414
bzr export $$expdir && \
424
cp bzrlib/*.c bzrlib/*.h $$expdir/bzrlib/. && \
415
cp bzrlib/*.c $$expdir/bzrlib/. && \
425
416
tar cfz $$tarball -C $$expbasedir bzr-$$version && \
417
(cd $$expbasedir && zip -r $$zipball bzr-$$version) && \
426
418
gpg --detach-sign $$tarball && \
419
gpg --detach-sign $$zipball && \
427
420
rm -rf $$expbasedir
429
422
# run all tests in a previously built tarball
434
427
tar Cxz $$tmpdir -f $$tarball && \
435
428
$(MAKE) -C $$tmpdir/bzr-$$version check && \
432
# upload previously built tarball to the download directory on bazaar-vcs.org,
433
# and verify that it can be downloaded ok.
434
dist-upload-escudero:
435
version=`./bzr version --short` && \
436
tarball=../bzr-$$version.tar.gz && \
437
zipball=../bzr-$$version.zip && \
438
scp $$zipball $$zipball.sig $$tarball $$tarball.sig \
439
escudero.ubuntu.com:/srv/bazaar.canonical.com/www/releases/src \
441
echo verifying over http... && \
442
curl http://bazaar-vcs.org/releases/src/bzr-$$version.zip \
443
| diff -s - $$zipball && \
444
curl http://bazaar-vcs.org/releases/src/bzr-$$version.zip.sig \
445
| diff -s - $$zipball.sig
446
curl http://bazaar-vcs.org/releases/src/bzr-$$version.tar.gz \
447
| diff -s - $$tarball && \
448
curl http://bazaar-vcs.org/releases/src/bzr-$$version.tar.gz.sig \
449
| diff -s - $$tarball.sig