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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B9E2215803E for ; Fri, 5 Jan 2024 05:03:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 07C4D2BC056; Fri, 5 Jan 2024 05:03:13 +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 E734A2BC056 for ; Fri, 5 Jan 2024 05:03:12 +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 15E113430B0 for ; Fri, 5 Jan 2024 05:03:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4E672DB1 for ; Fri, 5 Jan 2024 05:03:10 +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: <1704429798.a06ef0571fc1557626b9b7c00b27d05800a34b0a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/ntfs3g/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/ntfs3g/ntfs3g-2022.10.3.ebuild X-VCS-Directories: sys-fs/ntfs3g/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a06ef0571fc1557626b9b7c00b27d05800a34b0a X-VCS-Branch: master Date: Fri, 5 Jan 2024 05:03:10 +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: 10ff994d-830d-40e2-9e02-afa478572217 X-Archives-Hash: a2d63043603e23da3c1926d9d6bc9c18 commit: a06ef0571fc1557626b9b7c00b27d05800a34b0a Author: Sam James gentoo org> AuthorDate: Fri Jan 5 04:43:18 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jan 5 04:43:18 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a06ef057 sys-fs/ntfs3g: drop eautoreconf, use CONFIG_SHELL instead ``` configure.ac:246: error: possibly undefined macro: AC_MSG_ERROR If this token and others are legitimate, please use m4_pattern_allow. See the Autoconf documentation. configure.ac:337: error: possibly undefined macro: AM_PATH_LIBGCRYPT configure.ac:342: error: possibly undefined macro: AC_MSG_WARN ``` We end up needing dev-libs/libgcrypt at configure-time for its autoconf/m4 macro because we eautoreconf. Let's instead drop the bashism patch, use CONFIG_SHELL=bash, and then drop autoreconf. Closes: https://bugs.gentoo.org/921018 Signed-off-by: Sam James gentoo.org> sys-fs/ntfs3g/ntfs3g-2022.10.3.ebuild | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/sys-fs/ntfs3g/ntfs3g-2022.10.3.ebuild b/sys-fs/ntfs3g/ntfs3g-2022.10.3.ebuild index be0d0b50c0bf..684524892382 100644 --- a/sys-fs/ntfs3g/ntfs3g-2022.10.3.ebuild +++ b/sys-fs/ntfs3g/ntfs3g-2022.10.3.ebuild @@ -1,9 +1,9 @@ -# Copyright 2006-2022 Gentoo Authors +# Copyright 2006-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit autotools toolchain-funcs +inherit toolchain-funcs MY_P="ntfs-3g_ntfsprogs-${PV}" @@ -33,17 +33,6 @@ BDEPEND=" S="${WORKDIR}/${MY_P}" -PATCHES=( - "${FILESDIR}"/${PN}-2022.5.17-configure-bashism.patch -) - -src_prepare() { - default - - # Only needed for bashism patch - eautoreconf -} - src_configure() { tc-ld-disable-gold @@ -74,7 +63,9 @@ src_configure() { --with-fuse=internal ) - econf "${myconf[@]}" + # bash for bug #921018 - should be fixed in next release though + # see https://github.com/tuxera/ntfs-3g/pull/58 + CONFIG_SHELL="${BROOT}"/bin/bash econf "${myconf[@]}" } src_install() {