Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package nodejs-electron for openSUSE:Factory
checked in at 2026-09-11 18:02:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/nodejs-electron (Old)
and /work/SRC/openSUSE:Factory/.nodejs-electron.new.1265 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "nodejs-electron"
Fri Sep 11 18:02:02 2026 rev:178 rq:1376963 version:37.10.2
Changes:
--------
--- /work/SRC/openSUSE:Factory/nodejs-electron/nodejs-electron.changes
2026-01-26 11:02:32.218512141 +0100
+++
/work/SRC/openSUSE:Factory/.nodejs-electron.new.1265/nodejs-electron.changes
2026-09-11 18:05:21.954953063 +0200
@@ -1,0 +2,7 @@
+Thu Sep 10 14:56:54 UTC 2026 - Bruno Pitrus <[email protected]>
+
+- Add patches to fix ftbfs
+ * remote_syscall_arg_handler-missing-PATH_MAX.patch
+ * ncrypto-missing-INT_MAX.patch
+
+-------------------------------------------------------------------
New:
----
README.md
ncrypto-missing-INT_MAX.patch
remote_syscall_arg_handler-missing-PATH_MAX.patch
----------(New B)----------
New: * remote_syscall_arg_handler-missing-PATH_MAX.patch
* ncrypto-missing-INT_MAX.patch
New:- Add patches to fix ftbfs
* remote_syscall_arg_handler-missing-PATH_MAX.patch
* ncrypto-missing-INT_MAX.patch
----------(New E)----------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ nodejs-electron.spec ++++++
--- /var/tmp/diff_new_pack.ITDrgO/_old 2026-09-11 18:05:29.017248304 +0200
+++ /var/tmp/diff_new_pack.ITDrgO/_new 2026-09-11 18:05:29.019248388 +0200
@@ -197,6 +197,7 @@
Source1: create_tarball.sh
Source10: electron-launcher.sh
Source11: Electron.desktop
+Source12: README.md
# Reverse upstream changes to be able to build against ffmpeg-4
@@ -389,6 +390,8 @@
Patch3226: linux_seccomp-SYS_SECCOMP.patch
Patch3227:
text_break_iterator-icu78-breakAllLineBreakClassTable-should-be-consistent.patch
Patch3228: quiche-quiche_buffer_allocator-missing-memcpy.patch
+Patch3229: remote_syscall_arg_handler-missing-PATH_MAX.patch
+Patch3230: ncrypto-missing-INT_MAX.patch
# Patches to re-enable upstream force disabled features.
# There's no sense in submitting them but they may be reused as-is by other
packagers.
++++++ README.md ++++++
 Electron
=================
Build results for Factory

Devel project build status

++++++ _scmsync.obsinfo ++++++
--- /var/tmp/diff_new_pack.ITDrgO/_old 2026-09-11 18:05:29.200255955 +0200
+++ /var/tmp/diff_new_pack.ITDrgO/_new 2026-09-11 18:05:29.202256039 +0200
@@ -1,6 +1,6 @@
-mtime: 1769194434
-commit: e5277883907bdb0f39ea170ef4cbc9b4d8eec07c70d7275bb87c510ada1df838
-url: https://src.opensuse.org/nodejs/nodejs-electron.git
-revision: e5277883907bdb0f39ea170ef4cbc9b4d8eec07c70d7275bb87c510ada1df838
+mtime: 1789052615
+commit: 1cc250e3813c36a014d9f2a92f57f1f53ee7d43c17d9902279aeded1b2b4e6b8
+url: https://src.opensuse.org/nodejs/nodejs-electron
+revision: 1cc250e3813c36a014d9f2a92f57f1f53ee7d43c17d9902279aeded1b2b4e6b8
projectscmsync: https://src.opensuse.org/nodejs/_ObsPrj.git
++++++ build.specials.obscpio ++++++
++++++ build.specials.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/.gitignore new/.gitignore
--- old/.gitignore 1970-01-01 01:00:00.000000000 +0100
+++ new/.gitignore 2026-09-10 17:03:35.000000000 +0200
@@ -0,0 +1 @@
+.osc
++++++ ncrypto-missing-INT_MAX.patch ++++++
--- src/third_party/electron_node/deps/ncrypto/ncrypto.cc.orig 2025-11-25
20:30:39.841580735 +0100
+++ src/third_party/electron_node/deps/ncrypto/ncrypto.cc 2026-09-10
15:46:55.722323200 +0200
@@ -7,6 +7,7 @@
#include <openssl/rand.h>
#include <openssl/x509v3.h>
#include <algorithm>
+#include <climits>
#include <cstring>
#if OPENSSL_VERSION_MAJOR >= 3
#include <openssl/provider.h>
++++++ remote_syscall_arg_handler-missing-PATH_MAX.patch ++++++
--- src/sandbox/linux/syscall_broker/remote_syscall_arg_handler.cc.orig
2025-11-25 20:19:26.509769388 +0100
+++ src/sandbox/linux/syscall_broker/remote_syscall_arg_handler.cc
2026-09-10 15:17:15.662672166 +0200
@@ -9,6 +9,7 @@
#include "sandbox/linux/syscall_broker/remote_syscall_arg_handler.h"
+#include <linux/limits.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/syscall.h>