commit: abe9aed9162cd2df4a420fdcd168c02c52f8ecda Author: Hans de Graaff <graaff <AT> gentoo <DOT> org> AuthorDate: Sat Feb 8 08:00:49 2025 +0000 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org> CommitDate: Sat Feb 15 09:04:28 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abe9aed9
eclass/apache-2.eclass: support EAPI 8 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org> eclass/apache-2.eclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eclass/apache-2.eclass b/eclass/apache-2.eclass index 352337f551d6..1e9edb998918 100644 --- a/eclass/apache-2.eclass +++ b/eclass/apache-2.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: apache-2.eclass @@ -6,7 +6,7 @@ # [email protected] # @AUTHOR: # [email protected] -# @SUPPORTED_EAPIS: 7 +# @SUPPORTED_EAPIS: 7 8 # @BLURB: Provides a common set of functions for apache-2.x ebuilds # @DESCRIPTION: # This eclass handles apache-2.x ebuild functions such as LoadModule generation @@ -19,7 +19,7 @@ inherit autotools flag-o-matic lua-single multilib ssl-cert toolchain-funcs && die "Do not use this eclass with anything else than www-servers/apache ebuilds!" case ${EAPI} in - 7) ;; + 7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac
