From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6366015800A for ; Wed, 2 Aug 2023 06:54:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A3CC2E0B34; Wed, 2 Aug 2023 06:54:15 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 88C08E0B34 for ; Wed, 2 Aug 2023 06:54:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A0B6C335D36 for ; Wed, 2 Aug 2023 06:54:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2585FEB2 for ; Wed, 2 Aug 2023 06:54:13 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1690959249.c14e804bc7c25da759a30ea2c0e1f6de2029f48a.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/shell-completion.eclass X-VCS-Directories: eclass/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: c14e804bc7c25da759a30ea2c0e1f6de2029f48a X-VCS-Branch: master Date: Wed, 2 Aug 2023 06:54:13 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8b5887bb-40df-44ba-87f1-06e68e272212 X-Archives-Hash: 088a62035aee5e8c41011f1fc5d5e5bd commit: c14e804bc7c25da759a30ea2c0e1f6de2029f48a Author: Florian Schmaus gentoo org> AuthorDate: Wed Aug 2 06:51:17 2023 +0000 Commit: Florian Schmaus gentoo 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 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 # @MAINTAINER: # Jonas Frei # Florian Schmaus +# @AUTHOR: +# Alfred Wingate +# @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