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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9F7D01580EB for ; Fri, 30 May 2025 21:53:57 +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)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 895933431B8 for ; Fri, 30 May 2025 21:53:57 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 5C065110480; Fri, 30 May 2025 21:53:52 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 55732110480 for ; Fri, 30 May 2025 21:53:52 +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 0F4F73431CB for ; Fri, 30 May 2025 21:53:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7732E28EC for ; Fri, 30 May 2025 21:53:50 +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: <1748641974.f529d6d6f4aba1f3f0df8dcf6d0bb140e747107f.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/iftop/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/iftop/iftop-1.0_pre4-r5.ebuild X-VCS-Directories: net-analyzer/iftop/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f529d6d6f4aba1f3f0df8dcf6d0bb140e747107f X-VCS-Branch: master Date: Fri, 30 May 2025 21:53:50 +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: 8b161a4e-a23c-48bf-936a-48b4639fd583 X-Archives-Hash: 7b8f305711802db66873e88cb405b1b2 commit: f529d6d6f4aba1f3f0df8dcf6d0bb140e747107f Author: Joe Kappus wt gd> AuthorDate: Fri May 30 21:46:53 2025 +0000 Commit: Sam James gentoo org> CommitDate: Fri May 30 21:52:54 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f529d6d6 net-analyzer/iftop: build with -std=gnu17 Closes: https://bugs.gentoo.org/944909 Signed-off-by: Joe Kappus wt.gd> Part-of: https://github.com/gentoo/gentoo/pull/42363 Closes: https://github.com/gentoo/gentoo/pull/42363 Signed-off-by: Sam James gentoo.org> net-analyzer/iftop/iftop-1.0_pre4-r5.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/net-analyzer/iftop/iftop-1.0_pre4-r5.ebuild b/net-analyzer/iftop/iftop-1.0_pre4-r5.ebuild index 7a8c6b86167f..597c47c9d873 100644 --- a/net-analyzer/iftop/iftop-1.0_pre4-r5.ebuild +++ b/net-analyzer/iftop/iftop-1.0_pre4-r5.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit autotools +inherit autotools flag-o-matic DESCRIPTION="Display bandwidth usage on an interface" HOMEPAGE="https://www.ex-parrot.com/pdw/iftop/ https://code.blinkace.com/pdw/iftop" @@ -38,6 +38,9 @@ PATCHES=( src_prepare() { default + #bug 944029 + append-cflags -std=gnu17 + eautoreconf }