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 7C6631581C1 for ; Wed, 10 Jul 2024 15:24:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C2511E2B7F; Wed, 10 Jul 2024 15:24:47 +0000 (UTC) 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 pigeon.gentoo.org (Postfix) with ESMTPS id A8540E2B7F for ; Wed, 10 Jul 2024 15:24:47 +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 8FAB534106C for ; Wed, 10 Jul 2024 15:24:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BA0551E0C for ; Wed, 10 Jul 2024 15:24:44 +0000 (UTC) From: "Eli Schwartz" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eli Schwartz" Message-ID: <1720625051.59de89a9123895d6012c5e43c214ef2e0af8c6ac.eschwartz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libfilezilla/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libfilezilla/libfilezilla-0.47.0.ebuild X-VCS-Directories: dev-libs/libfilezilla/ X-VCS-Committer: eschwartz X-VCS-Committer-Name: Eli Schwartz X-VCS-Revision: 59de89a9123895d6012c5e43c214ef2e0af8c6ac X-VCS-Branch: master Date: Wed, 10 Jul 2024 15:24:44 +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: 404df628-4b05-466e-918d-0b88dd228573 X-Archives-Hash: 097d7d986181a35af29516eda6bd68e4 commit: 59de89a9123895d6012c5e43c214ef2e0af8c6ac Author: Eli Schwartz gentoo org> AuthorDate: Wed Jul 10 02:55:17 2024 +0000 Commit: Eli Schwartz gentoo org> CommitDate: Wed Jul 10 15:24:11 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59de89a9 dev-libs/libfilezilla: run eautoreconf to handle patched configure.ac Now that portage has corrected its pattern matching to detect maintainer mode, we get a warning: ``` * QA Notice: Automake "maintainer mode" detected: * * CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh '/var/tmp/portage/dev-libs/libfilezilla-0.47.0/work/libfilezilla-0.47.0/config/missing' aclocal-1.16 -I m4 * CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh '/var/tmp/portage/dev-libs/libfilezilla-0.47.0/work/libfilezilla-0.47.0/config/missing' autoconf * cd . && /bin/sh /var/tmp/portage/dev-libs/libfilezilla-0.47.0/work/libfilezilla-0.47.0/config/missing automake-1.16 --gnu ``` Signed-off-by: Eli Schwartz gentoo.org> dev-libs/libfilezilla/libfilezilla-0.47.0.ebuild | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/dev-libs/libfilezilla/libfilezilla-0.47.0.ebuild b/dev-libs/libfilezilla/libfilezilla-0.47.0.ebuild index 594dbc139cfd..6808d9713afc 100644 --- a/dev-libs/libfilezilla/libfilezilla-0.47.0.ebuild +++ b/dev-libs/libfilezilla/libfilezilla-0.47.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit flag-o-matic +inherit autotools flag-o-matic DESCRIPTION="C++ library offering some basic functionality for platform-independent programs" HOMEPAGE="https://lib.filezilla-project.org/" @@ -41,6 +41,12 @@ pkg_pretend() { fi } +src_prepare() { + default + # we patch configure.ac + eautoreconf +} + src_configure() { if use ppc || use arm || use hppa; then # bug 727652