1
0
mirror of https://https.git.savannah.gnu.org/git/gnulib.git synced 2026-04-28 06:33:36 +00:00

gnu-web-doc-update: Add an environment variable for the CVS username

* build-aux/gnu-web-doc-update (help): Mention the SAVANNAH_CVS_USER
environment variable.
($cvs_user): Use the SAVANNAH_CVS_USER environment variable and fallback
to USER if it is unset or empty.
This commit is contained in:
Collin Funk
2026-03-26 19:59:19 -07:00
parent b75134c814
commit 3991b1f62c
2 changed files with 13 additions and 3 deletions

View File

@@ -1,3 +1,11 @@
2026-03-26 Collin Funk <collin.funk1@gmail.com>
gnu-web-doc-update: Add an environment variable for the CVS username
* build-aux/gnu-web-doc-update (help): Mention the SAVANNAH_CVS_USER
environment variable.
($cvs_user): Use the SAVANNAH_CVS_USER environment variable and fallback
to USER if it is unset or empty.
2026-03-24 Collin Funk <collin.funk1@gmail.com>
doc: Mention a Solaris 11.4 bug.

View File

@@ -2,7 +2,7 @@
# Run this after each non-alpha release, to update the web documentation at
# https://www.gnu.org/software/$pkg/manual/
VERSION=2025-06-10.02; # UTC
VERSION=2026-03-27.02; # UTC
# Copyright (C) 2009-2026 Free Software Foundation, Inc.
@@ -41,7 +41,9 @@ Options:
-C, --builddir=DIR location of (configured) Makefile (default: .)
-n, --dry-run don't actually commit anything
-m, --mirror remove out of date files from document server
-u, --user the name of the CVS user on Savannah
-u, --user=USER use USER as the name of the CVS user on Savannah
instead of the value of the SAVANNAH_CVS_USER
environment variable
--help print this help, then exit
--version print version number, then exit
@@ -110,7 +112,7 @@ find_tool XARGS gxargs xargs
builddir=.
dryrun=
rm_stale='echo'
cvs_user="$USER"
cvs_user="${SAVANNAH_CVS_USER:-$USER}"
while test $# != 0
do
# Handle --option=value by splitting apart and putting back on argv.