]> saetta.ns0.it Git - msys2/commitdiff
Script che ritorna vero se un pacchetto debian git snapshot deve essere aggiornato.
authorAndrea Zagli <azagli@libero.it>
Thu, 2 Mar 2017 16:09:57 +0000 (17:09 +0100)
committerAndrea Zagli <azagli@libero.it>
Mon, 6 Mar 2017 08:18:28 +0000 (09:18 +0100)
Lo script prende le informazioni dal file di configurazione di gbp.

tools/autobuilder/debian_tobeupdated.sh [new file with mode: 0755]

diff --git a/tools/autobuilder/debian_tobeupdated.sh b/tools/autobuilder/debian_tobeupdated.sh
new file mode 100755 (executable)
index 0000000..1cec85a
--- /dev/null
@@ -0,0 +1,42 @@
+#!/bin/bash
+
+if [ ! -d "debian" ]; then
+       echo "No debian directory found."
+       exit;
+fi
+
+# current branch
+CURRENT_BRANCH=`git branch | grep \* | sed -n -e 's/\* //p'`
+
+echo "Current branch: "$CURRENT_BRANCH
+
+# the upstream-branch from debian/gbp.conf
+UPSTREAM_BRANCH=`sed -n -e 's/^\s*upstream-branch\s*=\s*//p' debian/gbp.conf`
+
+echo "Upstream branch: "$UPSTREAM_BRANCH
+
+# update upstream branch
+git checkout $UPSTREAM_BRANCH
+git pull
+git checkout $CURRENT_BRANCH
+
+# not empty if there's at least one commit be merged
+TO_BE_MERGED=`git log --pretty=oneline --graph ..$UPSTREAM_BRANCH | head -n 1 | sed -n -e 's/\* //p'`
+TO_BE_MERGED=${TO_BE_MERGED%% *}
+
+echo "Last commit to be merged: "$TO_BE_MERGED
+
+if [ "$TO_BE_MERGED" = "" ]; then
+       echo -e "\nNot to be updated."
+else
+       # the snapshot hash of the package
+       SNAPSHOT_HASH=`head -n 1 debian/changelog | sed -n -e 's/.*\((.*)\).*/\1/;s/.*\(\.gbp\(.*\))\)/\2/p'`
+
+       echo "Debian package snapshot version: "$SNAPSHOT_HASH
+
+       if [ "${TO_BE_MERGED:6}" = "$SNAPSHOT_HASH" ]; then
+               echo -e "\nNot to be updated."
+       else
+               echo -e "\nThe debian branch must be updated."
+       fi
+fi