svn commit: r243378 - projects/portbuild/scripts
Mark Linimon
linimon at FreeBSD.org
Wed Nov 21 20:29:28 UTC 2012
Author: linimon (doc,ports committer)
Date: Wed Nov 21 20:29:27 2012
New Revision: 243378
URL: http://svnweb.freebsd.org/changeset/base/243378
Log:
Fix the svn references.
Modified:
projects/portbuild/scripts/processlogs
Modified: projects/portbuild/scripts/processlogs
==============================================================================
--- projects/portbuild/scripts/processlogs Wed Nov 21 19:57:57 2012 (r243377)
+++ projects/portbuild/scripts/processlogs Wed Nov 21 20:29:27 2012 (r243378)
@@ -168,7 +168,7 @@ sort .logs/.all | while read line; do
unset IFS
affby=$3
size=$4
- vcsweb=$5
+ portname=$5
maintainer=$6
reason=$7
datestamp=${10}
@@ -180,12 +180,12 @@ sort .logs/.all | while read line; do
test "${affby}" = "0" -o "${affby}" = "-1" && affby=" "
echo "<td align=\"right\">${affby}</td>" >> $of
echo "<td align=\"right\">$size Kb</td>" >> $of
- if [ "$vcsweb" != "" -a "$vcsweb" != "NONE" ] ; then
- vcsweb="<a href=\"vcsweb:$vcsweb\">$vcsweb</a>"
+ if [ "$portname" != "" -a "$portname" != "NONE" ] ; then
+ portname="<a href=\"${VCSWEB}/$portname\">$portname</a>"
else
- vcsweb='?'
+ portname='?'
fi
- echo "<td>$vcsweb</td>" >> $of
+ echo "<td>$portname</td>" >> $of
if [ "$maintainer" != "" -a "$maintainer" != "NONE" ] ; then
maintainer="<a href=\"mailto:$maintainer\">$maintainer</a>"
else
@@ -223,19 +223,19 @@ sort -t \| +4 .logs/.all | while read li
unset IFS
affby=$3
size=$4
- vcsweb=$5
+ portname=$5
maintainer=$6
reason=$7
datestamp=${10}
echo "<tr>" >> $of
- if [ "$vcsweb" != "" -a "$vcsweb" != "NONE" ] ; then
- vcsweb="<a href=\"vcsweb:$vcsweb\">$vcsweb</a>"
+ if [ "$portname" != "" -a "$portname" != "NONE" ] ; then
+ portname="<a href=\"${VCSWEB}/$portname\">$portname</a>"
else
- vcsweb='?'
+ portname='?'
fi
- echo "<td>$vcsweb</td>" >> $of
+ echo "<td>$portname</td>" >> $of
test "${affby}" = "0" -o "${affby}" = "-1" && affby=" "
echo "<td align=\"right\">${affby}</td>" >> $of
@@ -278,7 +278,7 @@ sort -t \| +5 .logs/.all | while read li
unset IFS
affby=$3
size=$4
- vcsweb=$5
+ portname=$5
maintainer=$6
reason=$7
datestamp=${10}
@@ -296,12 +296,12 @@ sort -t \| +5 .logs/.all | while read li
test "${affby}" = "0" -o "${affby}" = "-1" && affby=" "
echo "<td align=\"right\">${affby}</td>" >> $of
echo "<td align=\"right\">$size Kb</td>" >> $of
- if [ "$vcsweb" != "" -a "$vcsweb" != "NONE" ] ; then
- vcsweb="<a href=\"vcsweb:$vcsweb\">$vcsweb</a>"
+ if [ "$portname" != "" -a "$portname" != "NONE" ] ; then
+ portname="<a href=\"${VCSWEB}/$portname\">$portname</a>"
else
- vcsweb='?'
+ portname='?'
fi
- echo "<td>$vcsweb</td>" >> $of
+ echo "<td>$portname</td>" >> $of
echo "<td>" >> $of
test "$9" = "broken" && echo "<font color=\"red\">[B]</font>" >> $of
@@ -333,7 +333,7 @@ sort -t \| +7 .logs/.all | while read li
unset IFS
affby=$3
size=$4
- vcsweb=$5
+ portname=$5
maintainer=$6
reason=$7
datestamp=${10}
@@ -350,12 +350,12 @@ sort -t \| +7 .logs/.all | while read li
test "${affby}" = "0" -o "${affby}" = "-1" && affby=" "
echo "<td align=\"right\">${affby}</td>" >> $of
echo "<td align=\"right\">$size Kb</td>" >> $of
- if [ "$vcsweb" != "" -a "$vcsweb" != "NONE" ] ; then
- vcsweb="<a href=\"vcsweb:$vcsweb\">$vcsweb</a>"
+ if [ "$portname" != "" -a "$portname" != "NONE" ] ; then
+ portname="<a href=\"${VCSWEB}/$portname\">$portname</a>"
else
- vcsweb='?'
+ portname='?'
fi
- echo "<td>$vcsweb</td>" >> $of
+ echo "<td>$portname</td>" >> $of
if [ "$maintainer" != "" -a "$maintainer" != "NONE" ] ; then
maintainer="<a href=\"mailto:$maintainer\">$maintainer</a>"
else
@@ -388,7 +388,7 @@ sort -t \| +9 .logs/.all | while read li
unset IFS
affby=$3
size=$4
- vcsweb=$5
+ portname=$5
maintainer=$6
reason=$7
datestamp=${10}
@@ -406,12 +406,12 @@ sort -t \| +9 .logs/.all | while read li
test "${affby}" = "0" -o "${affby}" = "-1" && affby=" "
echo "<td align=\"right\">${affby}</td>" >> $of
echo "<td align=\"right\">$size Kb</td>" >> $of
- if [ "$vcsweb" != "" -a "$vcsweb" != "NONE" ] ; then
- vcsweb="<a href=\"vcsweb:$vcsweb\">$vcsweb</a>"
+ if [ "$portname" != "" -a "$portname" != "NONE" ] ; then
+ portname="<a href=\"${VCSWEB}/$portname\">$portname</a>"
else
- vcsweb='?'
+ portname='?'
fi
- echo "<td>$vcsweb</td>" >> $of
+ echo "<td>$portname</td>" >> $of
if [ "$maintainer" != "" -a "$maintainer" != "NONE" ] ; then
maintainer="<a href=\"mailto:$maintainer\">$maintainer</a>"
else
More information about the svn-src-projects
mailing list