forked from pool/nodejs-electron
- New upstream release 21.3.4
* Changed HTML5 Notifications created with the requireInteraction option to not timeout
* Fixed a BrowserWindow maxWidth or maxHeight of 0 causing strange resizing behavior.
* Added node-api: handle no support for external buffers.
* Security fixes: CVE-2022-4174, CVE-2022-4179, CVE-2022-4181, CVE-2022-4190,
CVE-2022-4436, CVE-2022-4437, CVE-2022-4438, CVE-2022-4439,
CVE-2022-4262.
- Remove non-free WASM binaries from tarball
and add disable-devtools-tests.patch to fix resultant build error.
- Add remove-date-reproducible-builds.patch to fix build nondeterminism
- Add backported shim_headers-fix-ninja.patch
- Drop Leap 15.3 support
OBS-URL: https://build.opensuse.org/request/show/1058094
OBS-URL: https://build.opensuse.org/package/show/devel:languages:nodejs/nodejs-electron?expand=0&rev=56
19 lines
583 B
Diff
19 lines
583 B
Diff
Correct output path of ninja shim_headers rule
|
|
This is not needed for a succesful build on OBS but makes building it manually way easier
|
|
|
|
--- src/build/shim_headers.gni.orig
|
|
+++ src/build/shim_headers.gni
|
|
@@ -28,8 +28,10 @@
|
|
}
|
|
args += invoker.headers
|
|
|
|
- outputs = process_file_template(invoker.headers,
|
|
- "${shim_headers_path}/{{source_file_part}}")
|
|
+ outputs = []
|
|
+ foreach(h, invoker.headers) {
|
|
+ outputs += [ shim_headers_path + "/" + rebase_path(invoker.root_path,"//") + "/" + h ]
|
|
+ }
|
|
}
|
|
|
|
group(target_name) {
|