~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Naoki INADA
  • Date: 2009-10-29 10:01:19 UTC
  • mto: (4634.97.3 2.0)
  • mto: This revision was merged to the branch mainline in revision 4798.
  • Revision ID: inada-n@klab.jp-20091029100119-uckv9t7ej2qrghw3
import doc-ja rev90

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 -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
#
123
116
clean-sphinx:
124
117
        cd doc/en && make clean
125
118
        cd doc/es && make clean
126
 
        cd doc/ja && make clean
127
119
        cd doc/ru && make clean
128
120
        cd doc/developers && make clean
129
121
 
132
124
        doc/en/user-reference/index.txt \
133
125
        doc/es/Makefile \
134
126
        doc/es/make.bat \
135
 
        doc/ja/Makefile \
136
 
        doc/ja/make.bat \
137
127
        doc/ru/Makefile \
138
128
        doc/ru/make.bat \
139
129
        doc/developers/Makefile \
156
146
        cd doc/en && make html
157
147
        cd doc/es && make html
158
148
        cd doc/ru && make html
159
 
        cd doc/ja && make html
160
149
        cd doc/developers && make html
161
150
 
162
151
# Build the PDF docs using Sphinx. This requires numerous LaTeX
167
156
pdf-sphinx: $(SPHINX_DEPENDENCIES)
168
157
        cd doc/en && make latex
169
158
        cd doc/es && make latex
170
 
        cd doc/ja && make latex
171
159
        cd doc/developers && make latex
172
160
        cd doc/en/_build/latex && make all-pdf
173
161
        cd doc/es/_build/latex && make all-pdf
180
168
        cd doc/en && make htmlhelp
181
169
        cd doc/es && make htmlhelp
182
170
        cd doc/ru && make htmlhelp
183
 
        cd doc/ja && make htmlhelp
184
171
        cd doc/developers && make htmlhelp
185
172
 
186
173
 
194
181
        $(PYTHON) tools/package_docs.py doc/en $(DOC_WEBSITE_BUILD)
195
182
        $(PYTHON) tools/package_docs.py doc/es $(DOC_WEBSITE_BUILD)
196
183
        $(PYTHON) tools/package_docs.py doc/ru $(DOC_WEBSITE_BUILD)
197
 
        $(PYTHON) tools/package_docs.py doc/ja $(DOC_WEBSITE_BUILD)
198
184
        $(PYTHON) tools/package_docs.py doc/developers $(DOC_WEBSITE_BUILD)
199
185
 
200
186
 
208
194
 
209
195
# translate txt docs to html
210
196
derived_txt_files = \
 
197
        doc/en/user-reference/bzr_man.txt \
211
198
        doc/en/release-notes/NEWS.txt
212
199
txt_all = \
213
200
        doc/en/tutorials/tutorial.txt \
214
201
        doc/en/tutorials/using_bazaar_with_launchpad.txt \
215
202
        doc/en/tutorials/centralized_workflow.txt \
216
203
        $(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 \
 
204
        $(wildcard doc/ru/tutorials/*.txt) \
221
205
        $(wildcard doc/*/mini-tutorial/index.txt) \
222
206
        $(wildcard doc/*/user-guide/index-plain.txt) \
223
 
        doc/en/admin-guide/index-plain.txt \
224
207
        $(wildcard doc/es/guia-usario/*.txt) \
225
208
        $(derived_txt_files) \
226
209
        doc/en/upgrade-guide/index.txt \
229
212
txt_nohtml = \
230
213
        doc/en/user-guide/index.txt \
231
214
        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
 
215
        doc/ru/user-guide/index.txt
235
216
txt_files = $(filter-out $(txt_nohtml), $(txt_all))
236
217
htm_files = $(patsubst %.txt, %.html, $(txt_files)) 
237
218
 
289
270
#doc/ru/user-guide/index.html: $(wildcard $(addsuffix /*.txt, doc/ru/user-guide)) 
290
271
#       $(rst2html) --stylesheet=../../default.css $(dir $@)index.txt $@
291
272
#
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
273
doc/developers/%.html: doc/developers/%.txt
296
274
        $(rst2html) --stylesheet=../default.css $< $@
297
275
 
304
282
%.html: %.txt
305
283
        $(rst2html) --stylesheet=../../default.css $< $@
306
284
 
 
285
doc/en/user-reference/bzr_man.txt: $(MAN_DEPENDENCIES)
 
286
        $(PYTHON) tools/generate_docs.py -o $@ rstx
 
287
 
307
288
doc/en/release-notes/NEWS.txt: NEWS
308
289
        $(PYTHON) -c "import shutil; shutil.copyfile('$<', '$@')"
309
290
 
415
396
 
416
397
### Packaging Targets ###
417
398
 
418
 
.PHONY: dist check-dist-tarball
 
399
.PHONY: dist dist-upload-escudero check-dist-tarball
419
400
 
420
 
# build a distribution source tarball
 
401
# build a distribution tarball and zip file.
421
402
#
422
403
# this method of copying the pyrex generated files is a bit ugly; it would be
423
404
# nicer to generate it from distutils.
427
408
        expbasedir=`mktemp -t -d tmp_bzr_dist.XXXXXXXXXX` && \
428
409
        expdir=$$expbasedir/bzr-$$version && \
429
410
        tarball=$$PWD/../bzr-$$version.tar.gz && \
 
411
        zipball=$$PWD/../bzr-$$version.zip && \
430
412
        $(MAKE) clean && \
431
413
        $(MAKE) && \
432
414
        bzr export $$expdir && \
433
 
        cp bzrlib/*.c bzrlib/*.h $$expdir/bzrlib/. && \
 
415
        cp bzrlib/*.c $$expdir/bzrlib/. && \
434
416
        tar cfz $$tarball -C $$expbasedir bzr-$$version && \
 
417
        (cd $$expbasedir && zip -r $$zipball bzr-$$version) && \
435
418
        gpg --detach-sign $$tarball && \
 
419
        gpg --detach-sign $$zipball && \
436
420
        rm -rf $$expbasedir
437
421
 
438
422
# run all tests in a previously built tarball
443
427
        tar Cxz $$tmpdir -f $$tarball && \
444
428
        $(MAKE) -C $$tmpdir/bzr-$$version check && \
445
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