pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/filesystems/fuse-s3fs



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.

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++



Home | Main Index | Thread Index | Old Index