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 092DD159C9B for ; Sun, 4 Aug 2024 17:31:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2F56EE29AE; Sun, 4 Aug 2024 17:31:22 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 14810E29AE for ; Sun, 4 Aug 2024 17:31:22 +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 179D333BE3B for ; Sun, 4 Aug 2024 17:31:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6D8211E87 for ; Sun, 4 Aug 2024 17:31:19 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1722792656.5bcc0634bfd39f947f076c045d4d250f8ec3b513.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/nasm/nasm-2.16.03.ebuild X-VCS-Directories: dev-lang/nasm/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 5bcc0634bfd39f947f076c045d4d250f8ec3b513 X-VCS-Branch: master Date: Sun, 4 Aug 2024 17:31:19 +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: b04190cc-b55f-4e29-8877-f6c88752c9dc X-Archives-Hash: 99ee8b8467dc567433f0d06368a571b4 commit: 5bcc0634bfd39f947f076c045d4d250f8ec3b513 Author: Arthur Zamarin gentoo org> AuthorDate: Sun Aug 4 17:27:22 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sun Aug 4 17:30:56 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bcc0634 dev-lang/nasm: drop IUSE="lto" This useflag controls only "--enable-lto", which just appends `-flto` to *FLAGS, which is useless for a USE flag, since LTO users are expected to add those flags to *FLAGS. Signed-off-by: Arthur Zamarin gentoo.org> dev-lang/nasm/nasm-2.16.03.ebuild | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/dev-lang/nasm/nasm-2.16.03.ebuild b/dev-lang/nasm/nasm-2.16.03.ebuild index e25dd3447c0e..472488d3e511 100644 --- a/dev-lang/nasm/nasm-2.16.03.ebuild +++ b/dev-lang/nasm/nasm-2.16.03.ebuild @@ -13,7 +13,7 @@ S="${WORKDIR}"/${P/_} LICENSE="BSD-2" SLOT="0" KEYWORDS="amd64 arm64 ~ia64 ~loong ppc64 ~riscv x86 ~amd64-linux ~x86-linux" -IUSE="doc lto" +IUSE="doc" QA_CONFIG_IMPL_DECL_SKIP=( # Windows. @@ -75,10 +75,9 @@ src_prepare() { } src_configure() { - local myconfargs=( - $(use_enable lto) - ) - econf "${myconfargs[@]}" + # --enable-lto just appends -flto to *FLAGS + # so let users just use lto through normal make.conf *FLAGS + econf } src_compile() {