Received: by mail.netbsd.org (Postfix, from userid 605) id 0213184EB1; Mon, 27 Feb 2023 20:35:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 323EE84E9B for ; Mon, 27 Feb 2023 20:35:36 +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 RtWmkLJvyYVE for ; Mon, 27 Feb 2023 20:35:35 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 84F8A84CFC for ; Mon, 27 Feb 2023 20:35:35 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7E854FA90; Mon, 27 Feb 2023 20:35:35 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1677530135166220" MIME-Version: 1.0 Date: Mon, 27 Feb 2023 20:35:35 +0000 From: "Benny Siegert" Subject: CVS commit: pkgsrc/security/osv-scanner To: pkgsrc-changes@NetBSD.org Reply-To: bsiegert@netbsd.org X-Mailer: log_accum Message-Id: <20230227203535.7E854FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1677530135166220 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: bsiegert Date: Mon Feb 27 20:35:35 UTC 2023 Modified Files: pkgsrc/security/osv-scanner: Makefile Log Message: osv-scanner: allow use of the C compiler With Go 1.20, some code now needs to compile some cgo code that didn't in older versions. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/security/osv-scanner/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1677530135166220 Content-Disposition: inline Content-Length: 732 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/osv-scanner/Makefile diff -u pkgsrc/security/osv-scanner/Makefile:1.4 pkgsrc/security/osv-scanner/Makefile:1.5 --- pkgsrc/security/osv-scanner/Makefile:1.4 Thu Feb 16 15:02:00 2023 +++ pkgsrc/security/osv-scanner/Makefile Mon Feb 27 20:35:35 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2023/02/16 15:02:00 bsiegert Exp $ +# $NetBSD: Makefile,v 1.5 2023/02/27 20:35:35 bsiegert Exp $ DISTNAME= osv-scanner-1.0.1 PKGREVISION= 2 @@ -11,7 +11,7 @@ HOMEPAGE= https://github.com/google/osv- COMMENT= Vulnerability scanner written using the OSV project LICENSE= apache-2.0 -USE_LANGUAGES= # none +USE_LANGUAGES= c # go .include "go-modules.mk" .include "../../lang/go/go-module.mk" --_----------=_1677530135166220--