Received: by mail.netbsd.org (Postfix, from userid 605) id 1457884D41; Wed, 19 Apr 2023 13:22:34 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4403484CFC for ; Wed, 19 Apr 2023 13:22:33 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id tCBosynIgk2U for ; Wed, 19 Apr 2023 13:22:32 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id CA30D84CF2 for ; Wed, 19 Apr 2023 13:22:32 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C3992FA85; Wed, 19 Apr 2023 13:22:32 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1681910552269870" MIME-Version: 1.0 Date: Wed, 19 Apr 2023 13:22:32 +0000 From: "Nikita" Subject: CVS commit: pkgsrc/lang/goplus To: pkgsrc-changes@NetBSD.org Reply-To: nikita@netbsd.org X-Mailer: log_accum Message-Id: <20230419132232.C3992FA85@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1681910552269870 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nikita Date: Wed Apr 19 13:22:32 UTC 2023 Modified Files: pkgsrc/lang/goplus: Makefile Log Message: goplus: fix, stdlib still appears to be missing To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/lang/goplus/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1681910552269870 Content-Disposition: inline Content-Length: 689 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/goplus/Makefile diff -u pkgsrc/lang/goplus/Makefile:1.2 pkgsrc/lang/goplus/Makefile:1.3 --- pkgsrc/lang/goplus/Makefile:1.2 Wed Apr 19 13:19:51 2023 +++ pkgsrc/lang/goplus/Makefile Wed Apr 19 13:22:32 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2023/04/19 13:19:51 nikita Exp $ +# $NetBSD: Makefile,v 1.3 2023/04/19 13:22:32 nikita Exp $ DISTNAME= goplus-1.1.3 MASTER_SITES= ${MASTER_SITE_GITHUB:=goplus/} @@ -13,7 +13,7 @@ LICENSE= apache-2.0 USE_TOOLS+= bash:run # https://github.com/goplus/gop/issues/1350 -DEPENDS+= go120-[0-9]*:../../lang/go119 +GO_VERSION_DEFAULT= 119 # cgo compiles under TMPDIR .include "../../mk/bsd.prefs.mk" --_----------=_1681910552269870--