summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorgrant <grant>2004-02-08 09:13:43 +0000
committergrant <grant>2004-02-08 09:13:43 +0000
commit8126be25e625cc7154221fd1422f02db407d14ea (patch)
treeea3bec8d12438010f1d0f558a66cf0aa925dc6f5 /mk
parent3110b55a75eac316ba592fc1eefbde407af51e87 (diff)
downloadpkgsrc-8126be25e625cc7154221fd1422f02db407d14ea.tar.gz
include the total number of binary pkgs created in the report. fix
some HTML nits.
Diffstat (limited to 'mk')
-rw-r--r--mk/bulk/post-build23
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>&nbsp;</td> <td>&nbsp;</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>