Received: by mail.netbsd.org (Postfix, from userid 605) id BD69884D37; Mon, 27 Feb 2023 13:52:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id ECB8D84D35 for ; Mon, 27 Feb 2023 13:52:03 +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 Yfkwox7WNhT7 for ; Mon, 27 Feb 2023 13:52:03 +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 7FED284D22 for ; Mon, 27 Feb 2023 13:52:03 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 73A7EFA90; Mon, 27 Feb 2023 13:52:03 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1677505923267620" MIME-Version: 1.0 Date: Mon, 27 Feb 2023 13:52:03 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/lang/nodejs To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20230227135203.73A7EFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1677505923267620 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Mon Feb 27 13:52:03 UTC 2023 Modified Files: pkgsrc/lang/nodejs: Makefile Log Message: lang/nodejs: Require GCC 8 GCC 7 fails due to , even if gcc's page says 7 supports C++17. (Build tested on netbsd-9 amd64.) To generate a diff of this commit: cvs rdiff -u -r1.254 -r1.255 pkgsrc/lang/nodejs/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1677505923267620 Content-Disposition: inline Content-Length: 545 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/nodejs/Makefile diff -u pkgsrc/lang/nodejs/Makefile:1.254 pkgsrc/lang/nodejs/Makefile:1.255 --- pkgsrc/lang/nodejs/Makefile:1.254 Thu Feb 23 07:55:49 2023 +++ pkgsrc/lang/nodejs/Makefile Mon Feb 27 13:52:03 2023 @@ -1,9 +1,10 @@ -# $NetBSD: Makefile,v 1.254 2023/02/23 07:55:49 adam Exp $ +# $NetBSD: Makefile,v 1.255 2023/02/27 13:52:03 gdt Exp $ DISTNAME= node-v19.7.0 EXTRACT_SUFX= .tar.xz USE_LANGUAGES= c gnu++17 +GCC_REQD+= 8 BUILD_DEPENDS+= ${PYPKGPREFIX}-expat>=0:../../textproc/py-expat --_----------=_1677505923267620--