Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 21 Nov 2012 07:52:23 +0000 (UTC)
From:      Mark Linimon <linimon@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r243367 - projects/portbuild/scripts
Message-ID:  <201211210752.qAL7qNPw098892@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: linimon (doc,ports committer)
Date: Wed Nov 21 07:52:23 2012
New Revision: 243367
URL: http://svnweb.freebsd.org/changeset/base/243367

Log:
  So many trailing hard-coded references to a particular VCS, so little time.

Modified:
  projects/portbuild/scripts/processlogs

Modified: projects/portbuild/scripts/processlogs
==============================================================================
--- projects/portbuild/scripts/processlogs	Wed Nov 21 06:26:18 2012	(r243366)
+++ projects/portbuild/scripts/processlogs	Wed Nov 21 07:52:23 2012	(r243367)
@@ -159,7 +159,7 @@ footer() {
 #
 # Create "default" output, sorted on portname
 #
-header "<th>Port</th><th>Aff.</th><th>Size</th><th>SVN</th><th>Maintainer</th><th>Reason</th><th>Build date</th>"
+header "<th>Port</th><th>Aff.</th><th>Size</th><th>${VCS}</th><th>Maintainer</th><th>Reason</th><th>Build date</th>"
 
 if [ ${n_logs} -gt 0 ]; then
 sort .logs/.all | while read line; do
@@ -214,7 +214,7 @@ mv -f $of index.html
 #
 # Create output by category
 #
-header "<th>SVN</th><th>Aff.</th><th>Size</th><th>Port</th><th>Maintainer</th><th>Reason</th><th>Build date</th>"
+header "<th>${VCS}</th><th>Aff.</th><th>Size</th><th>Port</th><th>Maintainer</th><th>Reason</th><th>Build date</th>"
 
 if [ ${n_logs} -gt 0 ]; then
 sort -t \| +4 .logs/.all | while read line; do
@@ -269,7 +269,7 @@ mv -f $of index-category.html
 #
 # Create output by maintainer
 #
-header "<th>Maintainer</th><th>Port</th><th>Aff.</th><th>Size</th><th>SVN</th><th>Reason</th><th>Build date</th>"
+header "<th>Maintainer</th><th>Port</th><th>Aff.</th><th>Size</th><th>${VCS}</th><th>Reason</th><th>Build date</th>"
 
 if [ ${n_logs} -gt 0 ]; then
 sort -t \| +5 .logs/.all | while read line; do
@@ -324,7 +324,7 @@ mv -f $of index-maintainer.html
 #
 # Create output by error
 #
-header "<th>Reason</th><th>Port</th><th>Aff.</th><th>Size</th><th>SVN</th><th>Maintainer</th><th>Build date</th>"
+header "<th>Reason</th><th>Port</th><th>Aff.</th><th>Size</th><th>${VCS}</th><th>Maintainer</th><th>Build date</th>"
 
 if [ ${n_logs} -gt 0 ]; then
 sort -t \| +7 .logs/.all | while read line; do
@@ -379,7 +379,7 @@ mv -f $of index-reason.html
 #
 # Create output by builddate
 #
-header "<th>Build date</th><th>Port</th><th>Aff.</th><th>Size</th><th>SVN</th><th>Maintainer</th><th>Reason</th>"
+header "<th>Build date</th><th>Port</th><th>Aff.</th><th>Size</th><th>${VCS}</th><th>Maintainer</th><th>Reason</th>"
 
 if [ ${n_logs} -gt 0 ]; then
 sort -t \| +9 .logs/.all | while read line; do



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201211210752.qAL7qNPw098892>