summaryrefslogtreecommitdiff
path: root/scite/debian/gbp.conf
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-04-16 16:51:44 +0000
committerB. Stack <bgstack15@gmail.com>2022-04-16 16:51:44 +0000
commit2611ac2c41471e12a2b1e6b217322f00cb9266d1 (patch)
tree9fc348166a26334b739259b11e039570c23f1f4d /scite/debian/gbp.conf
parentMerge branch 'librewolf-bump' into 'master' (diff)
parentfix #29: add functions to scite stackrpms.lua (diff)
downloadstackrpms-2611ac2c41471e12a2b1e6b217322f00cb9266d1.tar.gz
stackrpms-2611ac2c41471e12a2b1e6b217322f00cb9266d1.tar.bz2
stackrpms-2611ac2c41471e12a2b1e6b217322f00cb9266d1.zip
Merge branch 'scite-bump' into 'master'
Scite bump Closes #29 See merge request bgstack15/stackrpms!294
Diffstat (limited to 'scite/debian/gbp.conf')
-rw-r--r--scite/debian/gbp.conf25
1 files changed, 25 insertions, 0 deletions
diff --git a/scite/debian/gbp.conf b/scite/debian/gbp.conf
new file mode 100644
index 0000000..c9bd187
--- /dev/null
+++ b/scite/debian/gbp.conf
@@ -0,0 +1,25 @@
+[DEFAULT]
+
+# The default name for the upstream branch is "upstream".
+# Change it if the name is different (for instance, "master").
+upstream-branch = upstream/latest
+
+# The default name for the Debian branch is "master".
+# Change it if the name is different (for instance, "debian/unstable").
+debian-branch = debian/master
+
+# git-import-orig uses the following names for the upstream tags.
+# Change the value if you are not using git-import-orig
+upstream-tag = upstream/%(version)s
+
+# Always use pristine-tar.
+pristine-tar = True
+
+[import-orig]
+
+# Make sure we merge to debian/master branch
+merge = True
+
+# Filter out files
+filter = [ 'scintilla/tgzsrc.orig' ]
+
bgstack15