File versioned.patch of Package nodejs16
xxxxxxxxxx
1
Author: Adam Majer <amajer@suse.de>
2
Date: Fri May 11 16:10:16 CEST 2018
3
Summary: Generate versioned binaries
4
5
Generate versioned binaries and install paths
6
so we can allow concurrent installations and
7
management via update_alternatives.
8
9
This is also important for generation of binary
10
modules for multiple versions of NodeJS
11
Index: node-v16.14.1/Makefile
12
===================================================================
13
--- node-v16.14.1.orig/Makefile
14
+++ node-v16.14.1/Makefile
15
16
EXEEXT := $(shell $(PYTHON) -c \
17
"import sys; print('.exe' if sys.platform == 'win32' else '')")
18
19
-NODE_EXE = node$(EXEEXT)
20
+NODE_EXE = node16$(EXEEXT)
21
NODE ?= ./$(NODE_EXE)
22
NODE_G_EXE = node_g$(EXEEXT)
23
NPM ?= ./deps/npm/bin/npm-cli.js
24
Index: node-v16.14.1/tools/install.py
25
===================================================================
26
--- node-v16.14.1.orig/tools/install.py
27
+++ node-v16.14.1/tools/install.py
28
29
try_remove(path, dst)
30
31
def package_files(action, name, bins):
32
- target_path = libdir() + '/node_modules/' + name + '/'
33
+ target_path = libdir() + '/node_modules/' + name + '16/'
34
35
# don't install npm if the target path is a symlink, it probably means
36
# that a dev version of npm is installed there
37
38
if action == uninstall:
39
action([link_path], 'bin/' + bin_name)
40
elif action == install:
41
- try_symlink('../' + libdir() + '/node_modules/' + name + '/' + bin_target, link_path)
42
+ try_symlink('../' + libdir() + '/node_modules/' + name + '16/' + bin_target, link_path)
43
else:
44
assert 0 # unhandled action type
45
46
def npm_files(action):
47
package_files(action, 'npm', {
48
- 'npm': 'bin/npm-cli.js',
49
- 'npx': 'bin/npx-cli.js',
50
+ 'npm16': 'bin/npm-cli.js',
51
+ 'npx16': 'bin/npx-cli.js',
52
})
53
54
def corepack_files(action):
55
package_files(action, 'corepack', {
56
- 'corepack': 'dist/corepack.js',
57
+ 'corepack16': 'dist/corepack.js',
58
# Not the default just yet:
59
# 'yarn': 'dist/yarn.js',
60
# 'yarnpkg': 'dist/yarn.js',
61
62
63
def files(action):
64
is_windows = sys.platform == 'win32'
65
- output_file = 'node'
66
+ output_file = 'node16'
67
output_prefix = 'out/Release/'
68
69
if 'false' == variables.get('node_shared'):
70
71
action(['out/Release/node.d'], libdir() + '/dtrace/node.d')
72
73
# behave similarly for systemtap
74
- action(['src/node.stp'], 'share/systemtap/tapset/')
75
+ action(['src/node.stp'], 'share/systemtap/tapset/node16.stp')
76
77
action(['deps/v8/tools/gdbinit'], 'share/doc/node/')
78
action(['deps/v8/tools/lldb_commands.py'], 'share/doc/node/')
79
80
if 'freebsd' in sys.platform or 'openbsd' in sys.platform:
81
action(['doc/node.1'], 'man/man1/')
82
else:
83
- action(['doc/node.1'], 'share/man/man1/')
84
+ action(['doc/node.1'], 'share/man/man1/node16.1')
85
86
if 'true' == variables.get('node_install_npm'):
87
npm_files(action)
88
89
'src/node_buffer.h',
90
'src/node_object_wrap.h',
91
'src/node_version.h',
92
- ], 'include/node/')
93
+ ], 'include/node16/')
94
95
# Add the expfile that is created on AIX
96
if sys.platform.startswith('aix'):
97
- action(['out/Release/node.exp'], 'include/node/')
98
+ action(['out/Release/node.exp'], 'include/node16/')
99
100
- subdir_files('deps/v8/include', 'include/node/', wanted_v8_headers)
101
+ subdir_files('deps/v8/include', 'include/node16/', wanted_v8_headers)
102
103
if 'false' == variables.get('node_shared_libuv'):
104
- subdir_files('deps/uv/include', 'include/node/', action)
105
+ subdir_files('deps/uv/include', 'include/node16/', action)
106
107
if 'true' == variables.get('node_use_openssl') and \
108
'false' == variables.get('node_shared_openssl'):
109
- subdir_files('deps/openssl/openssl/include/openssl', 'include/node/openssl/', action)
110
- subdir_files('deps/openssl/config/archs', 'include/node/openssl/archs', action)
111
- subdir_files('deps/openssl/config', 'include/node/openssl', action)
112
+ subdir_files('deps/openssl/openssl/include/openssl', 'include/node16/openssl/', action)
113
+ subdir_files('deps/openssl/config/archs', 'include/node16/openssl/archs', action)
114
+ subdir_files('deps/openssl/config', 'include/node16/openssl', action)
115
116
if 'false' == variables.get('node_shared_zlib'):
117
action([
118
'deps/zlib/zconf.h',
119
'deps/zlib/zlib.h',
120
- ], 'include/node/')
121
+ ], 'include/node16/')
122
123
if sys.platform == 'zos':
124
zoslibinc = os.environ.get('ZOSLIB_INCLUDES')
125
Index: node-v16.14.1/doc/node.1
126
===================================================================
127
--- node-v16.14.1.orig/doc/node.1
128
+++ node-v16.14.1/doc/node.1
129
130
.Dt NODE 1
131
.
132
.Sh NAME
133
-.Nm node
134
+.Nm node16
135
.Nd server-side JavaScript runtime
136
.
137
.\"======================================================================
138
.Sh SYNOPSIS
139
-.Nm node
140
+.Nm node16
141
.Op Ar options
142
.Op Ar v8-options
143
.Op Fl e Ar string | Ar script.js | Fl
144
.Op Fl -
145
.Op Ar arguments ...
146
.
147
-.Nm node
148
+.Nm node16
149
.Cm inspect
150
.Op Fl e Ar string | Ar script.js | Fl | Ar <host>:<port>
151
.Ar ...
152
.
153
-.Nm node
154
+.Nm node16
155
.Op Fl -v8-options
156
.
157
.\"======================================================================
158
Index: node-v16.14.1/src/node.stp
159
===================================================================
160
--- node-v16.14.1.orig/src/node.stp
161
+++ node-v16.14.1/src/node.stp
162
163
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
164
// USE OR OTHER DEALINGS IN THE SOFTWARE.
165
166
-probe node_net_server_connection = process("node").mark("net__server__connection")
167
+probe node_net_server_connection = process("node16").mark("net__server__connection")
168
{
169
remote = user_string($arg2);
170
port = $arg3;
171
172
fd);
173
}
174
175
-probe node_net_stream_end = process("node").mark("net__stream__end")
176
+probe node_net_stream_end = process("node16").mark("net__stream__end")
177
{
178
remote = user_string($arg2);
179
port = $arg3;
180
181
fd);
182
}
183
184
-probe node_http_server_request = process("node").mark("http__server__request")
185
+probe node_http_server_request = process("node16").mark("http__server__request")
186
{
187
remote = user_string($arg3);
188
port = $arg4;
189
190
fd);
191
}
192
193
-probe node_http_server_response = process("node").mark("http__server__response")
194
+probe node_http_server_response = process("node16").mark("http__server__response")
195
{
196
remote = user_string($arg2);
197
port = $arg3;
198
199
fd);
200
}
201
202
-probe node_http_client_request = process("node").mark("http__client__request")
203
+probe node_http_client_request = process("node16").mark("http__client__request")
204
{
205
remote = user_string($arg3);
206
port = $arg4;
207
208
fd);
209
}
210
211
-probe node_http_client_response = process("node").mark("http__client__response")
212
+probe node_http_client_response = process("node16").mark("http__client__response")
213
{
214
remote = user_string($arg2);
215
port = $arg3;
216
217
fd);
218
}
219
220
-probe node_gc_start = process("node").mark("gc__start")
221
+probe node_gc_start = process("node16").mark("gc__start")
222
{
223
scavenge = 1 << 0;
224
compact = 1 << 1;
225
226
flags);
227
}
228
229
-probe node_gc_stop = process("node").mark("gc__done")
230
+probe node_gc_stop = process("node16").mark("gc__done")
231
{
232
scavenge = 1 << 0;
233
compact = 1 << 1;
234
Index: node-v16.14.1/deps/npm/man/man1/npm.1
235
===================================================================
236
--- node-v16.14.1.orig/deps/npm/man/man1/npm.1
237
+++ node-v16.14.1/deps/npm/man/man1/npm.1
238
239
.TH "NPM" "1" "February 2022" "" ""
240
.SH "NAME"
241
-\fBnpm\fR \- javascript package manager
242
+\fBnpm16\fR \- javascript package manager
243
.SS Synopsis
244
.P
245
.RS 2
246
247
commonly, you use it to publish, discover, install, and develop node
248
programs\.
249
.P
250
-Run \fBnpm help\fP to get a list of available commands\.
251
+Run \fBnpm16 help\fP to get a list of available commands\.
252
.SS Important
253
.P
254
npm comes preconfigured to use npm's public registry at
255
256
You probably got npm because you want to install stuff\.
257
.P
258
The very first thing you will most likely want to run in any node
259
-program is \fBnpm install\fP to install its dependencies\.
260
+program is \fBnpm16 install\fP to install its dependencies\.
261
.P
262
-You can also run \fBnpm install blerg\fP to install the latest version of
263
+You can also run \fBnpm16 install blerg\fP to install the latest version of
264
"blerg"\. Check out npm help \fBinstall\fP for more
265
info\. It can do a lot of stuff\.
266
.P
267
-Use the \fBnpm search\fP command to show everything that's available in the
268
-public registry\. Use \fBnpm ls\fP to show everything you've installed\.
269
+Use the \fBnpm16 search\fP command to show everything that's available in the
270
+public registry\. Use \fBnpm16 ls\fP to show everything you've installed\.
271
.SS Dependencies
272
.P
273
If a package lists a dependency using a git URL, npm will install that
274
275
.IP \(bu 2
276
link:
277
Links your current working code into Node's path, so that you don't
278
-have to reinstall every time you make a change\. Use npm help \fBnpm
279
+have to reinstall every time you make a change\. Use npm help \fBnpm16
280
link\fP to do this\.
281
.IP \(bu 2
282
install:
283
284
.SS See Also
285
.RS 0
286
.IP \(bu 2
287
-npm help help
288
+npm16 help help
289
.IP \(bu 2
290
-npm help package\.json
291
+npm16 help package\.json
292
.IP \(bu 2
293
-npm help npmrc
294
+npm16 help npmrc
295
.IP \(bu 2
296
-npm help config
297
+npm16 help config
298
.IP \(bu 2
299
-npm help install
300
+npm16 help install
301
.IP \(bu 2
302
-npm help prefix
303
+npm16 help prefix
304
.IP \(bu 2
305
-npm help publish
306
+npm16 help publish
307
308
.RE
309
Index: node-v16.14.1/src/node_main.cc
310
===================================================================
311
--- node-v16.14.1.orig/src/node_main.cc
312
+++ node-v16.14.1/src/node_main.cc
313
314
#endif
315
// Disable stdio buffering, it interacts poorly with printf()
316
// calls elsewhere in the program (e.g., any logging from V8.)
317
+ setenv("NODE_VERSION", "16", 0);
318
setvbuf(stdout, nullptr, _IONBF, 0);
319
setvbuf(stderr, nullptr, _IONBF, 0);
320
return node::Start(argc, argv);
321
Index: node-v16.14.1/tools/test.py
322
===================================================================
323
--- node-v16.14.1.orig/tools/test.py
324
+++ node-v16.14.1/tools/test.py
325
326
if self.vm is not None:
327
return self.vm
328
if arch == 'none':
329
- name = 'out/Debug/node' if mode == 'debug' else 'out/Release/node'
330
+ name = 'out/Debug/node' if mode == 'debug' else 'out/Release/node16'
331
else:
332
name = 'out/%s.%s/node' % (arch, mode)
333
334
Index: node-v16.14.1/node.gyp
335
===================================================================
336
--- node-v16.14.1.orig/node.gyp
337
+++ node-v16.14.1/node.gyp
338
339
'node_use_openssl%': 'true',
340
'node_shared_openssl%': 'false',
341
'node_v8_options%': '',
342
- 'node_core_target_name%': 'node',
343
- 'node_lib_target_name%': 'libnode',
344
+ 'node_core_target_name%': 'node16',
345
+ 'node_lib_target_name%': 'libnode16',
346
'node_intermediate_lib_type%': 'static_library',
347
'node_builtin_modules_path%': '',
348
# We list the deps/ files out instead of globbing them in js2c.py since we
349
Index: node-v16.14.1/deps/npm/man/man1/npx.1
350
===================================================================
351
--- node-v16.14.1.orig/deps/npm/man/man1/npx.1
352
+++ node-v16.14.1/deps/npm/man/man1/npx.1
353
354
.P
355
.RS 2
356
.nf
357
-npm exec \-\- <pkg>[@<version>] [args\.\.\.]
358
-npm exec \-\-package=<pkg>[@<version>] \-\- <cmd> [args\.\.\.]
359
-npm exec \-c '<cmd> [args\.\.\.]'
360
-npm exec \-\-package=foo \-c '<cmd> [args\.\.\.]'
361
-
362
-npx <pkg>[@<specifier>] [args\.\.\.]
363
-npx \-p <pkg>[@<specifier>] <cmd> [args\.\.\.]
364
-npx \-c '<cmd> [args\.\.\.]'
365
-npx \-p <pkg>[@<specifier>] \-c '<cmd> [args\.\.\.]'
366
+npm16 exec \-\- <pkg>[@<version>] [args\.\.\.]
367
+npm16 exec \-\-package=<pkg>[@<version>] \-\- <cmd> [args\.\.\.]
368
+npm16 exec \-c '<cmd> [args\.\.\.]'
369
+npm16 exec \-\-package=foo \-c '<cmd> [args\.\.\.]'
370
+
371
+npx16 <pkg>[@<specifier>] [args\.\.\.]
372
+npx16 \-p <pkg>[@<specifier>] <cmd> [args\.\.\.]
373
+npx16 \-c '<cmd> [args\.\.\.]'
374
+npx16 \-p <pkg>[@<specifier>] \-c '<cmd> [args\.\.\.]'
375
376
alias: npm x, npx
377
378
379
To run a binary \fIother than\fR the named binary, specify one or more
380
\fB\-\-package\fP options, which will prevent npm from inferring the package from
381
the first command argument\.
382
-.SS \fBnpx\fP vs \fBnpm exec\fP
383
+.SS \fBnpx16\fP vs \fBnpm exec\fP
384
.P
385
-When run via the \fBnpx\fP binary, all flags and options \fImust\fR be set prior to
386
+When run via the \fBnpx16\fP binary, all flags and options \fImust\fR be set prior to
387
any positional arguments\. When run via \fBnpm exec\fP, a double\-hyphen \fB\-\-\fP
388
flag can be used to suppress npm's parsing of switches and options that
389
should be sent to the executed command\.
390
391
.P
392
.RS 2
393
.nf
394
-$ npx foo@latest bar \-\-package=@npmcli/foo
395
+$ npx16 foo@latest bar \-\-package=@npmcli/foo
396
.fi
397
.RE
398
.P
399
400
.P
401
.RS 2
402
.nf
403
-$ npm exec foo@latest bar \-\-package=@npmcli/foo
404
+$ npm16 exec foo@latest bar \-\-package=@npmcli/foo
405
.fi
406
.RE
407
.P
408
409
.P
410
The double\-hyphen character is recommended to explicitly tell npm to stop
411
parsing command line options and switches\. The following command would
412
-thus be equivalent to the \fBnpx\fP command above:
413
+thus be equivalent to the \fBnpx16\fP command above:
414
.P
415
.RS 2
416
.nf
417
-$ npm exec \-\- foo@latest bar \-\-package=@npmcli/foo
418
+$ npm16 exec \-\- foo@latest bar \-\-package=@npmcli/foo
419
.fi
420
.RE
421
.SS Examples
422
423
.P
424
.RS 2
425
.nf
426
-$ npm exec \-\- tap \-\-bail test/foo\.js
427
-$ npx tap \-\-bail test/foo\.js
428
+$ npm16 exec \-\- tap \-\-bail test/foo\.js
429
+$ npx16 tap \-\-bail test/foo\.js
430
.fi
431
.RE
432
.P
433
434
.P
435
.RS 2
436
.nf
437
-$ npm exec \-\-package=foo \-\- bar \-\-bar\-argument
438
+$ npm16 exec \-\-package=foo \-\- bar \-\-bar\-argument
439
# ~ or ~
440
-$ npx \-\-package=foo bar \-\-bar\-argument
441
+$ npx16 \-\-package=foo bar \-\-bar\-argument
442
.fi
443
.RE
444
.P
445
446
.P
447
.RS 2
448
.nf
449
-$ npm x \-c 'eslint && say "hooray, lint passed"'
450
-$ npx \-c 'eslint && say "hooray, lint passed"'
451
+$ npm16 x \-c 'eslint && say "hooray, lint passed"'
452
+$ npx16 \-c 'eslint && say "hooray, lint passed"'
453
.fi
454
.RE
455
.SS Compatibility with Older npx Versions
456
.P
457
-The \fBnpx\fP binary was rewritten in npm v7\.0\.0, and the standalone \fBnpx\fP
458
-package deprecated at that time\. \fBnpx\fP uses the \fBnpm exec\fP
459
+The \fBnpx16\fP binary was rewritten in npm v7\.0\.0, and the standalone \fBnpx16\fP
460
+package deprecated at that time\. \fBnpx16\fP uses the \fBnpm16 exec\fP
461
command instead of a separate argument parser and install process, with
462
some affordances to maintain backwards compatibility with the arguments it
463
accepted in previous versions\.
464
465
This resulted in some shifts in its functionality:
466
.RS 0
467
.IP \(bu 2
468
-Any \fBnpm\fP config value may be provided\.
469
+Any \fBnpm16\fP config value may be provided\.
470
.IP \(bu 2
471
To prevent security and user\-experience problems from mistyping package
472
-names, \fBnpx\fP prompts before installing anything\. Suppress this
473
+names, \fBnpx16\fP prompts before installing anything\. Suppress this
474
prompt with the \fB\-y\fP or \fB\-\-yes\fP option\.
475
.IP \(bu 2
476
The \fB\-\-no\-install\fP option is deprecated, and will be converted to \fB\-\-no\fP\|\.
477
478
Shell fallback functionality is removed, as it is not advisable\.
479
.IP \(bu 2
480
The \fB\-p\fP argument is a shorthand for \fB\-\-parseable\fP in npm, but shorthand
481
-for \fB\-\-package\fP in npx\. This is maintained, but only for the \fBnpx\fP
482
+for \fB\-\-package\fP in npx\. This is maintained, but only for the \fBnpx16\fP
483
executable\.
484
.IP \(bu 2
485
The \fB\-\-ignore\-existing\fP option is removed\. Locally installed bins are
486
always present in the executed process \fBPATH\fP\|\.
487
.IP \(bu 2
488
-The \fB\-\-npm\fP option is removed\. \fBnpx\fP will always use the \fBnpm\fP it ships
489
+The \fB\-\-npm16\fP option is removed\. \fBnpx16\fP will always use the \fBnpm16\fP it ships
490
with\.
491
.IP \(bu 2
492
The \fB\-\-node\-arg\fP and \fB\-n\fP options are removed\.
493
494
The \fB\-\-always\-spawn\fP option is redundant, and thus removed\.
495
.IP \(bu 2
496
The \fB\-\-shell\fP option is replaced with \fB\-\-script\-shell\fP, but maintained
497
-in the \fBnpx\fP executable for backwards compatibility\.
498
+in the \fBnpx16\fP executable for backwards compatibility\.
499
500
.RE
501
.SS See Also
502
.RS 0
503
.IP \(bu 2
504
-npm help run\-script
505
+npm16 help run\-script
506
.IP \(bu 2
507
-npm help scripts
508
+npm16 help scripts
509
.IP \(bu 2
510
-npm help test
511
+npm16 help test
512
.IP \(bu 2
513
-npm help start
514
+npm16 help start
515
.IP \(bu 2
516
-npm help restart
517
+npm16 help restart
518
.IP \(bu 2
519
-npm help stop
520
+npm16 help stop
521
.IP \(bu 2
522
-npm help config
523
+npm16 help config
524
.IP \(bu 2
525
-npm help exec
526
+npm16 help exec
527
528
.RE
529