diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-12-02 10:55:52 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-12-02 10:55:52 -0800 |
commit | 589f277477a95be53a9a24a29ae15c1bca05ff80 (patch) | |
tree | db85b2025654cee2eeb34f69c34625f247fe2707 /packaging/ubuntu/make-package.sh | |
parent | ebd22b9abc689d46e49532424adb0fac912cc409 (diff) | |
download | subsurface-589f277477a95be53a9a24a29ae15c1bca05ff80.tar.gz |
Adjust version numbering for Ubuntu package
Let's use all four digits as 'version'.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging/ubuntu/make-package.sh')
-rw-r--r-- | packaging/ubuntu/make-package.sh | 27 |
1 files changed, 9 insertions, 18 deletions
diff --git a/packaging/ubuntu/make-package.sh b/packaging/ubuntu/make-package.sh index 994b00b4b..df150998e 100644 --- a/packaging/ubuntu/make-package.sh +++ b/packaging/ubuntu/make-package.sh @@ -1,16 +1,16 @@ #!/bin/bash # start from the directory above the combined subsurface & subsurface/libdivecomputer directory -VERSION=$(cd subsurface ; git describe | sed -e 's/-g.*$// ; s/^v//') +VERSION=$(cd subsurface ; git describe | sed -e 's/-g.*$// ; s/^v// ; s/-/./') echo "building Subsurface" $VERSION -if [[ -d subsurface-$VERSION ]]; then - rm -rf subsurface-$VERSION.bak.prev - mv subsurface-$VERSION.bak subsurface-$VERSION.bak.prev - mv subsurface-$VERSION subsurface-$VERSION.bak +if [[ -d subsurface_$VERSION ]]; then + rm -rf subsurface_$VERSION.bak.prev + mv subsurface_$VERSION.bak subsurface_$VERSION.bak.prev + mv subsurface_$VERSION subsurface_$VERSION.bak fi -mkdir subsurface-$VERSION -(cd subsurface ; tar cf - . .git ) | (cd subsurface-$VERSION ; tar xf - ) -cd subsurface-$VERSION -dh_make --email dirk@hohndel.org -c gpl2 --createorig --single --yes +mkdir subsurface_$VERSION +(cd subsurface ; tar cf - . .git ) | (cd subsurface_$VERSION ; tar xf - ) +cd subsurface_$VERSION +dh_make --email dirk@hohndel.org -c gpl2 --createorig --single --yes -p subsurface_$VERSION rm debian/*.ex debian/*.EX debian/README.* cp ../subsurface/packaging/ubuntu/control debian/control cp ../subsurface/packaging/ubuntu/copyright debian/copyright @@ -25,12 +25,3 @@ rm -f debian/autocl debuild -S - - - -exit -cd subsurface-$VERSION/libdivecomputer -autoreconf --install -./configure -make - |