Index: head/net/syncthing/Makefile =================================================================== --- head/net/syncthing/Makefile (revision 525379) +++ head/net/syncthing/Makefile (revision 525380) @@ -1,54 +1,54 @@ # $FreeBSD$ PORTNAME= syncthing -PORTVERSION= 1.3.0 +PORTVERSION= 1.3.4 DISTVERSIONPREFIX= v CATEGORIES= net MASTER_SITES= https://github.com/syncthing/syncthing/releases/download/v${PORTVERSION}/ DISTNAME= ${PORTNAME}-source-${DISTVERSIONPREFIX}${PORTVERSION} MAINTAINER= swills@FreeBSD.org COMMENT= Encrypted file sync tool LICENSE= MPL20 LICENSE_FILE= ${WRKSRC}/${PORTNAME}/LICENSE USES= go USE_RC_SUBR= syncthing syncthing-discosrv syncthing-relaysrv syncthing-relaypoolsrv BINS= syncthing stdiscosrv strelaysrv strelaypoolsrv .for x in ${BINS} PLIST_FILES+= bin/${x} .endfor PORTDOCS= * USERS= syncthing GROUPS= syncthing OPTIONS_DEFINE= DOCS NO_WRKSUBDIR= yes do-build: @( cd ${WRKSRC}/${PORTNAME} ; \ ${SETENV} ${MAKE_ENV} CGO_ENABLED=0 GOFLAGS="-mod=vendor" go run build.go -version v${PORTVERSION} -no-upgrade build ; \ ${SETENV} ${MAKE_ENV} CGO_ENABLED=0 GOFLAGS="-mod=vendor" go run build.go -version v${PORTVERSION} -no-upgrade build stdiscosrv ; \ ${SETENV} ${MAKE_ENV} CGO_ENABLED=0 GOFLAGS="-mod=vendor" go run build.go -version v${PORTVERSION} -no-upgrade build strelaysrv ; \ ${SETENV} ${MAKE_ENV} CGO_ENABLED=0 GOFLAGS="-mod=vendor" go run build.go -version v${PORTVERSION} -no-upgrade build strelaypoolsrv ; \ ) do-install: .for x in ${BINS} ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}/${x} \ ${STAGEDIR}${PREFIX}/bin/ .endfor ${MKDIR} ${STAGEDIR}${DOCSDIR} .for x in AUTHORS LICENSE README.md ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}/${x} \ ${STAGEDIR}${DOCSDIR} .endfor .include Index: head/net/syncthing/distinfo =================================================================== --- head/net/syncthing/distinfo (revision 525379) +++ head/net/syncthing/distinfo (revision 525380) @@ -1,3 +1,3 @@ -TIMESTAMP = 1569934504 -SHA256 (syncthing-source-v1.3.0.tar.gz) = 684c4700b6f51d4fc89b422fbc3f26cae703df4649e74e20783c2d0cf845538e -SIZE (syncthing-source-v1.3.0.tar.gz) = 10250741 +TIMESTAMP = 1580876221 +SHA256 (syncthing-source-v1.3.4.tar.gz) = e40227f67b4317419900353be3f49f381ed36e41044df5d168b850f6b183ae08 +SIZE (syncthing-source-v1.3.4.tar.gz) = 10405731 Index: head/net/syncthing/files/patch-syncthing_build.go =================================================================== --- head/net/syncthing/files/patch-syncthing_build.go (revision 525379) +++ head/net/syncthing/files/patch-syncthing_build.go (revision 525380) @@ -1,11 +1,11 @@ ---- syncthing/build.go.orig 2019-04-04 16:46:36 UTC +--- syncthing/build.go.orig 2020-02-05 04:20:26 UTC +++ syncthing/build.go -@@ -398,7 +398,7 @@ func build(target target, tags []string) { +@@ -443,7 +443,7 @@ func build(target target, tags []string) { + } - rmr(target.BinaryName()) + for _, pkg := range target.buildPkgs { +- args := []string{"build", "-v"} ++ args := []string{"build"} + args = appendParameters(args, tags, pkg) -- args := []string{"build", "-v"} -+ args := []string{"build"} - args = appendParameters(args, tags, target) - - os.Setenv("GOOS", goos) + runPrint(goCmd, args...)