moved various scripts in scripts/ dir

add configure script wrappers
This commit is contained in:
Martin Willi
2006-10-18 11:40:53 +00:00
parent 85929956ae
commit 5ec0c594fb
5 changed files with 20 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#!/bin/bash
current=`svn info | grep Revision | sed -e "s:Revision\: ::"`
last=`svn propget release-revision .`
echo " strongswan-4.x.x / R:$current " > ChangeLog.tmp
echo "===========================" >> ChangeLog.tmp
echo "" >> ChangeLog.tmp
svn log -r $current:$last | grep -v "| martin |" | grep -v "| andreas | " | grep -v ^$ | grep -v ^------ >> ChangeLog.tmp
echo "" >> ChangeLog.tmp
echo "" >> ChangeLog.tmp
cat ChangeLog >> ChangeLog.tmp
cat ChangeLog.tmp > ChangeLog
rm ChangeLog.tmp
echo "updated ChangeLog from R:$last to R:$current"
svn propset release-revision "$current" . > /dev/null