From owner-svn-ports-all@freebsd.org Fri Apr 3 12:51:36 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 8B7192A1C80; Fri, 3 Apr 2020 12:51:36 +0000 (UTC) (envelope-from dmgk@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 48v0Dk4SmSz3HgX; Fri, 3 Apr 2020 12:51:34 +0000 (UTC) (envelope-from dmgk@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 AF8274A8B; Fri, 3 Apr 2020 12:51:25 +0000 (UTC) (envelope-from dmgk@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 033CpPgL060102; Fri, 3 Apr 2020 12:51:25 GMT (envelope-from dmgk@FreeBSD.org) Received: (from dmgk@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 033CpPmD060101; Fri, 3 Apr 2020 12:51:25 GMT (envelope-from dmgk@FreeBSD.org) Message-Id: <202004031251.033CpPmD060101@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dmgk set sender to dmgk@FreeBSD.org using -f From: Dmitri Goutnik Date: Fri, 3 Apr 2020 12:51:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r530488 - in branches/2020Q2/lang/go: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: dmgk X-SVN-Commit-Paths: in branches/2020Q2/lang/go: . files X-SVN-Commit-Revision: 530488 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: Fri, 03 Apr 2020 12:51:36 -0000 Author: dmgk Date: Fri Apr 3 12:51:25 2020 New Revision: 530488 URL: https://svnweb.freebsd.org/changeset/ports/530488 Log: MFH: r530387 lang/go: relax module consistency checks if vendor/modules.txt is missing Starting from go1.14, go verifies that vendor/modules.txt matches the requirements and replacements listed in the main module go.mod file, and it is a hard failure if vendor/modules.txt is missing. Relax module consistency checks and switch back to pre go1.14 behaviour if vendor/modules.txt is missing and GO_NO_VENDOR_CHECKS=1 is set in the environment regardless of go version requirement in go.mod. Upstream PR: https://github.com/golang/go/issues/37948 PR: 244783 Reported by: Christopher Hall Reviewed by: mikael swills yuri Approved by: jlaffaye (maintainer timeout, 2 weeks) Differential Revision: https://reviews.freebsd.org/D24122 Approved by: ports-secteam (joneum) Added: branches/2020Q2/lang/go/files/ - copied from r530387, head/lang/go/files/ Modified: branches/2020Q2/lang/go/Makefile Directory Properties: branches/2020Q2/ (props changed) Modified: branches/2020Q2/lang/go/Makefile ============================================================================== --- branches/2020Q2/lang/go/Makefile Fri Apr 3 12:47:02 2020 (r530487) +++ branches/2020Q2/lang/go/Makefile Fri Apr 3 12:51:25 2020 (r530488) @@ -3,6 +3,7 @@ PORTNAME= go PORTVERSION= 1.14.1 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= lang MASTER_SITES= https://golang.org/dl/ \