chiark / gitweb /
tg-info.sh: Show missing dependencies (needs_update() enhancement)
authorPetr Baudis <pasky@suse.cz>
Sun, 3 Aug 2008 17:43:07 +0000 (19:43 +0200)
committerPetr Baudis <pasky@suse.cz>
Sun, 3 Aug 2008 17:43:07 +0000 (19:43 +0200)
needs_update() now verifies if the _dep refs exists and adds it
to a $missing_deps list if that's not the case.

tg-info.sh
tg.sh

index 2a6fd44353c3b2fac2712e4390cea41da4c0a008..c95677f2440a90c4a945d734b977abf06cee872b 100644 (file)
@@ -42,7 +42,11 @@ deps="$(git cat-file blob "$name:.topdeps" | paste -s -d' ')"
 echo "Depends: $deps"
 
 depcheck="$(mktemp)"
+missing_deps=
 needs_update "$name" >"$depcheck"
+if [ -n "$missing_deps" ]; then
+       echo "MISSING: $missing_deps"
+fi
 if [ -s "$depcheck" ]; then
        echo "Needs update from:"
        cat "$depcheck" |
diff --git a/tg.sh b/tg.sh
index e27ff3072d5da60dcc2e45dd7b806de6fa817625..ee14e62860c2a34bda48aecdc7162128bf83fb48 100644 (file)
--- a/tg.sh
+++ b/tg.sh
@@ -85,11 +85,19 @@ branch_contains()
 # to the branch (e.g. B_DIRTY B1 B2 NAME), one path per line,
 # inner paths first. Innermost name can be ':' if the head is
 # not in sync with the base.
+# If needs_update() hits missing dependencies, it will append
+# them to space-separated $missing_deps list and skip them.
 needs_update()
 {
        {
        git cat-file blob "$1:.topdeps" 2>/dev/null |
                while read _dep; do
+                       if !git rev-parse --verify "$_dep" >/dev/null 2>&1; then
+                               # All hope is lost
+                               missing_deps="$missing_deps $_dep"
+                               continue
+                       fi
+
                        _dep_is_tgish=1
                        git rev-parse --verify "refs/top-bases/$_dep" >/dev/null 2>&1 ||
                                _dep_is_tgish=