diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-04-18 20:18:41 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-04-19 08:17:15 -0700 |
commit | 83a963bc3788d7eec37b2761c447ee53608bdd5d (patch) | |
tree | a432822b709051005f3cc0b08e595269e9ceebb5 /packaging/OBS/make-package.sh | |
parent | 37badf274654e292c9bdb2da210e02975038c9cf (diff) | |
download | subsurface-83a963bc3788d7eec37b2761c447ee53608bdd5d.tar.gz |
build-system: create separate OBS make-package
It seemed very odd to have those steps mixed in with the Ubuntu/Debian
instructions. Yes, there is a bunch of overlap, but this seems much cleaner.
This also updates the spec files to something that works for the current
sources.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging/OBS/make-package.sh')
-rw-r--r-- | packaging/OBS/make-package.sh | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/packaging/OBS/make-package.sh b/packaging/OBS/make-package.sh new file mode 100644 index 000000000..78cb409dd --- /dev/null +++ b/packaging/OBS/make-package.sh @@ -0,0 +1,89 @@ +#!/bin/bash -e +# start from the directory above the subsurface directory +# +# we need to build the google maps plugin which is not part of our sources, so let's make sure +# it is included in our source tar file + +if [[ $(pwd | grep "subsurface$") || ! -d subsurface || ! -d subsurface/libdivecomputer ]] ; then + echo "Please start this script from the folder ABOVE the subsurface source directory" + exit 1; +fi +if [[ ! -d googlemaps ]] ; then + echo "Please make sure you have the current master of git://github.com/Subsurface-divelog/googlemaps" + echo "checked out in parallel to the Subsurface directory" + exit 1; +fi + +# ensure that the libdivecomputer module is there and current +cd subsurface +git submodule init +git submodule update +cd - + +GITVERSION=$(cd subsurface ; git describe --abbrev=12 | sed -e 's/-g.*$// ; s/^v//') +GITREVISION=$(echo $GITVERSION | sed -e 's/.*-// ; s/.*\..*//') +VERSION=$(echo $GITVERSION | sed -e 's/-/./') +GITDATE=$(cd subsurface ; git log -1 --format="%at" | xargs -I{} date -d @{} +%Y-%m-%d) +LIBDCREVISION=$(cd subsurface/libdivecomputer ; git rev-parse --verify HEAD) + +if [[ "$GITVERSION" = "" ]] ; then + SUFFIX=".release" +else + SUFFIX=".daily" +fi + +echo "building Subsurface" $VERSION "with libdivecomputer" $LIBDCREVISION + +# we put all of the files into the distrobuilds directory in order not to clutter the 'src' directory +mkdir -p distrobuilds +cd distrobuilds + +if [[ ! -d subsurface_$VERSION ]]; then + mkdir subsurface_$VERSION + if [[ "$GITREVISION" != "" ]] ; then + rm -f subsurfacedaily-$VERSION + ln -s subsurface_$VERSION subsurfacedaily-$VERSION + else + rm -f subsurface-$VERSION + ln -s subsurface_$VERSION subsurface-$VERSION + fi + + echo "copying sources" + + (cd ../subsurface ; tar cf - . ) | (cd subsurface_$VERSION ; tar xf - ) + cd subsurface_$VERSION; + cp -a ../../googlemaps . + + rm -rf .git libdivecomputer/.git googlemaps/.git build build-mobile libdivecomputer/build googlemaps/build + echo $GITVERSION > .gitversion + echo $GITDATE > .gitdate + echo $LIBDCREVISION > libdivecomputer/revision + + if [[ "$GITREVISION" != "" ]] ; then + (cd .. ; tar ch subsurfacedaily-$VERSION | xz > home:Subsurface-Divelog/Subsurface-daily/subsurface-$VERSION.orig.tar.xz) & + else + (cd .. ; tar ch subsurface-$VERSION | xz > home:Subsurface-Divelog/Subsurface/subsurface-$VERSION.orig.tar.xz) & + fi +else + echo "using existing source tree" +fi + +if [[ "$1" = "post" ]] ; then + # daily vs. release + if [[ "$GITREVISION" == "" ]] ; then + # this is a release + cd home:Subsurface-Divelog/Subsurface + osc rm $(ls subsurface*.tar.xz | grep -v $VERSION) + osc add subsurface-$VERSION.orig.tar.xz + sed -i "s/%define latestVersion.*/%define latestVersion $VERSION/" subsurface.spec + sed -i "s/%define gitVersion .*/%define gitVersion 0/" subsurface.spec + osc commit -m "next release build" + else + cd home:Subsurface-Divelog/Subsurface-daily + osc rm $(ls subsurface*.tar.xz | grep -v $VERSION) + osc add subsurface-$VERSION.orig.tar.xz + sed -i "s/%define latestVersion.*/%define latestVersion $VERSION/" subsurfacedaily.spec + sed -i "s/%define gitVersion .*/%define gitVersion $GITREVISION/" subsurfacedaily.spec + osc commit -m "next daily build" + fi +fi |