UPDATE archivers/fuse-zip

2019-05-04 Thread Björn Ketelaars
Simple update to fuse-zip-0.6.0. Changelog can be found at https://bitbucket.org/agalanin/fuse-zip/src/default/changelog. Tested on amd64 by adding, and removing some files to a fuse mounted archive. 'make test' runs successfully on amd64. OK? Index: Makefile ===

UPDATE archivers/fuse-zip

2018-12-06 Thread Björn Ketelaars
Diff below brings fuse-zip to 0.5.0, which fixes an issue which arises when an archive file or its parent directory is not writeable. While here re-sync WANTLIB. Tested lightly on amd64 by adding, and removing some files to a fuse mounted archive. Comments/OK? Index: Makefile =

[UPDATE] archivers/fuse-zip

2017-12-04 Thread Helg
Hi ports@, Update from 0.4.2 => 0.4.4 I've been working with the developer of fuse-zip to add the FUSE mknod operation. This is now mandatory for FUSE ports on OpenbSD after I removed the incorrect implementation of create from the kernel and libfuse. This version also fixes an "off-by-one" bug

UPDATE archivers/fuse-zip

2018-02-05 Thread Björn Ketelaars
Included a diff for bringing archivers/fuse-zip to the latest version, which addresses: - Print error message and exit on nonexistent file in read-only mode. - Check return value of chdir(). - Add patch to make the build reproducible. - Fixed errors found by static code analysis. make por

Re: UPDATE archivers/fuse-zip

2019-05-25 Thread Björn Ketelaars
On Sat 04/05/2019 20:54, Björn Ketelaars wrote: > Simple update to fuse-zip-0.6.0. Changelog can be found at > https://bitbucket.org/agalanin/fuse-zip/src/default/changelog. > > Tested on amd64 by adding, and removing some files to a fuse mounted > archive. 'make test' runs successfully on amd64.

Re: UPDATE archivers/fuse-zip

2019-07-06 Thread Björn Ketelaars
On Sun 26/05/2019 07:21, Björn Ketelaars wrote: > On Sat 04/05/2019 20:54, Björn Ketelaars wrote: > > Simple update to fuse-zip-0.6.0. Changelog can be found at > > https://bitbucket.org/agalanin/fuse-zip/src/default/changelog. > > > > Tested on amd64 by adding, and removing some files to a fuse m

Re: UPDATE archivers/fuse-zip

2019-08-17 Thread Björn Ketelaars
On Sat 04/05/2019 20:54, Björn Ketelaars wrote: > Simple update to fuse-zip-0.6.0. Changelog can be found at > https://bitbucket.org/agalanin/fuse-zip/src/default/changelog. > > Tested on amd64 by adding, and removing some files to a fuse mounted > archive. 'make test' runs successfully on amd64.

Re: UPDATE archivers/fuse-zip

2018-12-07 Thread Klemens Nanni
On Fri, Dec 07, 2018 at 06:59:49AM +0100, Björn Ketelaars wrote: > Diff below brings fuse-zip to 0.5.0, which fixes an issue which arises > when an archive file or its parent directory is not writeable. > > While here re-sync WANTLIB. > > Tested lightly on amd64 by adding, and removing some files

Re: UPDATE archivers/fuse-zip

2018-12-09 Thread Klemens Nanni
On Fri, Dec 07, 2018 at 09:13:27AM +0100, Klemens Nanni wrote: > * make -> gmake symlink is needed for tests only as tests/Makefile uses > `make' whereas Makefile already goes with proper $(MAKE) so turn > do-configure into pre-test > * post-install is pretty much a do-install, so simply pass

Re: UPDATE archivers/fuse-zip

2018-12-10 Thread Björn Ketelaars
On Sun 09/12/2018 22:03, Klemens Nanni wrote: > On Fri, Dec 07, 2018 at 09:13:27AM +0100, Klemens Nanni wrote: > > * make -> gmake symlink is needed for tests only as tests/Makefile uses > > `make' whereas Makefile already goes with proper $(MAKE) so turn > > do-configure into pre-test > > * p

Re: [UPDATE] archivers/fuse-zip

2017-12-05 Thread Jeremie Courreges-Anglas
On Tue, Dec 05 2017, Helg wrote: > Hi ports@, > > Update from 0.4.2 => 0.4.4 > > I've been working with the developer of fuse-zip to add the FUSE mknod > operation. This is now mandatory for FUSE ports on OpenbSD after I > removed the incorrect implementation of create from the kernel and > libfus

Re: [UPDATE] archivers/fuse-zip

2017-12-05 Thread Klemens Nanni
On Tue, Dec 05, 2017 at 07:17:33AM +0800, Helg wrote: > Hi ports@, > > Update from 0.4.2 => 0.4.4 > > I've been working with the developer of fuse-zip to add the FUSE mknod > operation. This is now mandatory for FUSE ports on OpenbSD after I > removed the incorrect implementation of create from t

Re: [UPDATE] archivers/fuse-zip

2017-12-05 Thread Antoine Jacoutot
On Tue, Dec 05, 2017 at 09:39:44PM +, Klemens Nanni wrote: > On Tue, Dec 05, 2017 at 07:17:33AM +0800, Helg wrote: > > Hi ports@, > > > > Update from 0.4.2 => 0.4.4 > > > > I've been working with the developer of fuse-zip to add the FUSE mknod > > operation. This is now mandatory for FUSE por

Re: [UPDATE] archivers/fuse-zip

2017-12-05 Thread Jeremie Courreges-Anglas
On Tue, Dec 05 2017, Antoine Jacoutot wrote: [...] >> @@ -23,8 +23,10 @@ FAKE_FLAGS = >> INSTALLPREFIX="${WRKINST}${PREFIX}" >> >> USE_GMAKE = Yes >> >> -do-configure: >> -ln -s ${LOCALBASE}/bin/gmake ${WRKDIR}/bin/make >> +TEST_TARGET = check >> + >>

Re: [UPDATE] archivers/fuse-zip

2017-12-05 Thread Klemens Nanni
On Tue, Dec 05, 2017 at 10:43:51PM +0100, Antoine Jacoutot wrote: > On Tue, Dec 05, 2017 at 09:39:44PM +, Klemens Nanni wrote: > > On Tue, Dec 05, 2017 at 07:17:33AM +0800, Helg wrote: > > > Hi ports@, > > > > > > Update from 0.4.2 => 0.4.4 > > > > > > I've been working with the developer of

Re: [UPDATE] archivers/fuse-zip

2017-12-05 Thread Helg
On Tue, Dec 05, 2017 at 09:41:17PM +0100, Jeremie Courreges-Anglas wrote: > On Tue, Dec 05 2017, Helg wrote: > > Hi ports@, > > > > Update from 0.4.2 => 0.4.4 > > > > I've been working with the developer of fuse-zip to add the FUSE mknod > > operation. This is now mandatory for FUSE ports on Openb

[update] archivers/fuse-zip 0.6.2 -> 0.7.2

2021-09-10 Thread Stefan Hagen
Hi, This is an update to fuse-zip. Port changes: * Version update * Removed include sys/sysmacros.h (not needed) * Removed include sys/xattr.h und copied the missing defines from linux * Adjusted test case to reflect OpenBSD device major Note: I adapted the test case based on the test output