pkgsrc-Changes archive

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

CVS commit: pkgsrc/filesystems/fuse-bindfs



Module Name:    pkgsrc
Committed By:   vins
Date:           Sun May 10 10:31:17 UTC 2026

Modified Files:
        pkgsrc/filesystems/fuse-bindfs: Makefile distinfo
Removed Files:
        pkgsrc/filesystems/fuse-bindfs/patches: patch-configure.ac
            patch-src_bindfs.c

Log Message:
filesystems/fuse-bindfs: update to 1.18.4

# changes (since 1.15.1)

2026-01-20  Martin Pärtel <martin dot partel at gmail dot com>
        * Merged build fix for MacFUSE (PR #180, thanks @slonopotamus!)
        * Released 1.18.4

2026-01-10  Martin Pärtel <martin dot partel at gmail dot com>

        * Populate user and group cache eagerly on startup, if the cache is needed
          (#178).

2025-10-08  Martin Pärtel <martin dot partel at gmail dot com>

        * Fixed --resolve-symlinks with broken symlinks (PR #175, thanks @paulwkc!)
        * Released 1.18.3

2025-08-17  Martin Pärtel <martin dot partel at gmail dot com>

        * Added `-osubtype=argv[0]` to prevent some systems from
          auto-unmounting bindfs when the network goes down
          (PR #172, thanks @NishiyamaPedro!)
        * Released 1.18.2

2025-06-08  Martin Pärtel <martin dot partel at gmail dot com>

        * Enabled noattrcache by default with fuse-t
        * Dropped official support for MacFUSE, because Apple makes it too
          difficult to test without access to a physical Mac.
          There is best-effort support for fuse-t.
        * Released 1.18.1

2025-04-10  Martin Pärtel <martin dot partel at gmail dot com>

        * Merged fix from @jpalus (PR #160) to fix compatibility with
          libfuse 3.17.1 (#158, #159). Thanks!
        * Released 1.18.0

2024-04-06  Martin Pärtel <martin dot partel at gmail dot com>

        * (MacOS) Added `./configure` option `--disable-macos-fs-link`
          (issue #140)
        * Released 1.17.7

2023-11-19  Martin Pärtel <martin dot partel at gmail dot com>

        * Enabled -Wextra and fixed many compiler warnings
          (PR #148, thanks @hartwork!)

2023-11-10  Martin Pärtel <martin dot partel at gmail dot com>

        * Fixed undefined behaviour on platforms where `uid_t` or `gid_t`
          is signed (issue #143, thanks @hartwork!)
        * Released 1.17.6

2023-11-09  Martin Pärtel <martin dot partel at gmail dot com>

        * Support negative --{uid,gid}-offset (issue #142)
        * Released 1.17.5

2023-09-22  Martin Pärtel <martin dot partel at gmail dot com>

        * Support `mount -t bindfs` on MacOS (PR #140, thanks @Kentzo)

2023-07-15  Martin Pärtel <martin dot partel at gmail dot com>

        * MacOS and FreeBSD socket file support (PR #132,
          thanks @slonopotamus)
        * MacOS fuse-t support (thanks @slonopotamus)
        * Released 1.17.4

2023-06-03  Martin Pärtel <martin dot partel at gmail dot com>

        * Added MacOS statfs_x implementation (issue #130,
          thanks @ohayetechnology)
        * Released 1.17.3

2023-02-08  Martin Pärtel <martin dot partel at gmail dot com>

        * Released 1.17.2

2023-02-07  Martin Pärtel <martin dot partel at gmail dot com>

        * Fixed FD leak when using --block-devices-as-files
          (issue #125, thanks @mafanasyev-tri)

2022-10-17  Martin Pärtel <martin dot partel at gmail dot com>

        * Fixed --resolve-symlinks when mountpoint name starts
          with source dir name (issue #122, thanks @1-eric)
        * Released 1.17.1

2022-10-06  Martin Pärtel <martin dot partel at gmail dot com>

        * Basic OpenBSD support. The test suite does not pass yet.

2022-07-12  Martin Pärtel <martin dot partel at gmail dot com>

        * Reverted change in 1.16.0 that made direct_io the default.
          it turned out to be more problematic than not having it.
          (issue #117, thanks @DUOLabs333 and @Misterio77)
        * Released 1.17.0

2022-06-24  Martin Pärtel <martin dot partel at gmail dot com>

        * Added --map-{passwd,group}-rev
          (PR #113 by @sshilovsky, thanks!)
        * Fixed build on FreeBSD
        * Released 1.16.1

2022-06-18  Martin Pärtel <martin dot partel at gmail dot com>

        * Released 1.16.0

2022-04-03  Martin Pärtel <martin dot partel at gmail dot com>

        * Added --no-direct-io and enabled FUSE's direct_io by default
          (issue #110, thanks @DUOLabs333)


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 pkgsrc/filesystems/fuse-bindfs/Makefile
cvs rdiff -u -r1.5 -r1.6 pkgsrc/filesystems/fuse-bindfs/distinfo
cvs rdiff -u -r1.1 -r0 \
    pkgsrc/filesystems/fuse-bindfs/patches/patch-configure.ac \
    pkgsrc/filesystems/fuse-bindfs/patches/patch-src_bindfs.c

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-bindfs/Makefile
diff -u pkgsrc/filesystems/fuse-bindfs/Makefile:1.8 pkgsrc/filesystems/fuse-bindfs/Makefile:1.9
--- pkgsrc/filesystems/fuse-bindfs/Makefile:1.8 Thu Jan 27 04:24:05 2022
+++ pkgsrc/filesystems/fuse-bindfs/Makefile     Sun May 10 10:31:16 2026
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.8 2022/01/27 04:24:05 pho Exp $
+# $NetBSD: Makefile,v 1.9 2026/05/10 10:31:16 vins Exp $
 
-DISTNAME=      bindfs-1.15.1
+DISTNAME=      bindfs-1.18.4
 PKGNAME=       fuse-${DISTNAME}
 CATEGORIES=    filesystems
 MASTER_SITES=  https://bindfs.org/downloads/
@@ -16,6 +16,7 @@ GNU_CONFIGURE=        yes
 USE_LANGUAGES= c c++
 USE_TOOLS+=    automake autoreconf gmake pkg-config
 USE_LIBTOOL=   yes
+USE_FUSE3=     yes
 
 pre-configure:
        cd ${WRKSRC} && autoreconf

Index: pkgsrc/filesystems/fuse-bindfs/distinfo
diff -u pkgsrc/filesystems/fuse-bindfs/distinfo:1.5 pkgsrc/filesystems/fuse-bindfs/distinfo:1.6
--- pkgsrc/filesystems/fuse-bindfs/distinfo:1.5 Tue Nov 30 12:34:24 2021
+++ pkgsrc/filesystems/fuse-bindfs/distinfo     Sun May 10 10:31:16 2026
@@ -1,7 +1,5 @@
-$NetBSD: distinfo,v 1.5 2021/11/30 12:34:24 pho Exp $
+$NetBSD: distinfo,v 1.6 2026/05/10 10:31:16 vins Exp $
 
-BLAKE2s (bindfs-1.15.1.tar.gz) = 0aa3194987049c03e5cff3b816e14e8dab4d0b89de7e1b7fdeca54400b06e61a
-SHA512 (bindfs-1.15.1.tar.gz) = da9003f141b7aa2c23651b3b836b1d979bf1b19915f307c05e40ae6906aab738036cc8b5df6caeec158e4fa6b7bca71489ea7884ff1607c6fea72a603a048d59
-Size (bindfs-1.15.1.tar.gz) = 415676 bytes
-SHA1 (patch-configure.ac) = 2b3c89e80f96e70ab1f921b81fc99fef8307d3b3
-SHA1 (patch-src_bindfs.c) = 7daba2605ae0086933209d8b5ef0c88dccb3f9a0
+BLAKE2s (bindfs-1.18.4.tar.gz) = ae2db462fada918da6da244804c1bdb0d4fe6e50776ef1d29885f73849f8c1d0
+SHA512 (bindfs-1.18.4.tar.gz) = 1fedfcd082980180ccdd684478cc5308f4ea3fa541af12b5aef0b75fb0ec5b285009c4b783fc3cd5550505a83baf015e243f88eb322540d0f82e1952babc799a
+Size (bindfs-1.18.4.tar.gz) = 432774 bytes



Home | Main Index | Thread Index | Old Index