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 1FA2D158089 for ; Fri, 29 Sep 2023 06:51:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B2F992BC03B; Fri, 29 Sep 2023 06:51:30 +0000 (UTC) Received: from graaff.moving-innovations.com (graaff.connected.by.freedominter.net [45.137.101.13]) by pigeon.gentoo.org (Postfix) with ESMTP id 5D7452BC02B for ; Fri, 29 Sep 2023 06:51:30 +0000 (UTC) Received: by graaff.moving-innovations.com (Postfix, from userid 1000) id A97D9858C3; Fri, 29 Sep 2023 08:51:29 +0200 (CEST) From: Hans de Graaff To: gentoo-dev@lists.gentoo.org Cc: Hans de Graaff Subject: [gentoo-dev] [PATCH 3/4] eclass/apache-module.eclass: enable EAPI 8 Date: Fri, 29 Sep 2023 08:51:28 +0200 Message-ID: <20230929065129.2589-3-graaff@gentoo.org> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20230929065129.2589-1-graaff@gentoo.org> References: <20230929065129.2589-1-graaff@gentoo.org> 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: 8e6afa3d-7045-4822-a39b-7a1511541b1d X-Archives-Hash: 4c17e2a054ee4cbb3123f8c392950012 Closes: https://bugs.gentoo.org/914200 --- eclass/apache-module.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/apache-module.eclass b/eclass/apache-module.eclass index 8074aff5ddcb..5a84ffedf71a 100644 --- a/eclass/apache-module.eclass +++ b/eclass/apache-module.eclass @@ -4,7 +4,7 @@ # @ECLASS: apache-module.eclass # @MAINTAINER: # apache-bugs@gentoo.org -# @SUPPORTED_EAPIS: 6 7 +# @SUPPORTED_EAPIS: 6 7 8 # @BLURB: Provides a common set of functions for apache modules # @DESCRIPTION: # This eclass handles apache modules in a sane way. @@ -45,7 +45,7 @@ # @CODE case ${EAPI} in - 6|7) ;; + 6|7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac -- 2.41.0