From de00dd9e5c319ffd209adc83e9b209cecee6e61f Mon Sep 17 00:00:00 2001 From: linimon Date: Tue, 16 Oct 2007 00:37:03 +0000 Subject: Rename 'missing' column to 'not yet built' so as not to confuse terminology with portsmon reports. Noticed by: erwin --- Tools/portbuild/scripts/dopackagestats | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Tools') diff --git a/Tools/portbuild/scripts/dopackagestats b/Tools/portbuild/scripts/dopackagestats index 3d638019acd4..247ef090c9dc 100755 --- a/Tools/portbuild/scripts/dopackagestats +++ b/Tools/portbuild/scripts/dopackagestats @@ -42,7 +42,7 @@ write_table_begin () { echo "packages" >> ${TMPFILE} echo "errors" >> ${TMPFILE} echo "skipped" >> ${TMPFILE} - echo "missing" >> ${TMPFILE} + echo "not yet built" >> ${TMPFILE} echo "running?" >> ${TMPFILE} echo "completed?" >> ${TMPFILE} echo "" >> ${TMPFILE} @@ -120,11 +120,11 @@ write_row () { n_duds=`cat $directory/duds | wc -l` fi - # column: missing count + # column: not yet built count if [ $n_index -ne 0 ]; then - n_missing=`expr $n_index - $n_logs - $n_errors - $n_duds` + n_not_yet_built=`expr $n_index - $n_logs - $n_errors - $n_duds` else # index currently being rebuilt - n_missing=0 + n_not_yet_built=0 fi # column: running flag @@ -184,7 +184,7 @@ write_row () { echo "$n_duds" >> ${TMPFILE} - echo "$n_missing" >> ${TMPFILE} + echo "$n_not_yet_built" >> ${TMPFILE} echo "$running_flag" >> ${TMPFILE} echo "$completed_flag" >> ${TMPFILE} @@ -207,7 +207,7 @@ write_footer () { echo "
  • packages is number of packages successfully built. Note: if a run was restarted, you may see duplicates here.
  • " >> ${TMPFILE} echo "
  • errors is number of packages that failed. Note: if a run was restarted, you may see duplicates here.
  • " >> ${TMPFILE} echo "
  • skipped is number of packages that were skipped due to NO_PACKAGE, IGNORE, BROKEN, FORBIDDEN, and so forth (\"duds\" file).
  • " >> ${TMPFILE} - echo "
  • missing is the INDEX column minus the build logs plus the errors plus the skipped. These are packages that have not been built for one reason or another. Note: interrupted and/or restarted builds can make this number inaccurate because of the duplicates, above.
  • " >> ${TMPFILE} + echo "
  • not yet built is the INDEX column minus the build logs plus the errors plus the skipped. These are packages that have not been built for one reason or another. Note: interrupted and/or restarted builds can make this number inaccurate because of the duplicates, above.
  • " >> ${TMPFILE} echo "
  • running is whether there are still processes running.
  • " >> ${TMPFILE} echo "
  • completed is whether that build terminated normally or not, as seen from the logfile.
  • " >> ${TMPFILE} echo "" >> ${TMPFILE} -- cgit