From owner-svn-doc-all@freebsd.org Fri Dec 4 18:55:44 2020 Return-Path: Delivered-To: svn-doc-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 223A94A8685; Fri, 4 Dec 2020 18:55:44 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Cnhjr0VFfz3MP0; Fri, 4 Dec 2020 18:55:44 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 03CC010BE2; Fri, 4 Dec 2020 18:55:44 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0B4IthjC079770; Fri, 4 Dec 2020 18:55:43 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0B4Ith7i079768; Fri, 4 Dec 2020 18:55:43 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <202012041855.0B4Ith7i079768@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Fri, 4 Dec 2020 18:55:43 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r54729 - head/share/tools X-SVN-Group: doc-head X-SVN-Commit-Author: gjb X-SVN-Commit-Paths: head/share/tools X-SVN-Commit-Revision: 54729 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Dec 2020 18:55:44 -0000 Author: gjb Date: Fri Dec 4 18:55:43 2020 New Revision: 54729 URL: https://svnweb.freebsd.org/changeset/doc/54729 Log: Add (commented) logic to webupdate{,.wrapper} to prepare for the conversion of the doc tree from Subversion to Git. Sponsored by: Rubicon Communications, LLC (netgate.com) Modified: head/share/tools/webupdate head/share/tools/webupdate.wrapper Modified: head/share/tools/webupdate ============================================================================== --- head/share/tools/webupdate Thu Dec 3 19:05:38 2020 (r54728) +++ head/share/tools/webupdate Fri Dec 4 18:55:43 2020 (r54729) @@ -15,6 +15,7 @@ # # PATH - The search path as interpreted by the shell. # SVNROOT - Path to the FreeBSD SVN repository. +# GITROOT - Path to the FreeBSD Git repository. # BUILDDIR - Where the checked out copies of the files are stored. # DESTDIR - Where the rendered copies should wind up. # PUBDIR - Where the rendered files are published. @@ -35,7 +36,7 @@ # # 0 - success # 1 - unknown failure -# 2 - failure in SVN operations +# 2 - failure in VCS operations # 3 - failure in make operations # # $FreeBSD$ @@ -46,6 +47,7 @@ # DEFAULT_PATH=/bin:/usr/bin:/usr/local/bin; DEFAULT_SVNROOT=svn://svn.FreeBSD.org +#DEFAULT_GITROOT=https://cgit-beta.FreeBSD.org DEFAULT_BUILDDIR=/usr/local/www/build; #DEFAULT_LOGDIR=/usr/local/www/build/log; DEFAULT_LOGDIR=/usr/local/www/logs/build; @@ -62,6 +64,7 @@ DEFAULT_WEBMAILTO=freebsd-doc; # PATH=${PATH:-${DEFAULT_PATH}}; export PATH; SVNROOT=${SVNROOT:-${DEFAULT_SVNROOT}}; export SVNROOT; +#GITROOT=${GITROOT:-${DEFAULT_GITROOT}}; export GITROOT; BUILDDIR=${BUILDDIR:-${DEFAULT_BUILDDIR}}; LOGDIR=${LOGDIR:-${DEFAULT_LOGDIR}}; DESTDIR=${DESTDIR:-${DEFAULT_DESTDIR}}; export DESTDIR @@ -91,6 +94,7 @@ export NO_OBJ=YES subtrees='head src/share/man/man4 relnotes11/doc relnotes11/man4 ports'; +#subtrees="${subtrees} main" # # Update the checked out copies. Check out new copies every Sunday or @@ -126,6 +130,7 @@ if [ $cond ]; then # Check out the new copies. This creates all the $subtrees. svn co $SVNROOT/doc/head head >> $LOGFILE 2>&1 || exit 2; + #git clone -b main $GITROOT/doc.git main >> $LOGFILE 2>&1 || exit 2; test -d relnotes || mkdir relnotes; mkdir -p src/share/man/man4 @@ -139,6 +144,8 @@ else for dir in ${subtrees}; do svn cleanup $dir >> $LOGFILE 2>&1 || exit 2; svn update --accept theirs-full $dir >> $LOGFILE 2>&1 || exit 2; + #git -C main clean -f >> $LOGFILE 2>&1 || exit 2; + #git -C main pull >> $LOGFILE 2>&1 || exit 2; done fi @@ -151,6 +158,7 @@ fi # Build the web site. # cd $BUILDDIR/head || exit 1; +#cd $BUILDDIR/main || exit 1; # get latest revision LATESTREVISION=$LOGDIR/LATESTREVISION @@ -166,6 +174,7 @@ time make ${BUILDARGS} p-all >> $LOGFILE 2>&1 || exit 3) || exit 3; cd $BUILDDIR/head/en_US.ISO8859-1/htdocs || exit 1; +#cd $BUILDDIR/main/en_US.ISO8859-1/htdocs || exit 1; ( time make ${INSTARGS} -j8 all && time make ${INSTARGS} install ) >> $LOGFILE 2>&1 || (cat $LATESTREVISION >> $LOGFILE Modified: head/share/tools/webupdate.wrapper ============================================================================== --- head/share/tools/webupdate.wrapper Thu Dec 3 19:05:38 2020 (r54728) +++ head/share/tools/webupdate.wrapper Fri Dec 4 18:55:43 2020 (r54729) @@ -9,6 +9,7 @@ PATH=/bin:/usr/bin:/usr/local/bin SVNROOT=svn://svn.FreeBSD.org +GITROOT=https://cgit-beta.FreeBSD.org PUBDIR=/usr/local/www/www.freebsd.org DESTDIR="${PUBDIR}-clean" RSYNC_FLAGS="-avH"