]> git.donarmstrong.com Git - wannabuild.git/blobdiff - bin/wb-graph
Don't count Auto-Not-For-Us in stats for the graphs
[wannabuild.git] / bin / wb-graph
index 2a952d004b2374ef05cbc525c459917cf5d8e1a9..743c1af29a76a7885fe3d9e065f91bdd2a021b0b 100755 (executable)
@@ -42,10 +42,10 @@ foreach $arch (@archs) {
 
 my($lastmsg, %n_state, $total, %n_builder, $pu_total);
 $pu_total = 0;
-$n_state{"Installed"} = 0;
-open( PIPE, "wanna-build --database=$arch/build-db --dist=$dist --list=all |" )
+$n_state{"Installed"} = 0; 
+open( my $pipe, '-|', "wanna-build -A $arch --dist=$dist --list=all" )
        or die "Cannot spawn wanna-build: $!\n";
-while( <PIPE> ) {
+while( <$pipe> ) {
        if (/^Database for $dist doesn't exist$/) {
                last;
        }
@@ -64,11 +64,12 @@ while( <PIPE> ) {
        }
        $lastmsg = $_;
 }
-close( PIPE );
+close( $pipe );
 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 {