Punt the invirt-ood-packages script (and invirt-ood-build).
authorEvan Broder <broder@mit.edu>
Sun, 22 Nov 2009 21:07:26 +0000 (16:07 -0500)
committerEvan Broder <broder@mit.edu>
Sun, 22 Nov 2009 21:07:26 +0000 (16:07 -0500)
They were always designed for a one-branch-only world, and we will no
longer be living in such a world after the git revolution.

svn path=/trunk/packages/invirt-dev/; revision=2549

invirt-ood-build [deleted file]
invirt-ood-packages [deleted file]

diff --git a/invirt-ood-build b/invirt-ood-build
deleted file mode 100755 (executable)
index fe2365a..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/bash
-
-packages="$(invirt-ood-packages)"
-
-if [ ${#packages} -eq 0 ]; then
-    echo "No packages to build."
-    exit 0
-fi
-
-echo "The following NEW packages will be built:"
-echo $packages | fmt | sed 's/^/  /'
-echo -n "Do you want to continue? [Y/n] "
-
-read answer
-if [ "${answer:0:1}" = "n" -o "${answer:0:1}" = "N" ]; then
-   echo "Abort."
-   exit 0
-fi
-
-for package in $packages; do
-    invirt-build-release "$package"
-done
diff --git a/invirt-ood-packages b/invirt-ood-packages
deleted file mode 100755 (executable)
index 0d1d918..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/bash
-
-svn="$(invirt-getconf svn.uri)"
-
-for package in $(svn ls "$svn/trunk/packages"); do
-    package=${package%%/}
-    version=$(svn cat "$svn/trunk/packages/$package/debian/changelog" | dpkg-parsechangelog -l- | perl '-F:\s+' -lane 'print $F[1] if /^Version/')
-    
-    if ! svn ls "$svn/package_tags/$package/$version" >/dev/null 2>&1; then
-        echo $package
-    fi
-done