aboutsummaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorMark Linimon <linimon@FreeBSD.org>2006-07-08 03:33:51 +0000
committerMark Linimon <linimon@FreeBSD.org>2006-07-08 03:33:51 +0000
commit8b9d5c52318e033becee666189e98f5d86c6c858 (patch)
tree514e15cecef53ae4e4e9363537e29a04db9c17ed /Tools
parent655da76c6daa540849d269b229bb8ff2ccabf939 (diff)
downloadports-8b9d5c52318e033becee666189e98f5d86c6c858.tar.gz
ports-8b9d5c52318e033becee666189e98f5d86c6c858.zip
Notes
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/portbuild/scripts/dopackagestats42
1 files changed, 21 insertions, 21 deletions
diff --git a/Tools/portbuild/scripts/dopackagestats b/Tools/portbuild/scripts/dopackagestats
index 7aab8e26415a..54d819517878 100755
--- a/Tools/portbuild/scripts/dopackagestats
+++ b/Tools/portbuild/scripts/dopackagestats
@@ -21,14 +21,14 @@ TDCOLOR_NOT_DONE="lightyellow"
# subroutines
write_header () {
-echo "<html>" > ${TMPFILE}
-echo "<head>" >> ${TMPFILE}
-echo "<title>FreeBSD package building statistics</title>" >> ${TMPFILE}
-echo "</head>" >> ${TMPFILE}
-
-echo "<body>" >> ${TMPFILE}
-echo "<h1>FreeBSD package building statistics</h1>" >> ${TMPFILE}
-echo "<p>as of `date`</p>" >> ${TMPFILE}
+ echo "<html>" > ${TMPFILE}
+ echo "<head>" >> ${TMPFILE}
+ echo "<title>FreeBSD package building statistics</title>" >> ${TMPFILE}
+ echo "</head>" >> ${TMPFILE}
+
+ echo "<body>" >> ${TMPFILE}
+ echo "<h1>FreeBSD package building statistics</h1>" >> ${TMPFILE}
+ echo "<p>as of `date`</p>" >> ${TMPFILE}
}
write_table_begin () {
@@ -140,19 +140,19 @@ write_table_end () {
}
write_footer () {
-echo "<p>explanation of columns:</p>" >> ${TMPFILE}
-echo "<ul>" >> ${TMPFILE}
-echo "<li><b>as of</b> is the date of the latest logfile.</li>" >> ${TMPFILE}
-echo "<li><b>INDEX</b> is number of ports in the INDEX file built from the latest cvs checkout.</li>" >> ${TMPFILE}
-echo "<li><b>packages</b> is number of packages successfully built.</li>" >> ${TMPFILE}
-echo "<li><b>errors</b> is number of packages that failed.</li>" >> ${TMPFILE}
-echo "<li><b>skipped</b> is number of packages that were skipped due to NO_PACKAGE, IGNORE, BROKEN, FORBIDDEN, and so forth (\"duds\" file).</li>" >> ${TMPFILE}
-echo "<li><b>missing</b> is the INDEX column minus the others. These are packages that have not been built for one reason or another.</li>" >> ${TMPFILE}
-echo "<li><b>done</b> is whether that run terminated normally or not.</li>" >> ${TMPFILE}
-echo "</ul>" >> ${TMPFILE}
-
-echo "</body>" >> ${TMPFILE}
-echo "</html>" >> ${TMPFILE}
+ echo "<p>explanation of columns:</p>" >> ${TMPFILE}
+ echo "<ul>" >> ${TMPFILE}
+ echo "<li><b>as of</b> is the date of the latest logfile.</li>" >> ${TMPFILE}
+ echo "<li><b>INDEX</b> is number of ports in the INDEX file built from the latest cvs checkout.</li>" >> ${TMPFILE}
+ echo "<li><b>packages</b> is number of packages successfully built.</li>" >> ${TMPFILE}
+ echo "<li><b>errors</b> is number of packages that failed.</li>" >> ${TMPFILE}
+ echo "<li><b>skipped</b> is number of packages that were skipped due to NO_PACKAGE, IGNORE, BROKEN, FORBIDDEN, and so forth (\"duds\" file).</li>" >> ${TMPFILE}
+ echo "<li><b>missing</b> is the INDEX column minus the others. These are packages that have not been built for one reason or another.</li>" >> ${TMPFILE}
+ echo "<li><b>done</b> is whether that run terminated normally or not.</li>" >> ${TMPFILE}
+ echo "</ul>" >> ${TMPFILE}
+
+ echo "</body>" >> ${TMPFILE}
+ echo "</html>" >> ${TMPFILE}
}
# main