mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 18:03:04 +01:00
Remove old script from branches.
This commit is contained in:
parent
bee4389205
commit
f2886984c4
@ -1,30 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
PositiveOffset=15462 # will be correct for all branches after FB3
|
||||
# Other values are: 2.5:13820 2.1:9165 2.0:6144 1.5:1748
|
||||
|
||||
TmpDir=/var/tmp
|
||||
TmpLog=${TmpDir}/temp.log
|
||||
TmpFile=temp.build.num
|
||||
TmpSmall=${TmpDir}/small.log
|
||||
WriteBuildNumFile="src/misc/writeBuildNum.sh"
|
||||
HeaderFile="src/jrd/build_no.h"
|
||||
|
||||
cd /home/fbadmin/changelogs/branches/B3_0_Release
|
||||
svn up || exit
|
||||
svn log -v >$TmpLog || exit
|
||||
smallog /firebird/branches/B3_0_Release/ <$TmpLog >$TmpSmall || exit
|
||||
dd if=$TmpSmall of=ChangeLog bs=512k || exit
|
||||
|
||||
VersionCount=`egrep -c '[0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}' ChangeLog`
|
||||
BuildNo=$((${VersionCount}+${PositiveOffset}))
|
||||
Starting="BuildNum="
|
||||
NewLine="BuildNum=$BuildNo"
|
||||
AwkProgram="(/^$Starting.*/ || \$1 == \"$Starting\") {\$0=\"$NewLine\"} {print \$0}"
|
||||
awk "$AwkProgram" <$WriteBuildNumFile >$TmpFile && mv $TmpFile $WriteBuildNumFile
|
||||
chmod +x $WriteBuildNumFile
|
||||
|
||||
$WriteBuildNumFile rebuildHeader $HeaderFile $TmpFile
|
||||
|
||||
svn commit -m "nightly update" ChangeLog $WriteBuildNumFile $HeaderFile
|
||||
rm -f $TmpLog $TmpFile $TmpSmall
|
Loading…
Reference in New Issue
Block a user