From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 02B8F1581F0 for ; Thu, 23 Jan 2025 22:43:32 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id BF1D73434C1 for ; Thu, 23 Jan 2025 22:43:32 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id B09E611042D; Thu, 23 Jan 2025 22:43:31 +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 bobolink.gentoo.org (Postfix) with ESMTPS id A41C711042D for ; Thu, 23 Jan 2025 22:43:31 +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 53996343489 for ; Thu, 23 Jan 2025 22:43:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B1D4FE65 for ; Thu, 23 Jan 2025 22:43:29 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1737672116.45ed1b56f11195e805318bff82e7b249bc94a7cc.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-misc/opengfx/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-misc/opengfx/opengfx-7.1.ebuild X-VCS-Directories: games-misc/opengfx/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 45ed1b56f11195e805318bff82e7b249bc94a7cc X-VCS-Branch: master Date: Thu, 23 Jan 2025 22:43:29 +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: 6dd3f67a-8f89-49b5-a64f-af779f98b618 X-Archives-Hash: c7dcab15f8bd6dabd5268eedae256ea9 commit: 45ed1b56f11195e805318bff82e7b249bc94a7cc Author: Sam James gentoo org> AuthorDate: Thu Jan 23 22:41:23 2025 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jan 23 22:41:56 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45ed1b56 games-misc/opengfx: make logs verbose Make logs verbose and reuse the same argument array for each phase. Bug: https://bugs.gentoo.org/928269 Signed-off-by: Sam James gentoo.org> games-misc/opengfx/opengfx-7.1.ebuild | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/games-misc/opengfx/opengfx-7.1.ebuild b/games-misc/opengfx/opengfx-7.1.ebuild index e4437660902f..1f9cce274688 100644 --- a/games-misc/opengfx/opengfx-7.1.ebuild +++ b/games-misc/opengfx/opengfx-7.1.ebuild @@ -29,31 +29,28 @@ PATCHES=( ) src_compile() { - local myemakeargs=( + myemakeargs=( GIMP="" PYTHON="${EPYTHON}" + + # Make logs verbose + _V= + _E=echo ) emake "${myemakeargs[@]}" all } src_test() { - local myemakeargs=( - GIMP="" - PYTHON="${EPYTHON}" - ) - emake "${myemakeargs[@]}" check } src_install() { - local myemakeargs=( + myemakeargs+=( DO_NOT_INSTALL_README="true" DO_NOT_INSTALL_LICENSE="true" DO_NOT_INSTALL_CHANGELOG="true" - GIMP="" INSTALL_DIR="${ED}/usr/share/openttd/baseset/" - PYTHON="${EPYTHON}" ) emake "${myemakeargs[@]}" install