aboutsummaryrefslogtreecommitdiffstats
path: root/utils/mkpatch
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-11-18 18:02:30 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-11-18 18:02:30 +0000
commit35d958cf769ba0efad9f7eeb43a54dc6d3c95556 (patch)
treeb033d3bf0562e162c32a945b8cc01cc6fb92f094 /utils/mkpatch
parent5b31cf0f9f53b08bed1e792aade56ef6d7c87e27 (diff)
downloadexternal_llvm-35d958cf769ba0efad9f7eeb43a54dc6d3c95556.zip
external_llvm-35d958cf769ba0efad9f7eeb43a54dc6d3c95556.tar.gz
external_llvm-35d958cf769ba0efad9f7eeb43a54dc6d3c95556.tar.bz2
This is a utility for preparing patches against LLVM. It runs cvs diff with
the correct options, places the patch content in order that makes sense for review, and filters cruft out of the patch (like diffs in *.cvs files). It produces both a NAME.patch.raw (unfiltered) and NAME.patch (filtered) file. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31850 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/mkpatch')
-rwxr-xr-xutils/mkpatch36
1 files changed, 36 insertions, 0 deletions
diff --git a/utils/mkpatch b/utils/mkpatch
new file mode 100755
index 0000000..3daa604
--- /dev/null
+++ b/utils/mkpatch
@@ -0,0 +1,36 @@
+#!/bin/bash
+#
+# This script makes a patch for LLVM ensuring the correct diff options and
+# putting the files in a standard review order.
+
+
+function error {
+ retcode="$?"
+ echo "mkpatch: error: $1 ($retcode)"
+ exit 1
+}
+
+if [ ! -e llvm.spec.in ] ; then
+ error "Please change directory to the LLVM top source directory"
+fi
+if [ "$#" -ne 1 ] ; then
+ error "usage: utils/mkpatch [PATCH_NAME]"
+fi
+NAME="$1"
+echo "mkpatch: Generating differences on top level files"
+cvs diff -l -Ntdup -5 . > "$NAME".patch.raw 2>&1
+echo "mkpatch: Generating differences on all directories"
+cvs diff -Ntdup -5 >> "$NAME".patch.raw 2>&1 \
+ autoconf docs utils include lib/System lib/Support lib/VMCore lib/AsmParser \
+ lib/Bytecode lib/Analysis lib/Transforms lib/CodeGen lib/Target \
+ lib/ExecutionEngine lib/Debugger lib/Linker \
+ tools test runtime projects examples win32 Xcode
+
+echo "mkpatch: Removing cruft from the patch file"
+sed "$NAME".patch.raw -e '/^[?] .*/d' -e '/^cvs diff: Diffing/d' | awk '\
+BEGIN { deleting = 0; } \
+/^Index: .*[.]cvs$/ { deleting = 1; } \
+/^Index:.*/ && !/^Index: .*[.]cvs$/ { deleting = 0; } \
+{ if (! deleting) { print; } } \
+' > "$NAME".patch || error "sed/awk cleanup failed"
+