Received: by mail.netbsd.org (Postfix, from userid 605) id 8CAC884D9D; Thu, 31 Jan 2019 13:38:50 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id F077E84D9A for ; Thu, 31 Jan 2019 13:38:49 +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 mdBzOyTOzVz9 for ; Thu, 31 Jan 2019 13:38:49 +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 70A1A84D6F for ; Thu, 31 Jan 2019 13:38:49 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6174FFB16; Thu, 31 Jan 2019 13:38:49 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1548941929194420" MIME-Version: 1.0 Date: Thu, 31 Jan 2019 13:38:49 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/lang/nodejs To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20190131133849.6174FFB16@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. --_----------=_1548941929194420 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Thu Jan 31 13:38:49 UTC 2019 Modified Files: pkgsrc/lang/nodejs: Makefile buildlink3.mk Log Message: nodejs: Require http-parser>=2.9.0. ok leot To generate a diff of this commit: cvs rdiff -u -r1.153 -r1.154 pkgsrc/lang/nodejs/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/lang/nodejs/buildlink3.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1548941929194420 Content-Disposition: inline Content-Length: 1758 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.153 pkgsrc/lang/nodejs/Makefile:1.154 --- pkgsrc/lang/nodejs/Makefile:1.153 Thu Jan 31 08:46:37 2019 +++ pkgsrc/lang/nodejs/Makefile Thu Jan 31 13:38:49 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.153 2019/01/31 08:46:37 adam Exp $ +# $NetBSD: Makefile,v 1.154 2019/01/31 13:38:49 nia Exp $ DISTNAME= node-v10.15.1 @@ -10,6 +10,9 @@ GCC_REQD+= 4.9.4 # Stated by the changelog BUILDLINK_API_DEPENDS.libuv+= libuv>=1.23 +# Requires http_parser_set_max_header_size +BUILDLINK_API_DEPENDS.http-parser+= http-parser>=2.9.0 + .include "../../mk/bsd.prefs.mk" # XXX: figure out a way to add rpaths to torque Index: pkgsrc/lang/nodejs/buildlink3.mk diff -u pkgsrc/lang/nodejs/buildlink3.mk:1.4 pkgsrc/lang/nodejs/buildlink3.mk:1.5 --- pkgsrc/lang/nodejs/buildlink3.mk:1.4 Wed Nov 28 08:36:04 2018 +++ pkgsrc/lang/nodejs/buildlink3.mk Thu Jan 31 13:38:49 2019 @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.4 2018/11/28 08:36:04 adam Exp $ +# $NetBSD: buildlink3.mk,v 1.5 2019/01/31 13:38:49 nia Exp $ BUILDLINK_TREE+= nodejs @@ -14,10 +14,14 @@ BUILDLINK_PKGSRCDIR.nodejs?= ../../lang/ .if ${OPSYS} != "Darwin" .include "../../devel/libexecinfo/buildlink3.mk" .endif +# Stated by the changelog +BUILDLINK_API_DEPENDS.libuv+= libuv>=1.23 .include "../../devel/libuv/buildlink3.mk" .include "../../devel/zlib/buildlink3.mk" .include "../../net/libcares/buildlink3.mk" .include "../../textproc/icu/buildlink3.mk" +# Requires http_parser_set_max_header_size +BUILDLINK_API_DEPENDS.http-parser+= http-parser>=2.9.0 .include "../../www/http-parser/buildlink3.mk" # Uncomment when we switch to openssl>=1.1 # .include "../../www/nghttp2/buildlink3.mk" --_----------=_1548941929194420--