svn commit: r43135 - head/share/tools

Glen Barber gjb at FreeBSD.org
Thu Nov 7 21:16:36 UTC 2013


Author: gjb
Date: Thu Nov  7 21:16:35 2013
New Revision: 43135
URL: http://svnweb.freebsd.org/changeset/doc/43135

Log:
  Add 'relnotes10/doc' and 'relnotes10/man4'.
  Remove 'relnotes8/doc' and 'relnotes8/man4'.
  Fix a case where 'relnotes8/man4' was listed twice, and
  'relnotes9/man4' was excluded.
  
  Approved by:	doceng (implicit)
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/share/tools/webupdate

Modified: head/share/tools/webupdate
==============================================================================
--- head/share/tools/webupdate	Thu Nov  7 20:49:52 2013	(r43134)
+++ head/share/tools/webupdate	Thu Nov  7 21:16:35 2013	(r43135)
@@ -86,8 +86,8 @@ WEBMAILTO=${WEBMAILTO:-${DEFAULT_WEBMAIL
 # 'doc', and not at all if they aren't.
 subtrees='head
 relnotes/doc relnotes/man4
+relnotes10/doc relnotes10/man4
 relnotes9/doc relnotes9/man4
-relnotes8/doc relnotes8/man4
 ports';
 
 #
@@ -130,14 +130,15 @@ if [ $cond ]; then
 	test -d relnotes || mkdir relnotes;
 	svn co $SVNROOT/base/head/release/doc relnotes/doc >> $LOGFILE 2>&1 || exit 2;
 	svn co $SVNROOT/base/head/share/man/man4 relnotes/man4 >> $LOGFILE 2>&1 || exit 2;
+	svn co $SVNROOT/base/stable/10/release/doc relnotes10/doc >> $LOGFILE 2>&1 || exit 2;
+	svn co $SVNROOT/base/stable/10/share/man/man4 relnotes10/man4 >> $LOGFILE 2>&1 || exit 2;
 	svn co $SVNROOT/base/stable/9/release/doc relnotes9/doc >> $LOGFILE 2>&1 || exit 2;
 	svn co $SVNROOT/base/stable/9/share/man/man4 relnotes9/man4 >> $LOGFILE 2>&1 || exit 2;
-	svn co $SVNROOT/base/stable/8/release/doc relnotes8/doc >> $LOGFILE 2>&1 || exit 2;
-	svn co $SVNROOT/base/stable/8/share/man/man4 relnotes8/man4 >> $LOGFILE 2>&1 || exit 2;
 	svn co --depth immediates $SVNROOT/ports/head ports
 	rm -f $BUILDDIR/fullbuild-clean.flag
 else
-	for dir in head relnotes/doc relnotes/man4 ports relnotes9/doc relnotes8/doc relnotes8/man4 relnotes8/man4; do
+	for dir in head relnotes/doc relnotes/man4 ports relnotes10/doc \
+	    relnotes10/man4 relnotes9/doc relnotes9/man4 ; do
 		svn cleanup $dir >> $LOGFILE 2>&1 || exit 2;
 		svn update --accept theirs-full $dir >> $LOGFILE 2>&1 || exit 2;
 	done


More information about the svn-doc-all mailing list