svn path=/trunk/packages/invirt-dev/; revision=1584
invirt-dev (0.0.6) unstable; urgency=low
* Punt duplicate dirs file and unused docs file in package
+ * Add invirt-ood-build for building out of date packages
- -- Evan Broder <broder@mit.edu> Mon, 10 Nov 2008 03:42:26 -0500
+ -- Evan Broder <broder@mit.edu> Mon, 10 Nov 2008 03:43:41 -0500
invirt-dev (0.0.5) unstable; urgency=low
repository-config/* srv/repository/conf
invirt-build-release usr/bin
invirt-ood-packages usr/bin
+invirt-ood-build usr/bin
--- /dev/null
+#!/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 "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
+
+IFS="$(echo)"
+for package in $packages; do
+ invirt-build-release "$package"
+fi