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 BFF78158095 for ; Sun, 24 Jul 2022 17:50:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C0602E0F45; Sun, 24 Jul 2022 17:50:06 +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 958A0E0F41 for ; Sun, 24 Jul 2022 17:50:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 smtp.gentoo.org (Postfix) with ESMTPS id A9239340EFE for ; Sun, 24 Jul 2022 17:50:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B0C3D553 for ; Sun, 24 Jul 2022 17:50:01 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1658684987.67eaa181d1a9234e347ed8d36a95395e76e3f571.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/java-pkg-simple.eclass X-VCS-Directories: eclass/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 67eaa181d1a9234e347ed8d36a95395e76e3f571 X-VCS-Branch: master Date: Sun, 24 Jul 2022 17:50:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 13467c8e-18d7-4050-8605-91e656d63a43 X-Archives-Hash: 576cc892945d80027a692e02e39ddc42 commit: 67eaa181d1a9234e347ed8d36a95395e76e3f571 Author: Ulrich Müller gentoo org> AuthorDate: Sat Jul 23 19:19:45 2022 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sun Jul 24 17:49:47 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67eaa181 java-pkg-simple.eclass: Inherit eqawarn instead of eutils Signed-off-by: Ulrich Müller gentoo.org> eclass/java-pkg-simple.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/java-pkg-simple.eclass b/eclass/java-pkg-simple.eclass index 34c044e2ba2d..09062d9ede68 100644 --- a/eclass/java-pkg-simple.eclass +++ b/eclass/java-pkg-simple.eclass @@ -17,7 +17,7 @@ # directory before calling the src_compile function of this eclass. case ${EAPI} in - 6) inherit eutils ;; # eutils for eqawarn + 6) inherit eqawarn ;; 7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac