Mon Nov 24 13:19:12 2014 UTC ()
Update 2.8.4 to 2.9.3
---------------------
2013-07-01  Miklos Szeredi <miklos@szeredi.hu>
	* Released 2.9.3

2013-06-20  Miklos Szeredi <miklos@szeredi.hu>
	* libfuse: fix multiple close of device fd.  Reported by Dan
	Greenfield

2013-03-19  Miklos Szeredi <miklos@szeredi.hu>
	* libfuse: fix thread cancel race.  Exiting a worker my race with
	cancelling that same worker.  This caused a segmenation
	fault. Reported and tested by Anatol Pomozov

2013-02-04  Miklos Szeredi <miklos@szeredi.hu>
	* libfuse: fix crash in unlock_path().  Patch by Ratna Manoj

	* libfuse: fix the 'remember' option.  The lru list was not
	initialized for the "/" path.  This resulted in remove_node_lru()
	crashing on LOOKUP-DOTDOT.  Patch by Madan Valluri

	* libfuse: configure: detect new util-linux

	* libfuse: Use AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER.
	Patch by Anatol Pomozov

	* libfuse: rename ./configure.in to ./configure.ac.  Patch by
	Anatol Pomozov

2012-10-01  Miklos Szeredi <miklos@szeredi.hu>
	* Released 2.9.2

2012-10-01  Miklos Szeredi <miklos@szeredi.hu>
	* Fix deadlock in libfuse.  Running "svn update" on a fuse
	filesystem could deadlock because of a bug in the way the paths
	are locked.  Reported by Kazuaki Anami

2012-08-23  Miklos Szeredi <miklos@szeredi.hu>
	* Fix missing config.h in buffer.c.  Reported by Matthew Gabeler-Lee

2012-08-14  Miklos Szeredi <miklos@szeredi.hu>
	* Not unhashing the name in forget (commit on 2011-12-09) broke
	the forget logic in a subtle way, resulting in "fuse internal
	error: node NNN not found" and causing the filesystem daemon to
	abort.  Fix by incrementing the node refcount if nlookup goes from
	zero to one.  Reported by Kyle Lippincott

2012-08-13  Miklos Szeredi <miklos@szeredi.hu>
	* Fix linking against GNU libiconv.  Patch by Natanael Copa

2012-07-19  Miklos Szeredi <miklos@szeredi.hu>
	* Released 2.9.1

2012-07-19  Miklos Szeredi <miklos@szeredi.hu>
	* Fix crash caused by freeing a stack address.  Reported by Itay
	Perl

2012-07-04  Miklos Szeredi <miklos@szeredi.hu>
	* Fix install of mount.fuse from out-of-tree build.  Patch by
	Olivier Blin

	* Fix build with automake >= 1.12.1.  Patch by Olivier Blin

2012-04-24  Miklos Szeredi <miklos@szeredi.hu>
	* Add fallocate operation.  Only works on linux kernels 3.5 or
	later.  Patch by Anatol Pomozov

2012-05-16  Miklos Szeredi <miklos@szeredi.hu>
	* Linking to a library that uses threads requires the application
	to be linked with -pthreads otherwise some pthread functions will
	be linked to stubs in glibc.  So move -pthread from Libs.private
	to Libs in fuse.pc.  Reported by Werner Fink

	* Fix the compile command in the examples. Reported by Luciano
	Dalle Ore

2012-04-20  Miklos Szeredi <miklos@szeredi.hu>
	* Released 2.9.0

2012-04-20  Miklos Szeredi <miklos@szeredi.hu>
	* Add missing fuse_fs_flock to fuse_versionscript

2012-04-10  Miklos Szeredi <miklos@szeredi.hu>
	* Check protocol version before sending notifications and return
	-ENOSYS if a particular notification is not supported.

	* Add 'flag_utime_omit_ok' flag to fuse_operations.  If the
	filesystem sets this flag then ->utimens() will receive UTIME_OMIT
	and UTIME_NOW values as specified in utimensat(2).

2012-01-27  Miklos Szeredi <miklos@szeredi.hu>
	* Interpret octal escape codes in options.  Requested by Jan
	Engelhardt

2012-01-26  Miklos Szeredi <miklos@szeredi.hu>

	* Add man pages for fusermount, mount.fuse and ulockmgr_server.
	Lifted from the Debian package.  The man pages were written by
	Daniel Baumann and Bastien Roucaries

2012-01-13  Miklos Szeredi <miklos@szeredi.hu>
	* Disable symbol versions on MacOSX.  Patch by Anatol Pomozov

2012-01-02  Miklos Szeredi <miklos@szeredi.hu>
	* Remove unnecessary mutex unlock at the end of multithreaded
	event loop.

2011-12-09  Miklos Szeredi <miklos@szeredi.hu>
	* Fix hang in wait_on_path().  Reported by Ville Silventoinen

	* Don't unhash name in FORGET.  This resulted in ENOENT being
	returned for unlinked but still open files if the kernel sent a
	FORGET request for the parent directory.

	* Free request in fuse_reply_data().

2011-12-08  Miklos Szeredi <miklos@szeredi.hu>
	* Fix build if FUSE_NODE_SLAB is not defined.  Patch by Emmanuel
	Dreyfus

	* Check for availability of utimensat() function.  Patch by
	Emmanuel Dreyfus

2011-12-07  Miklos Szeredi <miklos@szeredi.hu>
	* Add fuse_lowlevel_notify_delete() which tells the kernel that a
	file or directory is deleted.  Patch by John Muir

2011-12-06  Miklos Szeredi <miklos@szeredi.hu>
	* Update retrieve_reply() method

2011-12-05  Miklos Szeredi <miklos@szeredi.hu>
	* Low level API: lock argument of fuse_reply_lock should have a
	'const' qualifier.  Reported by Shachar Sharon

	* Add support for ioctl on directories.  Reported by Antonio SJ
	Musumeci

2011-10-13  Miklos Szeredi <miklos@szeredi.hu>
	* Reply to request with ENOMEM in case of failure to allocate
	request structure.  Otherwise the task issuing the request will
	just freeze up until the filesystem daemon is killed.  Reported by
	Stephan Kulow

2011-09-23  Miklos Szeredi <miklos@szeredi.hu>

	* Replace daemon() function with fork().  Patch by Anatol Pomozov

2011-08-26  Miklos Szeredi <miklos@szeredi.hu>
	* If configured with --disable-mtab then don't call mount(8) from
	libfuse to update the mtab.  Reported by: James Sierp

2011-08-24  Miklos Szeredi <miklos@szeredi.hu>
	* Use LRU list for cleaning up the cache if the "remember=T"
	option was given.  Patch by therealneworld@gmail.com

2011-07-06  Miklos Szeredi <miklos@szeredi.hu>
	* Add ->flock() operation to low and high level interfaces.  This
	fixes problems with emulating flock() with POSIX locking.
	Reported by Sebastian Pipping.  As with lock/setlk/getlk most
	filesystems don't need to implement this, as the kernel takes care
	of file locking.  The only reason to implement locking operations
	is for network filesystems which want file locking to work between
	clients.

2011-07-02  Sebastian Pipping <sebastian@pipping.org>
	* Make xmp_utimens of examples "fusexmp" and "fusexmp_fh"
	not follow symlinks as other layers do that already.

2011-06-02  Miklos Szeredi <miklos@szeredi.hu>
	* Add "remember" option.  This works similar to "noforget" except
	that eventually the node will be allowed to expire from the cache.
	Patch by therealneworld@gmail.com

2011-05-27  Miklos Szeredi <miklos@szeredi.hu>
	* Check if splice/vmsplice are supported

2011-05-26  Miklos Szeredi <miklos@szeredi.hu>
	* Remove -lrt -ldl from fuse.pc for dynamic linking since
	libfuse.so is already linked with these libraries.  Reported by:
	Nikolaus Rath

2011-05-20  Miklos Szeredi <miklos@szeredi.hu>
	* Cleaner build output.  Patch by Reuben Hawkins

2011-05-19  Miklos Szeredi <miklos@szeredi.hu>
	* Disable splice by default, add "splice_read", "splice_write" and
	"splice_move" options.  Keep the "no_splice_*" variants, which can
	disable splice even if the filesystem explicitly enables it.

2011-04-15  Max Krasnyansky <maxk@kernel.org>
	* Added support for "auto_unmount" option which unmounts the
	filesystem automatically on process exit (or crash).

2011-03-30  Miklos Szeredi <miklos@szeredi.hu>
	* Patches by Laszlo Papp fixing various issues found by the
	Coverity checker

2011-03-11  Miklos Szeredi <miklos@szeredi.hu>
	* In case of failure to add to /etc/mtab don't umount.  Reported
	by Marc Deslauriers

2011-02-02  Miklos Szeredi <miklos@szeredi.hu>
	* libfuse: In fuse_session_loop_mt() don't pause when exiting the
	worker threads.  The pause() was added in 2.2.1 to prevent
	segfault on pthread_cancel() on an exited, detached thread.  Now
	worker threads are not detached and pthread_cancel() should work
	fine even after the thread exited.  Reported by Boris Protopopov

2011-01-31  Miklos Szeredi <miklos@szeredi.hu>
	* fusermount: chdir to / before performing mount/umount

	* fusermount: only allow mount and umount if util-linux supports
	--no-canonicalize

2010-12-16  Miklos Szeredi <miklos@szeredi.hu>
	* Highlevel lib: allow hash tables to shrink

	* Highlevel lib: add slab allocation for node cache.  This will
	allow the memory used by the filesystem to grow and shrink
	depending on how many inodes are currently cached.

2010-12-13  Miklos Szeredi <miklos@szeredi.hu>
	* Highlevel lib: use dynamically resized hash table for looking up
	by name and node ID.

2010-12-07  Miklos Szeredi <miklos@szeredi.hu>
	* Allow batching of forget requests.  This allows forget requests
	to be processed faster and doesn't require a modification to fuse
	filesystems.  Reported by Terje Malmedal

	* Add ->forget_multi() operation to the lowlevel API.  The
	filesystem may implement this to process multiple forget requests
	in one call

	* Fix the ambiguity of ioctl ABI on the kernel/userspace boundary
	for 32bit vs. 64bit userspace

2010-11-10  Miklos Szeredi <miklos@szeredi.hu>
	* Add new write_buf() method to the highlevel API.  Similarly to
	the lowlevel write_buf() method, this allows implementing zero
	copy writes.

	* Add a new read_buf() method to the highlevel API.  This allows
	returning a generic buffer from the read method, which in turn
	allows zero copy reads.

	* In fusexmp_fh implement the ->read_buf() and ->write_buf()
	methods.  Leave the ->read() and ->write() implementations for
	reference, even though they are not necessary.

2010-11-08  Miklos Szeredi <miklos@szeredi.hu>
	* Fix check for read-only fs in mtab update

	* Open /dev/null for write instead of read for redirecting stdout
	and stderr

	* If umount(8) supports --fake and --no-canonicalize (util-linux-ng
	version 2.18 or later), and umount(2) supports the
	UMOUNT_NOFOLLOW flag (linux kernel version 2.6.35 or later)  then,
	"fusermount -u" will call the umount(2) system call and use
	"umount --fake ..." to update /etc/mtab

	* Added --disable-legacy-umount option to configure.  This
	disables the runtime checking of umount(8) version.  When built
	with this option then "fusermount -u" will fail if umount(8)
	doesn't support the --fake and --no-canonicalize options.

	* Fix fuse_buf_copy() if already at the end of the buffers

	* Add new ->write_buf() method to low level interface.  This
	allows passig a generic buffer, either containing a memory buffer
	or a file descriptor.  This allows implementing zero copy writes.

	* Add fuse_session_receive_buf() and fuse_session_process_buf()
	which may be used in event loop implementations to replace
	fuse_chan_recv() and fuse_session_process() respectively.

	* Remove unnecessary restoring of current working directory in
	"fusermount -u"

	* Add ctx->pid to debug output

	* Fix st_nlink value in high level lib if file is unlinked but
	still open

	* libfuse: add store request.  Request data to be stored in the
	kernel buffers for a given inode.

	* libfuse: add retrieve request.  Retrieve data stored in the
	kernel buffers for a given inode.

2010-10-14  Miklos Szeredi <miklos@szeredi.hu>
	* Use LTLIBICONV when linking libfuse.  This fixes building against
	uclibc + libiconv.  Patch by Natanael Copa

2010-10-05  Miklos Szeredi <miklos@szeredi.hu>
	* Add missing argument check in ulockmgr.c to prevent calling
	ulockmgr_server with illegal arguments. This would cause an ever
	growing list of ulockmgr_server processes with an endless list of
	open files which finally exceeds the open file handle limit.
	Patch by Markus Ammer

2010-09-28  Miklos Szeredi <miklos@szeredi.hu>
	* Fix ambiguous symbol version for fuse_chan_new.
	fuse_versionscript included fuse_chan_new in both FUSE_2.4 and
	FUSE_2.6.  Remove the FUSE_2.4, which is invalid.

2010-09-28  Miklos Szeredi <miklos@szeredi.hu>
	* Fix option escaping for fusermount.  If the "fsname=" option
	contained a comma then the option parser in fusermount was
	confused (Novell bugzilla #641480).  Fix by escaping commas when
	passing them over to fusermount.  Reported by Jan Engelhardt

2010-08-27  Miklos Szeredi <miklos@szeredi.hu>
	* Add NetBSD support.  Patch from Emmanuel Dreyfus

2010-07-12  Miklos Szeredi <miklos@szeredi.hu>
	* libfuse: add buffer interface.  Add a generic buffer interface
	for use with I/O.  Buffer vectors are supplied and each buffer in
	the vector may be a memory pointer or a file descriptor.

	* The fuse_reply_fd() interface is converted to using buffers.

2010-06-23  Miklos Szeredi <miklos@szeredi.hu>
	* Make the number of max background requests and congestion
	threshold tunable.  New options are "max_background" and
	"congestion_threshold".  Only effective on linux kernel versions
	2.6.32 or greater.  Patch by Csaba Henk

2010-06-17  Miklos Szeredi <miklos@szeredi.hu>
	* Add fuse_reply_fd() reply function to the low level interface.
	On linux version 2.6.35 or greater this will use splice() to move
	data directly from a file descriptor to the fuse device without
	needing to go though a userspace buffer.  With the
	FUSE_REPLY_FD_MOVE flag the kernel will attempt to move the data
	directly into the filesystem's cache.  On earlier kernels it will
	fall back to an intermediate buffer.  The options
	"no_splice_write" and "no_splice_move" can be used to disable
	splicing and moving respectively.

2010-06-15  Miklos Szeredi <miklos@szeredi.hu>
	* Fix out-of-source build.  Patch by J旦rg Faschingbauer

	* Add a "nopath" option and flag, indicating that path argument
	need not be calculated for the following operations: read, write,
	flush, release, fsync, readdir, releasedir, fsyncdir, ftruncate,
	fgetattr, lock, ioctl and poll.

2010-05-10  Miklos Szeredi <miklos@szeredi.hu>
	* Remove "chmod root" from install of fusermount.  Reported by
	Lucas C. Villa Real


(mef)
diff -r1.9 -r1.10 pkgsrc/filesystems/fuse/Makefile
diff -r1.3 -r1.4 pkgsrc/filesystems/fuse/distinfo
diff -r1.2 -r1.3 pkgsrc/filesystems/fuse/patches/patch-aa
diff -r1.1 -r0 pkgsrc/filesystems/fuse/patches/patch-ab
diff -r1.1 -r0 pkgsrc/filesystems/fuse/patches/patch-ac
diff -r1.1 -r0 pkgsrc/filesystems/fuse/patches/patch-ad
diff -r1.1 -r0 pkgsrc/filesystems/fuse/patches/patch-ae
diff -r1.1 -r0 pkgsrc/filesystems/fuse/patches/patch-af
diff -r1.1 -r0 pkgsrc/filesystems/fuse/patches/patch-ag
diff -r1.1 -r0 pkgsrc/filesystems/fuse/patches/patch-ai
diff -r1.1 -r0 pkgsrc/filesystems/fuse/patches/patch-ak
diff -r1.1 -r0 pkgsrc/filesystems/fuse/patches/patch-al
diff -r1.1 -r0 pkgsrc/filesystems/fuse/patches/patch-am
diff -r1.1 -r0 pkgsrc/filesystems/fuse/patches/patch-an
diff -r1.1 -r0 pkgsrc/filesystems/fuse/patches/patch-util_fusermount.c

cvs diff -r1.9 -r1.10 pkgsrc/filesystems/fuse/Makefile (expand / switch to unified diff)

--- pkgsrc/filesystems/fuse/Makefile 2012/10/03 16:08:30 1.9
+++ pkgsrc/filesystems/fuse/Makefile 2014/11/24 13:19:12 1.10
@@ -1,24 +1,24 @@ @@ -1,24 +1,24 @@
1# $NetBSD: Makefile,v 1.9 2012/10/03 16:08:30 asau Exp $ 1# $NetBSD: Makefile,v 1.10 2014/11/24 13:19:12 mef Exp $
2# 2#
3 3
4DISTNAME= fuse-2.8.4 4DISTNAME= fuse-2.9.3
5PKGREVISION= 2 
6CATEGORIES= filesystems 5CATEGORIES= filesystems
7MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=fuse/} 6MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=fuse/}
8 7
9MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= http://fuse.sourceforge.net/ 9HOMEPAGE= http://fuse.sourceforge.net/
11COMMENT= Filesystem in Userspace 10COMMENT= Filesystem in Userspace
 11LICENSE= gnu-gpl-v2 AND gnu-lgpl-v2.1
12 12
13GNU_CONFIGURE= yes 13GNU_CONFIGURE= yes
14 14
15# FUSE the implementation only builds on Linux and FreeBSD. 15# FUSE the implementation only builds on Linux and FreeBSD.
16ONLY_FOR_PLATFORM= Linux-*-* FreeBSD-*-* NetBSD-*-* 16ONLY_FOR_PLATFORM= Linux-*-* FreeBSD-*-* NetBSD-*-*
17# On NetBSD 4.99 after 2007-02, /usr/lib/librefuse provides the FUSE 17# On NetBSD 4.99 after 2007-02, /usr/lib/librefuse provides the FUSE
18# interface expected by filesystem implementations and therefore this 18# interface expected by filesystem implementations and therefore this
19# implementation is not needed. This FUSE implementation can also be 19# implementation is not needed. This FUSE implementation can also be
20# used with the perfuse package on NetBSD. 20# used with the perfuse package on NetBSD.
21 21
22USE_TOOLS+= gmake pkg-config 22USE_TOOLS+= gmake pkg-config
23USE_LIBTOOL= yes 23USE_LIBTOOL= yes
24 24

cvs diff -r1.3 -r1.4 pkgsrc/filesystems/fuse/distinfo (expand / switch to unified diff)

--- pkgsrc/filesystems/fuse/distinfo 2012/03/10 20:59:52 1.3
+++ pkgsrc/filesystems/fuse/distinfo 2014/11/24 13:19:12 1.4
@@ -1,18 +1,6 @@ @@ -1,18 +1,6 @@
1$NetBSD: distinfo,v 1.3 2012/03/10 20:59:52 markd Exp $ 1$NetBSD: distinfo,v 1.4 2014/11/24 13:19:12 mef Exp $
2 2
3SHA1 (fuse-2.8.4.tar.gz) = b1bc296c3e5b90b3658edb5d8d7aa0ee97c145d7 3SHA1 (fuse-2.9.3.tar.gz) = 94bd1974a9f2173ac3c2cf122f9fa3c35996b88e
4RMD160 (fuse-2.8.4.tar.gz) = 75093d0ddf8c4b9fc2e4764bdf86c43c5937c297 4RMD160 (fuse-2.9.3.tar.gz) = a81f350842a43aa82cff2cb75e0bf9f5b123ad5a
5Size (fuse-2.8.4.tar.gz) = 500345 bytes 5Size (fuse-2.9.3.tar.gz) = 572044 bytes
6SHA1 (patch-aa) = 651517ebbc440cb84a7b21c45b48aa717babc227 6SHA1 (patch-aa) = 1179876c7a4f230d8df8a7a6724b90779c9fa0e3
7SHA1 (patch-ab) = c53da5e8e9bd934ae9753b604c11d6a49b45731c 
8SHA1 (patch-ac) = f31f83ca7cd7f75845f90d00b4c62f28935b93f3 
9SHA1 (patch-ad) = e3e013137fbafca9a2944d23265e66553408b503 
10SHA1 (patch-ae) = b275cd57b8f7c331fb730c27a8f1c901c11a9d01 
11SHA1 (patch-af) = fdd24a2c94b31b4c3586e8ed56a78583e85f029d 
12SHA1 (patch-ag) = e3fa9eac0a8e6de91f43c43cd904f12a1eb3621a 
13SHA1 (patch-ai) = cc40e939f884c6c9b7b413021b9f18671507a2ab 
14SHA1 (patch-ak) = 222faa9b6549063428c89e65dfcb77e002dc798e 
15SHA1 (patch-al) = 358d734dbfa43e306bf0bb0a39b006be5822f1a3 
16SHA1 (patch-am) = 2abd07b403896bff5aad6cd865cb473553851a22 
17SHA1 (patch-an) = 3f119dae5f08996dd483a0fb4fa0365507be2070 
18SHA1 (patch-util_fusermount.c) = c65c377b917dc0c34cf5b8fb4d70e75075debcf9 

cvs diff -r1.2 -r1.3 pkgsrc/filesystems/fuse/patches/patch-aa (expand / switch to unified diff)

--- pkgsrc/filesystems/fuse/patches/patch-aa 2010/08/25 08:02:21 1.2
+++ pkgsrc/filesystems/fuse/patches/patch-aa 2014/11/24 13:19:12 1.3
@@ -1,16 +1,15 @@ @@ -1,16 +1,15 @@
1$NetBSD: patch-aa,v 1.2 2010/08/25 08:02:21 manu Exp $ 1$NetBSD: patch-aa,v 1.3 2014/11/24 13:19:12 mef Exp $
2 2
3mount.fuse is a script, not a binary 3mount.fuse is a script, not a binary
4--- util/Makefile.in.orig 2010-08-24 10:08:52.000000000 +0200 4
5+++ util/Makefile.in 2010-08-24 10:08:59.000000000 +0200 5--- util/Makefile.in~ 2014-11-24 22:04:40.000000000 +0900
6@@ -591,9 +591,9 @@ 6+++ util/Makefile.in 2014-11-24 22:05:24.000000000 +0900
7 fi 7@@ -684,7 +684,7 @@ install-exec-hook:
8  8
9 install-exec-local: 9 install-exec-local:
10 $(mkdir_p) $(DESTDIR)$(MOUNT_FUSE_PATH) 10 $(MKDIR_P) $(DESTDIR)$(MOUNT_FUSE_PATH)
11- $(INSTALL_PROGRAM) $(srcdir)/mount.fuse $(DESTDIR)$(MOUNT_FUSE_PATH)/mount.fuse 11- $(INSTALL_PROGRAM) $(builddir)/mount.fuse $(DESTDIR)$(MOUNT_FUSE_PATH)/mount.fuse
12+ $(INSTALL_SCRIPT) $(srcdir)/mount.fuse $(DESTDIR)$(MOUNT_FUSE_PATH)/mount.fuse 12+ $(INSTALL_SCRIPT) $(builddir)/mount.fuse $(DESTDIR)$(MOUNT_FUSE_PATH)/mount.fuse
13 $(mkdir_p) $(DESTDIR)$(INIT_D_PATH) 13 $(MKDIR_P) $(DESTDIR)$(INIT_D_PATH)
14 $(INSTALL_SCRIPT) $(srcdir)/init_script $(DESTDIR)$(INIT_D_PATH)/fuse 14 $(INSTALL_SCRIPT) $(srcdir)/init_script $(DESTDIR)$(INIT_D_PATH)/fuse
15 @if test -x /usr/sbin/update-rc.d; then \ 15 @if test -x /usr/sbin/update-rc.d; then \
16 echo "/usr/sbin/update-rc.d fuse start 34 S . start 41 0 6 . || true"; \ 

File Deleted: pkgsrc/filesystems/fuse/patches/Attic/patch-ab

File Deleted: pkgsrc/filesystems/fuse/patches/Attic/patch-ac

File Deleted: pkgsrc/filesystems/fuse/patches/Attic/patch-ad

File Deleted: pkgsrc/filesystems/fuse/patches/Attic/patch-ae

File Deleted: pkgsrc/filesystems/fuse/patches/Attic/patch-af

File Deleted: pkgsrc/filesystems/fuse/patches/Attic/patch-ag

File Deleted: pkgsrc/filesystems/fuse/patches/Attic/patch-ai

File Deleted: pkgsrc/filesystems/fuse/patches/Attic/patch-ak

File Deleted: pkgsrc/filesystems/fuse/patches/Attic/patch-al

File Deleted: pkgsrc/filesystems/fuse/patches/Attic/patch-am

File Deleted: pkgsrc/filesystems/fuse/patches/Attic/patch-an

File Deleted: pkgsrc/filesystems/fuse/patches/Attic/patch-util_fusermount.c