diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-06-13 10:23:57 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-06-13 10:25:51 (GMT) |
commit | 7359f1a67ef1eeb8511a44019fd723102380c2cf (patch) | |
tree | 2d321de5e4f41f782d350c26cc6f61c7c59de5bb /Swift/Packaging/Debian/package.sh | |
parent | ff8c40a4e5a5c50572449d52754639b870dc5981 (diff) | |
download | swift-contrib-7359f1a67ef1eeb8511a44019fd723102380c2cf.zip swift-contrib-7359f1a67ef1eeb8511a44019fd723102380c2cf.tar.bz2 |
Fix Debian versioning to be strictly increasing.
Diffstat (limited to 'Swift/Packaging/Debian/package.sh')
-rwxr-xr-x | Swift/Packaging/Debian/package.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Swift/Packaging/Debian/package.sh b/Swift/Packaging/Debian/package.sh index 9c9dae1..e6f401f 100755 --- a/Swift/Packaging/Debian/package.sh +++ b/Swift/Packaging/Debian/package.sh @@ -2,9 +2,10 @@ export PYTHONPATH=../../../BuildTools/SCons VERSION=`../../../BuildTools/GetBuildVersion.py swift` -DIRNAME=swift-$VERSION +DEBIAN_VERSION=`../../../BuildTools/DebianizeVersion.py $VERSION` +DIRNAME=swift-$DEBIAN_VERSION -if [ -z "$VERSION" ]; then +if [ -z "$DEBIAN_VERSION" ]; then echo "Unable to determine version" exit -1 fi @@ -16,7 +17,7 @@ echo "Checking out a fresh copy ..." rm -rf $DIRNAME git clone ../../../.git $DIRNAME ln -s Swift/Packaging/Debian/debian $DIRNAME/debian -../../../BuildTools/UpdateDebianChangelog.py $DIRNAME/debian/changelog $VERSION +../../../BuildTools/UpdateDebianChangelog.py $DIRNAME/debian/changelog $DEBIAN_VERSION echo "Building ..." cd $DIRNAME |