Handle building beta packages

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2015-01-23 14:13:22 -08:00
parent 4a8e1485e1
commit 31a6f3c383

View file

@ -20,10 +20,15 @@ if [[ -d subsurface_$VERSION ]]; then
mv subsurface_$VERSION.bak subsurface_$VERSION.bak.prev mv subsurface_$VERSION.bak subsurface_$VERSION.bak.prev
mv subsurface_$VERSION subsurface_$VERSION.bak mv subsurface_$VERSION subsurface_$VERSION.bak
fi fi
rm -f subsurfacedaily-$VERSION
mkdir subsurface_$VERSION mkdir subsurface_$VERSION
ln -s subsurface_$VERSION subsurfacedaily-$VERSION if [[ "x$GITREVISION" != "x" ]] ; then
rm -f subsurfacedaily-$VERSION
ln -s subsurface_$VERSION subsurfacedaily-$VERSION
else
rm -f subsurfacebeta-$VERSION
ln -s subsurface_$VERSION subsurfacebeta-$VERSION
fi
# #
# #
echo "copying sources" echo "copying sources"
@ -39,7 +44,11 @@ echo $LIBDCREVISION > libdivecomputer/revision
# #
echo "creating source tar file for OBS and Ununtu PPA" echo "creating source tar file for OBS and Ununtu PPA"
# #
(cd .. ; tar ch subsurfacedaily-$VERSION | xz > home:Subsurface-Divelog/Subsurface-daily/subsurface-$VERSION.orig.tar.xz) & if [[ "x$GITREVISION" != "x" ]] ; then
(cd .. ; tar ch subsurfacedaily-$VERSION | xz > home:Subsurface-Divelog/Subsurface-daily/subsurface-$VERSION.orig.tar.xz) &
else
(cd .. ; tar ch subsurfacebeta-$VERSION | xz > home:Subsurface-Divelog/Subsurface-beta/subsurface-$VERSION.orig.tar.xz) &
fi
tar cf - . | xz > ../subsurface_$VERSION.orig.tar.xz tar cf - . | xz > ../subsurface_$VERSION.orig.tar.xz
# #
# #
@ -87,10 +96,23 @@ debuild -S
cd .. cd ..
if [[ "$1x" = "postx" ]] ; then if [[ "$1x" = "postx" ]] ; then
dput ppa:subsurface/subsurface-daily subsurface_$VERSION-$rev~*.changes # daily vs. beta vs. release
cd home:Subsurface-Divelog/Subsurface-daily if [[ "x$GITREVISION" == "x" ]] ; then
osc rm $(ls subsurface*.tar.xz | grep -v $VERSION) # this is a beta or a release; assume beta for now and deal with release later :-)
osc add subsurface-$VERSION.orig.tar.xz dput ppa:subsurface/subsurface-beta subsurface_$VERSION-$rev~*.changes
sed -i "s/%define gitVersion .*/%define gitVersion $GITREVISION/" subsurfacedaily.spec cd home:Subsurface-Divelog/Subsurface-beta
osc commit -m "next daily build" osc rm $(ls subsurface*.tar.xz | grep -v $VERSION)
osc add subsurface-$VERSION.orig.tar.xz
sed -i "s/%define latestVersion.*/%define latestVersion $VERSION/" subsurfacebeta.spec
sed -i "s/%define gitVersion .*/%define gitVersion 0/" subsurfacebeta.spec
osc commit -m "next beta build"
else
dput ppa:subsurface/subsurface-daily subsurface_$VERSION-$rev~*.changes
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 fi