summaryrefslogtreecommitdiff
path: root/.quiltrc
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2016-03-05 17:54:39 -0700
committerSean Whitton <spwhitton@spwhitton.name>2016-03-05 17:54:39 -0700
commitc1bdbb9ef65dba5f31d5cc4325d9b065a233c84c (patch)
tree889d1be2c7b8a14d189d8021cd37c2c0ba92377e /.quiltrc
parent3ccb45d44400665bdf443a550aef63eb992a3e0b (diff)
downloaddotfiles-c1bdbb9ef65dba5f31d5cc4325d9b065a233c84c.tar.gz
basic .quiltrc
Diffstat (limited to '.quiltrc')
-rw-r--r--.quiltrc12
1 files changed, 12 insertions, 0 deletions
diff --git a/.quiltrc b/.quiltrc
new file mode 100644
index 00000000..f3b0d15d
--- /dev/null
+++ b/.quiltrc
@@ -0,0 +1,12 @@
+# from https://raphaelhertzog.com/2012/08/08/how-to-use-quilt-to-manage-patches-in-debian-packages/
+for where in ./ ../ ../../ ../../../ ../../../../ ../../../../../; do
+ if [ -e ${where}debian/rules -a -d ${where}debian/patches ]; then
+ export QUILT_PATCHES=debian/patches
+ break
+ fi
+done
+
+QUILT_PUSH_ARGS="--color=auto"
+QUILT_DIFF_ARGS="--no-timestamps --no-index -p ab --color=auto"
+QUILT_REFRESH_ARGS="--no-timestamps --no-index -p ab"
+QUILT_DIFF_OPTS='-p'