~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Matt Nordhoff
  • Date: 2009-10-22 08:28:04 UTC
  • mto: (4797.2.18 2.1)
  • mto: This revision was merged to the branch mainline in revision 5045.
  • Revision ID: mnordhoff@mattnordhoff.com-20091022082804-outyhrw2y14fxt4x
Make StaticTuple_New always raise a ValueError, and StaticTuple_new_constructor always raise a TypeError.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2010 Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2007, 2008, 2009 Canonical Ltd
2
2
#
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
40
40
 
41
41
check-nodocs: extensions
42
 
        set -e
43
 
        # Generate a stream for PQM to watch.
44
 
        -$(RM) -f selftest.log
45
 
        $(PYTHON) -Werror -O ./bzr selftest --subunit $(tests) | tee selftest.log
46
 
        # An empty log file should catch errors in the $(PYTHON)
47
 
        # command above (the '|' swallow any errors since 'make'
48
 
        # sees the 'tee' exit code for the whole line
49
 
        if [ ! -s selftest.log ] ; then exit 1 ; fi
50
 
        # Check that there were no errors reported.
51
 
        subunit-stats < selftest.log
 
42
        $(PYTHON) -Werror -O ./bzr selftest -1 --subunit $(tests)
52
43
 
53
44
# Run Python style checker (apt-get install pyflakes)
54
45
#
123
114
clean-sphinx:
124
115
        cd doc/en && make clean
125
116
        cd doc/es && make clean
126
 
        cd doc/ja && make clean
127
117
        cd doc/ru && make clean
128
118
        cd doc/developers && make clean
129
119
 
132
122
        doc/en/user-reference/index.txt \
133
123
        doc/es/Makefile \
134
124
        doc/es/make.bat \
135
 
        doc/ja/Makefile \
136
 
        doc/ja/make.bat \
137
125
        doc/ru/Makefile \
138
126
        doc/ru/make.bat \
139
127
        doc/developers/Makefile \
156
144
        cd doc/en && make html
157
145
        cd doc/es && make html
158
146
        cd doc/ru && make html
159
 
        cd doc/ja && make html
160
147
        cd doc/developers && make html
161
148
 
162
149
# Build the PDF docs using Sphinx. This requires numerous LaTeX
167
154
pdf-sphinx: $(SPHINX_DEPENDENCIES)
168
155
        cd doc/en && make latex
169
156
        cd doc/es && make latex
170
 
        cd doc/ja && make latex
171
157
        cd doc/developers && make latex
172
158
        cd doc/en/_build/latex && make all-pdf
173
159
        cd doc/es/_build/latex && make all-pdf
180
166
        cd doc/en && make htmlhelp
181
167
        cd doc/es && make htmlhelp
182
168
        cd doc/ru && make htmlhelp
183
 
        cd doc/ja && make htmlhelp
184
169
        cd doc/developers && make htmlhelp
185
170
 
186
171
 
187
172
### Documentation Website ###
188
173
 
189
174
# Where to build the website
190
 
DOC_WEBSITE_BUILD = build_doc_website
 
175
DOC_WEBSITE_BUILD := build_doc_website
191
176
 
192
177
# Build and package docs into a website, complete with downloads.
193
178
doc-website: html-sphinx pdf-sphinx
194
179
        $(PYTHON) tools/package_docs.py doc/en $(DOC_WEBSITE_BUILD)
195
180
        $(PYTHON) tools/package_docs.py doc/es $(DOC_WEBSITE_BUILD)
196
181
        $(PYTHON) tools/package_docs.py doc/ru $(DOC_WEBSITE_BUILD)
197
 
        $(PYTHON) tools/package_docs.py doc/ja $(DOC_WEBSITE_BUILD)
198
182
        $(PYTHON) tools/package_docs.py doc/developers $(DOC_WEBSITE_BUILD)
199
183
 
200
184
 
204
188
# support our "plain" html documentation so that Sphinx is not a hard
205
189
# dependency for packagers on older platforms.
206
190
 
207
 
rst2html = $(PYTHON) tools/rst2html.py --link-stylesheet --footnote-references=superscript --halt=warning
 
191
rst2html := $(PYTHON) tools/rst2html.py --link-stylesheet --footnote-references=superscript --halt=warning
208
192
 
209
193
# translate txt docs to html
210
 
derived_txt_files = \
 
194
derived_txt_files := \
 
195
        doc/en/user-reference/bzr_man.txt \
211
196
        doc/en/release-notes/NEWS.txt
212
 
txt_all = \
 
197
txt_all := \
213
198
        doc/en/tutorials/tutorial.txt \
214
199
        doc/en/tutorials/using_bazaar_with_launchpad.txt \
215
200
        doc/en/tutorials/centralized_workflow.txt \
216
201
        $(wildcard doc/es/tutorials/*.txt) \
217
 
                $(wildcard doc/ru/tutorials/*.txt) \
218
 
        doc/ja/tutorials/tutorial.txt \
219
 
        doc/ja/tutorials/using_bazaar_with_launchpad.txt \
220
 
        doc/ja/tutorials/centralized_workflow.txt \
 
202
        $(wildcard doc/ru/tutorials/*.txt) \
221
203
        $(wildcard doc/*/mini-tutorial/index.txt) \
222
204
        $(wildcard doc/*/user-guide/index-plain.txt) \
223
 
        doc/en/admin-guide/index-plain.txt \
224
205
        $(wildcard doc/es/guia-usario/*.txt) \
225
206
        $(derived_txt_files) \
226
207
        doc/en/upgrade-guide/index.txt \
227
208
        doc/index.txt \
228
209
        $(wildcard doc/index.*.txt)
229
 
txt_nohtml = \
 
210
txt_nohtml := \
230
211
        doc/en/user-guide/index.txt \
231
212
        doc/es/user-guide/index.txt \
232
 
        doc/ja/user-guide/index.txt \
233
 
        doc/ru/user-guide/index.txt \
234
 
        doc/en/admin-guide/index.txt
235
 
txt_files = $(filter-out $(txt_nohtml), $(txt_all))
236
 
htm_files = $(patsubst %.txt, %.html, $(txt_files)) 
 
213
        doc/ru/user-guide/index.txt
 
214
txt_files := $(filter-out $(txt_nohtml), $(txt_all))
 
215
htm_files := $(patsubst %.txt, %.html, $(txt_files)) 
237
216
 
238
 
non_txt_files = \
 
217
non_txt_files := \
239
218
       doc/default.css \
240
219
       $(wildcard doc/*/bzr-en-quick-reference.svg) \
241
220
       $(wildcard doc/*/bzr-en-quick-reference.png) \
250
229
 
251
230
# doc/developers/*.txt files that should *not* be individually
252
231
# converted to HTML
253
 
dev_txt_nohtml = \
 
232
dev_txt_nohtml := \
254
233
        doc/developers/add.txt \
255
234
        doc/developers/annotate.txt \
256
235
        doc/developers/bundle-creation.txt \
276
255
        doc/developers/status.txt \
277
256
        doc/developers/uncommit.txt
278
257
 
279
 
dev_txt_all = $(wildcard $(addsuffix /*.txt, doc/developers))
280
 
dev_txt_files = $(filter-out $(dev_txt_nohtml), $(dev_txt_all))
281
 
dev_htm_files = $(patsubst %.txt, %.html, $(dev_txt_files)) 
 
258
dev_txt_all := $(wildcard $(addsuffix /*.txt, doc/developers))
 
259
dev_txt_files := $(filter-out $(dev_txt_nohtml), $(dev_txt_all))
 
260
dev_htm_files := $(patsubst %.txt, %.html, $(dev_txt_files)) 
282
261
 
283
262
doc/en/user-guide/index-plain.html: $(wildcard $(addsuffix /*.txt, doc/en/user-guide)) 
284
263
        $(rst2html) --stylesheet=../../default.css $(dir $@)index-plain.txt $@
289
268
#doc/ru/user-guide/index.html: $(wildcard $(addsuffix /*.txt, doc/ru/user-guide)) 
290
269
#       $(rst2html) --stylesheet=../../default.css $(dir $@)index.txt $@
291
270
#
292
 
doc/en/admin-guide/index-plain.html: $(wildcard $(addsuffix /*.txt, doc/en/admin-guide)) 
293
 
        $(rst2html) --stylesheet=../../default.css $(dir $@)index-plain.txt $@
294
 
 
295
271
doc/developers/%.html: doc/developers/%.txt
296
272
        $(rst2html) --stylesheet=../default.css $< $@
297
273
 
304
280
%.html: %.txt
305
281
        $(rst2html) --stylesheet=../../default.css $< $@
306
282
 
 
283
doc/en/user-reference/bzr_man.txt: $(MAN_DEPENDENCIES)
 
284
        $(PYTHON) tools/generate_docs.py -o $@ rstx
 
285
 
307
286
doc/en/release-notes/NEWS.txt: NEWS
308
287
        $(PYTHON) -c "import shutil; shutil.copyfile('$<', '$@')"
309
288
 
320
299
docs-plain: $(ALL_DOCS)
321
300
 
322
301
# produce a tree containing just the final docs, ready for uploading to the web
323
 
HTMLDIR = html_docs
 
302
HTMLDIR := html_docs
324
303
html-plain: docs-plain
325
304
        $(PYTHON) tools/win32/ostools.py copytree $(WEB_DOCS) $(HTMLDIR)
326
305
 
346
325
# These are files that need to be copied into the build location to boostrap
347
326
# the build process.
348
327
# Note that the path is relative to tools/win32
349
 
BUILDOUT_FILES = buildout.cfg \
 
328
BUILDOUT_FILES := buildout.cfg \
350
329
        buildout-templates/bin/build-installer.bat.in \
351
330
        ostools.py bootstrap.py
352
331
 
415
394
 
416
395
### Packaging Targets ###
417
396
 
418
 
.PHONY: dist check-dist-tarball
 
397
.PHONY: dist dist-upload-escudero check-dist-tarball
419
398
 
420
399
# build a distribution source tarball
421
400
#
443
422
        tar Cxz $$tmpdir -f $$tarball && \
444
423
        $(MAKE) -C $$tmpdir/bzr-$$version check && \
445
424
        rm -rf $$tmpdir
 
425
 
 
426
 
 
427
# upload previously built tarball to the download directory on bazaar-vcs.org,
 
428
# and verify that it can be downloaded ok.
 
429
dist-upload-escudero:
 
430
        version=`./bzr version --short` && \
 
431
        tarball=../bzr-$$version.tar.gz && \
 
432
        scp $$tarball $$tarball.sig \
 
433
            escudero.ubuntu.com:/srv/bazaar.canonical.com/www/releases/src \
 
434
                && \
 
435
        echo verifying over http... && \
 
436
        curl http://bazaar-vcs.org/releases/src/bzr-$$version.tar.gz \
 
437
                | diff -s - $$tarball && \
 
438
        curl http://bazaar-vcs.org/releases/src/bzr-$$version.tar.gz.sig \
 
439
                | diff -s - $$tarball.sig