git: 565776aa8463 - main - net/syncthing: Update to 2.0.14
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 03 Feb 2026 16:45:29 UTC
The branch main has been updated by dvl:
URL: https://cgit.FreeBSD.org/ports/commit/?id=565776aa84634ae563e9c6a2b9a426d7a69a27be
commit 565776aa84634ae563e9c6a2b9a426d7a69a27be
Author: Dan Langille <dvl@FreeBSD.org>
AuthorDate: 2026-02-03 16:44:34 +0000
Commit: Dan Langille <dvl@FreeBSD.org>
CommitDate: 2026-02-03 16:45:24 +0000
net/syncthing: Update to 2.0.14
re: https://github.com/syncthing/syncthing/releases/tag/v2.0.14
The patch being removed by this commit is now in the upstream code.
---
net/syncthing/Makefile | 2 +-
net/syncthing/distinfo | 6 +++---
net/syncthing/files/patch-syncthing_lib_beacon_multicast.go | 11 -----------
3 files changed, 4 insertions(+), 15 deletions(-)
diff --git a/net/syncthing/Makefile b/net/syncthing/Makefile
index 5b8f8be23b4e..f726b5f9af4d 100644
--- a/net/syncthing/Makefile
+++ b/net/syncthing/Makefile
@@ -1,6 +1,6 @@
PORTNAME= syncthing
DISTVERSIONPREFIX= v
-DISTVERSION= 2.0.13
+DISTVERSION= 2.0.14
PORTREVISION= 1
CATEGORIES= net
MASTER_SITES= https://github.com/${PORTNAME}/${PORTNAME}/releases/download/v${DISTVERSION}/
diff --git a/net/syncthing/distinfo b/net/syncthing/distinfo
index 767632fac899..3ad19656eaa7 100644
--- a/net/syncthing/distinfo
+++ b/net/syncthing/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1767704310
-SHA256 (syncthing-source-v2.0.13.tar.gz) = fd7c93e01a6d61faa84adda8b22479dd7fd106144fbbb2eb15d773707d8a382e
-SIZE (syncthing-source-v2.0.13.tar.gz) = 62623134
+TIMESTAMP = 1770135110
+SHA256 (syncthing-source-v2.0.14.tar.gz) = fec36ce20bbcd6e6d1cb70cfb0af7a45c6221581361d9bb92807389b24703a02
+SIZE (syncthing-source-v2.0.14.tar.gz) = 62621377
diff --git a/net/syncthing/files/patch-syncthing_lib_beacon_multicast.go b/net/syncthing/files/patch-syncthing_lib_beacon_multicast.go
deleted file mode 100644
index d44b72e8e104..000000000000
--- a/net/syncthing/files/patch-syncthing_lib_beacon_multicast.go
+++ /dev/null
@@ -1,11 +0,0 @@
---- syncthing/lib/beacon/multicast.go.orig 2026-01-06 13:20:06 UTC
-+++ syncthing/lib/beacon/multicast.go
-@@ -129,7 +129,7 @@ func readMulticasts(ctx context.Context, outbox chan<-
- pconn := ipv6.NewPacketConn(conn)
- joined := 0
- for _, intf := range intfs {
-- if intf.Flags&net.FlagMulticast == 0 {
-+ if intf.Flags&net.FlagUp == 0 || intf.Flags&net.FlagMulticast == 0 || intf.Name == "ipfw0" {
- slog.DebugContext(ctx, "Not joining multicast group on non-multicast interface", "name", intf.Name, slog.String("flags", intf.Flags.String()))
- continue
- }