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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BAC80158042 for ; Thu, 31 Oct 2024 18:37:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D8061E0856; Thu, 31 Oct 2024 18:37:38 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 BEF96E0856 for ; Thu, 31 Oct 2024 18:37:38 +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 A0B453430E2 for ; Thu, 31 Oct 2024 18:37:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BFBF31295 for ; Thu, 31 Oct 2024 18:37:35 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1730397763.050db26ae924c17985c256bd23c81885bd1a1098.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/iproute2/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/iproute2/iproute2-6.11.0-r1.ebuild sys-apps/iproute2/iproute2-6.11.0-r2.ebuild sys-apps/iproute2/iproute2-9999.ebuild X-VCS-Directories: sys-apps/iproute2/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 050db26ae924c17985c256bd23c81885bd1a1098 X-VCS-Branch: master Date: Thu, 31 Oct 2024 18:37:35 +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: b24f9dba-ef0e-46b9-9534-5b1cc7ae3faf X-Archives-Hash: aa5145dca92ca8503578b9286330c291 commit: 050db26ae924c17985c256bd23c81885bd1a1098 Author: Mike Gilbert gentoo org> AuthorDate: Thu Oct 31 18:02:43 2024 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Thu Oct 31 18:02:43 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=050db26a sys-apps/iproute2: disable color again Per discussion in IRC, use the upstream default and allow users to override it using EXTRA_ECONF. Closes: https://bugs.gentoo.org/935049 Signed-off-by: Mike Gilbert gentoo.org> .../iproute2/{iproute2-6.11.0-r1.ebuild => iproute2-6.11.0-r2.ebuild} | 3 ++- sys-apps/iproute2/iproute2-9999.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/sys-apps/iproute2/iproute2-6.11.0-r1.ebuild b/sys-apps/iproute2/iproute2-6.11.0-r2.ebuild similarity index 98% rename from sys-apps/iproute2/iproute2-6.11.0-r1.ebuild rename to sys-apps/iproute2/iproute2-6.11.0-r2.ebuild index c5c0744b82f8..e06e6cd952a9 100644 --- a/sys-apps/iproute2/iproute2-6.11.0-r1.ebuild +++ b/sys-apps/iproute2/iproute2-6.11.0-r2.ebuild @@ -112,7 +112,8 @@ src_configure() { # run "configure" script first which will create "config.mk"... # Using econf breaks since 5.14.0 (a9c3d70d902a0473ee5c13336317006a52ce8242) - edo ./configure --color=auto --libbpf_force $(usex bpf on off) + eval "local -a EXTRA_ECONF=(${EXTRA_ECONF})" + edo ./configure --libbpf_force $(usex bpf on off) "${EXTRA_ECONF[@]}" # Remove the definitions made by configure and allow them to be overridden # by USE flags below. diff --git a/sys-apps/iproute2/iproute2-9999.ebuild b/sys-apps/iproute2/iproute2-9999.ebuild index e650e4f2e1ca..3ea2b7db3ea0 100644 --- a/sys-apps/iproute2/iproute2-9999.ebuild +++ b/sys-apps/iproute2/iproute2-9999.ebuild @@ -111,7 +111,8 @@ src_configure() { # run "configure" script first which will create "config.mk"... # Using econf breaks since 5.14.0 (a9c3d70d902a0473ee5c13336317006a52ce8242) - edo ./configure --color=auto --libbpf_force $(usex bpf on off) + eval "local -a EXTRA_ECONF=(${EXTRA_ECONF})" + edo ./configure --libbpf_force $(usex bpf on off) "${EXTRA_ECONF[@]}" # Remove the definitions made by configure and allow them to be overridden # by USE flags below.