summaryrefslogtreecommitdiff
path: root/Tools/portbuild
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2003-01-24 04:59:03 +0000
committerKris Kennaway <kris@FreeBSD.org>2003-01-24 04:59:03 +0000
commit220758235c595e44c09c73598f8cddad869f2c40 (patch)
treeb795c7298348c62c1e12da0a4998ec890c53a548 /Tools/portbuild
parentMake this port PREFIX?=${X11BASE} rather than USE_X_PREFIX, because it doesn't (diff)
Simple script to check the number of packages built on the various
architectures, for a given branch.
Notes
Notes: svn path=/head/; revision=73921
Diffstat (limited to 'Tools/portbuild')
-rwxr-xr-xTools/portbuild/scripts/stats17
1 files changed, 17 insertions, 0 deletions
diff --git a/Tools/portbuild/scripts/stats b/Tools/portbuild/scripts/stats
new file mode 100755
index 000000000000..0040dd3ee6d6
--- /dev/null
+++ b/Tools/portbuild/scripts/stats
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+if [ $# -ne 1 ]; then
+ echo "usage: <branch>"
+ exit 1
+fi
+
+branch=$1
+
+for i in i386 alpha sparc64 ia64; do
+ if [ -d /var/portbuild/$i/${branch}/packages/All ]; then
+ cd /var/portbuild/$i/${branch}/packages/All
+ count=$(find . -name \*.tbz -o -name \*.tgz |wc -l)
+ echo -n "$i: ${count} "
+ fi
+done
+echo