summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2022-03-18 21:29:29 +0100
committerUlrich Müller <ulm@gentoo.org>2022-03-24 04:58:34 +0100
commitd7317785d04e7de172de3bff05852fca3cd15af2 (patch)
tree39f2e24069d903cc05c898c695d9a703fcaf5ca9 /eclass/cvs.eclass
parentapp-shells/nushell: Add 0.60.0 (diff)
downloadgentoo-d7317785d04e7de172de3bff05852fca3cd15af2.tar.gz
gentoo-d7317785d04e7de172de3bff05852fca3cd15af2.tar.bz2
gentoo-d7317785d04e7de172de3bff05852fca3cd15af2.zip
*.eclass: @ECLASS-VARIABLE renamed to @ECLASS_VARIABLE
Bug: https://bugs.gentoo.org/835396 Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass/cvs.eclass')
-rw-r--r--eclass/cvs.eclass36
1 files changed, 18 insertions, 18 deletions
diff --git a/eclass/cvs.eclass b/eclass/cvs.eclass
index 99b90cec6b54..a90a4d87f1c5 100644
--- a/eclass/cvs.eclass
+++ b/eclass/cvs.eclass
@@ -33,19 +33,19 @@ esac
# this eclass will take care of that. If you want to set the global
# KDE cvs ebuilds' settings, see the comments in kde-source.eclass.
-# @ECLASS-VARIABLE: ECVS_CVS_COMPRESS
+# @ECLASS_VARIABLE: ECVS_CVS_COMPRESS
# @DESCRIPTION:
# Set the default compression level. Has no effect when ECVS_CVS_COMMAND
# is defined by ebuild/user.
: ${ECVS_CVS_COMPRESS:=-z1}
-# @ECLASS-VARIABLE: ECVS_CVS_OPTIONS
+# @ECLASS_VARIABLE: ECVS_CVS_OPTIONS
# @DESCRIPTION:
# Additional options to the cvs commands. Has no effect when ECVS_CVS_COMMAND
# is defined by ebuild/user.
: ${ECVS_CVS_OPTIONS:=-q -f}
-# @ECLASS-VARIABLE: ECVS_CVS_COMMAND
+# @ECLASS_VARIABLE: ECVS_CVS_COMMAND
# @DESCRIPTION:
# CVS command to run
#
@@ -55,18 +55,18 @@ esac
# compression.
: ${ECVS_CVS_COMMAND:=cvs ${ECVS_CVS_OPTIONS} ${ECVS_CVS_COMPRESS}}
-# @ECLASS-VARIABLE: ECVS_UP_OPTS
+# @ECLASS_VARIABLE: ECVS_UP_OPTS
# @DESCRIPTION:
# CVS options given after the cvs update command. Don't remove "-dP" or things
# won't work.
: ${ECVS_UP_OPTS:=-dP}
-# @ECLASS-VARIABLE: ECVS_CO_OPTS
+# @ECLASS_VARIABLE: ECVS_CO_OPTS
# @DEFAULT_UNSET
# @DESCRIPTION:
# CVS options given after the cvs checkout command.
-# @ECLASS-VARIABLE: ECVS_OFFLINE
+# @ECLASS_VARIABLE: ECVS_OFFLINE
# @USER_VARIABLE
# @DESCRIPTION:
# Set this variable to a non-empty value to disable the automatic updating of
@@ -74,14 +74,14 @@ esac
# tree by users.
: ${ECVS_OFFLINE:=${EVCS_OFFLINE}}
-# @ECLASS-VARIABLE: ECVS_LOCAL
+# @ECLASS_VARIABLE: ECVS_LOCAL
# @DEFAULT_UNSET
# @DESCRIPTION:
# If this is set, the CVS module will be fetched non-recursively.
# Refer to the information in the CVS man page regarding the -l
# command option (not the -l global option).
-# @ECLASS-VARIABLE: ECVS_LOCALNAME
+# @ECLASS_VARIABLE: ECVS_LOCALNAME
# @DEFAULT_UNSET
# @DESCRIPTION:
# Local name of checkout directory
@@ -94,12 +94,12 @@ esac
# some such, things will break because the ebuild won't expect it and
# have e.g. a wrong $S setting.
-# @ECLASS-VARIABLE: ECVS_TOP_DIR
+# @ECLASS_VARIABLE: ECVS_TOP_DIR
# @DESCRIPTION:
# The directory under which CVS modules are checked out.
: ${ECVS_TOP_DIR:="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/cvs-src"}
-# @ECLASS-VARIABLE: ECVS_SERVER
+# @ECLASS_VARIABLE: ECVS_SERVER
# @DESCRIPTION:
# CVS path
#
@@ -112,7 +112,7 @@ esac
# is already checked out in ECVS_TOP_DIR).
: ${ECVS_SERVER:="offline"}
-# @ECLASS-VARIABLE: ECVS_MODULE
+# @ECLASS_VARIABLE: ECVS_MODULE
# @REQUIRED
# @DESCRIPTION:
# The name of the CVS module to be fetched
@@ -121,13 +121,13 @@ esac
# several directory levels, i.e. "foo/bar/baz"
#[[ -z ${ECVS_MODULE} ]] && die "$ECLASS: error: ECVS_MODULE not set, cannot continue"
-# @ECLASS-VARIABLE: ECVS_DATE
+# @ECLASS_VARIABLE: ECVS_DATE
# @DEFAULT_UNSET
# @DESCRIPTION:
# The date of the checkout. See the -D date_spec option in the cvs
# man page for more details.
-# @ECLASS-VARIABLE: ECVS_BRANCH
+# @ECLASS_VARIABLE: ECVS_BRANCH
# @DEFAULT_UNSET
# @DESCRIPTION:
# The name of the branch/tag to use
@@ -136,7 +136,7 @@ esac
# branch checkout to head if used.
#: ${ECVS_BRANCH:="HEAD"}
-# @ECLASS-VARIABLE: ECVS_AUTH
+# @ECLASS_VARIABLE: ECVS_AUTH
# @PRE_INHERIT
# @DESCRIPTION:
# Authentication method to use
@@ -154,17 +154,17 @@ esac
# ( from gnustep-apps/textedit )
: ${ECVS_AUTH:="pserver"}
-# @ECLASS-VARIABLE: ECVS_USER
+# @ECLASS_VARIABLE: ECVS_USER
# @DESCRIPTION:
# Username to use for authentication on the remote server.
: ${ECVS_USER:="anonymous"}
-# @ECLASS-VARIABLE: ECVS_PASS
+# @ECLASS_VARIABLE: ECVS_PASS
# @DEFAULT_UNSET
# @DESCRIPTION:
# Password to use for authentication on the remote server
-# @ECLASS-VARIABLE: ECVS_SSH_HOST_KEY
+# @ECLASS_VARIABLE: ECVS_SSH_HOST_KEY
# @DEFAULT_UNSET
# @DESCRIPTION:
# If SSH is used for `ext' authentication, use this variable to
@@ -174,7 +174,7 @@ esac
# WARNING: If a SSH host key is not specified using this variable, the
# remote host key will not be verified.
-# @ECLASS-VARIABLE: ECVS_CLEAN
+# @ECLASS_VARIABLE: ECVS_CLEAN
# @DEFAULT_UNSET
# @DESCRIPTION:
# Set this to get a clean copy when updating (passes the