1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
# Configuration file for git-buildpackage and friends
[DEFAULT]
# the default branch for upstream sources:
#upstream-branch = upstream
# the default branch for the debian patch:
#debian-branch = master
# the default tag formats used:
#upstream-tag = upstream/%(version)s
#debian-tag = debian/%(version)s
# use pristine-tar:
pristine-tar = True
# Options only affecting git-buildpackage
[buildpackage]
# uncomment this to automatically GPG sign tags
sign-tags = True
builder = debuild -i'^\.git' -I.git -i'^\.travis.yml' -I.travis.yml
# Options only affecting git-dch
[dch]
# include 0 digits of the commit id in the changelog enty
id-length = 8
# don't include information from meta tags
meta = True
# what tags to look for to generate bug-closing changelog entries
meta-closes = Closes|LP
|