summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Szuba <marecki@gentoo.org>2021-06-04 12:55:09 +0100
committerMarek Szuba <marecki@gentoo.org>2021-06-04 13:00:55 +0100
commitc696ef464b522cc22961cc0393efeafd64155f0e (patch)
treee4955dba88abb2bdb5e07d212ededa4754892bbf /net-libs/nodejs/files
parentdev-python/sphinxcontrib-websupport: Enable py3.10 (diff)
downloadgentoo-c696ef464b522cc22961cc0393efeafd64155f0e.tar.gz
gentoo-c696ef464b522cc22961cc0393efeafd64155f0e.tar.bz2
gentoo-c696ef464b522cc22961cc0393efeafd64155f0e.zip
net-libs/nodejs: drop 16.1.0
We will only stabilise v16 once it has reached the Active LTS status (since according to upstream release schedule it is only then that a Node.js major version becomes ready for general use), i.e. not before 2021-10-27. Until then, no point in keeping old v16 ebuilds in the tree once a newer version has been added. Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'net-libs/nodejs/files')
-rw-r--r--net-libs/nodejs/files/nodejs-16.1.0-test-repl-history-navigation.patch56
1 files changed, 0 insertions, 56 deletions
diff --git a/net-libs/nodejs/files/nodejs-16.1.0-test-repl-history-navigation.patch b/net-libs/nodejs/files/nodejs-16.1.0-test-repl-history-navigation.patch
deleted file mode 100644
index 724541a870db..000000000000
--- a/net-libs/nodejs/files/nodejs-16.1.0-test-repl-history-navigation.patch
+++ /dev/null
@@ -1,56 +0,0 @@
-From 7c8a60851c459ea18afbfc54bfc8cf7394ea56c3 Mon Sep 17 00:00:00 2001
-From: Antoine du Hamel <duhamelantoine1995@gmail.com>
-Date: Thu, 6 May 2021 12:00:07 +0200
-Subject: [PATCH] test,repl: fix tests when inspector is disabled
-
-Fixes: https://github.com/nodejs/node/issues/38558
-
-PR-URL: https://github.com/nodejs/node/pull/38564
-Reviewed-By: Anna Henningsen <anna@addaleax.net>
-Reviewed-By: James M Snell <jasnell@gmail.com>
-Reviewed-By: Rich Trott <rtrott@gmail.com>
----
- test/parallel/test-repl-history-navigation.js | 12 ++++++------
- 1 file changed, 6 insertions(+), 6 deletions(-)
-
-diff --git a/test/parallel/test-repl-history-navigation.js b/test/parallel/test-repl-history-navigation.js
-index df4f0390a69c..527cf235bddd 100644
---- a/test/parallel/test-repl-history-navigation.js
-+++ b/test/parallel/test-repl-history-navigation.js
-@@ -559,14 +559,14 @@ const tests = [
- env: { NODE_REPL_HISTORY: defaultHistoryPath },
- test: ['const util = {}', ENTER,
- 'ut', RIGHT, ENTER],
-- expected: common.hasIntl && common.hasCrypto ? [
-+ expected: [
- prompt, ...'const util = {}',
- 'undefined\n',
-- prompt, ...'ut', ' // il', '\n// {}',
-- 'il', '\n// {}',
-+ prompt, ...'ut', ...(prev ? [' // il', '\n// {}',
-+ 'il', '\n// {}'] : [' // il', 'il']),
- '{}\n',
- prompt,
-- ] : [],
-+ ],
- clean: false
- },
- {
-@@ -577,7 +577,7 @@ const tests = [
- 'globalThis.util = {}', ENTER,
- 'ut', RIGHT, ENTER,
- 'Reflect.defineProperty(globalThis, "util", utilDesc)', ENTER],
-- expected: common.hasIntl && common.hasCrypto ? [
-+ expected: [
- prompt, ...'const utilDesc = ' +
- 'Reflect.getOwnPropertyDescriptor(globalThis, "util")',
- 'undefined\n',
-@@ -588,7 +588,7 @@ const tests = [
- prompt, ...'Reflect.defineProperty(globalThis, "util", utilDesc)',
- 'true\n',
- prompt,
-- ] : [],
-+ ],
- clean: false
- },
- ];