diff options
Diffstat (limited to '.gbp.conf')
-rw-r--r-- | .gbp.conf | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.gbp.conf b/.gbp.conf new file mode 100644 index 0000000..ffe959f --- /dev/null +++ b/.gbp.conf @@ -0,0 +1,19 @@ +[DEFAULT] +# Do not merge to packaging (after update) +merge=False +# Package is from Debian +upstream-tag=v%(version)s +# Don't use pristine-tar +pristine-tar=False +# Branch naming +packaging-branch=devel +upstream-branch=upstream +# Subdir for RPM packaging data +packaging-dir=packaging +# Auto-generate patches against upstream +patch-export = True +patch-numbers = True +patch-export-ignore-path = (.gbp.conf|packaging/.*|debian/.*) +# Don't fail if the current branch does not match the main packaging branch +ignore-branch = True + |