Received: by mail.netbsd.org (Postfix, from userid 605) id 84B0384DEE; Fri, 19 Oct 2018 16:50:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 86BB884DEA for ; Fri, 19 Oct 2018 16:49:59 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id T_pVefDhKMTM for ; Fri, 19 Oct 2018 16:49:59 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id B830384CD9 for ; Fri, 19 Oct 2018 16:49:58 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B1C10FBEE; Fri, 19 Oct 2018 16:49:58 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_153996779823300" MIME-Version: 1.0 Date: Fri, 19 Oct 2018 16:49:58 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/sysutils/beats To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20181019164958.B1C10FBEE@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_153996779823300 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Fri Oct 19 16:49:58 UTC 2018 Modified Files: pkgsrc/sysutils/beats: Makefile Log Message: beats: Create a go tool pointing to the appropriate version. This should be moved to the go infrastructure if it turns out there are more packages that call "go" directly in their build. To generate a diff of this commit: cvs rdiff -u -r1.30 -r1.31 pkgsrc/sysutils/beats/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_153996779823300 Content-Disposition: inline Content-Length: 672 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/beats/Makefile diff -u pkgsrc/sysutils/beats/Makefile:1.30 pkgsrc/sysutils/beats/Makefile:1.31 --- pkgsrc/sysutils/beats/Makefile:1.30 Tue Jun 12 17:50:27 2018 +++ pkgsrc/sysutils/beats/Makefile Fri Oct 19 16:49:58 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.30 2018/06/12 17:50:27 bsiegert Exp $ +# $NetBSD: Makefile,v 1.31 2018/10/19 16:49:58 jperkin Exp $ DISTNAME= beats-6.2.4 PKGREVISION= 1 @@ -18,6 +18,9 @@ USE_TOOLS+= gmake GO_DIST_BASE= ${PKGBASE}-${GITHUB_TAG:S/v//} GO_SRCPATH= github.com/elastic/beats +TOOLS_CREATE+= go +TOOLS_PATH.go= ${GO} + .include "../../mk/bsd.prefs.mk" PLIST_VARS+= audit --_----------=_153996779823300--