From debbugs-submit-bounces@debbugs.gnu.org Sun Dec 24 17:07:05 2017 Received: (at submit) by debbugs.gnu.org; 24 Dec 2017 22:07:05 +0000 Received: from localhost ([127.0.0.1]:50999 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eTEQD-0001yh-BT for submit@debbugs.gnu.org; Sun, 24 Dec 2017 17:07:05 -0500 Received: from eggs.gnu.org ([208.118.235.92]:50235) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eTEQ9-0001y8-OV for submit@debbugs.gnu.org; Sun, 24 Dec 2017 17:07:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eTEQ2-0000ll-Sa for submit@debbugs.gnu.org; Sun, 24 Dec 2017 17:06:56 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:43897) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eTEQ2-0000la-Of for submit@debbugs.gnu.org; Sun, 24 Dec 2017 17:06:54 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41164) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eTEQ0-0006p3-MF for guix-patches@gnu.org; Sun, 24 Dec 2017 17:06:54 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eTEPx-0000ip-23 for guix-patches@gnu.org; Sun, 24 Dec 2017 17:06:52 -0500 Received: from mail.fsfe.org ([2001:aa8:ffed::3:102]:53654) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eTEPw-0000hC-Jl for guix-patches@gnu.org; Sun, 24 Dec 2017 17:06:48 -0500 Received: from localhost (localhost [127.0.0.1]) by mail.fsfe.org (Postfix) with ESMTP id 1719963BA56 for ; Sun, 24 Dec 2017 23:06:46 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at mail.fsfe.org Received: from mail.fsfe.org ([127.0.0.1]) by localhost (cavendish.fsfeurope.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id EBxi0lhFBh6Z for ; Sun, 24 Dec 2017 23:06:45 +0100 (CET) From: Jelle Licht To: guix-patches@gnu.org Subject: [PATCH] gnu: node: Update to 9.3.0. Date: Sun, 24 Dec 2017 23:06:43 +0100 Message-ID: <877etbsrv0.fsf@fsfe.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) --=-=-= Content-Type: text/plain The attached patch will update the Node.js pacakge to the latest release. The latest version of Node.js depends on libuv >= 1.18, so this patch should either be applied to core-updates (which I can do myself once I get an A-okay), or once core-updates has been merged into master. -- Jelle --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-node-Update-to-9.3.0.patch >From a9b57b2649dbe95b75b0114d32930c7347aec40b Mon Sep 17 00:00:00 2001 From: Jelle Licht Date: Sun, 24 Dec 2017 22:58:00 +0100 Subject: [PATCH] gnu: node: Update to 9.3.0. * gnu/packages/patches/node-test-http2-server-rst-stream.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Remove it. * gnu/packages/node.scm (node): Update to 9.3.0. [source]: Remove 'node-test-http2-server-rst-stream.patch'. [arguments]: Remove all tests that depend on eslint being available. Re-enable fixed test. --- gnu/local.mk | 1 - gnu/packages/node.scm | 29 +++-- .../node-test-http2-server-rst-stream.patch | 131 --------------------- 3 files changed, 19 insertions(+), 142 deletions(-) delete mode 100644 gnu/packages/patches/node-test-http2-server-rst-stream.patch diff --git a/gnu/local.mk b/gnu/local.mk index fbc5f52c9..514daec1c 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -889,7 +889,6 @@ dist_patch_DATA = \ %D%/packages/patches/newsbeuter-CVE-2017-14500.patch \ %D%/packages/patches/ngircd-handle-zombies.patch \ %D%/packages/patches/ninja-zero-mtime.patch \ - %D%/packages/patches/node-test-http2-server-rst-stream.patch \ %D%/packages/patches/nss-increase-test-timeout.patch \ %D%/packages/patches/nss-pkgconfig.patch \ %D%/packages/patches/nvi-assume-preserve-path.patch \ diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm index fade8b23d..052966ea3 100644 --- a/gnu/packages/node.scm +++ b/gnu/packages/node.scm @@ -41,18 +41,14 @@ (define-public node (package (name "node") - (version "8.9.1") + (version "9.3.0") (source (origin (method url-fetch) (uri (string-append "http://nodejs.org/dist/v" version "/node-v" version ".tar.gz")) (sha256 (base32 - "1qbiz7hgwlirhwpd71c8yzcbwsyi5bjlfp6lxb6v55j6rizinj9j")) - ;; See https://github.com/nodejs/node/issues/16688 - ;; Remove this next update (>8.9.1). - (patches - (search-patches "node-test-http2-server-rst-stream.patch")))) + "19g2pc196rxlj9k5bwhqxdjddvicsx385w7yj6alq9l82lmqycxp")))) (build-system gnu-build-system) (arguments ;; TODO: Purge the bundled copies from the source. @@ -85,11 +81,24 @@ ;; test-make-doc needs doc-only target, which is inhibited below (for-each delete-file '("test/doctool/test-make-doc.js")) - ;; FIXME: This test seems to depends on files that are not - ;; available in the bundled v8. See - ;; https://github.com/nodejs/node/issues/13344 + ;; FIXME: These tests depend on being able to install eslint. + ;; See https://github.com/nodejs/node/issues/17098. (for-each delete-file - '("test/addons-napi/test_general/testInstanceOf.js")) + '("test/parallel/test-eslint-crypto-check.js" + "test/parallel/test-eslint-alphabetize-errors.js" + "test/parallel/test-eslint-buffer-constructor.js" + "test/parallel/test-eslint-documented-errors.js" + "test/parallel/test-eslint-inspector-check.js" + "test/parallel/test-eslint-no-unescaped-regexp-dot.js" + "test/parallel/test-eslint-no-let-in-for-declaration.js" + "test/parallel/test-eslint-prefer-assert-iferror.js" + "test/parallel/test-eslint-prefer-assert-methods.js" + "test/parallel/test-eslint-prefer-common-expectserror.js" + "test/parallel/test-eslint-prefer-common-mustnotcall.js" + "test/parallel/test-eslint-prefer-util-format-errors.js" + "test/parallel/test-eslint-require-buffer.js" + "test/parallel/test-eslint-required-modules.js")) + ;; FIXME: These tests fail in the build container, but they don't ;; seem to be indicative of real problems in practice. (for-each delete-file diff --git a/gnu/packages/patches/node-test-http2-server-rst-stream.patch b/gnu/packages/patches/node-test-http2-server-rst-stream.patch deleted file mode 100644 index c2f85010b..000000000 --- a/gnu/packages/patches/node-test-http2-server-rst-stream.patch +++ /dev/null @@ -1,131 +0,0 @@ -From a41cc020fd6e40b358103425edfa50e6a10fc973 Mon Sep 17 00:00:00 2001 -From: Anatoli Papirovski -Date: Thu, 2 Nov 2017 12:46:31 -0400 -Subject: [PATCH] test: fix flaky test-http2-server-rst-stream.js - -PR-URL: https://github.com/nodejs/node/pull/16690 -Fixes: https://github.com/nodejs/node/issues/16688 -Reviewed-By: James M Snell -Reviewed-By: Matteo Collina ---- - test/parallel/test-http2-server-rst-stream.js | 93 ++++++++++----------------- - 1 file changed, 35 insertions(+), 58 deletions(-) - -diff --git a/test/parallel/test-http2-server-rst-stream.js b/test/parallel/test-http2-server-rst-stream.js -index b92217dc99..dd38efb42f 100644 ---- a/test/parallel/test-http2-server-rst-stream.js -+++ b/test/parallel/test-http2-server-rst-stream.js -@@ -5,11 +5,9 @@ if (!common.hasCrypto) - common.skip('missing crypto'); - const assert = require('assert'); - const http2 = require('http2'); -+const Countdown = require('../common/countdown'); - - const { -- HTTP2_HEADER_METHOD, -- HTTP2_HEADER_PATH, -- HTTP2_METHOD_POST, - NGHTTP2_CANCEL, - NGHTTP2_NO_ERROR, - NGHTTP2_PROTOCOL_ERROR, -@@ -17,63 +15,42 @@ const { - NGHTTP2_INTERNAL_ERROR - } = http2.constants; - --const errCheck = common.expectsError({ code: 'ERR_HTTP2_STREAM_ERROR' }, 6); -+const tests = [ -+ ['rstStream', NGHTTP2_NO_ERROR, false], -+ ['rstWithNoError', NGHTTP2_NO_ERROR, false], -+ ['rstWithProtocolError', NGHTTP2_PROTOCOL_ERROR, true], -+ ['rstWithCancel', NGHTTP2_CANCEL, false], -+ ['rstWithRefuse', NGHTTP2_REFUSED_STREAM, true], -+ ['rstWithInternalError', NGHTTP2_INTERNAL_ERROR, true] -+]; -+ -+const server = http2.createServer(); -+server.on('stream', (stream, headers) => { -+ const method = headers['rstmethod']; -+ stream[method](); -+}); -+ -+server.listen(0, common.mustCall(() => { -+ const client = http2.connect(`http://localhost:${server.address().port}`); -+ -+ const countdown = new Countdown(tests.length, common.mustCall(() => { -+ client.destroy(); -+ server.close(); -+ })); - --function checkRstCode(rstMethod, expectRstCode) { -- const server = http2.createServer(); -- server.on('stream', (stream, headers, flags) => { -- stream.respond({ -- 'content-type': 'text/html', -- ':status': 200 -+ tests.forEach((test) => { -+ const req = client.request({ -+ ':method': 'POST', -+ rstmethod: test[0] - }); -- stream.write('test'); -- if (rstMethod === 'rstStream') -- stream[rstMethod](expectRstCode); -- else -- stream[rstMethod](); -- -- if (expectRstCode !== NGHTTP2_NO_ERROR && -- expectRstCode !== NGHTTP2_CANCEL) { -- stream.on('error', common.mustCall(errCheck)); -- } else { -- stream.on('error', common.mustNotCall()); -- } -- }); -- -- server.listen(0, common.mustCall(() => { -- const port = server.address().port; -- const client = http2.connect(`http://localhost:${port}`); -- -- const headers = { -- [HTTP2_HEADER_PATH]: '/', -- [HTTP2_HEADER_METHOD]: HTTP2_METHOD_POST -- }; -- const req = client.request(headers); -- -- req.setEncoding('utf8'); -- req.on('streamClosed', common.mustCall((actualRstCode) => { -- assert.strictEqual( -- expectRstCode, actualRstCode, `${rstMethod} is not match rstCode`); -- server.close(); -- client.destroy(); -+ req.on('streamClosed', common.mustCall((code) => { -+ assert.strictEqual(code, test[1]); -+ countdown.dec(); - })); -- req.on('data', common.mustCall()); - req.on('aborted', common.mustCall()); -- req.on('end', common.mustCall()); -- -- if (expectRstCode !== NGHTTP2_NO_ERROR && -- expectRstCode !== NGHTTP2_CANCEL) { -- req.on('error', common.mustCall(errCheck)); -- } else { -+ if (test[2]) -+ req.on('error', common.mustCall()); -+ else - req.on('error', common.mustNotCall()); -- } -- -- })); --} -- --checkRstCode('rstStream', NGHTTP2_NO_ERROR); --checkRstCode('rstWithNoError', NGHTTP2_NO_ERROR); --checkRstCode('rstWithProtocolError', NGHTTP2_PROTOCOL_ERROR); --checkRstCode('rstWithCancel', NGHTTP2_CANCEL); --checkRstCode('rstWithRefuse', NGHTTP2_REFUSED_STREAM); --checkRstCode('rstWithInternalError', NGHTTP2_INTERNAL_ERROR); -+ }); -+})); --- -2.15.0 - -- 2.15.1 --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Sun Dec 24 17:23:36 2017 Received: (at 29844) by debbugs.gnu.org; 24 Dec 2017 22:23:36 +0000 Received: from localhost ([127.0.0.1]:51011 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eTEgC-0002Pp-77 for submit@debbugs.gnu.org; Sun, 24 Dec 2017 17:23:36 -0500 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:55943) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eTEg8-0002Pc-Ly for 29844@debbugs.gnu.org; Sun, 24 Dec 2017 17:23:35 -0500 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id 0234C20A54; Sun, 24 Dec 2017 17:23:32 -0500 (EST) Received: from frontend1 ([10.202.2.160]) by compute4.internal (MEProxy); Sun, 24 Dec 2017 17:23:32 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=cc:content-type:date:from:in-reply-to:message-id:mime-version :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc; s= mesmtp; bh=mMpYRrDrKTeDpO/AJe6No6noADYL7YZyNOzX+829du8=; b=vH3EJ Lm5D/gY8wN+7l/PRsEKqgtoplGu4U8SNWY+aL/I9IJOs85vxnf/skjs1RsO0l8OJ Pmwp0ObZLPaBIyXBmEsqZgp6f98MSR1TWBlvOaH5UJ11GzetWGn2DgBcQXEhEwSM +Egs8nHJlpTPhNG+s1Lx6JVlnS0Mbn9+EpWnYY= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=fm1; bh=mMpYRrDrKTeDpO/AJe6No6noADYL7 YZyNOzX+829du8=; b=VX6HYNNVraB8f/LH7xWEI2NeQiglKzs/NPquwKUUO5M8U VkNLNUmB+th5HBIcMg8q5DKdfnyEemo6oqHLs+f9TGwBmf9OlQjYmCH2fi5R02/f OAuqeblPnoD77QH5YklnBfrwEUU/XvighG4A0EnACNEnvdgfJh5CtJVUNYadgVLL QE+UxIwmigClCIufIQuUV0SojZbN1L/sw3Pv9aYpQC2kksEpyVZouIS74bRTgH/S AgVpSQlgRP1Bt4grows4XyVtLTte+E9sAaDynCAnIZJddZVOartSl/CrDqMJRhQ+ beGhj9UohlSfWX/EmHu+hanrtavJd+ghwr9Ty36SA== X-ME-Sender: Received: from localhost (c-76-109-243-109.hsd1.fl.comcast.net [76.109.243.109]) by mail.messagingengine.com (Postfix) with ESMTPA id 9E6307E322; Sun, 24 Dec 2017 17:23:31 -0500 (EST) Date: Sun, 24 Dec 2017 17:23:30 -0500 From: Leo Famulari To: Jelle Licht Subject: Re: [bug#29844] [PATCH] gnu: node: Update to 9.3.0. Message-ID: <20171224222330.GA30072@jasmine.lan> References: <877etbsrv0.fsf@fsfe.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="d6Gm4EdcadzBjdND" Content-Disposition: inline In-Reply-To: <877etbsrv0.fsf@fsfe.org> User-Agent: Mutt/1.9.2 (2017-12-15) X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 29844 Cc: 29844@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) --d6Gm4EdcadzBjdND Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Dec 24, 2017 at 11:06:43PM +0100, Jelle Licht wrote: >=20 > The attached patch will update the Node.js pacakge to the latest > release. The latest version of Node.js depends on libuv >=3D 1.18, so this > patch should either be applied to core-updates (which I can do myself > once I get an A-okay), or once core-updates has been merged into master. >=20 > -- Jelle >=20 > From a9b57b2649dbe95b75b0114d32930c7347aec40b Mon Sep 17 00:00:00 2001 > From: Jelle Licht > Date: Sun, 24 Dec 2017 22:58:00 +0100 > Subject: [PATCH] gnu: node: Update to 9.3.0. >=20 > * gnu/packages/patches/node-test-http2-server-rst-stream.patch: Delete fi= le. > * gnu/local.mk (dist_patch_DATA): Remove it. > * gnu/packages/node.scm (node): Update to 9.3.0. > [source]: Remove 'node-test-http2-server-rst-stream.patch'. > [arguments]: Remove all tests that depend on eslint being available. Re-e= nable > fixed test. Looks good for core-updates, thanks! --d6Gm4EdcadzBjdND Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEsFFZSPHn08G5gDigJkb6MLrKfwgFAlpAKOIACgkQJkb6MLrK fwivLA/+KM5IVyoSen/IAyEszKSha3Bh3kFwmG6z7o1sDMiwcuRsyO1mKB6HKbH2 KQo1aVBv0MUFjJG5SU4VomAGnsqhFoctHikYSf9xPGsg0Hd32ZgMvVGKcRh1UHpz FP1NygS3he8dQkEAODfqZ5J8OGpaCaCvSvH8M0QZaYGn7u98edYfKFP7lqAQjTBb sKZOXPVCEwhEkdTsR7ooRMYRw8S9EpRYGWrBukYsu1ytvNFq3ji+wviVNhc6zuj/ 4uQmIsAvsgYsbirQFT6bdo4G7O+f81OaqBl5HdaI0GaQIQBdsgFPROOov7BZ36sz F+MYyY59TGM//PC7GFIRwScoSBrcFH5zEM8vcSZAyflwFrP9hfEQjDwbv0f28m7L zj0Le1l8wdEJ2eXEgLSoEOiJiAfGCt6QdIOanBiQrUJaCPzqoiPjVk1ZKtSKP2bM acrt5/KLjRFUAUxwhos56ghO3xr6HstVyh2eWLeNEKvapW3AvrXPrsm3Zzo1kcIg PCutOUzQoKb6kEdpRT+XvOH+zvzyGW9temUtXB9atWuOmWrvW0+kYEsCkfZE8C0Y 507qrkw4q1btCaqAjF17+4Naa9UQI9Fe2TvOV8SIHFV30wNXxFcAEINAHi6GpNCP 6KGfz1Y+8FmtdYz93SSmiQgUeh344NBIPn4TNhalcvKpjY/2vu4= =eYhz -----END PGP SIGNATURE----- --d6Gm4EdcadzBjdND-- From debbugs-submit-bounces@debbugs.gnu.org Sun Dec 24 18:32:53 2017 Received: (at 29844-done) by debbugs.gnu.org; 24 Dec 2017 23:32:53 +0000 Received: from localhost ([127.0.0.1]:51040 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eTFlE-0004AT-UH for submit@debbugs.gnu.org; Sun, 24 Dec 2017 18:32:53 -0500 Received: from mail.fsfe.org ([217.69.89.162]:48633) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eTFlB-0004AC-5l for 29844-done@debbugs.gnu.org; Sun, 24 Dec 2017 18:32:51 -0500 Received: from localhost (localhost [127.0.0.1]) by mail.fsfe.org (Postfix) with ESMTP id A872463BA24; Mon, 25 Dec 2017 00:32:42 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at mail.fsfe.org Received: from mail.fsfe.org ([127.0.0.1]) by localhost (cavendish.fsfeurope.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id riWqN5HFPAzZ; Mon, 25 Dec 2017 00:32:42 +0100 (CET) References: <877etbsrv0.fsf@fsfe.org> <20171224222330.GA30072@jasmine.lan> From: Jelle Licht To: Leo Famulari Subject: Re: [bug#29844] [PATCH] gnu: node: Update to 9.3.0. In-reply-to: <20171224222330.GA30072@jasmine.lan> Date: Mon, 25 Dec 2017 00:32:37 +0100 Message-ID: <87y3lrpuqy.fsf@fsfe.org> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 29844-done Cc: 29844-done@debbugs.gnu.org, Jelle Licht X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) Leo Famulari writes: > On Sun, Dec 24, 2017 at 11:06:43PM +0100, Jelle Licht wrote: >> >> The attached patch will update the Node.js pacakge to the latest >> release. The latest version of Node.js depends on libuv >= 1.18, so this >> patch should either be applied to core-updates (which I can do myself >> once I get an A-okay), or once core-updates has been merged into master. >> >> -- Jelle >> > >> From a9b57b2649dbe95b75b0114d32930c7347aec40b Mon Sep 17 00:00:00 2001 >> From: Jelle Licht >> Date: Sun, 24 Dec 2017 22:58:00 +0100 >> Subject: [PATCH] gnu: node: Update to 9.3.0. >> >> * gnu/packages/patches/node-test-http2-server-rst-stream.patch: Delete file. >> * gnu/local.mk (dist_patch_DATA): Remove it. >> * gnu/packages/node.scm (node): Update to 9.3.0. >> [source]: Remove 'node-test-http2-server-rst-stream.patch'. >> [arguments]: Remove all tests that depend on eslint being available. Re-enable >> fixed test. > > Looks good for core-updates, thanks! Pushed as 80f642acd4 to core-updates. From unknown Tue Jun 24 01:40:22 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 22 Jan 2018 12:24:06 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator