~ubuntu-branches/debian/sid/bzr-builddeb/sid

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Package Import Robot
  • Author(s): Jelmer Vernooij, Jonathan Riddell, Jelmer Vernooij, Martin Packman
  • Date: 2011-12-16 19:58:57 UTC
  • Revision ID: package-import@ubuntu.com-20111216195857-pnkqsnkv0qlv2358
Tags: 2.8.0
[ Jonathan Riddell ]
* Add get-orig-source command which will get the upstream tar file.
  LP: #862188
* Change "bd-do" command to "builddeb-do" and alias "bd-do".
* Add commit-message-from-changelog option for those who do not
  want commit message set automatically

[ Jelmer Vernooij ]
* Support importing and building packages with multiple upstream
  tarballs. LP: #653757, LP: #664834
* Move .bzr-builddeb/default.conf to debian/bzr-builddeb.conf.
  LP: #793137
* Fix test suite on Lucid, where dpkg-mergechangelogs is not available.

[ Martin Packman ]
* Fix test_utf8_changelog when run with older versions of python-debian.

[ Jelmer Vernooij ]
* Support svn-buildpackage tag names to find upstream versions.
  LP: #874263
* Support --revision argument to merge-package. LP: #888590
* By default, don't override the commit message from debian/changelog
  unless 'commit-message-from-changelog' is explicitly set to True. LP: #812749
* Support running dep3-patch against remote repositories, and with
  open-ended revision ranges. LP: #893608
* Fix finding orig tarballs in directories also containing filenames
  with non-utf8 characters. LP: #865753
* bzr-builddeb now prefers the 'get-packaged-orig-source' rule to
  retrieve the packaged upstream source, and warns about
  'get-orig-source'. LP: #409862
* Support translations.

[ Martin Packman ]
* Deal with invalid versions and bad encoding in the changelog merge
  hook. LP: #893495

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
all: update-pot
 
2
 
 
3
.PHONY: update-pot po/bzr-builddeb.pot
 
4
update-pot: po/bzr-builddeb.pot
 
5
 
 
6
TRANSLATABLE_PYFILES:=$(shell find . -name '*.py' \
 
7
                | grep -v 'tests/' \
 
8
                )
 
9
 
 
10
po/bzr-builddeb.pot: $(PYFILES) $(DOCFILES)
 
11
        BZR_PLUGINS_AT=builddeb@$(shell pwd) bzr export-pot \
 
12
          --plugin=builddeb > po/bzr-builddeb.pot
 
13
        echo $(TRANSLATABLE_PYFILES) | xargs \
 
14
          xgettext --package-name "bzr-builddeb" \
 
15
          --msgid-bugs-address "<bazaar@lists.canonical.com>" \
 
16
          --copyright-holder "Canonical Ltd. <bazaar@lists.canonical.com>" \
 
17
          --from-code ISO-8859-1 --sort-by-file --join --add-comments=i18n: \
 
18
          -d bzr-builddeb -p po -o bzr-builddeb.pot