Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 5296A1A923C for ; Sat, 22 Jan 2022 18:35:02 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 8AB2284E62; Sat, 22 Jan 2022 18:35:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3CB0C84D53 for ; Sat, 22 Jan 2022 18:34:52 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id YlWJIe6vG5j2 for ; Sat, 22 Jan 2022 18:34:51 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8BEDE84E54 for ; Sat, 22 Jan 2022 18:34:51 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 833E3FB24; Sat, 22 Jan 2022 18:34:51 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1642876491290650" MIME-Version: 1.0 Date: Sat, 22 Jan 2022 18:34:51 +0000 From: "Masatake Daimon" Subject: CVS commit: pkgsrc/filesystems/fuse-ext2 To: pkgsrc-changes@NetBSD.org Reply-To: pho@netbsd.org X-Mailer: log_accum Message-Id: <20220122183451.833E3FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1642876491290650 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pho Date: Sat Jan 22 18:34:51 UTC 2022 Modified Files: pkgsrc/filesystems/fuse-ext2: Makefile Log Message: Disable a hack that is incompatible with NetBSD librefuse on HEAD To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 pkgsrc/filesystems/fuse-ext2/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1642876491290650 Content-Disposition: inline Content-Length: 1031 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/filesystems/fuse-ext2/Makefile diff -u pkgsrc/filesystems/fuse-ext2/Makefile:1.11 pkgsrc/filesystems/fuse-ext2/Makefile:1.12 --- pkgsrc/filesystems/fuse-ext2/Makefile:1.11 Tue Aug 11 13:38:14 2020 +++ pkgsrc/filesystems/fuse-ext2/Makefile Sat Jan 22 18:34:51 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2020/08/11 13:38:14 nia Exp $ +# $NetBSD: Makefile,v 1.12 2022/01/22 18:34:51 pho Exp $ DISTNAME= fuse-ext2-0.0.10 CATEGORIES= filesystems @@ -18,6 +18,14 @@ USE_LANGUAGES= c c++ INSTALLATION_DIRS= lib/umview/modules CHECK_PORTABILITY_SKIP= tools/macosx/fuse-ext2.fs/fuse-ext2.util +# fuse-ext2 does a weird hack defining FUSE_USE_VERSION to be +# FUSE_VERSION while FUSE 2.7 is what it actually needs. The hack +# isn't compatible with NetBSD librefuse. Please, just don't do that. +SUBST_CLASSES+= fuse-ver +SUBST_STAGE.fuse-ver= pre-configure +SUBST_FILES.fuse-ver= configure.ac +SUBST_SED.fuse-ver= -e 's/FUSE_VERSION/27/g' + pre-configure: cd ${WRKSRC} && autoreconf -fi --_----------=_1642876491290650--