~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Danny van Heumen
  • Date: 2010-03-09 16:38:10 UTC
  • mto: (4634.139.5 2.0)
  • mto: This revision was merged to the branch mainline in revision 5160.
  • Revision ID: danny@dannyvanheumen.nl-20100309163810-ujn8hcx08f75nlf1
Refined test to make use of locking hooks and also validate if lock is truly a checkout-lock.

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
#
208
201
 
209
202
# translate txt docs to html
210
203
derived_txt_files = \
 
204
        doc/en/user-reference/bzr_man.txt \
211
205
        doc/en/release-notes/NEWS.txt
212
206
txt_all = \
213
207
        doc/en/tutorials/tutorial.txt \
220
214
        doc/ja/tutorials/centralized_workflow.txt \
221
215
        $(wildcard doc/*/mini-tutorial/index.txt) \
222
216
        $(wildcard doc/*/user-guide/index-plain.txt) \
223
 
        doc/en/admin-guide/index-plain.txt \
224
217
        $(wildcard doc/es/guia-usario/*.txt) \
225
218
        $(derived_txt_files) \
226
219
        doc/en/upgrade-guide/index.txt \
230
223
        doc/en/user-guide/index.txt \
231
224
        doc/es/user-guide/index.txt \
232
225
        doc/ja/user-guide/index.txt \
233
 
        doc/ru/user-guide/index.txt \
234
 
        doc/en/admin-guide/index.txt
 
226
        doc/ru/user-guide/index.txt
235
227
txt_files = $(filter-out $(txt_nohtml), $(txt_all))
236
228
htm_files = $(patsubst %.txt, %.html, $(txt_files)) 
237
229
 
289
281
#doc/ru/user-guide/index.html: $(wildcard $(addsuffix /*.txt, doc/ru/user-guide)) 
290
282
#       $(rst2html) --stylesheet=../../default.css $(dir $@)index.txt $@
291
283
#
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
284
doc/developers/%.html: doc/developers/%.txt
296
285
        $(rst2html) --stylesheet=../default.css $< $@
297
286
 
304
293
%.html: %.txt
305
294
        $(rst2html) --stylesheet=../../default.css $< $@
306
295
 
 
296
doc/en/user-reference/bzr_man.txt: $(MAN_DEPENDENCIES)
 
297
        $(PYTHON) tools/generate_docs.py -o $@ rstx
 
298
 
307
299
doc/en/release-notes/NEWS.txt: NEWS
308
300
        $(PYTHON) -c "import shutil; shutil.copyfile('$<', '$@')"
309
301
 
415
407
 
416
408
### Packaging Targets ###
417
409
 
418
 
.PHONY: dist check-dist-tarball
 
410
.PHONY: dist dist-upload-escudero check-dist-tarball
419
411
 
420
 
# build a distribution source tarball
 
412
# build a distribution tarball and zip file.
421
413
#
422
414
# this method of copying the pyrex generated files is a bit ugly; it would be
423
415
# nicer to generate it from distutils.
427
419
        expbasedir=`mktemp -t -d tmp_bzr_dist.XXXXXXXXXX` && \
428
420
        expdir=$$expbasedir/bzr-$$version && \
429
421
        tarball=$$PWD/../bzr-$$version.tar.gz && \
 
422
        zipball=$$PWD/../bzr-$$version.zip && \
430
423
        $(MAKE) clean && \
431
424
        $(MAKE) && \
432
425
        bzr export $$expdir && \
433
 
        cp bzrlib/*.c bzrlib/*.h $$expdir/bzrlib/. && \
 
426
        cp bzrlib/*.c $$expdir/bzrlib/. && \
434
427
        tar cfz $$tarball -C $$expbasedir bzr-$$version && \
 
428
        (cd $$expbasedir && zip -r $$zipball bzr-$$version) && \
435
429
        gpg --detach-sign $$tarball && \
 
430
        gpg --detach-sign $$zipball && \
436
431
        rm -rf $$expbasedir
437
432
 
438
433
# run all tests in a previously built tarball
443
438
        tar Cxz $$tmpdir -f $$tarball && \
444
439
        $(MAKE) -C $$tmpdir/bzr-$$version check && \
445
440
        rm -rf $$tmpdir
 
441
 
 
442
 
 
443
# upload previously built tarball to the download directory on bazaar-vcs.org,
 
444
# and verify that it can be downloaded ok.
 
445
dist-upload-escudero:
 
446
        version=`./bzr version --short` && \
 
447
        tarball=../bzr-$$version.tar.gz && \
 
448
        zipball=../bzr-$$version.zip && \
 
449
        scp $$zipball $$zipball.sig $$tarball $$tarball.sig \
 
450
            escudero.ubuntu.com:/srv/bazaar.canonical.com/www/releases/src \
 
451
                && \
 
452
        echo verifying over http... && \
 
453
        curl http://bazaar-vcs.org/releases/src/bzr-$$version.zip \
 
454
                | diff -s - $$zipball && \
 
455
        curl http://bazaar-vcs.org/releases/src/bzr-$$version.zip.sig \
 
456
                | diff -s - $$zipball.sig 
 
457
        curl http://bazaar-vcs.org/releases/src/bzr-$$version.tar.gz \
 
458
                | diff -s - $$tarball && \
 
459
        curl http://bazaar-vcs.org/releases/src/bzr-$$version.tar.gz.sig \
 
460
                | diff -s - $$tarball.sig