~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Benoît Pierre
  • Date: 2009-11-02 22:24:29 UTC
  • mto: (4634.96.1 integration-2.0)
  • mto: This revision was merged to the branch mainline in revision 4798.
  • Revision ID: benoit.pierre@gmail.com-20091102222429-xqdyo6n8odh3xbbd
Small fix for handling of short option names in shellcomplete_on_options.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2011 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
28
28
PLUGIN_TARGET=plugin-release
29
29
PYTHON_BUILDFLAGS=
30
30
 
31
 
.PHONY: all clean realclean extensions pyflakes api-docs check-nodocs check
 
31
.PHONY: all clean extensions pyflakes api-docs check-nodocs check
32
32
 
33
33
all: extensions
34
34
 
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 -Wignore::ImportWarning -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 -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] /'
52
45
 
53
46
# Run Python style checker (apt-get install pyflakes)
54
47
#
66
59
        $(PYTHON) setup.py clean
67
60
        -find . -name "*.pyc" -o -name "*.pyo" -o -name "*.so" | xargs rm -f
68
61
 
69
 
realclean: clean
70
 
        # Remove files which are autogenerated but included by the tarball.
71
 
        rm -f bzrlib/*_pyx.c
72
 
        rm -f bzrlib/_simple_set_pyx.h bzrlib/_simple_set_pyx_api.h
73
 
 
74
62
# Build API documentation
75
63
docfiles = bzr bzrlib
76
64
api-docs:
77
65
        mkdir -p api/html
78
 
        pydoctor --make-html --docformat='restructuredtext' --html-output=api/html $(docfiles)
 
66
        PYTHONPATH=$(PWD) $(PYTHON) tools/bzr_epydoc --html -o api/html --docformat 'restructuredtext en' $(docfiles)
 
67
check-api-docs:
 
68
        PYTHONPATH=$(PWD) $(PYTHON) tools/bzr_epydoc --check --docformat 'restructuredtext en' $(docfiles)
79
69
 
80
70
# build tags for emacs and vim
81
71
TAGS:
126
116
clean-sphinx:
127
117
        cd doc/en && make clean
128
118
        cd doc/es && make clean
129
 
        cd doc/ja && make clean
130
119
        cd doc/ru && make clean
131
120
        cd doc/developers && make clean
132
121
 
135
124
        doc/en/user-reference/index.txt \
136
125
        doc/es/Makefile \
137
126
        doc/es/make.bat \
138
 
        doc/ja/Makefile \
139
 
        doc/ja/make.bat \
140
127
        doc/ru/Makefile \
141
128
        doc/ru/make.bat \
142
129
        doc/developers/Makefile \
143
130
        doc/developers/make.bat
144
131
 
145
 
NEWS_FILES = $(wildcard doc/en/release-notes/bzr-*.txt)
146
 
 
147
132
doc/en/user-reference/index.txt: $(MAN_DEPENDENCIES)
148
133
        $(PYTHON) tools/generate_docs.py -o $@ rstx
149
134
 
150
 
doc/en/release-notes/index.txt: $(NEWS_FILES) tools/generate_release_notes.py
151
 
        $(PYTHON) tools/generate_release_notes.py $@ $(NEWS_FILES)
 
135
doc/en/release-notes/index.txt: NEWS tools/generate_release_notes.py
 
136
        $(PYTHON) tools/generate_release_notes.py NEWS $@
152
137
 
153
138
doc/%/Makefile: doc/en/Makefile
154
139
        $(PYTHON) -c "import shutil; shutil.copyfile('$<', '$@')"
161
146
        cd doc/en && make html
162
147
        cd doc/es && make html
163
148
        cd doc/ru && make html
164
 
        cd doc/ja && make html
165
149
        cd doc/developers && make html
166
150
 
167
151
# Build the PDF docs using Sphinx. This requires numerous LaTeX
172
156
pdf-sphinx: $(SPHINX_DEPENDENCIES)
173
157
        cd doc/en && make latex
174
158
        cd doc/es && make latex
175
 
        cd doc/ja && make latex
176
159
        cd doc/developers && make latex
177
160
        cd doc/en/_build/latex && make all-pdf
178
161
        cd doc/es/_build/latex && make all-pdf
185
168
        cd doc/en && make htmlhelp
186
169
        cd doc/es && make htmlhelp
187
170
        cd doc/ru && make htmlhelp
188
 
        cd doc/ja && make htmlhelp
189
171
        cd doc/developers && make htmlhelp
190
172
 
191
173
 
199
181
        $(PYTHON) tools/package_docs.py doc/en $(DOC_WEBSITE_BUILD)
200
182
        $(PYTHON) tools/package_docs.py doc/es $(DOC_WEBSITE_BUILD)
201
183
        $(PYTHON) tools/package_docs.py doc/ru $(DOC_WEBSITE_BUILD)
202
 
        $(PYTHON) tools/package_docs.py doc/ja $(DOC_WEBSITE_BUILD)
203
184
        $(PYTHON) tools/package_docs.py doc/developers $(DOC_WEBSITE_BUILD)
204
185
 
205
186
 
213
194
 
214
195
# translate txt docs to html
215
196
derived_txt_files = \
 
197
        doc/en/user-reference/bzr_man.txt \
216
198
        doc/en/release-notes/NEWS.txt
217
199
txt_all = \
218
200
        doc/en/tutorials/tutorial.txt \
219
201
        doc/en/tutorials/using_bazaar_with_launchpad.txt \
220
202
        doc/en/tutorials/centralized_workflow.txt \
221
203
        $(wildcard doc/es/tutorials/*.txt) \
222
 
                $(wildcard doc/ru/tutorials/*.txt) \
223
 
        doc/ja/tutorials/tutorial.txt \
224
 
        doc/ja/tutorials/using_bazaar_with_launchpad.txt \
225
 
        doc/ja/tutorials/centralized_workflow.txt \
 
204
        $(wildcard doc/ru/tutorials/*.txt) \
226
205
        $(wildcard doc/*/mini-tutorial/index.txt) \
227
206
        $(wildcard doc/*/user-guide/index-plain.txt) \
228
 
        doc/en/admin-guide/index-plain.txt \
229
207
        $(wildcard doc/es/guia-usario/*.txt) \
230
208
        $(derived_txt_files) \
231
209
        doc/en/upgrade-guide/index.txt \
234
212
txt_nohtml = \
235
213
        doc/en/user-guide/index.txt \
236
214
        doc/es/user-guide/index.txt \
237
 
        doc/ja/user-guide/index.txt \
238
 
        doc/ru/user-guide/index.txt \
239
 
        doc/en/admin-guide/index.txt
 
215
        doc/ru/user-guide/index.txt
240
216
txt_files = $(filter-out $(txt_nohtml), $(txt_all))
241
217
htm_files = $(patsubst %.txt, %.html, $(txt_files)) 
242
218
 
294
270
#doc/ru/user-guide/index.html: $(wildcard $(addsuffix /*.txt, doc/ru/user-guide)) 
295
271
#       $(rst2html) --stylesheet=../../default.css $(dir $@)index.txt $@
296
272
#
297
 
doc/en/admin-guide/index-plain.html: $(wildcard $(addsuffix /*.txt, doc/en/admin-guide)) 
298
 
        $(rst2html) --stylesheet=../../default.css $(dir $@)index-plain.txt $@
299
 
 
300
273
doc/developers/%.html: doc/developers/%.txt
301
274
        $(rst2html) --stylesheet=../default.css $< $@
302
275
 
307
280
        $(rst2html) --stylesheet=default.css $< $@
308
281
 
309
282
%.html: %.txt
310
 
        $(rst2html) --stylesheet=../../default.css $< "$@"
311
 
 
312
 
doc/en/release-notes/NEWS.txt: $(NEWS_FILES) tools/generate_release_notes.py
313
 
        $(PYTHON) tools/generate_release_notes.py "$@" $(NEWS_FILES)
 
283
        $(rst2html) --stylesheet=../../default.css $< $@
 
284
 
 
285
doc/en/user-reference/bzr_man.txt: $(MAN_DEPENDENCIES)
 
286
        $(PYTHON) tools/generate_docs.py -o $@ rstx
 
287
 
 
288
doc/en/release-notes/NEWS.txt: NEWS
 
289
        $(PYTHON) -c "import shutil; shutil.copyfile('$<', '$@')"
314
290
 
315
291
upgrade_guide_dependencies =  $(wildcard $(addsuffix /*.txt, doc/en/upgrade-guide)) 
316
292
 
418
394
        $(PYTHON) tools/win32/ostools.py remove dist
419
395
 
420
396
 
421
 
# i18n targets
422
 
 
423
 
.PHONY: update-pot po/bzr.pot
424
 
update-pot: po/bzr.pot
425
 
 
426
 
TRANSLATABLE_PYFILES:=$(shell find bzrlib -name '*.py' \
427
 
                | grep -v 'bzrlib/tests/' \
428
 
                | grep -v 'bzrlib/doc' \
429
 
                )
430
 
 
431
 
po/bzr.pot: $(PYFILES) $(DOCFILES)
432
 
        $(PYTHON) ./bzr export-pot > po/bzr.pot
433
 
        echo $(TRANSLATABLE_PYFILES) | xargs \
434
 
          xgettext --package-name "bzr" \
435
 
          --msgid-bugs-address "<bazaar@canonical.com>" \
436
 
          --copyright-holder "Canonical" \
437
 
          --from-code ISO-8859-1 --join --sort-by-file --add-comments=i18n: \
438
 
          -d bzr -p po -o bzr.pot
439
 
 
440
 
 
441
397
### Packaging Targets ###
442
398
 
443
 
.PHONY: dist check-dist-tarball
 
399
.PHONY: dist dist-upload-escudero check-dist-tarball
444
400
 
445
 
# build a distribution source tarball
 
401
# build a distribution tarball and zip file.
446
402
#
447
403
# this method of copying the pyrex generated files is a bit ugly; it would be
448
404
# nicer to generate it from distutils.
452
408
        expbasedir=`mktemp -t -d tmp_bzr_dist.XXXXXXXXXX` && \
453
409
        expdir=$$expbasedir/bzr-$$version && \
454
410
        tarball=$$PWD/../bzr-$$version.tar.gz && \
 
411
        zipball=$$PWD/../bzr-$$version.zip && \
455
412
        $(MAKE) clean && \
456
413
        $(MAKE) && \
457
414
        bzr export $$expdir && \
458
 
        cp bzrlib/*.c bzrlib/*.h $$expdir/bzrlib/. && \
 
415
        cp bzrlib/*.c $$expdir/bzrlib/. && \
459
416
        tar cfz $$tarball -C $$expbasedir bzr-$$version && \
 
417
        (cd $$expbasedir && zip -r $$zipball bzr-$$version) && \
460
418
        gpg --detach-sign $$tarball && \
 
419
        gpg --detach-sign $$zipball && \
461
420
        rm -rf $$expbasedir
462
421
 
463
422
# run all tests in a previously built tarball
468
427
        tar Cxz $$tmpdir -f $$tarball && \
469
428
        $(MAKE) -C $$tmpdir/bzr-$$version check && \
470
429
        rm -rf $$tmpdir
 
430
 
 
431
 
 
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 \
 
440
                && \
 
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