diff options
author | Karel Kočí <karel.koci@nic.cz> | 2017-09-13 15:33:26 +0200 |
---|---|---|
committer | Karel Kočí <karel.koci@nic.cz> | 2017-09-13 15:33:26 +0200 |
commit | 74799790484128bc2de80a620b67aa584c204b6e (patch) | |
tree | cb5faee73240ca43a250949605648bec7817f3ba /utils/updater-ng-auto.sh | |
parent | ec7dbd0c3d7bff453883e7377e6ca974479aceb9 (diff) | |
download | turris-myrepo-74799790484128bc2de80a620b67aa584c204b6e.tar.gz turris-myrepo-74799790484128bc2de80a620b67aa584c204b6e.tar.bz2 turris-myrepo-74799790484128bc2de80a620b67aa584c204b6e.zip |
Updater-ng-auto
Diffstat (limited to 'utils/updater-ng-auto.sh')
-rwxr-xr-x | utils/updater-ng-auto.sh | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/utils/updater-ng-auto.sh b/utils/updater-ng-auto.sh new file mode 100755 index 0000000..449b045 --- /dev/null +++ b/utils/updater-ng-auto.sh @@ -0,0 +1,28 @@ +#!/bin/sh +# This script check if updater doesn't contain new commit and if so it bumps +# automatically. + +UPDATER_REPO=https://kkoci@gitlab.labs.nic.cz/turris/updater.git +UPDATER_REPO_PATH=/tmp/myrepo_updater_repo + +if [ ! -f $1/updater-ng-auto/Makefile ]; then + # Skip this when we don't have updater-ng-auto + exit +fi + +# Update updater git repo +GIT_ARGS="--git-dir="$UPDATER_REPO_PATH" --bare" +if [ ! -d $UPDATER_REPO_PATH ]; then + git clone --bare $UPDATER_REPO $UPDATER_REPO_PATH +else + git $GIT_ARGS fetch $UPDATER_REPO master:master +fi +# Get info +HASH="$(git $GIT_ARGS rev-parse HEAD)" +VERSION="$(git $GIT_ARGS describe --abbrev=0 --tags)" +RELEASE="$(($(git $GIT_ARGS rev-list --count $VERSION..HEAD) + 1))" + +# Now replace stuff in Makefile +sed -i "s/^PKG_VERSION:=.*/PKG_VERSION:=$VERSION/;s/^PKG_RELEASE:=.*/PKG_RELEASE:=$RELEASE/;s/^PKG_SOURCE_VERSION:=.*/PKG_SOURCE_VERSION:=$HASH/" $1/updater-ng-auto/Makefile + +echo -e "\e[1;35mUpdater-ng package has now version: $VERSION-$RELEASE\e[0m" |