diff options
author | linimon <linimon@FreeBSD.org> | 2010-06-26 07:37:19 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2010-06-26 07:37:19 +0800 |
commit | 893c05e8e1f4d3c592c7811c3fe97626f277344b (patch) | |
tree | d1a2fcaffacf597ba150164f42775994030fc5c9 /Tools/portbuild | |
parent | 6fa1a94c27d2641f99124235613cfd73b24bf8dd (diff) | |
download | freebsd-ports-gnome-893c05e8e1f4d3c592c7811c3fe97626f277344b.tar.gz freebsd-ports-gnome-893c05e8e1f4d3c592c7811c3fe97626f277344b.tar.zst freebsd-ports-gnome-893c05e8e1f4d3c592c7811c3fe97626f277344b.zip |
Generalize the packge building scripts to be able to be run on more than
one 'head' node, rather than just pointyhat itself.
Constants are factored out into installation-specific files known as
portbuild/conf/server.conf and portbuild/conf/client.conf. There is
only one server.conf file. Individual <arch> directories may have
their own client.conf files, or may symlink to ../conf/client.conf.
Several bugs are fixed and improvements are made:
- suppress error message if there are no logs yet.
- change the misnomer filename 'cvsdone' to '.updated'.
- fix a bug by un-escaping '_' in the timestamp.
Feature safe: yes
Diffstat (limited to 'Tools/portbuild')
-rwxr-xr-x | Tools/portbuild/scripts/processlogs | 41 |
1 files changed, 22 insertions, 19 deletions
diff --git a/Tools/portbuild/scripts/processlogs b/Tools/portbuild/scripts/processlogs index 4f645cd963d7..d2b7a9569b4e 100755 --- a/Tools/portbuild/scripts/processlogs +++ b/Tools/portbuild/scripts/processlogs @@ -40,7 +40,7 @@ errorscript=$scriptdir/processonelog # Figure out which arch we're building for pb=/var/portbuild - +. ${pb}/conf/server.conf . ${pb}/${arch}/portbuild.conf # get the list of buildlogs. @@ -105,7 +105,10 @@ while [ $# -ge 1 ]; do done touch .stamp -n_logs=$(cat .logs/.all | wc -l) +n_logs=0 +if [ -e .logs/.all ]; then + n_logs=$(cat .logs/.all | wc -l) +fi echo "processlogs: at "`date`", end processing log files for ${arch} in ${baselogdir}" @@ -128,8 +131,8 @@ header() { if [ ${n_logs} = "0" ]; then echo "No errors (yet)" >>$of else - if [ -s cvsdone ]; then - echo "CVS update finished at: $(cat cvsdone)<br>" >> $of + if [ -s .updated ]; then + echo "ports update finished at: $(cat .updated)<br>" >> $of fi latest=$(ls -rtTl *.log *.log.bz2 2> /dev/null | tail -1 | awk '{printf("%s %s %s %s\n",$6,$7,$8,$9)}') echo "Timestamp of newest log: $latest<br><br>" >> $of @@ -167,7 +170,7 @@ sort .logs/.all | while read line; do echo "<tr>" >> $of - echo "<td><a href=\"http://${master}/errorlogs/${arch}-errorlogs/${baselogdir}/$1\">$2</a></td>" >> $of + echo "<td><a href=\"http://${MASTER_URL}/errorlogs/${arch}-errorlogs/${baselogdir}/$1\">$2</a></td>" >> $of affby="$3" test "${affby}" = "0" -o "${affby}" = "-1" && affby=" " @@ -178,10 +181,10 @@ sort .logs/.all | while read line; do test "$9" = "yes" && echo "<font color=\"red\">[B]</font>" >> $of reason="$7" - echo "<a href=\"http://$master/#$8\">$reason</a>" >> $of + echo "<a href=\"http://${MASTER_URL}/#$8\">$reason</a>" >> $of echo "</td>" >> $of - date="${10}" + date=`echo ${10} | sed -e "s/_/ /g"` echo "<td>$date</td>" >> $of echo "</tr>" >> $of @@ -213,16 +216,16 @@ sort -t \| +4 .logs/.all | while read line; do affby="$3" test "${affby}" = "0" -o "${affby}" = "-1" && affby=" " echo "<td align=\"right\">${affby}</td><td align=\"right\">$4 Kb</td>" >> $of - echo "<td><a href=\"http://${master}/errorlogs/${arch}-errorlogs/${baselogdir}/$1\">$2</a></td>" >> $of + echo "<td><a href=\"http://${MASTER_URL}/errorlogs/${arch}-errorlogs/${baselogdir}/$1\">$2</a></td>" >> $of echo "<td>$mailto</td>" >> $of echo "<td>" >> $of test "$9" = "broken" && echo "<font color=\"red\">[B]</font>" >> $of reason="$7" - echo "<a href=\"http://$master/#$8\">$reason</a>" >> $of + echo "<a href=\"http://${MASTER_URL}/#$8\">$reason</a>" >> $of echo "</td>" >> $of - date="${10}" + date=`echo ${10} | sed -e "s/_/ /g"` echo "<td>$date</td>" >> $of echo "</tr>" >> $of @@ -250,7 +253,7 @@ sort -t \| +5 .logs/.all | while read line; do echo "<tr>" >> $of echo "<td>$mailto</td>" >> $of - echo "<td><a href=\"http://${master}/errorlogs/${arch}-errorlogs/${baselogdir}/$1\">$2</a></td>" >> $of + echo "<td><a href=\"http://${MASTER_URL}/errorlogs/${arch}-errorlogs/${baselogdir}/$1\">$2</a></td>" >> $of affby="$3" test "${affby}" = "0" -o "${affby}" = "-1" && affby=" " @@ -260,10 +263,10 @@ sort -t \| +5 .logs/.all | while read line; do echo "<td>" >> $of test "$9" = "broken" && echo "<font color=\"red\">[B]</font>" >> $of reason="$7" - echo "<a href=\"http://$master/#$8\">$reason</a>" >> $of + echo "<a href=\"http://${MASTER_URL}/#$8\">$reason</a>" >> $of echo "</td>" >> $of - date="${10}" + date=`echo ${10} | sed -e "s/_/ /g"` echo "<td>$date</td>" >> $of echo "</tr>" >> $of @@ -293,10 +296,10 @@ sort -t \| +7 .logs/.all | while read line; do echo "<td>" >> $of test "$9" = "broken" && echo "<font color=\"red\">[B]</font>" >> $of reason="$7" - echo "<a href=\"http://$master/#$8\">$reason</a>" >> $of + echo "<a href=\"http://${MASTER_URL}/#$8\">$reason</a>" >> $of echo "</td>" >> $of - echo "<td><a href=\"http://${master}/errorlogs/${arch}-errorlogs/${baselogdir}/$1\">$2</a></td>" >> $of + echo "<td><a href=\"http://${MASTER_URL}/errorlogs/${arch}-errorlogs/${baselogdir}/$1\">$2</a></td>" >> $of affby="$3" test "${affby}" = "0" -o "${affby}" = "-1" && affby=" " @@ -304,7 +307,7 @@ sort -t \| +7 .logs/.all | while read line; do echo "<td><a href=\"http://www.FreeBSD.org/cgi/cvsweb.cgi/ports/$5\">$5</a></td>" >> $of echo "<td>$mailto</td>" >> $of - date="${10}" + date=`echo ${10} | sed -e "s/_/ /g"` echo "<td>$date</td>" >> $of echo "</tr>" >> $of @@ -332,10 +335,10 @@ sort -t \| +9 .logs/.all | while read line; do echo "<tr>" >> $of - date="${10}" + date=`echo ${10} | sed -e "s/_/ /g"` echo "<td>$date</td>" >> $of - echo "<td><a href=\"http://${master}/errorlogs/${arch}-errorlogs/${baselogdir}/$1\">$2</a></td>" >> $of + echo "<td><a href=\"http://${MASTER_URL}/errorlogs/${arch}-errorlogs/${baselogdir}/$1\">$2</a></td>" >> $of affby="$3" test "${affby}" = "0" -o "${affby}" = "-1" && affby=" " @@ -346,7 +349,7 @@ sort -t \| +9 .logs/.all | while read line; do echo "<td>" >> $of test "$9" = "broken" && echo "<font color=\"red\">[B]</font>" >> $of reason="$7" - echo "<a href=\"http://$master/#$8\">$reason</a>" >> $of + echo "<a href=\"http://${MASTER_URL}/#$8\">$reason</a>" >> $of echo "</td>" >> $of echo "</tr>" >> $of |