diff options
author | Bastien Nocera | 2002-05-15 02:49:32 +0000 |
---|---|---|
committer | Bastien Nocera | 2002-05-15 02:49:32 +0000 |
commit | 11cda19c37a4092ce5632f03527963c1f4a28914 (patch) | |
tree | d88bf44c089edaada08237984a4d0379916bfcae /debian/prepare | |
parent | 885f043a7f0966ba5f0d43eef0760a0e6fd563d4 (diff) | |
download | scummvm-rg350-11cda19c37a4092ce5632f03527963c1f4a28914.tar.gz scummvm-rg350-11cda19c37a4092ce5632f03527963c1f4a28914.tar.bz2 scummvm-rg350-11cda19c37a4092ce5632f03527963c1f4a28914.zip |
- added the official debian changelog, that nobody apart from me should modify. This should allow Ender to make releases of his own, and me still having the changelog from the official debian package as I want them.
- modified the prepare script to use changelog.debian_official if the username is hadess :)
- added a --nocvs arg to the prepare script to force generating non-snapshot changelogs
svn-id: r4336
Diffstat (limited to 'debian/prepare')
-rwxr-xr-x | debian/prepare | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/debian/prepare b/debian/prepare index 63384fe647..0698be1184 100755 --- a/debian/prepare +++ b/debian/prepare @@ -5,12 +5,16 @@ if [ ! -e debian/rules ] ; then exit 1 fi -if [ -d CVS/ ] ; then +if [ -d CVS/ ] && [ $1 != "--nocvs" ]; then TODATE=`date +%Y%m%d` NEXT_VERSION=`grep SCUMMVM_VERSION scumm.h | sed 's,\#define\ SCUMMVM_VERSION\ \",,gi' | sed 's,\ devel\",,gi'` cat debian/changelog.cvs | sed s/@VERSION@/$NEXT_VERSION.cvs$TODATE/g \ > debian/changelog.tmp && mv debian/changelog.tmp debian/changelog exit 0 else - cp debian/changelog.debian debian/changelog + if [ x$USER = xhadess ]; then + cp debian/changelog.debian_official debian/changelog + else + cp debian/changelog.debian debian/changelog + fi fi |