Sunday, February 04, 2018

UPDATE archivers/fuse-zip

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 port-lib-depends-check indicates that bz2 should be part of WANTLIB.
Reason is libzip, which pull bz2 in.

Lightly tested by creating a zip, adding a file to it, and extracting it.


diff --git Makefile Makefile
index ae298eb1f45..cb8b0b88b51 100644
--- Makefile
+++ Makefile
@@ -2,7 +2,7 @@

COMMENT = navigate zip archives through FUSE

-DISTNAME = fuse-zip-0.4.4
+DISTNAME = fuse-zip-0.4.5

CATEGORIES = archivers

@@ -11,7 +11,7 @@ HOMEPAGE = https://bitbucket.org/agalanin/fuse-zip
# GPLv3+
PERMIT_PACKAGE_CDROM = Yes

-WANTLIB += c fuse m ${COMPILER_LIBCXX} z zip
+WANTLIB = ${COMPILER_LIBCXX} bz2 c fuse m z zip

MASTER_SITES = https://bitbucket.org/agalanin/fuse-zip/downloads/

diff --git distinfo distinfo
index 6e52da6b426..947877253a0 100644
--- distinfo
+++ distinfo
@@ -1,2 +1,2 @@
-SHA256 (fuse-zip-0.4.4.tar.gz) = xGSmPKfMFu73wUA2/gmCPKnZag71MOJ0hFBEpUQOR9I=
-SIZE (fuse-zip-0.4.4.tar.gz) = 687132
+SHA256 (fuse-zip-0.4.5.tar.gz) = LFEB9by41mbRymAnF7qQFWfa0uetfenbbluyasV0NdE=
+SIZE (fuse-zip-0.4.5.tar.gz) = 687727

No comments:

Post a Comment