diff options
Diffstat (limited to 'net')
65 files changed, 199 insertions, 168 deletions
diff --git a/net/aws-ec2-imdsv2-get/Makefile b/net/aws-ec2-imdsv2-get/Makefile index 22dd7aedacdd..c05a63cb8cad 100644 --- a/net/aws-ec2-imdsv2-get/Makefile +++ b/net/aws-ec2-imdsv2-get/Makefile @@ -1,6 +1,6 @@ PORTNAME= aws-ec2-imdsv2-get DISTVERSION= 1.0.7 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= net MAINTAINER= cperciva@FreeBSD.org diff --git a/net/cloud-init/Makefile b/net/cloud-init/Makefile index 88b9035b7e48..f12651575c18 100644 --- a/net/cloud-init/Makefile +++ b/net/cloud-init/Makefile @@ -1,6 +1,5 @@ PORTNAME= cloud-init -DISTVERSION= 24.1.4 -PORTREVISION= 4 +DISTVERSION= 25.2 CATEGORIES= net python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -29,24 +28,35 @@ USES= python shebangfix USE_GITHUB= yes GH_ACCOUNT= canonical USE_PYTHON= autoplist distutils -PYDISTUTILS_INSTALLARGS+= "--init-system=sysvinit_freebsd" SHEBANG_FILES= tools/hook-hotplug tools/read-dependencies tools/read-version \ tools/validate-yaml.py +NO_ARCH= yes + # Conflicts CONFLICTS_INSTALL= cloud-init-devel # Standard bsd.port.mk variables ETCDIR= ${PREFIX}/etc/cloud +MAN1FILES= cloud-id.1 cloud-init-per.1 cloud-init.1 + +PLIST_FILES+= ${MAN1FILES:S|^|share/man/man1/|:S|.1$|.1.gz|} + .include <bsd.port.options.mk> .if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1400000 -EXTRA_PATCHES= ${PATCHDIR}/extra-cloudinit_distros_freebsd.py +EXTRA_PATCHES+= ${PATCHDIR}/extra-cloudinit_distros_freebsd.py .endif -NO_ARCH= yes +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1500000 +EXTRA_PATCHES+= ${PATCHDIR}/extra-cloudinit_netinfo.py +.endif + +.include <bsd.port.pre.mk> + +PYDISTUTILS_INSTALLARGS+= "--init-system=sysvinit_freebsd" post-patch: ${REINPLACE_CMD} -e 's|%%PREFIX%%|${STAGEDIR}${PREFIX}|g' ${WRKSRC}/setup.py @@ -60,6 +70,10 @@ post-install: ${MV} ${STAGEDIR}${ETCDIR}/cloud.cfg.d/99_freebsd.cfg ${STAGEDIR}${ETCDIR}/cloud.cfg.d/99_freebsd.cfg.sample ${REINPLACE_CMD} -e 's|^.*\.cfg$$|@sample &.sample|' \ -e 's|${ETCDIR}/clean.d|@dir ${ETCDIR}/clean.d|' \ + -e 's|${DOCSDIR}/module-docs|@dir ${DOCSDIR}/module-docs|' \ ${_PYTHONPKGLIST} +.for man in ${MAN1FILES} + ${INSTALL_MAN} ${WRKSRC}/doc/man/${man} ${STAGEDIR}${PREFIX}/share/man/man1 +.endfor -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/net/cloud-init/distinfo b/net/cloud-init/distinfo index c7e39f0502b2..811d0ccf97c8 100644 --- a/net/cloud-init/distinfo +++ b/net/cloud-init/distinfo @@ -1,5 +1,3 @@ -TIMESTAMP = 1712351569 -SHA256 (canonical-cloud-init-24.1.4_GH0.tar.gz) = 3c70effcea02be47b6cd751a1d164583df674ff8d6e4eaa6599eb1499e3b3f28 -SIZE (canonical-cloud-init-24.1.4_GH0.tar.gz) = 1734414 -SHA256 (a6e09d9bfd3ef0770bc4d9452d978ba93dbe1245.patch) = e90e4df05691b64abf2f3a0fc02ff7c450260e53ca236583f7fc3fd315a2b114 -SIZE (a6e09d9bfd3ef0770bc4d9452d978ba93dbe1245.patch) = 18418 +TIMESTAMP = 1756667041 +SHA256 (canonical-cloud-init-25.2_GH0.tar.gz) = a5f4752ac86efa395c99151f787072159b86277201d8386d90019db01cdd9779 +SIZE (canonical-cloud-init-25.2_GH0.tar.gz) = 1954136 diff --git a/net/cloud-init/files/extra-cloudinit_distros_freebsd.py b/net/cloud-init/files/extra-cloudinit_distros_freebsd.py index eb4d375a49fd..c14b672d5cc6 100644 --- a/net/cloud-init/files/extra-cloudinit_distros_freebsd.py +++ b/net/cloud-init/files/extra-cloudinit_distros_freebsd.py @@ -1,4 +1,4 @@ ---- cloudinit/distros/freebsd.py.orig 2024-10-25 15:58:28 UTC +--- cloudinit/distros/freebsd.py.orig 2025-08-12 19:00:58 UTC +++ cloudinit/distros/freebsd.py @@ -35,7 +35,7 @@ class Distro(cloudinit.distros.bsd.BSD): pkg_cmd_update_prefix = ["pkg", "update"] diff --git a/net/cloud-init/files/extra-cloudinit_netinfo.py b/net/cloud-init/files/extra-cloudinit_netinfo.py new file mode 100644 index 000000000000..d756dda563f0 --- /dev/null +++ b/net/cloud-init/files/extra-cloudinit_netinfo.py @@ -0,0 +1,11 @@ +--- cloudinit/netinfo.py.orig 2025-09-01 15:44:21 UTC ++++ cloudinit/netinfo.py +@@ -558,7 +558,7 @@ def route_info(): + elif subp.which("netstat"): + # Fall back to net-tools if iproute2 is not present + (route_out, _err) = subp.subp( +- ["netstat", "--route", "--numeric", "--extend"], rcs=[0, 1] ++ ["netstat", "--route", "--numeric", "--extend"], rcs=[0, 1, 64] + ) + routes = _netdev_route_info_netstat(route_out) + else: diff --git a/net/cloud-init/files/patch-cloudinit_settings.py b/net/cloud-init/files/patch-cloudinit_settings.py index d7ca2bd87f2c..a2aded75780a 100644 --- a/net/cloud-init/files/patch-cloudinit_settings.py +++ b/net/cloud-init/files/patch-cloudinit_settings.py @@ -1,19 +1,27 @@ ---- cloudinit/settings.py.orig 2021-03-17 15:43:42 UTC +--- cloudinit/settings.py.orig 2025-08-12 19:00:58 UTC +++ cloudinit/settings.py -@@ -12,7 +12,7 @@ +@@ -12,11 +12,11 @@ CFG_ENV_NAME = "CLOUD_CFG" CFG_ENV_NAME = "CLOUD_CFG" # This is expected to be a yaml formatted file -CLOUD_CONFIG = "/etc/cloud/cloud.cfg" +CLOUD_CONFIG = "%%PREFIX%%/etc/cloud/cloud.cfg" - RUN_CLOUD_CONFIG = "/run/cloud-init/cloud.cfg" +-CLEAN_RUNPARTS_DIR = "/etc/cloud/clean.d" ++CLEAN_RUNPARTS_DIR = "%%PREFIX%%/etc/cloud/clean.d" -@@ -50,7 +50,7 @@ CFG_BUILTIN = { +-DEFAULT_RUN_DIR = "/run/cloud-init" ++DEFAULT_RUN_DIR = "/var/run/cloud-init" + + # What u get if no config is provided + CFG_BUILTIN = { +@@ -60,8 +60,8 @@ CFG_BUILTIN = { "system_info": { "paths": { "cloud_dir": "/var/lib/cloud", +- "docs_dir": "/usr/share/doc/cloud-init/", - "templates_dir": "/etc/cloud/templates/", ++ "docs_dir": "%%PREFIX%%/share/doc/cloud-init/", + "templates_dir": "%%PREFIX%%/etc/cloud/templates/", }, "distro": "ubuntu", diff --git a/net/cloud-init/files/patch-setup.py b/net/cloud-init/files/patch-setup.py index c94715dc97c6..403683645cf7 100644 --- a/net/cloud-init/files/patch-setup.py +++ b/net/cloud-init/files/patch-setup.py @@ -1,6 +1,6 @@ ---- setup.py.orig 2021-03-17 15:40:30 UTC +--- setup.py.orig 2025-08-12 19:00:58 UTC +++ setup.py -@@ -153,7 +153,7 @@ INITSYS_TYPES = sorted([f.partition(".")[0] for f in I +@@ -176,7 +176,7 @@ USR = "usr" # Install everything in the right location and take care of Linux (default) and # FreeBSD systems. USR = "usr" @@ -8,4 +8,4 @@ +ETC = "%%PREFIX%%/etc" USR_LIB_EXEC = "usr/lib" LIB = "lib" - if os.uname()[0] in ["FreeBSD", "DragonFly"]: + if os.uname()[0] in ["FreeBSD", "DragonFly", "OpenBSD"]: diff --git a/net/deltachat-rpc-server/Makefile b/net/deltachat-rpc-server/Makefile index 2a1ec0fea9b9..493a8b523915 100644 --- a/net/deltachat-rpc-server/Makefile +++ b/net/deltachat-rpc-server/Makefile @@ -1,7 +1,7 @@ PORTNAME= deltachat-rpc-server DISTVERSIONPREFIX= v DISTVERSION= 2.11.0 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= net MAINTAINER= feld@FreeBSD.org diff --git a/net/dumbpipe/Makefile b/net/dumbpipe/Makefile index c9c39fe59ee0..b0e123e97e43 100644 --- a/net/dumbpipe/Makefile +++ b/net/dumbpipe/Makefile @@ -1,7 +1,7 @@ PORTNAME= dumbpipe DISTVERSIONPREFIX= v DISTVERSION= 0.27.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net MAINTAINER= feld@FreeBSD.org diff --git a/net/eternalterminal/Makefile b/net/eternalterminal/Makefile index 66a40e4d888e..edeff7387537 100644 --- a/net/eternalterminal/Makefile +++ b/net/eternalterminal/Makefile @@ -1,6 +1,7 @@ PORTNAME= eternalterminal DISTVERSIONPREFIX= et-v DISTVERSION= 6.2.11 +PORTREVISION= 1 CATEGORIES= net MAINTAINER= eduardo@FreeBSD.org @@ -12,17 +13,19 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_FreeBSD_13= OpenSSL versions prior to 3.0.0 are not supported -LIB_DEPENDS= libprotobuf.so:devel/protobuf \ +LIB_DEPENDS= libabsl_log_internal_check_op.so:devel/abseil \ + libprotobuf.so:devel/protobuf \ libsodium.so:security/libsodium \ libunwind.so:devel/libunwind -USES= cmake ssl +USES= cmake:testing ssl USE_GITHUB= yes GH_ACCOUNT= MisterTea GH_PROJECT= EternalTerminal CMAKE_ON= DISABLE_VCPKG CMAKE_OFF= BUILD_TESTING +CMAKE_TESTING_ON= BUILD_TESTING CONFLICTS_INSTALL= linux-enemyterritory # bin/et @@ -36,10 +39,4 @@ post-install: ${INSTALL_SCRIPT} ${WRKSRC}/rc.d/etserver \ ${STAGEDIR}${PREFIX}/etc/rc.d -do-test: - @cd ${BUILD_WRKSRC} && \ - ${SETENVI} ${WRK_ENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -DBUILD_TESTING:BOOL=ON ${CMAKE_SOURCE_PATH} && \ - ${SETENVI} ${WRK_ENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} && \ - ctest -C ${CMAKE_BUILD_TYPE} ${_MAKE_JOBS} - .include <bsd.port.mk> diff --git a/net/findomain/Makefile b/net/findomain/Makefile index d620d4cacb52..b986ddd910c1 100644 --- a/net/findomain/Makefile +++ b/net/findomain/Makefile @@ -1,6 +1,6 @@ PORTNAME= findomain DISTVERSION= 9.0.4 -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= net security MAINTAINER= lcook@FreeBSD.org diff --git a/net/freerdp3/Makefile b/net/freerdp3/Makefile index 412a3aed846b..319b4709a431 100644 --- a/net/freerdp3/Makefile +++ b/net/freerdp3/Makefile @@ -1,5 +1,6 @@ PORTNAME= freerdp DISTVERSION= 3.17.0 +PORTREVISION= 1 CATEGORIES= net comms MASTER_SITES+= https://pub.freerdp.com/releases/:freerdp \ https://github.com/FreeRDP/FreeRDP/releases/download/${DISTVERSION}/:freerdp diff --git a/net/gdrive/Makefile b/net/gdrive/Makefile index 63ffe2da2534..13c76c3ae5d9 100644 --- a/net/gdrive/Makefile +++ b/net/gdrive/Makefile @@ -1,6 +1,6 @@ PORTNAME= gdrive DISTVERSION= 3.9.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= net PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ diff --git a/net/gemserv/Makefile b/net/gemserv/Makefile index 5102dbdb6c86..629c70dec91d 100644 --- a/net/gemserv/Makefile +++ b/net/gemserv/Makefile @@ -1,7 +1,7 @@ PORTNAME= gemserv DISTVERSIONPREFIX= v DISTVERSION= 0.6.6 -PORTREVISION= 22 +PORTREVISION= 23 CATEGORIES= net MASTER_SITES= https://git.sr.ht/~int80h/${PORTNAME}/archive/${DISTVERSIONFULL}${EXTRACT_SUFX}?dummy=/ DISTFILES= ${PORTNAME}-${DISTVERSIONPREFIX}${PORTVERSION}${EXTRACT_SUFX} diff --git a/net/geoclue/Makefile b/net/geoclue/Makefile index 677b801a52b1..f1a2709295f5 100644 --- a/net/geoclue/Makefile +++ b/net/geoclue/Makefile @@ -1,5 +1,5 @@ PORTNAME= geoclue -DISTVERSION= 2.7.2 +DISTVERSION= 2.8.0 CATEGORIES= net devel gnome MAINTAINER= desktop@FreeBSD.org @@ -12,10 +12,12 @@ LICENSE_COMB= multi LIB_DEPENDS= libjson-glib-1.0.so:devel/json-glib \ libsoup-3.0.so:devel/libsoup3 -USES= gettext gnome meson pkgconfig tar:bz2 vala:build +USES= gettext-tools gnome meson pkgconfig python shebangfix tar:bz2 \ + vala:build USE_GNOME= glib20 introspection:build USE_LDCONFIG= yes +SHEBANG_FILES= interface/create-unified-xml.py USE_GITLAB= yes GL_SITE= https://gitlab.freedesktop.org @@ -23,7 +25,8 @@ GL_SITE= https://gitlab.freedesktop.org MESON_ARGS= -D3g-source=false \ -Dcdma-source=false \ -Dnmea-source=false \ - -Dmodem-gps-source=false + -Dmodem-gps-source=false \ + -Dwifi-source=false OPTIONS_SUB= yes OPTIONS_DEFINE= DEMO DOCS diff --git a/net/geoclue/distinfo b/net/geoclue/distinfo index 2c006d799ff3..f86098763972 100644 --- a/net/geoclue/distinfo +++ b/net/geoclue/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1735049523 -SHA256 (geoclue-2.7.2.tar.bz2) = 01d24a44a036769049411899ae83c9a86f73d272cca3df6af5a03bfac32456d2 -SIZE (geoclue-2.7.2.tar.bz2) = 108472 +TIMESTAMP = 1756643090 +SHA256 (geoclue-2.8.0.tar.bz2) = c07aeb35cccf959ec1dc2e8f9a71a9d8bdd643879ef0a8d37926499541da1685 +SIZE (geoclue-2.8.0.tar.bz2) = 112944 diff --git a/net/gnome-connections/Makefile b/net/gnome-connections/Makefile index 2b62c2d78c77..a4c01fa892a7 100644 --- a/net/gnome-connections/Makefile +++ b/net/gnome-connections/Makefile @@ -1,6 +1,6 @@ PORTNAME= gnome-connections PORTVERSION= 47.2.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome diff --git a/net/kdenetwork/Makefile b/net/kdenetwork/Makefile index da673473276b..ca0e9fec8ca2 100644 --- a/net/kdenetwork/Makefile +++ b/net/kdenetwork/Makefile @@ -1,5 +1,6 @@ PORTNAME= kdenetwork DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net kde MAINTAINER= kde@FreeBSD.org diff --git a/net/krdc/Makefile b/net/krdc/Makefile index e89d38c59921..a37fb07e403b 100644 --- a/net/krdc/Makefile +++ b/net/krdc/Makefile @@ -1,5 +1,6 @@ PORTNAME= krdc DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/net/krill/Makefile b/net/krill/Makefile index ec9915f06a81..cea9fe1c424e 100644 --- a/net/krill/Makefile +++ b/net/krill/Makefile @@ -1,6 +1,7 @@ PORTNAME= krill DISTVERSIONPREFIX= v DISTVERSION= 0.15.0 +PORTREVISION= 1 CATEGORIES= net MAINTAINER= jaap@NLnetLabs.nl diff --git a/net/ktcplist/Makefile b/net/ktcplist/Makefile index d91a627a8cc7..6e7cc0b1306e 100644 --- a/net/ktcplist/Makefile +++ b/net/ktcplist/Makefile @@ -1,5 +1,6 @@ PORTNAME= ktcplist DISTVERSION= 1.0.2 +PORTREVISION= 1 CATEGORIES= net sysutils MAINTAINER= arrowd@FreeBSD.org diff --git a/net/liferea/Makefile b/net/liferea/Makefile index 12fd6fe81d56..f77c0fb45328 100644 --- a/net/liferea/Makefile +++ b/net/liferea/Makefile @@ -1,5 +1,6 @@ PORTNAME= liferea -DISTVERSION= 1.16.1 +DISTVERSION= 1.16.2 +PORTREVISION= 1 CATEGORIES= net gnome MASTER_SITES= https://github.com/lwindolf/liferea/releases/download/v${DISTVERSION}/ diff --git a/net/liferea/distinfo b/net/liferea/distinfo index 2121115e1ddf..03bf72d936a0 100644 --- a/net/liferea/distinfo +++ b/net/liferea/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1755764562 -SHA256 (liferea-1.16.1.tar.bz2) = e0a9aac46f03d2fc2b325068e6a18121474aa41f30086021632a92caf9f69aec -SIZE (liferea-1.16.1.tar.bz2) = 1775390 +TIMESTAMP = 1756562972 +SHA256 (liferea-1.16.2.tar.bz2) = 74bb2bf9befc396c894008e40f635cbdeed820d64dc1c9a055190975817748fa +SIZE (liferea-1.16.2.tar.bz2) = 1766720 diff --git a/net/liferea/pkg-plist b/net/liferea/pkg-plist index cd0b24f95375..530e1155447e 100644 --- a/net/liferea/pkg-plist +++ b/net/liferea/pkg-plist @@ -44,10 +44,6 @@ share/icons/hicolor/scalable/apps/net.sourceforge.liferea.svg %%DATADIR%%/doc/html/concepts_en.html %%DATADIR%%/doc/html/concepts_it.html %%DATADIR%%/doc/html/concepts_ru.html -%%DATADIR%%/doc/html/faq_de.html -%%DATADIR%%/doc/html/faq_en.html -%%DATADIR%%/doc/html/faq_it.html -%%DATADIR%%/doc/html/faq_ru.html %%DATADIR%%/doc/html/folders_de.html %%DATADIR%%/doc/html/folders_en.html %%DATADIR%%/doc/html/folders_it.html @@ -89,11 +85,6 @@ share/icons/hicolor/scalable/apps/net.sourceforge.liferea.svg %%DATADIR%%/doc/html/preferences_en.html %%DATADIR%%/doc/html/preferences_it.html %%DATADIR%%/doc/html/preferences_ru.html -%%DATADIR%%/doc/html/reference_de.html -%%DATADIR%%/doc/html/reference_en.html -%%DATADIR%%/doc/html/reference_it.html -%%DATADIR%%/doc/html/reference_ru.html -%%DATADIR%%/doc/html/reference.css %%DATADIR%%/doc/html/searching_de.html %%DATADIR%%/doc/html/searching_en.html %%DATADIR%%/doc/html/searching_it.html @@ -156,6 +147,7 @@ share/icons/hicolor/scalable/apps/net.sourceforge.liferea.svg %%DATADIR%%/properties.ui %%DATADIR%%/reedah_source.ui %%DATADIR%%/rename_node.ui +%%DATADIR%%/shortcuts.ui %%DATADIR%%/search_folder.ui %%DATADIR%%/search.ui %%DATADIR%%/simple_search.ui diff --git a/net/lldap/Makefile b/net/lldap/Makefile index 1727907765bf..337545ecb70d 100644 --- a/net/lldap/Makefile +++ b/net/lldap/Makefile @@ -1,7 +1,7 @@ PORTNAME= lldap DISTVERSIONPREFIX= v DISTVERSION= 0.6.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net MAINTAINER= aokblast@FreeBSD.org diff --git a/net/narrowlink/Makefile b/net/narrowlink/Makefile index 79bcabd58284..1c462068e3f9 100644 --- a/net/narrowlink/Makefile +++ b/net/narrowlink/Makefile @@ -1,6 +1,6 @@ PORTNAME= narrowlink DISTVERSION= 0.2.6 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= net MAINTAINER= yuri@FreeBSD.org diff --git a/net/netatalk4/Makefile b/net/netatalk4/Makefile index b58b54e23d23..0789981381f3 100644 --- a/net/netatalk4/Makefile +++ b/net/netatalk4/Makefile @@ -1,5 +1,5 @@ PORTNAME= netatalk -PORTVERSION= 4.3.0 +PORTVERSION= 4.3.1 CATEGORIES= net MASTER_SITES= https://github.com/${PORTNAME}/${PORTNAME}/releases/download/netatalk-${PORTVERSION:S/./-/g}/ PKGNAMESUFFIX= 4 diff --git a/net/netatalk4/distinfo b/net/netatalk4/distinfo index d23ce5d6bfc5..19911e0d914b 100644 --- a/net/netatalk4/distinfo +++ b/net/netatalk4/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1754580713 -SHA256 (netatalk-4.3.0.tar.xz) = bc71a6a2f11cf00cb69ef13e8487ab78d1241ae535feb010220c74c89dc890fb -SIZE (netatalk-4.3.0.tar.xz) = 945292 +TIMESTAMP = 1756664551 +SHA256 (netatalk-4.3.1.tar.xz) = 248e2eea8066c7d3e7fed62c54a3df37b4158bb45247ebdf64efe2e3797c04d5 +SIZE (netatalk-4.3.1.tar.xz) = 956212 diff --git a/net/netatalk4/pkg-plist b/net/netatalk4/pkg-plist index dfced504a0b1..57d85b15648d 100644 --- a/net/netatalk4/pkg-plist +++ b/net/netatalk4/pkg-plist @@ -72,7 +72,6 @@ share/man/man1/addump.1.gz share/man/man1/afpldaptest.1.gz share/man/man1/afppasswd.1.gz %%DBUS%%share/man/man1/afpstats.1.gz -share/man/man1/afptest.1.gz share/man/man1/asip-status.1.gz share/man/man1/dbd.1.gz share/man/man1/fce_listen.1.gz diff --git a/net/ntpd-rs/Makefile b/net/ntpd-rs/Makefile index eb63cef4ab41..ba5fcba3fb22 100644 --- a/net/ntpd-rs/Makefile +++ b/net/ntpd-rs/Makefile @@ -1,6 +1,6 @@ PORTNAME= ntpd-rs DISTVERSIONPREFIX= v -DISTVERSION= 1.6.1 +DISTVERSION= 1.6.2 CATEGORIES= net MAINTAINER= mikael@FreeBSD.org diff --git a/net/ntpd-rs/distinfo b/net/ntpd-rs/distinfo index 904a8a10fd2c..ebef28bf8d27 100644 --- a/net/ntpd-rs/distinfo +++ b/net/ntpd-rs/distinfo @@ -1,4 +1,4 @@ -TIMESTAMP = 1752665084 +TIMESTAMP = 1756793849 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 @@ -335,5 +335,5 @@ SHA256 (rust/crates/zerocopy-derive-0.8.26.crate) = 9ecf5b4cc5364572d7f4c329661b SIZE (rust/crates/zerocopy-derive-0.8.26.crate) = 88080 SHA256 (rust/crates/zeroize-1.8.1.crate) = ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde SIZE (rust/crates/zeroize-1.8.1.crate) = 20029 -SHA256 (pendulum-project-ntpd-rs-v1.6.1_GH0.tar.gz) = 71d5ca4078124fc00b57f565dd3a77bc6152f9dc8787f3018cc204a8e4e6b9c5 -SIZE (pendulum-project-ntpd-rs-v1.6.1_GH0.tar.gz) = 1434202 +SHA256 (pendulum-project-ntpd-rs-v1.6.2_GH0.tar.gz) = cf88a2f65dcbff37d7f713713aff10eb7fe9c9d6d4d7ab694f972990b121821b +SIZE (pendulum-project-ntpd-rs-v1.6.2_GH0.tar.gz) = 1434525 diff --git a/net/oha/Makefile b/net/oha/Makefile index ff0408387124..9afa03ac819d 100644 --- a/net/oha/Makefile +++ b/net/oha/Makefile @@ -1,7 +1,7 @@ PORTNAME= oha DISTVERSIONPREFIX= v DISTVERSION= 1.9.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MAINTAINER= otis@FreeBSD.org diff --git a/net/proby/Makefile b/net/proby/Makefile index 423e117704cd..bdef145273c8 100644 --- a/net/proby/Makefile +++ b/net/proby/Makefile @@ -1,7 +1,7 @@ PORTNAME= proby DISTVERSIONPREFIX= v DISTVERSION= 1.0.2 -PORTREVISION= 45 +PORTREVISION= 46 CATEGORIES= net MAINTAINER= yuri@FreeBSD.org diff --git a/net/py-magic-wormhole/Makefile b/net/py-magic-wormhole/Makefile index ad620f221c32..c03e468a2aab 100644 --- a/net/py-magic-wormhole/Makefile +++ b/net/py-magic-wormhole/Makefile @@ -1,6 +1,6 @@ PORTNAME= magic-wormhole DISTVERSION= 0.16.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/net/quiche/Makefile b/net/quiche/Makefile index b6ccb99c8c8e..e954f30c51ce 100644 --- a/net/quiche/Makefile +++ b/net/quiche/Makefile @@ -1,6 +1,6 @@ PORTNAME= quiche DISTVERSION= 0.24.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net MAINTAINER= junho.choi@gmail.com diff --git a/net/rabbitmq/Makefile b/net/rabbitmq/Makefile index 463b786299e5..d9dd922b7d1b 100644 --- a/net/rabbitmq/Makefile +++ b/net/rabbitmq/Makefile @@ -1,11 +1,11 @@ PORTNAME= rabbitmq -DISTVERSION= 4.1.1 +DISTVERSION= 4.1.3 CATEGORIES= net MASTER_SITES= https://github.com/rabbitmq/rabbitmq-server/releases/download/v${DISTVERSION}/ DISTNAME= ${PORTNAME}-server-generic-unix-${DISTVERSION} -MAINTAINER= vvd@FreeBSD.org -# Co-maintainer: fsbruva@yahoo.com +MAINTAINER= erlang@FreeBSD.org +# Co-maintainers: vvd@FreeBSD.org fsbruva@yahoo.com COMMENT= Erlang implementation of AMQP WWW= https://www.rabbitmq.com/ diff --git a/net/rabbitmq/distinfo b/net/rabbitmq/distinfo index 97e0a1d6fce6..418fdc5a75fc 100644 --- a/net/rabbitmq/distinfo +++ b/net/rabbitmq/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750300000 -SHA256 (rabbitmq-server-generic-unix-4.1.1.tar.xz) = a00731f61bb3fa6000b62d5c5b8fe407638ebc8c2042e0079860ee66ce320f53 -SIZE (rabbitmq-server-generic-unix-4.1.1.tar.xz) = 26167188 +TIMESTAMP = 1756745678 +SHA256 (rabbitmq-server-generic-unix-4.1.3.tar.xz) = 1a9a57572828e379e8659171972c4aab814d482b162b2ccc9de02ff0a6971e73 +SIZE (rabbitmq-server-generic-unix-4.1.3.tar.xz) = 26229668 diff --git a/net/rabbitmq/pkg-plist b/net/rabbitmq/pkg-plist index 8ab46e6eb277..c837f85b07e5 100644 --- a/net/rabbitmq/pkg-plist +++ b/net/rabbitmq/pkg-plist @@ -536,51 +536,50 @@ lib/rabbitmq_server-%%VERSION%%/plugins/quantile_estimator-0.2.1/ebin/quantile.b lib/rabbitmq_server-%%VERSION%%/plugins/quantile_estimator-0.2.1/ebin/quantile_estimator.app lib/rabbitmq_server-%%VERSION%%/plugins/quantile_estimator-0.2.1/ebin/quantile_estimator.beam lib/rabbitmq_server-%%VERSION%%/plugins/quantile_estimator-0.2.1/include/quantile_estimator.hrl -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra.app -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_app.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_aux.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_bench.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_counters.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_dbg.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_directory.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_env.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_ets_queue.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_file.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_file_handle.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_flru.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_leaderboard.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_lib.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_log.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_log_ets.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_log_meta.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_log_pre_init.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_log_read_plan.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_log_reader.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_log_segment.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_log_segment_writer.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_log_snapshot.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_log_sup.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_log_wal.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_log_wal_sup.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_lol.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_machine.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_machine_ets.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_machine_simple.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_metrics_ets.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_monitors.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_mt.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_range.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_server.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_server_proc.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_server_sup.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_server_sup_sup.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_snapshot.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_sup.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_system.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_system_recover.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_system_sup.beam -lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.9/ebin/ra_systems_sup.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra.app +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_app.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_aux.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_bench.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_counters.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_dbg.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_directory.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_env.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_ets_queue.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_file.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_flru.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_leaderboard.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_lib.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_log.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_log_ets.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_log_meta.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_log_pre_init.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_log_read_plan.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_log_reader.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_log_segment.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_log_segment_writer.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_log_snapshot.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_log_sup.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_log_wal.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_log_wal_sup.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_lol.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_machine.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_machine_ets.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_machine_simple.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_metrics_ets.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_monitors.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_mt.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_range.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_server.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_server_proc.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_server_sup.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_server_sup_sup.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_snapshot.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_sup.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_system.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_system_recover.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_system_sup.beam +lib/rabbitmq_server-%%VERSION%%/plugins/ra-2.16.12/ebin/ra_systems_sup.beam lib/rabbitmq_server-%%VERSION%%/plugins/rabbit-%%VERSION%%/ebin/amqqueue.beam lib/rabbitmq_server-%%VERSION%%/plugins/rabbit-%%VERSION%%/ebin/background_gc.beam lib/rabbitmq_server-%%VERSION%%/plugins/rabbit-%%VERSION%%/ebin/code_server_cache.beam @@ -779,6 +778,7 @@ lib/rabbitmq_server-%%VERSION%%/plugins/rabbit-%%VERSION%%/ebin/rabbit_ssl.beam lib/rabbitmq_server-%%VERSION%%/plugins/rabbit-%%VERSION%%/ebin/rabbit_stream_coordinator.beam lib/rabbitmq_server-%%VERSION%%/plugins/rabbit-%%VERSION%%/ebin/rabbit_stream_queue.beam lib/rabbitmq_server-%%VERSION%%/plugins/rabbit-%%VERSION%%/ebin/rabbit_stream_sac_coordinator.beam +lib/rabbitmq_server-%%VERSION%%/plugins/rabbit-%%VERSION%%/ebin/rabbit_stream_sac_coordinator_v4.beam lib/rabbitmq_server-%%VERSION%%/plugins/rabbit-%%VERSION%%/ebin/rabbit_sup.beam lib/rabbitmq_server-%%VERSION%%/plugins/rabbit-%%VERSION%%/ebin/rabbit_sysmon_handler.beam lib/rabbitmq_server-%%VERSION%%/plugins/rabbit-%%VERSION%%/ebin/rabbit_sysmon_minder.beam @@ -1160,6 +1160,7 @@ lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_management-%%VERSION%%/priv/www lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_management-%%VERSION%%/priv/www/js/sammy-0.7.6.js lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_management-%%VERSION%%/priv/www/js/sammy-0.7.6.min.js lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_management-%%VERSION%%/priv/www/js/theme-switcher.js +lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_management-%%VERSION%%/priv/www/js/title.js lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_management-%%VERSION%%/priv/www/js/tmpl/404.ejs lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_management-%%VERSION%%/priv/www/js/tmpl/add-binding.ejs lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_management-%%VERSION%%/priv/www/js/tmpl/binary.ejs @@ -1377,6 +1378,7 @@ lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_stomp-%%VERSION%%/include/rabbi lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_stomp-%%VERSION%%/include/rabbit_stomp_frame.hrl lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_stomp-%%VERSION%%/include/rabbit_stomp_headers.hrl lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_stomp-%%VERSION%%/priv/schema/rabbitmq_stomp.schema +lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_stream-%%VERSION%%/ebin/Elixir.RabbitMQ.CLI.Ctl.Commands.ActivateStreamConsumerCommand.beam lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_stream-%%VERSION%%/ebin/Elixir.RabbitMQ.CLI.Ctl.Commands.AddSuperStreamCommand.beam lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_stream-%%VERSION%%/ebin/Elixir.RabbitMQ.CLI.Ctl.Commands.DeleteSuperStreamCommand.beam lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_stream-%%VERSION%%/ebin/Elixir.RabbitMQ.CLI.Ctl.Commands.ListStreamConnectionsCommand.beam @@ -1530,13 +1532,13 @@ lib/rabbitmq_server-%%VERSION%%/plugins/recon-2.5.6/ebin/recon_lib.beam lib/rabbitmq_server-%%VERSION%%/plugins/recon-2.5.6/ebin/recon_map.beam lib/rabbitmq_server-%%VERSION%%/plugins/recon-2.5.6/ebin/recon_rec.beam lib/rabbitmq_server-%%VERSION%%/plugins/recon-2.5.6/ebin/recon_trace.beam -lib/rabbitmq_server-%%VERSION%%/plugins/redbug-2.0.7/ebin/redbug.app -lib/rabbitmq_server-%%VERSION%%/plugins/redbug-2.0.7/ebin/redbug.beam -lib/rabbitmq_server-%%VERSION%%/plugins/redbug-2.0.7/ebin/redbug_compiler.beam -lib/rabbitmq_server-%%VERSION%%/plugins/redbug-2.0.7/ebin/redbug_dtop.beam -lib/rabbitmq_server-%%VERSION%%/plugins/redbug-2.0.7/ebin/redbug_lexer.beam -lib/rabbitmq_server-%%VERSION%%/plugins/redbug-2.0.7/ebin/redbug_parser.beam -lib/rabbitmq_server-%%VERSION%%/plugins/redbug-2.0.7/ebin/redbug_targ.beam +lib/rabbitmq_server-%%VERSION%%/plugins/redbug-2.1.0/ebin/redbug.app +lib/rabbitmq_server-%%VERSION%%/plugins/redbug-2.1.0/ebin/redbug.beam +lib/rabbitmq_server-%%VERSION%%/plugins/redbug-2.1.0/ebin/redbug_compiler.beam +lib/rabbitmq_server-%%VERSION%%/plugins/redbug-2.1.0/ebin/redbug_dtop.beam +lib/rabbitmq_server-%%VERSION%%/plugins/redbug-2.1.0/ebin/redbug_lexer.beam +lib/rabbitmq_server-%%VERSION%%/plugins/redbug-2.1.0/ebin/redbug_parser.beam +lib/rabbitmq_server-%%VERSION%%/plugins/redbug-2.1.0/ebin/redbug_targ.beam lib/rabbitmq_server-%%VERSION%%/plugins/seshat-0.6.1/ebin/seshat.app lib/rabbitmq_server-%%VERSION%%/plugins/seshat-0.6.1/ebin/seshat.beam lib/rabbitmq_server-%%VERSION%%/plugins/seshat-0.6.1/ebin/seshat_app.beam diff --git a/net/rabbitmqadmin/Makefile b/net/rabbitmqadmin/Makefile index d199a2c9ea1f..9010f405d0b3 100644 --- a/net/rabbitmqadmin/Makefile +++ b/net/rabbitmqadmin/Makefile @@ -1,7 +1,7 @@ PORTNAME= rabbitmqadmin DISTVERSIONPREFIX= v DISTVERSION= 0.29.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net MAINTAINER= dch@FreeBSD.org diff --git a/net/rathole/Makefile b/net/rathole/Makefile index 74ec48652184..91fb6e62a54b 100644 --- a/net/rathole/Makefile +++ b/net/rathole/Makefile @@ -1,7 +1,7 @@ PORTNAME= rathole DISTVERSIONPREFIX= v DISTVERSION= 0.5.0 -PORTREVISION= 16 +PORTREVISION= 17 CATEGORIES= net MAINTAINER= yuri@FreeBSD.org diff --git a/net/rclone/Makefile b/net/rclone/Makefile index 016b9a93c4fd..0a1b39173dd5 100644 --- a/net/rclone/Makefile +++ b/net/rclone/Makefile @@ -1,7 +1,6 @@ PORTNAME= rclone DISTVERSIONPREFIX= v -DISTVERSION= 1.70.3 -PORTREVISION= 1 +DISTVERSION= 1.71.0 CATEGORIES= net MAINTAINER= tremere@cainites.net diff --git a/net/rclone/distinfo b/net/rclone/distinfo index 555f9f7355a4..88cb87b87e6b 100644 --- a/net/rclone/distinfo +++ b/net/rclone/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1752436837 -SHA256 (go/net_rclone/rclone-v1.70.3/v1.70.3.mod) = 0f533205ddb5dcadda6e80dacfac7ac144769c1e15fd10e90ba80f0a36347cd0 -SIZE (go/net_rclone/rclone-v1.70.3/v1.70.3.mod) = 12114 -SHA256 (go/net_rclone/rclone-v1.70.3/v1.70.3.zip) = 6e3813694bb603029a0365c9afc921feaae336687b809e71eaff0feb00c9a6f0 -SIZE (go/net_rclone/rclone-v1.70.3/v1.70.3.zip) = 18341022 +TIMESTAMP = 1756647362 +SHA256 (go/net_rclone/rclone-v1.71.0/v1.71.0.mod) = 472d64d43319a6860c629b89bf483cb602ffe479827b4d346f85a099faf9b79f +SIZE (go/net_rclone/rclone-v1.71.0/v1.71.0.mod) = 12214 +SHA256 (go/net_rclone/rclone-v1.71.0/v1.71.0.zip) = 1757594d45248aa3b026e26ba365025c85253594a192090c6fec6d818dc34652 +SIZE (go/net_rclone/rclone-v1.71.0/v1.71.0.zip) = 18508334 diff --git a/net/remmina/Makefile b/net/remmina/Makefile index 5ae957c025f6..121663a891bc 100644 --- a/net/remmina/Makefile +++ b/net/remmina/Makefile @@ -1,5 +1,6 @@ PORTNAME= remmina DISTVERSION= 1.4.41 +PORTREVISION= 1 CATEGORIES= net gnome MAINTAINER= fernape@FreeBSD.org diff --git a/net/rosenpass/Makefile b/net/rosenpass/Makefile index ad348d5c55bb..399d92807a72 100644 --- a/net/rosenpass/Makefile +++ b/net/rosenpass/Makefile @@ -1,7 +1,7 @@ PORTNAME= rosenpass DISTVERSIONPREFIX= v DISTVERSION= 0.2.2 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= net net-vpn security MAINTAINER= fuz@FreeBSD.org diff --git a/net/routinator/Makefile b/net/routinator/Makefile index f15afe506e23..6bd0273a6d7e 100644 --- a/net/routinator/Makefile +++ b/net/routinator/Makefile @@ -1,7 +1,7 @@ PORTNAME= routinator DISTVERSIONPREFIX= v DISTVERSION= 0.14.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net MAINTAINER= jaap@NLnetLabs.nl diff --git a/net/rsyn/Makefile b/net/rsyn/Makefile index a249cb459543..1a71de44913c 100644 --- a/net/rsyn/Makefile +++ b/net/rsyn/Makefile @@ -1,7 +1,7 @@ PORTNAME= rsyn DISTVERSIONPREFIX= v DISTVERSION= 0.0.1 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= net MAINTAINER= yuri@FreeBSD.org diff --git a/net/rubygem-oauth2-gitlab/Makefile b/net/rubygem-oauth2-gitlab/Makefile index 4e9738cdb039..1c49c854bd1a 100644 --- a/net/rubygem-oauth2-gitlab/Makefile +++ b/net/rubygem-oauth2-gitlab/Makefile @@ -1,5 +1,5 @@ PORTNAME= oauth2 -PORTVERSION= 2.0.12 +PORTVERSION= 2.0.13 CATEGORIES= net rubygems MASTER_SITES= RG PKGNAMESUFFIX= -gitlab @@ -17,7 +17,7 @@ RUN_DEPENDS= rubygem-faraday-gitlab>=0.17.3<4:www/rubygem-faraday-gitlab \ rubygem-multi_xml>=0.5<1:textproc/rubygem-multi_xml \ rubygem-rack>=1.2,3<4,3:www/rubygem-rack \ rubygem-snaky_hash>=2.0.3<3:devel/rubygem-snaky_hash \ - rubygem-version_gem>=1.1.8<3:devel/rubygem-version_gem + rubygem-version_gem>=1.1.8<2:devel/rubygem-version_gem USES= gem diff --git a/net/rubygem-oauth2-gitlab/distinfo b/net/rubygem-oauth2-gitlab/distinfo index 5f9c885d3e67..0db926047629 100644 --- a/net/rubygem-oauth2-gitlab/distinfo +++ b/net/rubygem-oauth2-gitlab/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1752212468 -SHA256 (rubygem/oauth2-2.0.12.gem) = f7edb8549c7912724d07087d808c3fa6756298fd64d55d4968324df69c64ab3f -SIZE (rubygem/oauth2-2.0.12.gem) = 57344 +TIMESTAMP = 1756619582 +SHA256 (rubygem/oauth2-2.0.13.gem) = e6588fe5902c07bac542a4a1197f558c319cb479b7fbe53f43f883b1a211be25 +SIZE (rubygem/oauth2-2.0.13.gem) = 70144 diff --git a/net/rustdesk-server/Makefile b/net/rustdesk-server/Makefile index 5bb6e5a2f87f..4528dffbad51 100644 --- a/net/rustdesk-server/Makefile +++ b/net/rustdesk-server/Makefile @@ -1,6 +1,6 @@ PORTNAME= rustdesk-server DISTVERSION= 1.1.14 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= net MAINTAINER= madpilot@FreeBSD.org diff --git a/net/s3m/Makefile b/net/s3m/Makefile index 4fbc0d77f776..366cc439f7ce 100644 --- a/net/s3m/Makefile +++ b/net/s3m/Makefile @@ -1,6 +1,6 @@ PORTNAME= s3m DISTVERSION= 0.13.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MAINTAINER= nbari@tequila.io diff --git a/net/samba416/Makefile b/net/samba416/Makefile index 0e4e23478edf..45eb0c63b280 100644 --- a/net/samba416/Makefile +++ b/net/samba416/Makefile @@ -459,10 +459,10 @@ SAMBA4_MODULES+= auth_skel pdb_test gpext_security gpext_registry \ .endif # Python bindings .if ! ${PORT_OPTIONS:MPYTHON3} || defined(NO_PYTHON) -USES+= python:build,test +USES+= python:build,test,-3.11 CONFIGURE_ARGS+= --disable-python .else -USES+= python +USES+= python:-3.11 PLIST+= ${PKGDIR}/pkg-plist.python # Don't cache Python modules CONFIGURE_ARGS+= --nopycache diff --git a/net/sendme/Makefile b/net/sendme/Makefile index 2345c8b657f5..7c5196bf8e91 100644 --- a/net/sendme/Makefile +++ b/net/sendme/Makefile @@ -1,7 +1,7 @@ PORTNAME= sendme DISTVERSIONPREFIX= v DISTVERSION= 0.26.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net MAINTAINER= feld@FreeBSD.org diff --git a/net/shadowsocks-rust/Makefile b/net/shadowsocks-rust/Makefile index e2933367456f..a73643d9c974 100644 --- a/net/shadowsocks-rust/Makefile +++ b/net/shadowsocks-rust/Makefile @@ -1,6 +1,7 @@ PORTNAME= shadowsocks-rust DISTVERSIONPREFIX= v DISTVERSION= 1.23.5 +PORTREVISION= 1 CATEGORIES= net MAINTAINER= yuri@FreeBSD.org diff --git a/net/smb4k/Makefile b/net/smb4k/Makefile index 3c5d3c7209d3..c2f81986362c 100644 --- a/net/smb4k/Makefile +++ b/net/smb4k/Makefile @@ -1,5 +1,5 @@ PORTNAME= smb4k -DISTVERSION= 4.0.0 +DISTVERSION= 4.0.4 CATEGORIES= net kde MASTER_SITES= SF/${PORTNAME}/${DISTVERSION} @@ -20,7 +20,7 @@ USES= cmake compiler:c++17-lang cpe gettext-tools gl kde:6 qt:6 \ CPE_VENDOR= ${PORTNAME}_project USE_GL= gl opengl # GLX USE_KDE= auth colorscheme completion config configwidgets coreaddons \ - crash dbusaddons dnssd i18n iconthemes jobwidgets kirigami2 \ + crash dbusaddons dnssd guiaddons i18n iconthemes jobwidgets kirigami2 \ kio libplasma notifications service solid statusnotifieritem \ wallet widgetsaddons windowsystem xmlgui \ doctools:build ecm:build diff --git a/net/smb4k/distinfo b/net/smb4k/distinfo index 0f51c4dd15c7..087f04c9d49d 100644 --- a/net/smb4k/distinfo +++ b/net/smb4k/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1740042845 -SHA256 (smb4k-4.0.0.tar.xz) = d7da661711c9bc565cc4c14713e3ea5916dca245fddfa00fa0441763985b1bae -SIZE (smb4k-4.0.0.tar.xz) = 4852924 +TIMESTAMP = 1756392828 +SHA256 (smb4k-4.0.4.tar.xz) = b7c3f69c80cea5dacaf667e96f68f4c4d99dd6f8eef2b90d7a9afea82fe2ca99 +SIZE (smb4k-4.0.4.tar.xz) = 4853384 diff --git a/net/sniffnet/Makefile b/net/sniffnet/Makefile index 6ff48566329a..46fb586bc934 100644 --- a/net/sniffnet/Makefile +++ b/net/sniffnet/Makefile @@ -1,7 +1,7 @@ PORTNAME= sniffnet DISTVERSIONPREFIX= v DISTVERSION= 1.4.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net wayland MAINTAINER= tagattie@FreeBSD.org diff --git a/net/syncthing/Makefile b/net/syncthing/Makefile index 43c24d6f1c61..e937cf5c0052 100644 --- a/net/syncthing/Makefile +++ b/net/syncthing/Makefile @@ -1,6 +1,6 @@ PORTNAME= syncthing DISTVERSIONPREFIX= v -DISTVERSION= 2.0.3 +DISTVERSION= 2.0.4 CATEGORIES= net MASTER_SITES= https://github.com/${PORTNAME}/${PORTNAME}/releases/download/v${DISTVERSION}/ DISTNAME= ${PORTNAME}-source-${DISTVERSIONFULL} diff --git a/net/syncthing/distinfo b/net/syncthing/distinfo index 3e49d99dd739..f5f8a7550544 100644 --- a/net/syncthing/distinfo +++ b/net/syncthing/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1756130379 -SHA256 (syncthing-source-v2.0.3.tar.gz) = 80ef0589c3949b2b48ae703106e4ce95474a111625923fb7d568f73c2537fe5d -SIZE (syncthing-source-v2.0.3.tar.gz) = 62648435 +TIMESTAMP = 1756812263 +SHA256 (syncthing-source-v2.0.4.tar.gz) = abbeb75446e4b4817b7cd6c0d95e391cc7272214dd8df145b770c3f4c3e373a4 +SIZE (syncthing-source-v2.0.4.tar.gz) = 62659508 diff --git a/net/trippy/Makefile b/net/trippy/Makefile index ed4c5c0b1863..1e0049870491 100644 --- a/net/trippy/Makefile +++ b/net/trippy/Makefile @@ -1,6 +1,6 @@ PORTNAME= trippy DISTVERSION= 0.13.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net MAINTAINER= ehaupt@FreeBSD.org diff --git a/net/udp-over-tcp/Makefile b/net/udp-over-tcp/Makefile index 7efa3225d5d1..93b21953f7c2 100644 --- a/net/udp-over-tcp/Makefile +++ b/net/udp-over-tcp/Makefile @@ -1,7 +1,7 @@ PORTNAME= udp-over-tcp DISTVERSIONPREFIX= v DISTVERSION= 0.4.0 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= net MAINTAINER= yuri@FreeBSD.org diff --git a/net/waypipe/Makefile b/net/waypipe/Makefile index b06d98f87270..c730c2473256 100644 --- a/net/waypipe/Makefile +++ b/net/waypipe/Makefile @@ -1,7 +1,7 @@ PORTNAME= waypipe DISTVERSIONPREFIX= v DISTVERSION= 0.10.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net wayland MAINTAINER= jbeich@FreeBSD.org diff --git a/net/wireshark/Makefile b/net/wireshark/Makefile index e01de4ec435d..51adca1c2ed7 100644 --- a/net/wireshark/Makefile +++ b/net/wireshark/Makefile @@ -1,5 +1,5 @@ PORTNAME= wireshark -DISTVERSION= 4.4.8 +DISTVERSION= 4.4.9 CATEGORIES= net MASTER_SITES= https://1.na.dl.wireshark.org/src/ \ https://1.eu.dl.wireshark.org/src/ \ diff --git a/net/wireshark/distinfo b/net/wireshark/distinfo index 1012e5bafab1..63c7383c4e8e 100644 --- a/net/wireshark/distinfo +++ b/net/wireshark/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1752738718 -SHA256 (wireshark-4.4.8.tar.xz) = dd648c5c5994843205cd73e57d6673f6f4e12718e1c558c674cb8bdafeacde47 -SIZE (wireshark-4.4.8.tar.xz) = 46826268 +TIMESTAMP = 1756661568 +SHA256 (wireshark-4.4.9.tar.xz) = 60551dc787f41e87aeaa1e9c33304f9008037e3baf9fa11aef9c2d584cc0b54b +SIZE (wireshark-4.4.9.tar.xz) = 46830008 diff --git a/net/wireshark/pkg-plist b/net/wireshark/pkg-plist index 48e72a8b5b97..00a44aad39ad 100644 --- a/net/wireshark/pkg-plist +++ b/net/wireshark/pkg-plist @@ -682,10 +682,10 @@ bin/tshark %%DEVELOPMENT%%lib/cmake/wireshark/WiresharkTargets.cmake lib/libwireshark.so lib/libwireshark.so.18 -lib/libwireshark.so.18.0.8 +lib/libwireshark.so.18.0.9 lib/libwiretap.so lib/libwiretap.so.15 -lib/libwiretap.so.15.0.8 +lib/libwiretap.so.15.0.9 lib/libwsutil.so lib/libwsutil.so.16 lib/libwsutil.so.16.0.0 diff --git a/net/wstunnel/Makefile b/net/wstunnel/Makefile index 7f422ae463b7..23bcb4205ce7 100644 --- a/net/wstunnel/Makefile +++ b/net/wstunnel/Makefile @@ -1,7 +1,7 @@ PORTNAME= wstunnel DISTVERSIONPREFIX= v DISTVERSION= 10.1.8 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= net MAINTAINER= yuri@FreeBSD.org |