X-Git-Url: https://git.donarmstrong.com/?p=wannabuild.git;a=blobdiff_plain;f=bin%2Fwb-graph;h=743c1af29a76a7885fe3d9e065f91bdd2a021b0b;hp=1ef1b1808dfb41b5ee83221830434b6f6ab688e5;hb=e0bd52fb8cf3c44ecd1e425d20613219b04963d6;hpb=50075d303d48d16721af650c8ff6bbe363ae5b77 diff --git a/bin/wb-graph b/bin/wb-graph index 1ef1b18..743c1af 100755 --- a/bin/wb-graph +++ b/bin/wb-graph @@ -35,9 +35,10 @@ my $date=`date -u "+%m/%d/%Y %T"`; chop($date); print "$date"; -. /org/wanna-build/triggers/common +my @archs = qw(alpha arm hppa hurd-i386 i386 ia64 m68k mips mipsel powerpc s390 amd64 sparc armel kfreebsd-amd64 kfreebsd-i386); +my $arch; -for arch in $ARCHS_unstable; do +foreach $arch (@archs) { my($lastmsg, %n_state, $total, %n_builder, $pu_total); $pu_total = 0; @@ -68,13 +69,14 @@ if ($?) { print ", 0, 0"; } else { # $total -= $n_state{"Not-For-Us"}; + $total -= $n_state{"Auto-Not-For-Us"}; if ( $previously_built ) { print ", ".$n_state{"Installed"}.", ".$pu_total; } else { print ", ".$n_state{"Installed"}.", ".$total; } } -done +} print "\n"; exit 0;