Index: syncthing/Makefile =================================================================== --- syncthing/Makefile +++ syncthing/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= syncthing -PORTVERSION= 1.4.0 +PORTVERSION= 1.6.1 DISTVERSIONPREFIX= v CATEGORIES= net MASTER_SITES= https://github.com/syncthing/syncthing/releases/download/v${PORTVERSION}/ Index: syncthing/distinfo =================================================================== --- syncthing/distinfo +++ syncthing/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1585322339 -SHA256 (syncthing-source-v1.4.0.tar.gz) = 0c45955445752dac43d56bc321fae2140b5b05ad6d41a574ed37813607493edd -SIZE (syncthing-source-v1.4.0.tar.gz) = 10432971 +TIMESTAMP = 1594059270 +SHA256 (syncthing-source-v1.6.1.tar.gz) = f42518d453f7475022b5632420f21a6e0ab8d77f19c29b65ad582bc98e00a0a5 +SIZE (syncthing-source-v1.6.1.tar.gz) = 10825929 Index: syncthing/files/patch-syncthing_build.go =================================================================== --- syncthing/files/patch-syncthing_build.go +++ syncthing/files/patch-syncthing_build.go @@ -1,11 +1,11 @@ ---- syncthing/build.go.orig 2020-02-05 04:20:26 UTC +--- syncthing/build.go.orig 2020-06-02 09:38:39 UTC +++ syncthing/build.go -@@ -443,7 +443,7 @@ func build(target target, tags []string) { +@@ -404,7 +404,7 @@ + defer shouldCleanupSyso(sysoPath) } - for _, pkg := range target.buildPkgs { -- args := []string{"build", "-v"} -+ args := []string{"build"} - args = appendParameters(args, tags, pkg) - - runPrint(goCmd, args...) +- args := []string{"install", "-v"} ++ args := []string{"install"} + args = appendParameters(args, tags, target.buildPkgs...) + runPrint(goCmd, args...) + }