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 55301158086 for ; Sat, 25 Dec 2021 19:13:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0B1D42BC047; Sat, 25 Dec 2021 19:13:09 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 471A02BC00E for ; Sat, 25 Dec 2021 19:13:07 +0000 (UTC) From: =?UTF-8?q?Miroslav=20=C5=A0ulc?= To: gentoo-dev@lists.gentoo.org Cc: =?UTF-8?q?Miroslav=20=C5=A0ulc?= Subject: [gentoo-dev] [PATCH] eclass/webapps.eclass: added eapi8 support Date: Sat, 25 Dec 2021 20:12:48 +0100 Message-Id: <20211225191248.17933-1-fordfrog@gentoo.org> X-Mailer: git-send-email 2.34.1 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-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Archives-Salt: c6581484-2ad4-4325-93d5-a79c19701e4e X-Archives-Hash: 7eb172582aa8255e4c9fe8c39d09aab2 Signed-off-by: Miroslav Ć ulc --- eclass/webapp.eclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eclass/webapp.eclass b/eclass/webapp.eclass index 5ef7dbce03cf..7bdf28430b48 100644 --- a/eclass/webapp.eclass +++ b/eclass/webapp.eclass @@ -4,14 +4,14 @@ # @ECLASS: webapp.eclass # @MAINTAINER: # web-apps@gentoo.org -# @SUPPORTED_EAPIS: 5 6 7 +# @SUPPORTED_EAPIS: 5 6 7 8 # @BLURB: functions for installing applications to run under a web server # @DESCRIPTION: # The webapp eclass contains functions to handle web applications with # webapp-config. Part of the implementation of GLEP #11 case ${EAPI:-0} in - [567]) ;; + [5678]) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac @@ -24,7 +24,7 @@ _WEBAPP_ECLASS=1 # @DESCRIPTION: # An ebuild should use WEBAPP_DEPEND if a custom DEPEND needs to be built, most # notably in combination with WEBAPP_OPTIONAL. -WEBAPP_DEPEND=">=app-admin/webapp-config-1.50.15" +WEBAPP_DEPEND="app-admin/webapp-config" # @ECLASS-VARIABLE: WEBAPP_NO_AUTO_INSTALL # @PRE_INHERIT -- 2.34.1