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 6B73F15808B for ; Thu, 24 Mar 2022 23:03:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AEC9BE086A; Thu, 24 Mar 2022 23:03:20 +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 93C97E086A for ; Thu, 24 Mar 2022 23:03:20 +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 A56F4343158 for ; Thu, 24 Mar 2022 23:03:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 21D092D7 for ; Thu, 24 Mar 2022 23:03:18 +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: <1648162895.e78ff1747765da9b82919cad40e123bd83591879.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nfdump/files/, net-analyzer/nfdump/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/nfdump/files/nfdump-1.6.23-m4-dir.patch net-analyzer/nfdump/nfdump-1.6.23.ebuild X-VCS-Directories: net-analyzer/nfdump/files/ net-analyzer/nfdump/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e78ff1747765da9b82919cad40e123bd83591879 X-VCS-Branch: master Date: Thu, 24 Mar 2022 23:03:18 +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: a28ef9fc-abcd-4173-8acb-84f25a1d3454 X-Archives-Hash: 3ed24a0bc204ce76f8670a9e4da3e18b commit: e78ff1747765da9b82919cad40e123bd83591879 Author: Sam James gentoo org> AuthorDate: Thu Mar 24 22:48:36 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu Mar 24 23:01:35 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e78ff174 net-analyzer/nfdump: fix autoreconf Closes: https://bugs.gentoo.org/832420 Signed-off-by: Sam James gentoo.org> net-analyzer/nfdump/files/nfdump-1.6.23-m4-dir.patch | 19 +++++++++++++++++++ net-analyzer/nfdump/nfdump-1.6.23.ebuild | 3 ++- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/net-analyzer/nfdump/files/nfdump-1.6.23-m4-dir.patch b/net-analyzer/nfdump/files/nfdump-1.6.23-m4-dir.patch new file mode 100644 index 000000000000..ac25ee094653 --- /dev/null +++ b/net-analyzer/nfdump/files/nfdump-1.6.23-m4-dir.patch @@ -0,0 +1,19 @@ +Variant sent upstream (configure.ac hunk irrelevant now): https://github.com/phaag/nfdump/pull/336 +https://bugs.gentoo.org/832420 +--- a/Makefile.am ++++ b/Makefile.am +@@ -1,3 +1,4 @@ ++ACLOCAL_AMFLAGS = -I m4 + + SUBDIRS = . bin man doc + +--- a/configure.ac ++++ b/configure.ac +@@ -7,6 +7,7 @@ AC_INIT(nfdump, 1.6.23, peter@people.ops-trust.net) + + AC_CONFIG_HEADER([config.h]) + AM_INIT_AUTOMAKE([subdir-objects]) ++AC_CONFIG_MACRO_DIR([m4]) + + # Checks for programs. + AX_CHECK_C11 diff --git a/net-analyzer/nfdump/nfdump-1.6.23.ebuild b/net-analyzer/nfdump/nfdump-1.6.23.ebuild index 9c9c2bd847b6..dca53c21054e 100644 --- a/net-analyzer/nfdump/nfdump-1.6.23.ebuild +++ b/net-analyzer/nfdump/nfdump-1.6.23.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -38,6 +38,7 @@ BDEPEND=" PATCHES=( "${FILESDIR}"/${PN}-1.6.19-compiler.patch "${FILESDIR}"/${PN}-1.6.19-libft.patch + "${FILESDIR}"/${PN}-1.6.23-m4-dir.patch ) DOCS=( AUTHORS ChangeLog README.md )