remove deprecated changes from the update script

This commit is contained in:
Sylvestre Ledru 2016-07-19 12:23:09 +00:00
parent 39f0f7e67c
commit 5eed75ad17

View File

@ -1,15 +1,10 @@
#!/bin/sh #!/bin/sh
ORIG_VERSION=3.8 ORIG_VERSION=3.9
TARGET_VERSION=3.9 TARGET_VERSION=4.0
ORIG_VERSION_2=3_8 ORIG_VERSION_2=3_9
TARGET_VERSION_2=3_9 TARGET_VERSION_2=4_0
LIST=`ls debian/*$ORIG_VERSION*` 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`
for F in $LIST; do
TARGET=`echo $F|sed -e "s|$ORIG_VERSION|$TARGET_VERSION|g"`
svn mv $F $TARGET
done
LIST=`ls debian/*$TARGET_VERSION* debian/control debian/*.install debian/*.links 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`
for F in $LIST; do for F in $LIST; do
sed -i -e "s|$ORIG_VERSION_2|$TARGET_VERSION_2|g" $F sed -i -e "s|$ORIG_VERSION_2|$TARGET_VERSION_2|g" $F
sed -i -e "s|$ORIG_VERSION|$TARGET_VERSION|g" $F sed -i -e "s|$ORIG_VERSION|$TARGET_VERSION|g" $F