From owner-svn-ports-all@freebsd.org Wed Jul 8 14:03:51 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 63B0D363D64; Wed, 8 Jul 2020 14:03:51 +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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 4B21Hq1mCyz46sC; Wed, 8 Jul 2020 14:03:51 +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 2043D21720; Wed, 8 Jul 2020 14:03:51 +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 068E3pNe075847; Wed, 8 Jul 2020 14:03:51 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 068E3oIF075845; Wed, 8 Jul 2020 14:03:50 GMT (envelope-from swills@FreeBSD.org) Message-Id: <202007081403.068E3oIF075845@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Wed, 8 Jul 2020 14:03:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r541493 - 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: 541493 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.33 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: Wed, 08 Jul 2020 14:03:51 -0000 Author: swills Date: Wed Jul 8 14:03:50 2020 New Revision: 541493 URL: https://svnweb.freebsd.org/changeset/ports/541493 Log: net/syncthing: update to 1.6.1 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 Wed Jul 8 14:01:16 2020 (r541492) +++ head/net/syncthing/Makefile Wed Jul 8 14:03:50 2020 (r541493) @@ -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}/ Modified: head/net/syncthing/distinfo ============================================================================== --- head/net/syncthing/distinfo Wed Jul 8 14:01:16 2020 (r541492) +++ head/net/syncthing/distinfo Wed Jul 8 14:03:50 2020 (r541493) @@ -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 Modified: head/net/syncthing/files/patch-syncthing_build.go ============================================================================== --- head/net/syncthing/files/patch-syncthing_build.go Wed Jul 8 14:01:16 2020 (r541492) +++ head/net/syncthing/files/patch-syncthing_build.go Wed Jul 8 14:03:50 2020 (r541493) @@ -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...) + }