commit: 80dc363ca1d8f9bc4ed70eef6e7116492faec49e Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Sat Feb 21 09:30:48 2026 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Sat Feb 21 09:30:48 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80dc363c
Revert "bash-completion-r1.eclass: Support EAPI 9" This reverts commit 3fb60830e0b810222c277389b201e0d2fc50508a. Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> eclass/bash-completion-r1.eclass | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/eclass/bash-completion-r1.eclass b/eclass/bash-completion-r1.eclass index c120806edf37..2220cb2be508 100644 --- a/eclass/bash-completion-r1.eclass +++ b/eclass/bash-completion-r1.eclass @@ -1,10 +1,10 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: bash-completion-r1.eclass # @MAINTAINER: # [email protected] -# @SUPPORTED_EAPIS: 7 8 9 +# @SUPPORTED_EAPIS: 7 8 # @BLURB: A few quick functions to install bash-completion files # @EXAMPLE: # @@ -26,13 +26,13 @@ if [[ -z ${_BASH_COMPLETION_R1_ECLASS} ]]; then _BASH_COMPLETION_R1_ECLASS=1 +inherit toolchain-funcs + case ${EAPI} in - 7|8|9) ;; + 7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac -inherit toolchain-funcs - # @FUNCTION: _bash-completion-r1_get_bashdir # @INTERNAL # @DESCRIPTION:
