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 82FB3158086 for ; Sat, 25 Dec 2021 18:33:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A51192BC01B; Sat, 25 Dec 2021 18:33:47 +0000 (UTC) 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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0F4352BC010 for ; Sat, 25 Dec 2021 18:33:43 +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/java-virtuals-2.eclass: added eapi8 support Date: Sat, 25 Dec 2021 19:33:31 +0100 Message-Id: <20211225183331.21493-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: 24ea4e23-4b0d-48eb-a9fb-ea31fd959967 X-Archives-Hash: 2f5b037995193edf8bdc1bbbcc820b32 Signed-off-by: Miroslav Ć ulc --- eclass/java-virtuals-2.eclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eclass/java-virtuals-2.eclass b/eclass/java-virtuals-2.eclass index dedbf2f26195..e929a7e1ceeb 100644 --- a/eclass/java-virtuals-2.eclass +++ b/eclass/java-virtuals-2.eclass @@ -6,14 +6,14 @@ # java@gentoo.org # @AUTHOR: # Original Author: Alistair John Bush -# @SUPPORTED_EAPIS: 5 6 +# @SUPPORTED_EAPIS: 5 6 8 # @BLURB: Java virtuals eclass # @DESCRIPTION: # To provide a default (and only) src_install function for ebuilds in the # java-virtuals category. case ${EAPI:-0} in - [56]) ;; + [568]) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac @@ -22,7 +22,7 @@ _JAVA_VIRTUALS_2_ECLASS=1 inherit java-utils-2 -DEPEND=">=dev-java/java-config-2.2.0-r3" +DEPEND="dev-java/java-config" RDEPEND="${DEPEND}" S="${WORKDIR}" -- 2.34.1