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/webapp.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/webapp.eclass')
-rw-r--r-- | eclass/webapp.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/webapp.eclass b/eclass/webapp.eclass index 7bdf28430b48..3c0dfc811ac6 100644 --- a/eclass/webapp.eclass +++ b/eclass/webapp.eclass @@ -20,20 +20,20 @@ EXPORT_FUNCTIONS pkg_postinst pkg_setup src_install pkg_prerm if [[ -z ${_WEBAPP_ECLASS} ]]; then _WEBAPP_ECLASS=1 -# @ECLASS-VARIABLE: WEBAPP_DEPEND +# @ECLASS_VARIABLE: WEBAPP_DEPEND # @DESCRIPTION: # An ebuild should use WEBAPP_DEPEND if a custom DEPEND needs to be built, most # notably in combination with WEBAPP_OPTIONAL. WEBAPP_DEPEND="app-admin/webapp-config" -# @ECLASS-VARIABLE: WEBAPP_NO_AUTO_INSTALL +# @ECLASS_VARIABLE: WEBAPP_NO_AUTO_INSTALL # @PRE_INHERIT # @DESCRIPTION: # An ebuild sets this to `yes' if an automatic installation and/or upgrade is # not possible. The ebuild should overwrite pkg_postinst() and explain the # reason for this BEFORE calling webapp_pkg_postinst(). -# @ECLASS-VARIABLE: WEBAPP_OPTIONAL +# @ECLASS_VARIABLE: WEBAPP_OPTIONAL # @PRE_INHERIT # @DESCRIPTION: # An ebuild sets this to `yes' to make webapp support optional, in which case |