diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-12-28 10:12:24 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-12-28 10:31:30 +0100 |
commit | 2f653f03c381cd6c4b1c7fc3aa7b25901fc8b47f (patch) | |
tree | bf4a87d73bd7f963bb8cfbea36d492599cbc4147 /eclass/mozextension.eclass | |
parent | dev-ruby/racc: avoid dep on bundler (diff) | |
download | gentoo-2f653f03c381cd6c4b1c7fc3aa7b25901fc8b47f.tar.gz gentoo-2f653f03c381cd6c4b1c7fc3aa7b25901fc8b47f.tar.bz2 gentoo-2f653f03c381cd6c4b1c7fc3aa7b25901fc8b47f.zip |
eclass: [QA] Revert multiple meaningless doc changes
Revert multiple meaningless eclass documentation changes, notably adding
a lot of placeholders and documenting implementation details. These
changes were aimed at silencing (valid) documentation warnings without
actually providing valuable documentation to the end users. While some
of these changes were beneficial, it would take a lot of effort to
review them all and the author is unwilling to fix his mistakes.
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass/mozextension.eclass')
-rw-r--r-- | eclass/mozextension.eclass | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/eclass/mozextension.eclass b/eclass/mozextension.eclass index 2e51180f1e51..c6276908b9f5 100644 --- a/eclass/mozextension.eclass +++ b/eclass/mozextension.eclass @@ -5,9 +5,7 @@ # @MAINTAINER: # Mozilla team <mozilla@gentoo.org> # @BLURB: Install extensions for use in mozilla products. -# @DESCRIPTION: -# Install extensions for use in mozilla products - +# if [[ ! ${_MOZEXTENSION} ]]; then # @ECLASS-VARIABLE: MOZEXTENSION_TARGET @@ -22,10 +20,6 @@ inherit eutils DEPEND="app-arch/unzip" -# @FUNCTION: mozversion_extension_location -# @DESCRIPTION: -# Get ${PN} from extension location - mozversion_extension_location() { case ${PN} in firefox|firefox-bin|palemoon) @@ -38,10 +32,6 @@ mozversion_extension_location() { return 1 } -# @FUNCTION: xpi_unpack -# @DESCRIPTION: -# Unpack XPI files - xpi_unpack() { local xpi xpiname srcdir @@ -71,9 +61,6 @@ xpi_unpack() { done } -# @FUNCTION: xpi_install -# @DESCRIPTION: -# Install XPI files xpi_install() { local emid @@ -104,10 +91,6 @@ xpi_install() { doins -r "${x}"/* || die "failed to copy extension" } -# @FUNCTION: xpi_copy -# @DESCRIPTION: -# Copy XPI files - xpi_copy() { local emid |