Add git-buildpackage config, enabling signed tags and pristine-tar (replacing earlier odd config outside debian dir).
Jonas Smedegaard
13 years ago
| 0 | # Configuration file for git-buildpackage and friends | |
| 1 | ||
| 2 | [DEFAULT] | |
| 3 | # the default build command: | |
| 4 | #builder = debuild -i\.git/ -I.git | |
| 5 | # the default clean command: | |
| 6 | #cleaner = debuild clean | |
| 7 | # the default branch for upstream sources: | |
| 8 | upstream-branch = debian-orig | |
| 9 | # the default branch for the debian patch: | |
| 10 | debian-branch = debian | |
| 11 | # the default tag formats used: | |
| 12 | #upstream-tag = upstream/%(version)s | |
| 13 | #debian-tag = debian/%(version)s | |
| 14 | # use pristine-tar: | |
| 15 | #pristine-tar = True | |
| 16 | ||
| 17 | # Options only affecting git-buildpackage | |
| 18 | [git-buildpackage] | |
| 19 | #upstream-branch = dfsgclean | |
| 20 | # uncomment this to automatically GPG sign tags | |
| 21 | #sign-tags = True | |
| 22 | # keyid to GPG sign tags with | |
| 23 | #keyid = 0xdeadbeef | |
| 24 | # push to a remote repository after a successful tag: | |
| 25 | #posttag = git-push git.example.com | |
| 26 | # use this for more svn-buildpackage like behaviour: | |
| 27 | export-dir = ../build-area/ | |
| 28 | #tarball-dir = ../tarballs/ | |
| 29 | #ignore-new = True | |
| 30 | ||
| 31 | # Options only affecting git-import-orig | |
| 32 | [git-import-orig] | |
| 33 | #upstream-branch = newupstream | |
| 34 | #debian-branch = dfsgclean | |
| 35 | #filter = .svn | |
| 36 | ||
| 37 | # Options only affecting git-import-dsc | |
| 38 | [git-import-dsc] | |
| 39 | #upstream-branch = svn-upstream | |
| 40 | #filter = [ 'CVS', '.cvsignore' ] | |
| 41 | ||
| 42 | # Options only affecting git-dch | |
| 43 | [git-dch] | |
| 44 | #git-log = --no-merges | |
| 45 | #snapshot-number = snapshot + 1 | |
| 46 | #id-length = 0 |