Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package nodejs10 for openSUSE:Factory 
checked in at 2021-03-12 13:31:24
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/nodejs10 (Old)
 and      /work/SRC/openSUSE:Factory/.nodejs10.new.2401 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "nodejs10"

Fri Mar 12 13:31:24 2021 rev:37 rq:877765 version:10.24.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/nodejs10/nodejs10.changes        2021-03-02 
12:28:49.655498162 +0100
+++ /work/SRC/openSUSE:Factory/.nodejs10.new.2401/nodejs10.changes      
2021-03-12 13:31:40.322187172 +0100
@@ -1,0 +2,6 @@
+Mon Mar  8 14:54:19 UTC 2021 - Adam Majer <[email protected]>
+
+- limit_worker_stdio_memsize.patch: reduce memory footprint of
+  test-worker-stdio (bsc#1183155)
+
+-------------------------------------------------------------------

New:
----
  limit_worker_stdio_memsize.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ nodejs10.spec ++++++
--- /var/tmp/diff_new_pack.Xf6Kv0/_old  2021-03-12 13:31:41.018188148 +0100
+++ /var/tmp/diff_new_pack.Xf6Kv0/_new  2021-03-12 13:31:41.022188154 +0100
@@ -135,6 +135,7 @@
 Patch13:        openssl_binary_detection.patch
 
 Patch41:        icu68.patch
+Patch45:        limit_worker_stdio_memsize.patch
 
 ## Patches specific to SUSE and openSUSE
 # PATCH-FIX-OPENSUSE -- set correct path for dtrace if it is built
@@ -233,6 +234,9 @@
 
 %if %node_version_number >= 8
 BuildRequires:  pkgconfig(openssl) >= %{openssl_req_ver}
+%if 0%{suse_version} > 1330
+BuildRequires:  libopenssl1_1-hmac
+%endif
 
 %if 0%{suse_version} >= 1330
 BuildRequires:  openssl >= %{openssl_req_ver}
@@ -781,6 +785,7 @@
 %endif
 %patch13 -p1
 %patch41 -p1
+%patch45 -p1
 %patch101 -p1
 %patch102 -p1
 # Add check_output to configure script (not part of Python 2.6 in SLE11).


++++++ limit_worker_stdio_memsize.patch ++++++
Index: node-v10.24.0/test/parallel/test-worker-stdio.js
===================================================================
--- node-v10.24.0.orig/test/parallel/test-worker-stdio.js
+++ node-v10.24.0/test/parallel/test-worker-stdio.js
@@ -28,7 +28,7 @@ if (isMainThread) {
   const passed = new BufferingWritable();
 
   const w = new Worker(__filename, { stdin: true, stdout: true });
-  const source = fs.createReadStream(process.execPath);
+  const source = fs.createReadStream(process.execPath, { end:1000000 });
   source.pipe(w.stdin);
   source.pipe(original);
   w.stdout.pipe(passed);

Reply via email to