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 5A18115808B for ; Wed, 14 Feb 2024 13:00:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C1C3E2A3F; Wed, 14 Feb 2024 13:00:13 +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 6B13AE2A3F for ; Wed, 14 Feb 2024 13:00:13 +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 7ED0133BEF1 for ; Wed, 14 Feb 2024 13:00:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CF128888 for ; Wed, 14 Feb 2024 13:00:10 +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: <1707915588.76480eb12412e13a6f9b105bde10fd7a98b137a6.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/e3/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/e3/e3-2.8.2.ebuild X-VCS-Directories: app-editors/e3/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 76480eb12412e13a6f9b105bde10fd7a98b137a6 X-VCS-Branch: master Date: Wed, 14 Feb 2024 13:00: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: 118cf737-ddfc-41da-b8f8-29b7cb986318 X-Archives-Hash: 87fba6181228bd8cc85805807cc451a1 commit: 76480eb12412e13a6f9b105bde10fd7a98b137a6 Author: Ulrich Müller gentoo org> AuthorDate: Wed Feb 14 12:55:14 2024 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Wed Feb 14 12:59:48 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76480eb1 app-editors/e3: Suppress false positive warning for prestripped Make the build fail if the arch is unknown; update to EAPI 8 for two-argument usev. Closes: https://bugs.gentoo.org/924244 Bug: https://bugs.gentoo.org/924353 Signed-off-by: Ulrich Müller gentoo.org> app-editors/e3/e3-2.8.2.ebuild | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/app-editors/e3/e3-2.8.2.ebuild b/app-editors/e3/e3-2.8.2.ebuild index 1861f7fdb058..02569310fc46 100644 --- a/app-editors/e3/e3-2.8.2.ebuild +++ b/app-editors/e3/e3-2.8.2.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit toolchain-funcs @@ -18,10 +18,14 @@ BDEPEND=">=dev-lang/nasm-2.09.04" S="${WORKDIR}/${MY_P}" PATCHES=("${FILESDIR}"/${P}-makefile.patch) -QA_FLAGS_IGNORED="/usr/bin/e3" #726484 + +# Suppress false positive QA warnings #726484 #924244 +QA_FLAGS_IGNORED="/usr/bin/e3" +QA_PRESTRIPPED="/usr/bin/e3" src_compile() { - emake -- $(usex amd64 64 32) LD="$(tc-getLD)" DEBUG=true + emake -- $(usev amd64 64 || usev x86 32 || die) \ + LD="$(tc-getLD)" DEBUG=true } src_install() {