diff options
author | grant <grant@pkgsrc.org> | 2004-02-08 09:13:43 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-02-08 09:13:43 +0000 |
commit | bb4eec4fb63ca68daee7a442aa198c88266b44a6 (patch) | |
tree | ea3bec8d12438010f1d0f558a66cf0aa925dc6f5 | |
parent | 21caf78aaa844ce3f14ffde07e8e5a15c2cdf2d3 (diff) | |
download | pkgsrc-bb4eec4fb63ca68daee7a442aa198c88266b44a6.tar.gz |
include the total number of binary pkgs created in the report. fix
some HTML nits.
-rw-r--r-- | mk/bulk/post-build | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/mk/bulk/post-build b/mk/bulk/post-build index 48789bb616c..637b2c1ff37 100644 --- a/mk/bulk/post-build +++ b/mk/bulk/post-build @@ -1,5 +1,5 @@ #!/usr/pkg/bin/perl -# $NetBSD: post-build,v 1.31 2004/02/05 23:53:16 grant Exp $ +# $NetBSD: post-build,v 1.32 2004/02/08 09:13:43 grant Exp $ # # Collect stuff after a pkg bulk build # @@ -220,6 +220,13 @@ sub writeReport { $nbrokentot = $nbroken + $nbrokendep; $ntotal = $nunpackaged + $nbroken + $nbrokendep; + # determine the number of packages attempted, and then successful + open(ORDER, $ordfile) || die "can't open $ordfile: $!"; + my @order = <ORDER>; + close(ORDER); + my $nattempted = scalar(@order); + my $nsuccessful = $nattempted - $ntotal; + if ($verbose) { print <<EOF; pkgsrc bulk build results @@ -234,6 +241,7 @@ EOF print swrite($summary_form, "Build started:", $startdate); print swrite($summary_form, "Build ended:", $enddate); print swrite($summary_form); + print swrite($summary_form, "Successfully packaged:", $nsuccessful); print swrite($summary_form, "Packages really broken:", $nbroken); print swrite($summary_form, "Pkgs broken due to them:", $nbrokendep); print swrite($summary_form, "Total broken:", $nbrokentot); @@ -362,20 +370,23 @@ alink="#3535c5"> <tr> <td> </td> <td> </td> </tr> +<tr> + <td>Successfully packaged:</td> <td align="right">$nsuccessful</td> +</tr> <tr class="pkg-broken"> - <td>Packages really broken: <td align="right">$nbroken</td> + <td>Packages really broken:</td> <td align="right">$nbroken</td> </tr> <tr class="pkg-brokendepends"> - <td>Packages broken due to them: <td align="right">$nbrokendep</td> + <td>Packages broken due to them:</td> <td align="right">$nbrokendep</td> </tr> <tr> - <td>Total broken: <td align="right">$nbrokentot</td> + <td>Total broken:</td> <td align="right">$nbrokentot</td> </tr> <tr class="pkg-notpackaged"> - <td>Not packaged: <td align="right">$nunpackaged</td> + <td>Not packaged:</td> <td align="right">$nunpackaged</td> </tr> <tr> - <td>Total: <td align="right">$ntotal</td> + <td>Total:</td> <td align="right">$ntotal</td> </tr> </table> |