diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2004-12-09 04:14:51 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2004-12-09 04:14:51 +0000 |
commit | aa1f54d2fe4ab21c5156ad73db6c5a77b8ed255a (patch) | |
tree | 08dcac92a14ffb9349c675c53623b243eed02131 /Tools | |
parent | 21333ddcce7921187a8d3a1009cce2cabee6d560 (diff) | |
download | ports-aa1f54d2fe4ab21c5156ad73db6c5a77b8ed255a.tar.gz ports-aa1f54d2fe4ab21c5156ad73db6c5a77b8ed255a.zip |
Notes
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/processlogs | 10 | ||||
-rwxr-xr-x | Tools/portbuild/scripts/processonelog | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/Tools/portbuild/scripts/processlogs b/Tools/portbuild/scripts/processlogs index 806db66ebdb4..2d2f9aeccf22 100755 --- a/Tools/portbuild/scripts/processlogs +++ b/Tools/portbuild/scripts/processlogs @@ -132,7 +132,7 @@ for i in `cat .logs | sort`; do test "$9" = "broken" && echo "<font color=\"red\">[B]</font>" >> $of reason=$(echo $7 | tr '_' ' ') - echo "<a href=\"http://bento.freebsd.org/#$8\">$reason</a>" >> $of + echo "<a href=\"http://pointyhat.freebsd.org/#$8\">$reason</a>" >> $of echo "</td>" >> $of date=$(echo ${10} | tr '_' ' ') @@ -169,7 +169,7 @@ for i in `cat .logs | sort -t \\| +4`; do echo "<td>" >> $of test "$9" = "broken" && echo "<font color=\"red\">[B]</font>" >> $of reason=$(echo $7 | tr '_' ' ') - echo "<a href=\"http://bento.freebsd.org/#$8\">$reason</a>" >> $of + echo "<a href=\"http://pointyhat.freebsd.org/#$8\">$reason</a>" >> $of echo "</td>" >> $of date=$(echo ${10} | tr '_' ' ') @@ -206,7 +206,7 @@ for i in `cat .logs | sort -t \\| +5`; do echo "<td>" >> $of test "$9" = "broken" && echo "<font color=\"red\">[B]</font>" >> $of reason=$(echo $7 | tr '_' ' ') - echo "<a href=\"http://bento.freebsd.org/#$8\">$reason</a>" >> $of + echo "<a href=\"http://pointyhat.freebsd.org/#$8\">$reason</a>" >> $of echo "</td>" >> $of date=$(echo ${10} | tr '_' ' ') @@ -235,7 +235,7 @@ for i in `cat .logs | sort -t \\| +7`; do echo "<td>" >> $of test "$9" = "broken" && echo "<font color=\"red\">[B]</font>" >> $of reason=$(echo $7 | tr '_' ' ') - echo "<a href=\"http://bento.freebsd.org/#$8\">$reason</a>" >> $of + echo "<a href=\"http://pointyhat.freebsd.org/#$8\">$reason</a>" >> $of echo "</td>" >> $of echo "<td><a href=\"http://${master}/errorlogs/${arch}-errorlogs/${baselogdir}/$1\">$2</a></td>" >> $of @@ -283,7 +283,7 @@ for i in `cat .logs | sort -t \\| +9`; do echo "<td>" >> $of test "$9" = "broken" && echo "<font color=\"red\">[B]</font>" >> $of reason=$(echo $7 | tr '_' ' ') - echo "<a href=\"http://bento.freebsd.org/#$8\">$reason</a>" >> $of + echo "<a href=\"http://pointyhat.freebsd.org/#$8\">$reason</a>" >> $of echo "</td>" >> $of echo "</tr>" >> $of diff --git a/Tools/portbuild/scripts/processonelog b/Tools/portbuild/scripts/processonelog index 6d6836e9b733..dc5fed5f0393 100755 --- a/Tools/portbuild/scripts/processonelog +++ b/Tools/portbuild/scripts/processonelog @@ -27,8 +27,8 @@ datetime=$(sed -n -e '5p' $errordir/$filename | grep '^build started at' | \ # now try to classify the type of error found in the file. # the first case handles failures to even try to build any -# port (i.e. HTML file no longer there, bento being unable -# to fetch any file, bento being able to build any port, etc.) +# port (i.e. HTML file no longer there, pointyhat being unable +# to fetch any file, pointyhat being able to build any port, etc.) if [ -z "$dir" -o -z "$datetime" ]; then reason="cluster"; tag="cluster" elif grep -q 'list of extra files and directories' $1; then |