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 32C3D1581C1 for ; Wed, 3 Jul 2024 18:37:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 61B2CE2A66; Wed, 3 Jul 2024 18:37:11 +0000 (UTC) Received: from matoro.tk (matoro.tk [104.188.251.153]) (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 10330E2A5D for ; Wed, 3 Jul 2024 18:37:10 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=mtfEdIHBpuk2F+UxNmy5Hd921ALwzzBmdKcr+wr5kmA=; c=relaxed/relaxed; d=matoro.tk; h=Subject:Subject:Sender:To:To:Cc:From:From:Date:Date:MIME-Version:MIME-Version:Content-Type:Content-Type:Content-Transfer-Encoding:Content-Transfer-Encoding:Reply-To:In-Reply-To:Message-Id:Message-Id:References:Autocrypt:Openpgp; i=@matoro.tk; s=20240626; t=1720030926; v=1; x=1720462926; b=Cd/ph5g+r0Mxwuk69Kpi4lELVa5P5SxdbV2C/9fNniBq+uE9BQ/Ilt5Rb2xpX0YnCWb/97GT zBy2/tieCPai7VocCIAnzaxMOFWDeEbBFhG0sDOHZFzlMRl6CMUuFvkkAj9RG/B7v8n7uYYKzvI qBTm6fyFlP3Ro97c1TYD5qmzXZ5oVV6zFOActi/hy57yf9VQZBTmPLjYq+jnd1fVrJWUFAfsqWY 99tt87DqnyLDPP0tjIraLpKLfVNBVUoFj8SpDPooeJQVmZp1h4tIxUChPZ8iwsuEJBK0TvwG9PQ hD6O0KF/qqeXYR8/xNvpZMMwUYWeh211UM/qZG8Qqn9CKhdFH6TMHcqzRx2pjzy9fKGPgQVM62g MPM1zlzz4g84PGRm4RHv0olWm8uXX0cC8PYYwjp3VNKLQ+JJi4Oea1h0Vy8HXGV5haekyivMxB+ RNxGYDoSd55FgdIo2mtURZaLJIV6kWErUWrkwaqIV3JA0TBSY03hE97A2RorPjfU//2zUtZjp8I DMzjHYAOSulyPqrCCnM3A9W07xPjLM/3cnxVQ0ZJztnCfHWsVpP+kaq/ChGxaOb+z+9qi0uqZUd fUKErf26tgddpOkEeW7dZOmRI1LA5sTvK9St7GVBV1Tvu7Ms5DfOX60JqOYM47oU7dXKStJkhn/ Y2mi2NMLT/w= Received: by matoro.tk (envelope-sender ) with ESMTPS id f6cd3d1c; Wed, 03 Jul 2024 14:22:06 -0400 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 Date: Wed, 03 Jul 2024 14:22:06 -0400 From: matoro To: Gentoo Dev Subject: [gentoo-dev] [PATCH] go-env.eclass: add implicit IUSE for abi_mips_* Message-ID: <83f57a44c5c3e3118e4a664e33c7f197@matoro.tk> X-Sender: matoro_mailinglist_gentoo-dev@matoro.tk Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Archives-Salt: 1753b79b-bf66-451e-8c06-c57c5f39f1a2 X-Archives-Hash: a779a92575867ee1b623d411ad105266 Submitted as https://github.com/gentoo/gentoo/pull/37411 Closes: https://bugs.gentoo.org/935414 Signed-off-by: Matoro Mahri --- eclass/go-env.eclass | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eclass/go-env.eclass b/eclass/go-env.eclass index 1a2c9787a146b..5afa8df09b64e 100644 --- a/eclass/go-env.eclass +++ b/eclass/go-env.eclass @@ -16,6 +16,8 @@ _GO_ENV_ECLASS=1 inherit flag-o-matic toolchain-funcs +IUSE+=" abi_mips_o32 abi_mips_n64" + # @FUNCTION: go-env_set_compile_environment # @DESCRIPTION: # Set up basic compile environment: CC, CXX, and GOARCH.