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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 15BE91382C5 for ; Wed, 24 Jun 2020 20:53:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 27D86E088B; Wed, 24 Jun 2020 20:53:17 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1A0C6E088B for ; Wed, 24 Jun 2020 20:53:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C180634F104 for ; Wed, 24 Jun 2020 20:53:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B2477175 for ; Wed, 24 Jun 2020 20:53:10 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1593031987.59b79416c6fd1cf7becd9b1863937ff15573b0bf.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/gcc-config/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/gcc-config/gcc-config-9999.ebuild sys-devel/gcc-config/metadata.xml X-VCS-Directories: sys-devel/gcc-config/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 59b79416c6fd1cf7becd9b1863937ff15573b0bf X-VCS-Branch: master Date: Wed, 24 Jun 2020 20:53:10 +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: e7754d3e-e968-4f3d-9056-394e2fa64ef2 X-Archives-Hash: 11b191c3d38acd13ba0a2d5d0d8414db commit: 59b79416c6fd1cf7becd9b1863937ff15573b0bf Author: Sergei Trofimovich gentoo org> AuthorDate: Wed Jun 24 20:52:57 2020 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Wed Jun 24 20:53:07 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59b79416 sys-devel/gcc-config: add USE=cc-wrappers to live ebuild Expose a knob to manage cc/f77. Package-Manager: Portage-2.3.102, Repoman-2.3.23 Signed-off-by: Sergei Trofimovich gentoo.org> sys-devel/gcc-config/gcc-config-9999.ebuild | 3 ++- sys-devel/gcc-config/metadata.xml | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/sys-devel/gcc-config/gcc-config-9999.ebuild b/sys-devel/gcc-config/gcc-config-9999.ebuild index f18c030a06c..e7e08f381b4 100644 --- a/sys-devel/gcc-config/gcc-config-9999.ebuild +++ b/sys-devel/gcc-config/gcc-config-9999.ebuild @@ -17,7 +17,7 @@ DESCRIPTION="Utility to manage compilers" HOMEPAGE="https://gitweb.gentoo.org/proj/gcc-config.git/" LICENSE="GPL-2" SLOT="0" -IUSE="+native-symlinks" +IUSE="+cc-wrappers +native-symlinks" RDEPEND=">=sys-apps/gentoo-functions-0.10" @@ -25,6 +25,7 @@ _emake() { emake \ PV="${PV}" \ SUBLIBDIR="$(get_libdir)" \ + USE_CC_WRAPPERS="$(usex cc-wrappers)" \ USE_NATIVE_LINKS="$(usex native-symlinks)" \ TOOLCHAIN_PREFIX="${CHOST}-" \ "$@" diff --git a/sys-devel/gcc-config/metadata.xml b/sys-devel/gcc-config/metadata.xml index 33e9604b041..ecfb291141e 100644 --- a/sys-devel/gcc-config/metadata.xml +++ b/sys-devel/gcc-config/metadata.xml @@ -6,6 +6,7 @@ Gentoo Toolchain Project + Install and manage 'cc' and 'f77' wrappers in /usr/bin. Otherwise ignore them. Install native symlinks like 'gcc' or 'g++' to /usr/bin. Otherwise keep only ${CTARGET}-gcc and friends.