From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 869471582EF for ; Sat, 08 Feb 2025 08:12:46 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 7077C3430DA for ; Sat, 08 Feb 2025 08:12:46 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id C6F0711048C; Sat, 08 Feb 2025 08:10:34 +0000 (UTC) Received: from graaff.moving-innovations.com (graaff.connected.by.freedominter.net [45.137.101.13]) by bobolink.gentoo.org (Postfix) with ESMTP id D773D110471 for ; Sat, 08 Feb 2025 08:10:33 +0000 (UTC) Received: by graaff.moving-innovations.com (Postfix, from userid 1000) id 57F373188B4; Sat, 08 Feb 2025 09:10:32 +0100 (CET) From: Hans de Graaff To: gentoo-dev@lists.gentoo.org Cc: Hans de Graaff Subject: [gentoo-dev] [PATCH 1/3] eclass/apache-2.eclass: support EAPI 8 Date: Sat, 8 Feb 2025 09:10:00 +0100 Message-ID: <20250208081018.26957-1-graaff@gentoo.org> X-Mailer: git-send-email 2.45.3 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Archives-Salt: c0a2aee4-f5bf-4dd7-a4cb-59a26a3698a5 X-Archives-Hash: eb266a6ff4d11498294e649886df3c77 Signed-off-by: Hans de Graaff --- 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 @@ # apache-bugs@gentoo.org # @AUTHOR: # polynomial-c@gentoo.org -# @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 -- 2.45.3