From owner-svn-doc-head@FreeBSD.ORG Sun Dec 2 18:37:33 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5E609FBC; Sun, 2 Dec 2012 18:37:33 +0000 (UTC) (envelope-from gavin@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 290E88FC08; Sun, 2 Dec 2012 18:37:33 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qB2IbXet033876; Sun, 2 Dec 2012 18:37:33 GMT (envelope-from gavin@svn.freebsd.org) Received: (from gavin@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qB2IbXww033875; Sun, 2 Dec 2012 18:37:33 GMT (envelope-from gavin@svn.freebsd.org) Message-Id: <201212021837.qB2IbXww033875@svn.freebsd.org> From: Gavin Atkinson Date: Sun, 2 Dec 2012 18:37:32 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r40248 - head/share/tools X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Dec 2012 18:37:33 -0000 Author: gavin Date: Sun Dec 2 18:37:32 2012 New Revision: 40248 URL: http://svnweb.freebsd.org/changeset/doc/40248 Log: Update this script to reflect the change from CVS to SVN. The code itself has already been fixed, this just updates comments to match, and also removes vestiges of the previous CVS-centric code that are no longer used. Approved by: bcr (mentor) Modified: head/share/tools/webupdate Modified: head/share/tools/webupdate ============================================================================== --- head/share/tools/webupdate Sun Dec 2 18:31:41 2012 (r40247) +++ head/share/tools/webupdate Sun Dec 2 18:37:32 2012 (r40248) @@ -2,7 +2,7 @@ # Copyright (c) 2001 Wolfram Schneider # Copyright (c) 2001 Dima Dorfman # -# Update the FreeBSD web site from the CVS repository. +# Update the FreeBSD web site from the SVN repository. # # # NOTE: Changes to this file is NOT automatically used for the web @@ -14,7 +14,7 @@ # Major variables: # # PATH - The search path as interpreted by the shell. -# CVSROOT - Path to the FreeBSD CVS repository. +# SVNROOT - Path to the FreeBSD SVN repository. # BUILDDIR - Where the checked out copies of the files are stored. # DESTDIR - Where the rendered copies should wind up. # LOGFILE - Name of the log file to use (in $BUILDDIR). @@ -22,7 +22,7 @@ # INSTARGS - Arguments to pass to make(1) when installing. # WEBMAILTO - Address to send mail to if the build fails. # -# subtrees - List of directores in $BUILDDIR which are from CVS. +# subtrees - List of directores in $BUILDDIR which are from SVN. # # Variables which are in uppercase are derived from the environment # unless they don't exist, in which case a value suitable for @@ -34,7 +34,7 @@ # # 0 - success # 1 - unknown failure -# 2 - failure in CVS operations +# 2 - failure in SVN operations # 3 - failure in make operations # # $FreeBSD$ @@ -44,7 +44,6 @@ # Default configuration. # DEFAULT_PATH=/bin:/usr/bin:/usr/local/bin; -DEFAULT_CVSROOT=/home/ncvs; DEFAULT_SVNROOT=svn://svn.FreeBSD.org/doc/head DEFAULT_BUILDDIR=/usr/local/www/build; #DEFAULT_LOGDIR=/usr/local/www/build/log; @@ -61,7 +60,6 @@ DEFAULT_WEBMAILTO=freebsd-doc; # Variable setup. # PATH=${PATH:-${DEFAULT_PATH}}; export PATH; -CVSROOT=${CVSROOT:-${DEFAULT_CVSROOT}}; export CVSROOT; SVNROOT=${SVNROOT:-${DEFAULT_SVNROOT}}; export SVNROOT; BUILDDIR=${BUILDDIR:-${DEFAULT_BUILDDIR}}; LOGDIR=${LOGDIR:-${DEFAULT_LOGDIR}};