]> git.pld-linux.org Git - packages/rpm-build-tools.git/blobdiff - purge-packages.sh
handle chef as ruby gem
[packages/rpm-build-tools.git] / purge-packages.sh
index 2819921db0f118c4252433071167852cc3607a25..d93e6df77c905546d627bd7648d1ffaa1b9dd21a 100755 (executable)
@@ -4,10 +4,15 @@
 # - otherwise git gc is called
 set -e
 
+CALL_GC=${CALL_GC:-'no'}
+
 topdir=$(rpm -E %_topdir)
 purgedir=$topdir/purged
 cd "$topdir"
 
+echo "Purging in $topdir, press ENTER to continue"
+read a
+
 if [ -d "$purgedir" ]; then
        echo >&2 "Previous pruge dir exists: $purgedir, remove it to resume"
        exit 1
@@ -17,23 +22,40 @@ install -d $purgedir
 for pkg in */.git; do
        pkg=${pkg%/.git}
        cd "$pkg"
+       purge='yes'
+
        status=$(git status --porcelain)
        stash=$(git stash list)
 
        # FIXME: does not currently handle if some pushes are not made!
        if [ -n "$status" ] || [ -n "$stash" ]; then
                cat <<-EOF
-               * Package $pkg - Untracked files or stash not empty. Invoke gc
-
+               * Package $pkg - Untracked files or stash not empty.
                $status
                EOF
-               git gc
-       else
+               purge='no'
+               [ "$CALL_GC" != 'no' ] && git gc
+       fi
+       git show-ref --heads |\
+       { while read sha1 branch; do
+               short_branch=${branch#refs/heads/}
+               if ! upstream=$(git rev-parse -q --verify $short_branch@{u}) 2>/dev/null; then
+                       echo "* Package $pkg - Branch $short_branch has not defined upstream"
+                       purge='no'
+                       continue
+               fi
+               if [ -n "$(git rev-list "$upstream..$branch")" ]; then
+                       echo "* Package $pkg - Branch $short_branch is not fully merged to its upstream"
+                       purge='no'
+                       continue
+               fi
+       done
+       if [ "$purge" = 'yes' ]; then
                cat <<-EOF
                * Package $pkg - State clean. Removing
                EOF
                mv ../$pkg $purgedir
-       fi
+       fi }
        cd ..
 done
 
This page took 0.137517 seconds and 4 git commands to generate.