From eba18ff5e9096f09db54ef348c54e671a7094c72 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Tue, 2 Dec 2014 15:26:43 -0800 Subject: Ubuntu packaging: get git version without including the full git tree Signed-off-by: Dirk Hohndel --- packaging/ubuntu/make-package.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'packaging') diff --git a/packaging/ubuntu/make-package.sh b/packaging/ubuntu/make-package.sh index 46f39cc9f..fa569d5ed 100644 --- a/packaging/ubuntu/make-package.sh +++ b/packaging/ubuntu/make-package.sh @@ -6,7 +6,8 @@ if [[ $(pwd | grep "subsurface$") || ! -d subsurface || ! -d subsurface/libdivec exit 1; fi -VERSION=$(cd subsurface ; git describe | sed -e 's/-g.*$// ; s/^v// ; s/-/./') +GITVERSION=$(cd subsurface ; git describe | sed -e 's/-g.*$// ; s/^v//') +VERSION=$(echo $GITVERSION | sed -e 's/-/./') echo "building Subsurface" $VERSION if [[ -d subsurface_$VERSION ]]; then rm -rf subsurface_$VERSION.bak.prev @@ -14,8 +15,10 @@ if [[ -d subsurface_$VERSION ]]; then mv subsurface_$VERSION subsurface_$VERSION.bak fi mkdir subsurface_$VERSION -(cd subsurface ; tar cf - . .git ) | (cd subsurface_$VERSION ; tar xf - ) +(cd subsurface ; tar cf - . ) | (cd subsurface_$VERSION ; tar xf - ) cd subsurface_$VERSION +echo $GITVERSION > .gitversion + 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 -- cgit v1.2.3-70-g09d2