diff options
Diffstat (limited to '')
22 files changed, 150 insertions, 40 deletions
diff --git a/filesystems/Makefile b/filesystems/Makefile index 4f7065513f9a..67ebb926d71f 100644 --- a/filesystems/Makefile +++ b/filesystems/Makefile @@ -76,6 +76,7 @@ SUBDIR += mp3fs SUBDIR += mtools SUBDIR += mtpfs + SUBDIR += nbd-client-kmod SUBDIR += nbt SUBDIR += ntfs SUBDIR += ntfs-compression 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/kio-fuse/Makefile b/filesystems/kio-fuse/Makefile index fb88e9b94aa3..05127f8f3963 100644 --- a/filesystems/kio-fuse/Makefile +++ b/filesystems/kio-fuse/Makefile @@ -1,6 +1,5 @@ PORTNAME= kio-fuse -DISTVERSION= 5.1.0 -PORTREVISION= 2 +DISTVERSION= 5.1.1 CATEGORIES= filesystems sysutils kde MASTER_SITES= KDE/stable/${PORTNAME} @@ -11,10 +10,10 @@ WWW= https://invent.kde.org/system/kio-fuse LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSES/GPL-3.0-or-later.txt -USES= cmake compiler:c++11-lang fuse:3 kde:6 pkgconfig qt:6 tar:xz +USES= cmake compiler:c++17-lang fuse:3 kde:6 pkgconfig qt:6 tar:xz USE_KDE= coreaddons kio \ ecm:build -USE_QT= base +USE_QT= base declarative PLIST_FILES= lib/libexec/kio-fuse \ share/dbus-1/services/org.kde.KIOFuse.service diff --git a/filesystems/kio-fuse/distinfo b/filesystems/kio-fuse/distinfo index b839419dae7d..138202994112 100644 --- a/filesystems/kio-fuse/distinfo +++ b/filesystems/kio-fuse/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1705202711 -SHA256 (kio-fuse-5.1.0.tar.xz) = 7d104581227d5a19b424b33f4168d181556b1015d6df2218e01a88d64449e94b -SIZE (kio-fuse-5.1.0.tar.xz) = 48820 +TIMESTAMP = 1760473515 +SHA256 (kio-fuse-5.1.1.tar.xz) = adf6aa7ce055c0987e716a93ac01f3c0a97c1280421443cd6b21e0e71d763d14 +SIZE (kio-fuse-5.1.1.tar.xz) = 49404 diff --git a/filesystems/kio-fuse/files/patch-CMakeLists.txt b/filesystems/kio-fuse/files/patch-data_CMakeLists.txt index f6a3612f75c0..f7db38656eb3 100644 --- a/filesystems/kio-fuse/files/patch-CMakeLists.txt +++ b/filesystems/kio-fuse/files/patch-data_CMakeLists.txt @@ -1,6 +1,6 @@ ---- CMakeLists.txt.orig 2024-01-14 03:25:35 UTC -+++ CMakeLists.txt -@@ -72,10 +72,12 @@ ecm_generate_dbus_service_file( +--- data/CMakeLists.txt.orig 2025-10-13 17:56:58 UTC ++++ data/CMakeLists.txt +@@ -11,8 +11,10 @@ ecm_generate_dbus_service_file( DESTINATION ${KDE_INSTALL_DBUSSERVICEDIR} ) @@ -15,5 +15,3 @@ + ecm_install_configured_files(INPUT kio-fuse.service.in DESTINATION ${SYSTEMD_USER_UNIT_INSTALL_DIR}) + endif() endif() - - feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) diff --git a/filesystems/nbd-client-kmod/Makefile b/filesystems/nbd-client-kmod/Makefile new file mode 100644 index 000000000000..ab4d62f09d4c --- /dev/null +++ b/filesystems/nbd-client-kmod/Makefile @@ -0,0 +1,33 @@ +PORTNAME= nbd-client +DISTVERSION= g20250928 +CATEGORIES= filesystems +PKGNAMESUFFIX= -kmod + +MAINTAINER= dtxdf@FreeBSD.org +COMMENT= Kernel NBD client for FreeBSD GEOM framework +WWW= https://github.com/ryan-moeller/kernel-nbd-client + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +BROKEN_i386= format specifies type 'unsigned long' but the argument has type 'uint64_t' (aka 'unsigned long long') + +USES= kmod ssl uidfix +USE_GITHUB= yes +GH_ACCOUNT= ryan-moeller +GH_PROJECT= kernel-nbd-client +GH_TAGNAME= df0528162deffaabaae4365394b4b6e75ff3fcaf + +MAKE_ENV= GEOM_CLASS_DIR="${PREFIX}/lib/geom" \ + MANDIR="${PREFIX}/share/man/man" + +SUB_FILES= gnbd + +pre-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/geom + +post-install: + ${INSTALL_SCRIPT} ${WRKDIR}/gnbd ${STAGEDIR}${PREFIX}/sbin/gnbd + ${INSTALL_DATA} ${WRKSRC}/devd.conf.sample ${STAGEDIR}${PREFIX}/etc/devd/${PORTNAME}.conf.sample + +.include <bsd.port.mk> diff --git a/filesystems/nbd-client-kmod/distinfo b/filesystems/nbd-client-kmod/distinfo new file mode 100644 index 000000000000..8d781e318f51 --- /dev/null +++ b/filesystems/nbd-client-kmod/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1760457302 +SHA256 (ryan-moeller-kernel-nbd-client-g20250928-df0528162deffaabaae4365394b4b6e75ff3fcaf_GH0.tar.gz) = 9e6b66d41ae86c5eb52f9cb835b7517775d2a58a0523d7617ff55d91384f792f +SIZE (ryan-moeller-kernel-nbd-client-g20250928-df0528162deffaabaae4365394b4b6e75ff3fcaf_GH0.tar.gz) = 39296 diff --git a/filesystems/nbd-client-kmod/files/gnbd.in b/filesystems/nbd-client-kmod/files/gnbd.in new file mode 100644 index 000000000000..94d021b26b05 --- /dev/null +++ b/filesystems/nbd-client-kmod/files/gnbd.in @@ -0,0 +1,3 @@ +#!/bin/sh + +exec env GEOM_LIBRARY_PATH="%%LOCALBASE%%/lib/geom" /sbin/geom nbd "$@" diff --git a/filesystems/nbd-client-kmod/files/patch-lib_Makefile b/filesystems/nbd-client-kmod/files/patch-lib_Makefile new file mode 100644 index 000000000000..72ec380c46c4 --- /dev/null +++ b/filesystems/nbd-client-kmod/files/patch-lib_Makefile @@ -0,0 +1,12 @@ +--- lib/Makefile.orig 2025-10-14 17:24:26 UTC ++++ lib/Makefile +@@ -21,9 +21,6 @@ LDADD+= -lssl -lcrypto + LDADD+= -lssl -lcrypto + #.endif + +-# Not needed when in tree +-LINKS= /sbin/geom /sbin/gnbd +- + .PATH: ${SRCTOP}/sbin/geom/misc + + .include <bsd.lib.mk> diff --git a/filesystems/nbd-client-kmod/pkg-descr b/filesystems/nbd-client-kmod/pkg-descr new file mode 100644 index 000000000000..199e3750eea1 --- /dev/null +++ b/filesystems/nbd-client-kmod/pkg-descr @@ -0,0 +1,5 @@ +FreeBSD Geom NBD Client is a Network Block Device (NBD) client for +the FreeBSD kernel GEOM framework. + +The project consists of a kernel driver for the NBD GEOM class in +mod/ and a user library for the geom(8) control utility in lib/. diff --git a/filesystems/nbd-client-kmod/pkg-plist b/filesystems/nbd-client-kmod/pkg-plist new file mode 100644 index 000000000000..6467c9b1e620 --- /dev/null +++ b/filesystems/nbd-client-kmod/pkg-plist @@ -0,0 +1,5 @@ +/%%KMODDIR%%/geom_nbd.ko +lib/geom/geom_nbd.so +share/man/man8/gnbd.8.gz +sbin/gnbd +@sample etc/devd/nbd-client.conf.sample diff --git a/filesystems/py-pyfakefs/Makefile b/filesystems/py-pyfakefs/Makefile index ef825750a3c7..66b4240895f4 100644 --- a/filesystems/py-pyfakefs/Makefile +++ b/filesystems/py-pyfakefs/Makefile @@ -1,5 +1,5 @@ PORTNAME= pyfakefs -PORTVERSION= 5.9.3 +PORTVERSION= 5.10.0 CATEGORIES= filesystems devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/filesystems/py-pyfakefs/distinfo b/filesystems/py-pyfakefs/distinfo index 3ca076470eef..558c4e84d3c1 100644 --- a/filesystems/py-pyfakefs/distinfo +++ b/filesystems/py-pyfakefs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757436531 -SHA256 (pyfakefs-5.9.3.tar.gz) = b458b11abc8862d4d8500816170a9b25e10d07437332b9dffd651069f3d4c40c -SIZE (pyfakefs-5.9.3.tar.gz) = 229964 +TIMESTAMP = 1759774681 +SHA256 (pyfakefs-5.10.0.tar.gz) = 68b33b8d9338ed332ad0c809417b875559c2e8ac10972fce248cb19b89d325fa +SIZE (pyfakefs-5.10.0.tar.gz) = 231032 diff --git a/filesystems/securefs/Makefile b/filesystems/securefs/Makefile index 1ef2ba7fc778..1122ae03f63f 100644 --- a/filesystems/securefs/Makefile +++ b/filesystems/securefs/Makefile @@ -1,5 +1,5 @@ PORTNAME= securefs -PORTVERSION= 1.1.1 +PORTVERSION= 2.0.0 DISTVERSIONPREFIX= v CATEGORIES= filesystems PKGNAMEPREFIX= fusefs- diff --git a/filesystems/securefs/distinfo b/filesystems/securefs/distinfo index f0d6a0a74248..a973306c689a 100644 --- a/filesystems/securefs/distinfo +++ b/filesystems/securefs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1748831210 -SHA256 (netheril96-securefs-v1.1.1_GH0.tar.gz) = a4b0ceaaca98d25ed062bce0649bd43c83d5ea78d93d1fa4f227a2d59bfb7e62 -SIZE (netheril96-securefs-v1.1.1_GH0.tar.gz) = 426807 +TIMESTAMP = 1759774537 +SHA256 (netheril96-securefs-v2.0.0_GH0.tar.gz) = d7fac7adc70c09473173aeadee5b7041d7e63fbf392ef40bdd77888590bb12a2 +SIZE (netheril96-securefs-v2.0.0_GH0.tar.gz) = 571559 diff --git a/filesystems/webdavfs/Makefile b/filesystems/webdavfs/Makefile index 2089b81f9028..8668ee06c88c 100644 --- a/filesystems/webdavfs/Makefile +++ b/filesystems/webdavfs/Makefile @@ -1,6 +1,6 @@ PORTNAME= fusefs-webdavfs DISTVERSION= g20200520 -PORTREVISION= 30 +PORTREVISION= 32 CATEGORIES= filesystems MAINTAINER= eugen@FreeBSD.org diff --git a/filesystems/zerofs/Makefile b/filesystems/zerofs/Makefile index e789888398cf..4564c0431652 100644 --- a/filesystems/zerofs/Makefile +++ b/filesystems/zerofs/Makefile @@ -1,7 +1,6 @@ PORTNAME= zerofs DISTVERSIONPREFIX= v -DISTVERSION= 0.15.2 -PORTREVISION= 1 +DISTVERSION= 0.16.2 CATEGORIES= filesystems sysutils MAINTAINER= stephan@lichtenauer.co.za diff --git a/filesystems/zerofs/Makefile.crates b/filesystems/zerofs/Makefile.crates index 2738ca6ed5dc..e8bf06fd58be 100644 --- a/filesystems/zerofs/Makefile.crates +++ b/filesystems/zerofs/Makefile.crates @@ -165,7 +165,6 @@ CARGO_CRATES= addr2line-0.24.2 \ js-sys-0.3.77 \ lazy_static-1.5.0 \ libc-0.2.175 \ - libmimalloc-sys-0.1.43 \ libredox-0.1.9 \ linux-raw-sys-0.4.15 \ linux-raw-sys-0.9.4 \ @@ -183,7 +182,6 @@ CARGO_CRATES= addr2line-0.24.2 \ md-5-0.10.6 \ memchr-2.7.5 \ memoffset-0.9.1 \ - mimalloc-0.1.47 \ miniz_oxide-0.8.9 \ mio-1.0.4 \ mixtrics-0.1.0 \ @@ -287,7 +285,7 @@ CARGO_CRATES= addr2line-0.24.2 \ signal-hook-registry-1.4.6 \ siphasher-1.0.1 \ slab-0.4.11 \ - slatedb-0.8.1 \ + slatedb-0.8.2 \ smallvec-1.15.1 \ socket2-0.5.10 \ socket2-0.6.0 \ @@ -308,6 +306,8 @@ CARGO_CRATES= addr2line-0.24.2 \ thiserror-impl-1.0.69 \ thiserror-impl-2.0.14 \ thread_local-1.1.9 \ + tikv-jemalloc-sys-0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7 \ + tikv-jemallocator-0.6.0 \ time-0.3.41 \ time-core-0.1.4 \ tinystr-0.8.1 \ @@ -407,7 +407,7 @@ CARGO_CRATES= addr2line-0.24.2 \ zerocopy-derive-0.8.26 \ zerofrom-0.1.6 \ zerofrom-derive-0.1.6 \ - zerofs_nfsserve-0.14.0 \ + zerofs_nfsserve-0.15.0 \ zeroize-1.8.1 \ zerotrie-0.2.2 \ zerovec-0.11.4 \ diff --git a/filesystems/zerofs/distinfo b/filesystems/zerofs/distinfo index e7e869c33cb8..1390330f798b 100644 --- a/filesystems/zerofs/distinfo +++ b/filesystems/zerofs/distinfo @@ -1,4 +1,4 @@ -TIMESTAMP = 1757258826 +TIMESTAMP = 1760465574 SHA256 (rust/crates/addr2line-0.24.2.crate) = dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1 SIZE (rust/crates/addr2line-0.24.2.crate) = 39015 SHA256 (rust/crates/adler2-2.0.1.crate) = 320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa @@ -333,8 +333,6 @@ SHA256 (rust/crates/lazy_static-1.5.0.crate) = bbd2bcb4c963f2ddae06a2efc7e9f3591 SIZE (rust/crates/lazy_static-1.5.0.crate) = 14025 SHA256 (rust/crates/libc-0.2.175.crate) = 6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543 SIZE (rust/crates/libc-0.2.175.crate) = 788728 -SHA256 (rust/crates/libmimalloc-sys-0.1.43.crate) = bf88cd67e9de251c1781dbe2f641a1a3ad66eaae831b8a2c38fbdc5ddae16d4d -SIZE (rust/crates/libmimalloc-sys-0.1.43.crate) = 226498 SHA256 (rust/crates/libredox-0.1.9.crate) = 391290121bad3d37fbddad76d8f5d1c1c314cfc646d143d7e07a3086ddff0ce3 SIZE (rust/crates/libredox-0.1.9.crate) = 7281 SHA256 (rust/crates/linux-raw-sys-0.4.15.crate) = d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab @@ -369,8 +367,6 @@ SHA256 (rust/crates/memchr-2.7.5.crate) = 32a282da65faaf38286cf3be983213fcf1d2e2 SIZE (rust/crates/memchr-2.7.5.crate) = 97603 SHA256 (rust/crates/memoffset-0.9.1.crate) = 488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a SIZE (rust/crates/memoffset-0.9.1.crate) = 9032 -SHA256 (rust/crates/mimalloc-0.1.47.crate) = b1791cbe101e95af5764f06f20f6760521f7158f69dbf9d6baf941ee1bf6bc40 -SIZE (rust/crates/mimalloc-0.1.47.crate) = 4594 SHA256 (rust/crates/miniz_oxide-0.8.9.crate) = 1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316 SIZE (rust/crates/miniz_oxide-0.8.9.crate) = 67132 SHA256 (rust/crates/mio-1.0.4.crate) = 78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c @@ -577,8 +573,8 @@ SHA256 (rust/crates/siphasher-1.0.1.crate) = 56199f7ddabf13fe5074ce809e7d3f42b42 SIZE (rust/crates/siphasher-1.0.1.crate) = 10351 SHA256 (rust/crates/slab-0.4.11.crate) = 7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589 SIZE (rust/crates/slab-0.4.11.crate) = 18549 -SHA256 (rust/crates/slatedb-0.8.1.crate) = 6471ce0d2b99d80e36ce1439951a30a5e9ef751f3b8c4bd384611927384ee03d -SIZE (rust/crates/slatedb-0.8.1.crate) = 317374 +SHA256 (rust/crates/slatedb-0.8.2.crate) = 1929df128f27789722644d8e9a68eaddec2e656ed8bac2a088159c8cce423590 +SIZE (rust/crates/slatedb-0.8.2.crate) = 321188 SHA256 (rust/crates/smallvec-1.15.1.crate) = 67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03 SIZE (rust/crates/smallvec-1.15.1.crate) = 38116 SHA256 (rust/crates/socket2-0.5.10.crate) = e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678 @@ -619,6 +615,10 @@ SHA256 (rust/crates/thiserror-impl-2.0.14.crate) = cc5b44b4ab9c2fdd0e0512e6bece8 SIZE (rust/crates/thiserror-impl-2.0.14.crate) = 21219 SHA256 (rust/crates/thread_local-1.1.9.crate) = f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185 SIZE (rust/crates/thread_local-1.1.9.crate) = 19315 +SHA256 (rust/crates/tikv-jemalloc-sys-0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7.crate) = cd3c60906412afa9c2b5b5a48ca6a5abe5736aec9eb48ad05037a677e52e4e2d +SIZE (rust/crates/tikv-jemalloc-sys-0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7.crate) = 897133 +SHA256 (rust/crates/tikv-jemallocator-0.6.0.crate) = 4cec5ff18518d81584f477e9bfdf957f5bb0979b0bac3af4ca30b5b3ae2d2865 +SIZE (rust/crates/tikv-jemallocator-0.6.0.crate) = 13700 SHA256 (rust/crates/time-0.3.41.crate) = 8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40 SIZE (rust/crates/time-0.3.41.crate) = 138369 SHA256 (rust/crates/time-core-0.1.4.crate) = c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c @@ -817,8 +817,8 @@ SHA256 (rust/crates/zerofrom-0.1.6.crate) = 50cc42e0333e05660c3587f3bf9d0478688e SIZE (rust/crates/zerofrom-0.1.6.crate) = 5669 SHA256 (rust/crates/zerofrom-derive-0.1.6.crate) = d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502 SIZE (rust/crates/zerofrom-derive-0.1.6.crate) = 8305 -SHA256 (rust/crates/zerofs_nfsserve-0.14.0.crate) = 53a9c182c0ff391960f9a033ba2e49c418315a8e72e402ddaa9aa8c25c084526 -SIZE (rust/crates/zerofs_nfsserve-0.14.0.crate) = 43966 +SHA256 (rust/crates/zerofs_nfsserve-0.15.0.crate) = 0a1a98071b31b9687c05411a75df5a55a7a76c5af85cb3bb04de5efef26755c7 +SIZE (rust/crates/zerofs_nfsserve-0.15.0.crate) = 43826 SHA256 (rust/crates/zeroize-1.8.1.crate) = ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde SIZE (rust/crates/zeroize-1.8.1.crate) = 20029 SHA256 (rust/crates/zerotrie-0.2.2.crate) = 36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595 @@ -833,5 +833,5 @@ SHA256 (rust/crates/zstd-safe-7.2.4.crate) = 8f49c4d5f0abb602a93fb8736af2a4f4dd9 SIZE (rust/crates/zstd-safe-7.2.4.crate) = 29350 SHA256 (rust/crates/zstd-sys-2.0.15+zstd.1.5.7.crate) = eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237 SIZE (rust/crates/zstd-sys-2.0.15+zstd.1.5.7.crate) = 774847 -SHA256 (Barre-ZeroFS-v0.15.2_GH0.tar.gz) = 982042e4887b348605ed2aad428b254e7abc66d108ac41bc66625b726585b3e7 -SIZE (Barre-ZeroFS-v0.15.2_GH0.tar.gz) = 459110 +SHA256 (Barre-ZeroFS-v0.16.2_GH0.tar.gz) = 617a04ad2914b742b49b1f22d9d2a2e07ec59f3cedbdf5848cc67c2902641a92 +SIZE (Barre-ZeroFS-v0.16.2_GH0.tar.gz) = 463693 diff --git a/filesystems/zfs-snap-diff/Makefile b/filesystems/zfs-snap-diff/Makefile index f76a8a4dae98..bb8a89e9491f 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= 31 CATEGORIES= filesystems sysutils MAINTAINER= ports@FreeBSD.org diff --git a/filesystems/zrepl-dsh2dsh/Makefile b/filesystems/zrepl-dsh2dsh/Makefile index f79c350c4313..3ba4c47c3f3b 100644 --- a/filesystems/zrepl-dsh2dsh/Makefile +++ b/filesystems/zrepl-dsh2dsh/Makefile @@ -1,6 +1,7 @@ PORTNAME= zrepl DISTVERSIONPREFIX= v DISTVERSION= 1.0.0 +PORTREVISION= 2 CATEGORIES= filesystems sysutils PKGNAMESUFFIX= -${GH_ACCOUNT} diff --git a/filesystems/zrepl/Makefile b/filesystems/zrepl/Makefile index 8da8338e3b5e..103e38f11a54 100644 --- a/filesystems/zrepl/Makefile +++ b/filesystems/zrepl/Makefile @@ -1,7 +1,7 @@ PORTNAME= zrepl DISTVERSIONPREFIX= v DISTVERSION= 0.6.1 -PORTREVISION= 17 +PORTREVISION= 19 CATEGORIES= filesystems sysutils MAINTAINER= driesm@FreeBSD.org |