Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=wh3t3nSS; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=OnkrWsT3 Received: by mail.netbsd.org (Postfix, from userid 605) id 0473C84EA0; Mon, 6 May 2024 02:59:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714964364; bh=WviFAqPuPNiiMm75UDKxRX3CP8c4Xxe0/3rETfiJUPo=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=wh3t3nSS+OdjMDxxjq0guPRd6uhMmsniPPATHTsOFcgHntovFTPbPNrtUParqVk8f SXcj0J4b3RpyQcZquSR+tV6s8lDVvNyjW4dW4K5OB+uKBhD+kE1vl/o4qGXl8272VT BcKiYibLuTy8hQXlL7HkN1JbaDWJ+aDuDVWFtMhg= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E92F484E96 for ; Mon, 6 May 2024 02:59:22 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id A82HXgZrTrPy for ; Mon, 6 May 2024 02:59:22 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 3B66B84D57 for ; Mon, 6 May 2024 02:59:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714964362; bh=WviFAqPuPNiiMm75UDKxRX3CP8c4Xxe0/3rETfiJUPo=; h=Date:From:Subject:To:Reply-To; b=OnkrWsT3qCbnKY8T21KaH96243rxYEiZvOwBi4xt82PJUnmXG6sqWcMoa+pWjhALL YGq14JhZQoIUXqjCai9W1twFhlwLCDXrmdkybxA3apJApsL7KbsNBhpUlsoT1esu70 y4PTsgnjawbOJiL/mX5G4XHsIF8O2g+U5SWLseEY= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2CEB0FA2C; Mon, 6 May 2024 02:59:22 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1714964362283820" MIME-Version: 1.0 Date: Mon, 6 May 2024 02:59:22 +0000 From: "Masatake Daimon" Subject: CVS commit: pkgsrc/filesystems/fuse-s3fs To: pkgsrc-changes@NetBSD.org Reply-To: pho@netbsd.org X-Mailer: log_accum Message-Id: <20240506025922.2CEB0FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1714964362283820 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pho Date: Mon May 6 02:59:22 UTC 2024 Modified Files: pkgsrc/filesystems/fuse-s3fs: Makefile Log Message: filesystems/fuse-s3fs: Mark it as broken on NetBSD < 10 To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/filesystems/fuse-s3fs/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1714964362283820 Content-Disposition: inline Content-Length: 935 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/filesystems/fuse-s3fs/Makefile diff -u pkgsrc/filesystems/fuse-s3fs/Makefile:1.1 pkgsrc/filesystems/fuse-s3fs/Makefile:1.2 --- pkgsrc/filesystems/fuse-s3fs/Makefile:1.1 Thu Apr 18 04:02:26 2024 +++ pkgsrc/filesystems/fuse-s3fs/Makefile Mon May 6 02:59:21 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2024/04/18 04:02:26 pho Exp $ +# $NetBSD: Makefile,v 1.2 2024/05/06 02:59:21 pho Exp $ DISTNAME= fuse-s3fs-${PKGVERSION} PKGVERSION= 1.94 @@ -12,6 +12,13 @@ HOMEPAGE= https://github.com/s3fs-fuse/s COMMENT= FUSE file-system and utilities for S3-compatible APIs LICENSE= gnu-gpl-v2 +.include "../../mk/bsd.prefs.mk" +.if ${OPSYS} == "NetBSD" && ${OPSYS_VERSION} < 100000 +# fuse-s3fs wants FUSE 2.9 API but refuse(3) in NetBSD 9 only supports 2.6 +# API. +PKG_FAIL_REASON+= "This package does not support NetBSD < 10." +.endif + GNU_CONFIGURE= yes USE_LIBTOOL= yes USE_LANGUAGES= c c++ --_----------=_1714964362283820--