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 D33A5158008 for ; Fri, 16 Jun 2023 08:20:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C8DFCE0997; Fri, 16 Jun 2023 08:20:41 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4BE36E0982 for ; Fri, 16 Jun 2023 08:20:41 +0000 (UTC) From: =?UTF-8?q?Ulrich=20M=C3=BCller?= To: gentoo-dev@lists.gentoo.org Cc: base-system@gentoo.org, =?UTF-8?q?Ulrich=20M=C3=BCller?= Subject: [gentoo-dev] [PATCH 2/2] rpm.eclass: Don't inherit eutils in EAPI 7 Date: Fri, 16 Jun 2023 10:20:05 +0200 Message-ID: <20230616082013.5360-2-ulm@gentoo.org> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20230616082013.5360-1-ulm@gentoo.org> References: <20230616082013.5360-1-ulm@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-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Archives-Salt: 63c8cf69-601b-46c8-a101-f9448e6c85b2 X-Archives-Hash: 340e53aa5dcb3b552a3f8b454168949a None of the ebuilds inheriting rpm in EAPI 7 needs any of the remaining eutils features. Signed-off-by: Ulrich Müller --- eclass/rpm.eclass | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/eclass/rpm.eclass b/eclass/rpm.eclass index d03493466e1e..d8bb0ad2814d 100644 --- a/eclass/rpm.eclass +++ b/eclass/rpm.eclass @@ -9,8 +9,7 @@ case ${EAPI} in 6) inherit epatch eutils ;; # eutils for eqawarn - 7) inherit eutils ;; # not needed, but ebuilds may still rely on it - 8) ;; + 7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac -- 2.41.0