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 BF418158008 for ; Fri, 16 Jun 2023 14:10:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0812AE0921; Fri, 16 Jun 2023 14:10:55 +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 DEB7CE0921 for ; Fri, 16 Jun 2023 14:10:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 DBDF8340831 for ; Fri, 16 Jun 2023 14:10:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 47C7C8DC for ; Fri, 16 Jun 2023 14:10:52 +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: <1686924586.6029280204380cee264a8bd45ffcd0c4d6b214f1.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/toolchain.eclass X-VCS-Directories: eclass/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 6029280204380cee264a8bd45ffcd0c4d6b214f1 X-VCS-Branch: master Date: Fri, 16 Jun 2023 14:10:52 +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: f357033b-b96f-46e6-af96-c53518ebab1a X-Archives-Hash: 5576793441fef8b6ccc94cfcfb8bd198 commit: 6029280204380cee264a8bd45ffcd0c4d6b214f1 Author: Ulrich Müller gentoo org> AuthorDate: Fri Jun 16 08:38:55 2023 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Fri Jun 16 14:09:46 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60292802 toolchain.eclass: Don't inherit eutils None of the ebuilds inheriting toolchain in EAPI 7 needs any of the remaining eutils features. Signed-off-by: Ulrich Müller gentoo.org> eclass/toolchain.eclass | 3 --- 1 file changed, 3 deletions(-) diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 3578ac7f44ec..3013e5c9aeca 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -22,7 +22,6 @@ _TOOLCHAIN_ECLASS=1 DESCRIPTION="The GNU Compiler Collection" HOMEPAGE="https://gcc.gnu.org/" -[[ ${EAPI} == 7 ]] && inherit eutils inherit edo flag-o-matic gnuconfig libtool multilib pax-utils toolchain-funcs prefix tc_is_live() { @@ -61,7 +60,6 @@ is_crosscompile() { [[ ${CHOST} != ${CTARGET} ]] } - # @FUNCTION: tc_version_is_at_least # @USAGE: ver1 [ver2] # @DESCRIPTION: @@ -927,7 +925,6 @@ toolchain_src_configure() { # ;; # esac - ### Cross-compiler options if is_crosscompile ; then # Enable build warnings by default with cross-compilers when system