commit: c14e804bc7c25da759a30ea2c0e1f6de2029f48a
Author: Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 2 06:51:17 2023 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Wed Aug 2 06:54:09 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c14e804b
shell-completion.eclass: fix eclass header
The order of eclass tags is relevant. @MAINTAINER and @AUTHOR must come
right after @ECLASS, as otherwise, tools like eclass-to-manpage will not
be able to process the eclass. In the case of shell-completion.eclass,
this causes eclass-to-manpage to report:
error:7: shell-completion.eclass: unknown keyword @AUTHOR:
Fixes: d5e1f736c92d ("shell-completion.eclass: new eclass, migrated from
::guru")
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
eclass/shell-completion.eclass | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/eclass/shell-completion.eclass b/eclass/shell-completion.eclass
index debfb8ecd26f..d582028847b4 100644
--- a/eclass/shell-completion.eclass
+++ b/eclass/shell-completion.eclass
@@ -2,13 +2,13 @@
# Distributed under the terms of the GNU General Public License v2
# @ECLASS: shell-completion.eclass
-# @SUPPORTED_EAPIS: 8
-# @PROVIDES: bash-completion-r1
-# @AUTHOR:
-# Alfred Wingate <[email protected]>
# @MAINTAINER:
# Jonas Frei <[email protected]>
# Florian Schmaus <[email protected]>
+# @AUTHOR:
+# Alfred Wingate <[email protected]>
+# @SUPPORTED_EAPIS: 8
+# @PROVIDES: bash-completion-r1
# @BLURB: a few quick functions to install various shell completion files
# @DESCRIPTION:
# This eclass provides a standardised way to install shell completions