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 DFF2015ACFC for ; Tue, 2 May 2023 22:53:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0FD0CE08F2; Tue, 2 May 2023 22:53:28 +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 E95F3E08F2 for ; Tue, 2 May 2023 22:53:27 +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 320EA340CB4 for ; Tue, 2 May 2023 22:53:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A2C5E990 for ; Tue, 2 May 2023 22:53:25 +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: <1683067992.191fbdaf985652a3873a545226a53cc2ad37de41.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libstrophe/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libstrophe/libstrophe-0.12.2.ebuild X-VCS-Directories: dev-libs/libstrophe/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 191fbdaf985652a3873a545226a53cc2ad37de41 X-VCS-Branch: master Date: Tue, 2 May 2023 22:53:25 +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: 09cdc1a8-c8af-493c-8a31-ef05a426e543 X-Archives-Hash: 6b3537d9d9b79643ae9f630416362fb0 commit: 191fbdaf985652a3873a545226a53cc2ad37de41 Author: Sam James gentoo org> AuthorDate: Tue May 2 22:50:03 2023 +0000 Commit: Sam James gentoo org> CommitDate: Tue May 2 22:53:12 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=191fbdaf dev-libs/libstrophe: avoid maintainer mode b/c of bashisms patch The bashisms patch touches configure.ac so it causes maintainer mode in src_compile. Run eautoreconf instead. Bug: https://bugs.gentoo.org/877049 Bug: https://bugs.gentoo.org/879533 Signed-off-by: Sam James gentoo.org> dev-libs/libstrophe/libstrophe-0.12.2.ebuild | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/dev-libs/libstrophe/libstrophe-0.12.2.ebuild b/dev-libs/libstrophe/libstrophe-0.12.2.ebuild index 712039ac8782..1e4a8b48e633 100644 --- a/dev-libs/libstrophe/libstrophe-0.12.2.ebuild +++ b/dev-libs/libstrophe/libstrophe-0.12.2.ebuild @@ -2,6 +2,9 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 + +inherit autotools + DESCRIPTION="A simple, lightweight C library for writing XMPP clients" HOMEPAGE="https://strophe.im/libstrophe/" # 2nd SRC is a backport of the /bin/sh -> dash fix, #877049, #879533 @@ -34,6 +37,13 @@ PATCHES=( "${DISTDIR}/${PN}-fix-configure-bashisms.patch" ) +src_prepare() { + default + + # Needed for bashisms patch which touches configure + eautoreconf +} + src_configure() { # shellcheck disable=SC2207 local myeconf=( @@ -43,6 +53,7 @@ src_configure() { ) econf "${myeconf[@]}" } + src_compile() { default if use doc; then