diff options
author | Glen Barber <gjb@FreeBSD.org> | 2020-12-30 16:52:21 +0000 |
---|---|---|
committer | Glen Barber <gjb@FreeBSD.org> | 2020-12-30 16:52:21 +0000 |
commit | e9a6e6f104b7706ad46bc7b3d88536d3e57902f7 (patch) | |
tree | 37d127cca6fd17efc5c0c3331f8b0cb09d9276c5 /share/tools/dobuild_wrap.sh | |
parent | cb1d034ab1e773758d20238be196aeeb1be68b18 (diff) | |
download | doc-e9a6e6f104b7706ad46bc7b3d88536d3e57902f7.tar.gz doc-e9a6e6f104b7706ad46bc7b3d88536d3e57902f7.zip |
docbuild: update PDF file build scripts to use Git
Remove references to CVS/SVN and replace with Git equivalents.
Note the files are not automatically updated on the builder after
a change is committed.
Remove RCSIDs.
Sponsored by: Rubicon Communications, LLC (netgate.com)
Diffstat (limited to 'share/tools/dobuild_wrap.sh')
-rwxr-xr-x | share/tools/dobuild_wrap.sh | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/share/tools/dobuild_wrap.sh b/share/tools/dobuild_wrap.sh index d0bdf3e246..c62dfa7bfc 100755 --- a/share/tools/dobuild_wrap.sh +++ b/share/tools/dobuild_wrap.sh @@ -24,18 +24,17 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # -# $FreeBSD$ -# +# # Wrapper around doc build. Simplifies main build script. +# NOTE: This script is not automatically updated on the builder. # # Default configuration. # DEFAULT_PATH=/bin:/usr/bin:/usr/local/bin DEFAULT_BUILDROOT=/local0/docbuild -DEFAULT_CVSROOT=/home/dcvs -DEFAULT_DOCSVN="svn://svn.freebsd.org/doc/head" +DEFAULT_DOCGIT="https://git.freebsd.org/doc.git" DEFAULT_BUILDARGS="NO_JPMAN=yes GEN_INDEX=yes" DEFAULT_INSTARGS="NO_JPMAN=yes GEN_INDEX=yes INSTALL_ONLY_COMPRESSED=yes" # Must keep space between addresses. @@ -51,8 +50,7 @@ DEFAULT_COMPTYPES="bz2 zip" # BUILDROOT=${BUILDROOT:-${DEFAULT_BUILDROOT}}; export BUILDROOT PATH="${PATH}:${DEFAULT_PATH}"; export PATH -CVSROOT=${CVSROOT:-${DEFAULT_CVSROOT}}; export CVSROOT -DOCSVN=${DOCSVN:-${DEFAULT_DOCSVN}}; export DOCSVN +DOCGIT=${DOCGIT:-${DEFAULT_DOCGIT}}; export DOCGIT BUILDDIR=${BUILDDIR:-${BUILDROOT}/build}; export BUILDDIR DOCDIR=${DOCDIR:-${BUILDROOT}/build/out}; export DOCDIR FORMATS=${FORMATS:-${DEFAULT_FORMATS}}; export FORMATS |