diff options
author | Ulrich Müller <ulm@gentoo.org> | 2022-03-18 21:29:29 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2022-03-24 04:58:34 +0100 |
commit | d7317785d04e7de172de3bff05852fca3cd15af2 (patch) | |
tree | 39f2e24069d903cc05c898c695d9a703fcaf5ca9 /eclass/office-ext-r1.eclass | |
parent | app-shells/nushell: Add 0.60.0 (diff) | |
download | gentoo-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/office-ext-r1.eclass')
-rw-r--r-- | eclass/office-ext-r1.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/office-ext-r1.eclass b/eclass/office-ext-r1.eclass index a81eea4b6107..8cf472fe5bcc 100644 --- a/eclass/office-ext-r1.eclass +++ b/eclass/office-ext-r1.eclass @@ -19,7 +19,7 @@ esac EXPORT_FUNCTIONS src_unpack src_install -# @ECLASS-VARIABLE: OFFICE_REQ_USE +# @ECLASS_VARIABLE: OFFICE_REQ_USE # @PRE_INHERIT # @DESCRIPTION: # Useflags required on office implementation for the extension. @@ -33,7 +33,7 @@ if [[ ${OFFICE_REQ_USE} ]]; then OFFICE_REQ_USE="[${OFFICE_REQ_USE}]" fi -# @ECLASS-VARIABLE: OFFICE_IMPLEMENTATIONS +# @ECLASS_VARIABLE: OFFICE_IMPLEMENTATIONS # @DESCRIPTION: # List of implementations supported by the extension. # Some work only for libreoffice and vice versa. @@ -45,7 +45,7 @@ fi # @CODE [[ -z ${OFFICE_IMPLEMENTATIONS} ]] && OFFICE_IMPLEMENTATIONS=( "libreoffice" ) -# @ECLASS-VARIABLE: OFFICE_EXTENSIONS +# @ECLASS_VARIABLE: OFFICE_EXTENSIONS # @PRE_INHERIT # @REQUIRED # @DESCRIPTION: @@ -60,7 +60,7 @@ if [[ "$(declare -p OFFICE_EXTENSIONS 2>/dev/null 2>&1)" != "declare -a"* ]]; th die "OFFICE_EXTENSIONS variable is not an array." fi -# @ECLASS-VARIABLE: OFFICE_EXTENSIONS_LOCATION +# @ECLASS_VARIABLE: OFFICE_EXTENSIONS_LOCATION # @DESCRIPTION: # Path to the extensions location. Defaults to ${DISTDIR}. # |