Received: by mail.netbsd.org (Postfix, from userid 605) id ED7AB84D7C; Thu, 24 May 2018 06:29:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 790C084D6F for ; Thu, 24 May 2018 06:29:35 +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 RfRnrUkC6b-0 for ; Thu, 24 May 2018 06:29:35 +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 F003984CDA for ; Thu, 24 May 2018 06:29:34 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EB256FBEC; Thu, 24 May 2018 06:29:34 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1527143374113840" MIME-Version: 1.0 Date: Thu, 24 May 2018 06:29:34 +0000 From: "Filip Hajny" Subject: CVS commit: pkgsrc/lang/nodejs To: pkgsrc-changes@NetBSD.org Reply-To: fhajny@netbsd.org X-Mailer: log_accum Message-Id: <20180524062934.EB256FBEC@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. --_----------=_1527143374113840 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: fhajny Date: Thu May 24 06:29:34 UTC 2018 Modified Files: pkgsrc/lang/nodejs: Makefile distinfo Log Message: lang/nodejs: Update to 10.2.0. - addons: - Fixed a memory leak for users of `AsyncResource` and N-API. - assert: - The `error` parameter of `assert.throws()` can be an object containing regular expressions now. - crypto: - The `authTagLength` option has been made more flexible. - esm: - Builtin modules (e.g. `fs`) now provide named exports in ES6 modules. - http: - Handling of `close` and `aborted` events has been made more consistent. - module: - add --preserve-symlinks-main - timers: - `timeout.refresh()` has been added to the public API. - Embedder support: - Functions for creating V8 `Isolate` and `Context` objects with Node.js-specific behaviour have been added to the API. - Node.js `Environment`s clean up resources before exiting now. - Support for multi-threaded embedding has been improved. To generate a diff of this commit: cvs rdiff -u -r1.130 -r1.131 pkgsrc/lang/nodejs/Makefile cvs rdiff -u -r1.123 -r1.124 pkgsrc/lang/nodejs/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1527143374113840 Content-Disposition: inline Content-Length: 1782 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.130 pkgsrc/lang/nodejs/Makefile:1.131 --- pkgsrc/lang/nodejs/Makefile:1.130 Sat May 12 09:24:00 2018 +++ pkgsrc/lang/nodejs/Makefile Thu May 24 06:29:34 2018 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.130 2018/05/12 09:24:00 fhajny Exp $ +# $NetBSD: Makefile,v 1.131 2018/05/24 06:29:34 fhajny Exp $ -DISTNAME= node-v10.1.0 +DISTNAME= node-v10.2.0 USE_LANGUAGES= c gnu++14 Index: pkgsrc/lang/nodejs/distinfo diff -u pkgsrc/lang/nodejs/distinfo:1.123 pkgsrc/lang/nodejs/distinfo:1.124 --- pkgsrc/lang/nodejs/distinfo:1.123 Sat May 12 09:24:00 2018 +++ pkgsrc/lang/nodejs/distinfo Thu May 24 06:29:34 2018 @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.123 2018/05/12 09:24:00 fhajny Exp $ +$NetBSD: distinfo,v 1.124 2018/05/24 06:29:34 fhajny Exp $ -SHA1 (node-v10.1.0.tar.gz) = 8b9a889ce6fbcb58a035208896b9578466ecae81 -RMD160 (node-v10.1.0.tar.gz) = 16aed55e6257c5406f19cdd16a0727ca0e48cf3a -SHA512 (node-v10.1.0.tar.gz) = 89296dd7c76f040a7ecc8276fee107453094589cc478f1b3ff4ebafccc5d2b1bc61f31ef4e226b98197b7772f0a4e56085bd400d289f5a9a40c6b67ed5d943ec -Size (node-v10.1.0.tar.gz) = 35715815 bytes +SHA1 (node-v10.2.0.tar.gz) = e0943f1b538c9fe66bf05deadb4b187b52bd7e90 +RMD160 (node-v10.2.0.tar.gz) = 7db20f44339e530f7f610baec1002335c70eb104 +SHA512 (node-v10.2.0.tar.gz) = 63bcdeeb1125e9f243ef78bc5e70fa928d1f5da6fb49023f1f2cdaf20386cc8af11580069b3eb96244a60a8083c56cdc53b8562142061e3fe3586d66ee499e1d +Size (node-v10.2.0.tar.gz) = 35756829 bytes SHA1 (patch-common.gypi) = de37949f38d9bd39a18b59d59ec74e528bd323ac SHA1 (patch-deps_cares_cares.gyp) = 2235eb44bc984fa2e745fdf1786f1ae6de6ef80f SHA1 (patch-deps_openssl_config_opensslconf__asm.h) = 7b074ebd5353dff662ac66cf4012926f12dd7b7e --_----------=_1527143374113840--