mirror of
https://github.com/irssi/irssi.git
synced 2026-08-21 01:22:26 +02:00
Factor the code to update svn changelog into a script.
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4880 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
aa39fba88d
commit
200caf1ac6
2 changed files with 17 additions and 36 deletions
15
update-changelog.sh
Executable file
15
update-changelog.sh
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
#! /bin/sh
|
||||
|
||||
srcdir=$1
|
||||
test -d $srcdir/.svn || exit
|
||||
SVN_VERSION=`LC_ALL=C svn info $srcdir 2>/dev/null | awk '/^Last Changed Rev/{print $4}'`
|
||||
test -n "$SVN_VERSION" || exit
|
||||
if test -f $srcdir/ChangeLog; then
|
||||
CHANGELOG_VERSION=`awk 'NR == 2{print substr($1, 2);exit}' $srcdir/ChangeLog`
|
||||
fi
|
||||
if test -z "$CHANGELOG_VERSION"; then
|
||||
TZ=UTC svn log -v $srcdir > $srcdir/ChangeLog
|
||||
elif test $SVN_VERSION -ne $CHANGELOG_VERSION; then
|
||||
TZ=UTC svn log -v --incremental -r $SVN_VERSION:`expr $CHANGELOG_VERSION + 1` $srcdir | \
|
||||
cat - $srcdir/ChangeLog > ChangeLog.$$ && mv ChangeLog.$$ $srcdir/ChangeLog
|
||||
fi
|
||||
Loading…
Add table
Add a link
Reference in a new issue