summaryrefslogtreecommitdiff
path: root/debian/prepare-new-release.sh
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2017-10-15 15:41:01 +0300
committerIgor Pashev <pashev.igor@gmail.com>2017-10-15 15:41:01 +0300
commit7a2b43796a4c38cf98fe05e8e4ec985318b2721b (patch)
treeb0f5611276e10646b654f7d5ed12c6e6060353be /debian/prepare-new-release.sh
downloadllvm-toolchain-5.0-debian.tar.gz
Imported llvm-toolchain-5.0 (1:5.0-4)debian/5.0-4debian
Diffstat (limited to 'debian/prepare-new-release.sh')
-rw-r--r--debian/prepare-new-release.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/debian/prepare-new-release.sh b/debian/prepare-new-release.sh
new file mode 100644
index 0000000..d1402c3
--- /dev/null
+++ b/debian/prepare-new-release.sh
@@ -0,0 +1,12 @@
+#!/bin/sh
+ORIG_VERSION=4.0
+TARGET_VERSION=5.0
+ORIG_VERSION_2=4_0
+TARGET_VERSION_2=5_0
+
+LIST=`ls debian/control debian/orig-tar.sh debian/rules debian/patches/clang-analyzer-force-version.diff debian/patches/clang-format-version.diff debian/patches/python-clangpath.diff debian/patches/scan-build-clang-path.diff debian/patches/lldb-libname.diff debian/patches/fix-scan-view-path.diff debian/patches/lldb-addversion-suffix-to-llvm-server-exec.patch debian/patches/clang-tidy-run-bin.diff`
+for F in $LIST; do
+ sed -i -e "s|$ORIG_VERSION_2|$TARGET_VERSION_2|g" $F
+ sed -i -e "s|$ORIG_VERSION|$TARGET_VERSION|g" $F
+done
+