From owner-svn-ports-all@freebsd.org Thu Feb 6 15:23:28 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 619FC22E758; Thu, 6 Feb 2020 15:23:28 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48D2JJ1vl0z48VH; Thu, 6 Feb 2020 15:23:28 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3C96F1DA5D; Thu, 6 Feb 2020 15:23:28 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 016FNSCh092315; Thu, 6 Feb 2020 15:23:28 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 016FNRGe092313; Thu, 6 Feb 2020 15:23:27 GMT (envelope-from swills@FreeBSD.org) Message-Id: <202002061523.016FNRGe092313@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 6 Feb 2020 15:23:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r525380 - in head/net/syncthing: . files X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/net/syncthing: . files X-SVN-Commit-Revision: 525380 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Feb 2020 15:23:28 -0000 Author: swills Date: Thu Feb 6 15:23:27 2020 New Revision: 525380 URL: https://svnweb.freebsd.org/changeset/ports/525380 Log: net/syncthing: udpate to 1.3.4 Modified: head/net/syncthing/Makefile (contents, props changed) head/net/syncthing/distinfo (contents, props changed) head/net/syncthing/files/patch-syncthing_build.go (contents, props changed) Modified: head/net/syncthing/Makefile ============================================================================== --- head/net/syncthing/Makefile Thu Feb 6 15:22:57 2020 (r525379) +++ head/net/syncthing/Makefile Thu Feb 6 15:23:27 2020 (r525380) @@ -1,7 +1,7 @@ # $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}/ Modified: head/net/syncthing/distinfo ============================================================================== --- head/net/syncthing/distinfo Thu Feb 6 15:22:57 2020 (r525379) +++ head/net/syncthing/distinfo Thu Feb 6 15:23:27 2020 (r525380) @@ -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 Modified: head/net/syncthing/files/patch-syncthing_build.go ============================================================================== --- head/net/syncthing/files/patch-syncthing_build.go Thu Feb 6 15:22:57 2020 (r525379) +++ head/net/syncthing/files/patch-syncthing_build.go Thu Feb 6 15:23:27 2020 (r525380) @@ -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...)