diff options
Diffstat (limited to 'filesystems')
-rw-r--r-- | filesystems/hfsfuse/Makefile | 13 | ||||
-rw-r--r-- | filesystems/hfsfuse/distinfo | 6 | ||||
-rw-r--r-- | filesystems/hfsfuse/pkg-descr | 4 | ||||
-rw-r--r-- | filesystems/httpdirfs/files/patch-curl | 51 | ||||
-rw-r--r-- | filesystems/sandboxfs/Makefile | 2 | ||||
-rw-r--r-- | filesystems/sasquatch/Makefile | 2 | ||||
-rw-r--r-- | filesystems/ufs/Makefile | 1 | ||||
-rw-r--r-- | filesystems/webdavfs/Makefile | 2 | ||||
-rw-r--r-- | filesystems/xfuse/Makefile | 1 | ||||
-rw-r--r-- | filesystems/zerofs/Makefile | 1 | ||||
-rw-r--r-- | filesystems/zfs-snap-diff/Makefile | 2 | ||||
-rw-r--r-- | filesystems/zrepl-dsh2dsh/Makefile | 1 | ||||
-rw-r--r-- | filesystems/zrepl/Makefile | 2 | ||||
-rw-r--r-- | filesystems/ztop/Makefile | 2 |
14 files changed, 74 insertions, 16 deletions
diff --git a/filesystems/hfsfuse/Makefile b/filesystems/hfsfuse/Makefile index 39f64ce87979..c0a29c76c9bf 100644 --- a/filesystems/hfsfuse/Makefile +++ b/filesystems/hfsfuse/Makefile @@ -1,5 +1,5 @@ PORTNAME= hfsfuse -DISTVERSION= 0.242 +DISTVERSION= 0.289 CATEGORIES= filesystems MASTER_SITES= https://github.com/0x09/${PORTNAME}/releases/download/${DISTVERSION}/ PKGNAMEPREFIX= fusefs- @@ -9,18 +9,20 @@ COMMENT= FUSE driver for HFS+ filesystems WWW= https://github.com/0x09/hfsfuse LICENSE= MIT -LICENSE_FILE= ${WRKSRC}/src/COPYING +LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libublio.so:devel/libublio \ - libutf8proc.so:textproc/utf8proc + libutf8proc.so:textproc/utf8proc \ + liblzfse.so:archivers/lzfse -USES= fuse gmake +USES= fuse gmake libarchive USE_CSTD= gnu11 ALL_TARGET= config all PLIST_FILES= bin/hfsdump \ - bin/hfsfuse + bin/hfsfuse \ + bin/hfstar PORTDOCS= README.md @@ -33,6 +35,7 @@ OPTIONS_DEFINE= DOCS do-install: ${INSTALL_PROGRAM} ${WRKSRC}/hfsdump ${STAGEDIR}${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/hfsfuse ${STAGEDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/hfstar ${STAGEDIR}${PREFIX}/bin do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} diff --git a/filesystems/hfsfuse/distinfo b/filesystems/hfsfuse/distinfo index 400e07a7fc37..c5c8a05a05a2 100644 --- a/filesystems/hfsfuse/distinfo +++ b/filesystems/hfsfuse/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1730040774 -SHA256 (hfsfuse-0.242.tar.gz) = 2cda7fd5d2fd3419c24907c1f59d04230162ce9491a65553c3d6254677ee62f3 -SIZE (hfsfuse-0.242.tar.gz) = 270946 +TIMESTAMP = 1744864204 +SHA256 (hfsfuse-0.289.tar.gz) = b19597dda364a670eebf05d0681c77db4b0f625f19b9e16f4b2b65dd8d16c360 +SIZE (hfsfuse-0.289.tar.gz) = 297704 diff --git a/filesystems/hfsfuse/pkg-descr b/filesystems/hfsfuse/pkg-descr index f919854c8e6e..5f965b7c3c68 100644 --- a/filesystems/hfsfuse/pkg-descr +++ b/filesystems/hfsfuse/pkg-descr @@ -4,5 +4,5 @@ modifications. This driver is read-only and cannot write to or damage the target filesystem in any way. -hfsfuse also includes a standalone tool, hfsdump, to inspect the -contents of an HFS+ volume without FUSE. +hfsfuse also includes two standalone tools, hfsdump and hfstar, +which can be used in an HFS+ volume without FUSE. diff --git a/filesystems/httpdirfs/files/patch-curl b/filesystems/httpdirfs/files/patch-curl new file mode 100644 index 000000000000..6b888715536d --- /dev/null +++ b/filesystems/httpdirfs/files/patch-curl @@ -0,0 +1,51 @@ +--- src/link.c.orig 2024-11-01 20:22:40 UTC ++++ src/link.c +@@ -66,14 +66,14 @@ static CURL *Link_to_curl(Link *link) + if (ret) { + lprintf(error, "%s", curl_easy_strerror(ret)); + } +- ret = curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1); ++ ret = curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L); + if (ret) { + lprintf(error, "%s", curl_easy_strerror(ret)); + } + /* + * for following directories without the '/' + */ +- ret = curl_easy_setopt(curl, CURLOPT_MAXREDIRS, 2); ++ ret = curl_easy_setopt(curl, CURLOPT_MAXREDIRS, 2L); + if (ret) { + lprintf(error, "%s", curl_easy_strerror(ret)); + } +@@ -81,11 +81,11 @@ static CURL *Link_to_curl(Link *link) + if (ret) { + lprintf(error, "%s", curl_easy_strerror(ret)); + } +- ret = curl_easy_setopt(curl, CURLOPT_TCP_KEEPALIVE, 1); ++ ret = curl_easy_setopt(curl, CURLOPT_TCP_KEEPALIVE, 1L); + if (ret) { + lprintf(error, "%s", curl_easy_strerror(ret)); + } +- ret = curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 15); ++ ret = curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 15L); + if (ret) { + lprintf(error, "%s", curl_easy_strerror(ret)); + } +@@ -118,7 +118,7 @@ static CURL *Link_to_curl(Link *link) + } + } + if (CONFIG.insecure_tls) { +- ret = curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0); ++ ret = curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L); + if (ret) { + lprintf(error, "%s", curl_easy_strerror(ret)); + } +@@ -197,7 +197,7 @@ static void Link_req_file_stat(Link *this_link) + { + lprintf(debug, "%s\n", this_link->f_url); + CURL *curl = Link_to_curl(this_link); +- CURLcode ret = curl_easy_setopt(curl, CURLOPT_NOBODY, 1); ++ CURLcode ret = curl_easy_setopt(curl, CURLOPT_NOBODY, 1L); + if (ret) { + lprintf(error, "%s", curl_easy_strerror(ret)); + } diff --git a/filesystems/sandboxfs/Makefile b/filesystems/sandboxfs/Makefile index 2ca6983f3aa4..e36cdecb4654 100644 --- a/filesystems/sandboxfs/Makefile +++ b/filesystems/sandboxfs/Makefile @@ -1,7 +1,7 @@ PORTNAME= sandboxfs DISTVERSIONPREFIX= sandboxfs- DISTVERSION= 0.2.0 -PORTREVISION= 50 +PORTREVISION= 51 CATEGORIES= filesystems PKGNAMEPREFIX= fusefs- diff --git a/filesystems/sasquatch/Makefile b/filesystems/sasquatch/Makefile index 71946e990520..d1c278bb9e8e 100644 --- a/filesystems/sasquatch/Makefile +++ b/filesystems/sasquatch/Makefile @@ -2,7 +2,7 @@ PORTNAME= sasquatch DISTVERSION= 4.3 CATEGORIES= filesystems sysutils -MAINTAINER= tiago.gasiba@gmail.com +MAINTAINER= tiga@FreeBSD.org COMMENT= SquashFS extractor with patches for firmware analysis WWW= https://gitlab.com/tgasiba/sasquatch/ diff --git a/filesystems/ufs/Makefile b/filesystems/ufs/Makefile index c8d35e734db2..b2b77ae34e05 100644 --- a/filesystems/ufs/Makefile +++ b/filesystems/ufs/Makefile @@ -1,5 +1,6 @@ PORTNAME= ufs DISTVERSION= 0.6.0 +PORTREVISION= 1 CATEGORIES= filesystems sysutils PKGNAMEPREFIX= fusefs- diff --git a/filesystems/webdavfs/Makefile b/filesystems/webdavfs/Makefile index 2089b81f9028..47928042f4f6 100644 --- a/filesystems/webdavfs/Makefile +++ b/filesystems/webdavfs/Makefile @@ -1,6 +1,6 @@ PORTNAME= fusefs-webdavfs DISTVERSION= g20200520 -PORTREVISION= 30 +PORTREVISION= 31 CATEGORIES= filesystems MAINTAINER= eugen@FreeBSD.org diff --git a/filesystems/xfuse/Makefile b/filesystems/xfuse/Makefile index 8253d69012e4..9eb6bc413433 100644 --- a/filesystems/xfuse/Makefile +++ b/filesystems/xfuse/Makefile @@ -1,5 +1,6 @@ PORTNAME= xfuse DISTVERSION= 0.5.1 +PORTREVISION= 1 CATEGORIES= filesystems MASTER_SITES= CRATESIO MASTER_SITE_SUBDIR= xfs-fuse/${DISTVERSION} diff --git a/filesystems/zerofs/Makefile b/filesystems/zerofs/Makefile index 33d72d1fdc14..e789888398cf 100644 --- a/filesystems/zerofs/Makefile +++ b/filesystems/zerofs/Makefile @@ -1,6 +1,7 @@ PORTNAME= zerofs DISTVERSIONPREFIX= v DISTVERSION= 0.15.2 +PORTREVISION= 1 CATEGORIES= filesystems sysutils MAINTAINER= stephan@lichtenauer.co.za diff --git a/filesystems/zfs-snap-diff/Makefile b/filesystems/zfs-snap-diff/Makefile index f76a8a4dae98..0f7fa0256d5d 100644 --- a/filesystems/zfs-snap-diff/Makefile +++ b/filesystems/zfs-snap-diff/Makefile @@ -1,7 +1,7 @@ PORTNAME= zfs-snap-diff PORTVERSION= 1.1.3 DISTVERSIONPREFIX= v -PORTREVISION= 29 +PORTREVISION= 30 CATEGORIES= filesystems sysutils MAINTAINER= ports@FreeBSD.org diff --git a/filesystems/zrepl-dsh2dsh/Makefile b/filesystems/zrepl-dsh2dsh/Makefile index f79c350c4313..6ccfa0a81ada 100644 --- a/filesystems/zrepl-dsh2dsh/Makefile +++ b/filesystems/zrepl-dsh2dsh/Makefile @@ -1,6 +1,7 @@ PORTNAME= zrepl DISTVERSIONPREFIX= v DISTVERSION= 1.0.0 +PORTREVISION= 1 CATEGORIES= filesystems sysutils PKGNAMESUFFIX= -${GH_ACCOUNT} diff --git a/filesystems/zrepl/Makefile b/filesystems/zrepl/Makefile index 8da8338e3b5e..f8844c4541fc 100644 --- a/filesystems/zrepl/Makefile +++ b/filesystems/zrepl/Makefile @@ -1,7 +1,7 @@ PORTNAME= zrepl DISTVERSIONPREFIX= v DISTVERSION= 0.6.1 -PORTREVISION= 17 +PORTREVISION= 18 CATEGORIES= filesystems sysutils MAINTAINER= driesm@FreeBSD.org diff --git a/filesystems/ztop/Makefile b/filesystems/ztop/Makefile index 6f5e82b0f8c9..ffc4b00b3c50 100644 --- a/filesystems/ztop/Makefile +++ b/filesystems/ztop/Makefile @@ -1,7 +1,7 @@ PORTNAME= ztop DISTVERSIONPREFIX= v DISTVERSION= 0.3.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= filesystems sysutils MAINTAINER= asomers@FreeBSD.org |