Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package cockpit-snapshots for
openSUSE:Factory checked in at 2026-03-10 17:58:28
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/cockpit-snapshots (Old)
and /work/SRC/openSUSE:Factory/.cockpit-snapshots.new.8177 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "cockpit-snapshots"
Tue Mar 10 17:58:28 2026 rev:2 rq:1338000 version:3.1
Changes:
--------
--- /work/SRC/openSUSE:Factory/cockpit-snapshots/cockpit-snapshots.changes
2026-03-03 16:16:13.521728598 +0100
+++
/work/SRC/openSUSE:Factory/.cockpit-snapshots.new.8177/cockpit-snapshots.changes
2026-03-10 18:48:44.616719548 +0100
@@ -1,0 +2,6 @@
+Tue Mar 10 07:40:31 UTC 2026 - Alice Brooks <[email protected]>
+
+- Patch esbuild to use native runtime on ppc64 (bsc#1257698)
+ * added esbuild-ppc64.patch
+
+-------------------------------------------------------------------
New:
----
esbuild-ppc64.patch
----------(New B)----------
New:- Patch esbuild to use native runtime on ppc64 (bsc#1257698)
* added esbuild-ppc64.patch
----------(New E)----------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ cockpit-snapshots.spec ++++++
--- /var/tmp/diff_new_pack.ETEfdn/_old 2026-03-10 18:48:52.793055096 +0100
+++ /var/tmp/diff_new_pack.ETEfdn/_new 2026-03-10 18:48:52.793055096 +0100
@@ -25,6 +25,7 @@
Source10: package-lock.json
Source11: node_modules.spec.inc
patch10: load-css-overrides.patch
+patch11: esbuild-ppc64.patch
%include %_sourcedir/node_modules.spec.inc
@@ -83,6 +84,7 @@
%prep
%setup -q -n %{name}-%{version}
%patch -P 10 -p1
+%patch -P 11 -p1
rm -rf node_modules
rm -f package-lock.json
++++++ _scmsync.obsinfo ++++++
--- /var/tmp/diff_new_pack.ETEfdn/_old 2026-03-10 18:48:52.845057233 +0100
+++ /var/tmp/diff_new_pack.ETEfdn/_new 2026-03-10 18:48:52.853057562 +0100
@@ -1,6 +1,6 @@
-mtime: 1772537531
-commit: d5cec1ec9c091decea932b8b45ef85a87c8b0d7455abdfc5dc6bd06821980cb3
+mtime: 1773133618
+commit: ae65d5caf976bb9989d8abd6e4370f1301c28633324b04b6e6ec76992d95c248
url: https://src.opensuse.org/cockpit/cockpit-snapshots.git
-revision: d5cec1ec9c091decea932b8b45ef85a87c8b0d7455abdfc5dc6bd06821980cb3
+revision: ae65d5caf976bb9989d8abd6e4370f1301c28633324b04b6e6ec76992d95c248
projectscmsync: https://src.opensuse.org/cockpit/_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-03-10 13:31:54.000000000 +0100
@@ -0,0 +1,2 @@
+.osc
+node_modules.sums
++++++ esbuild-ppc64.patch ++++++
>From ab9730f4cfc3db836ba79460f1df6999c32020ef Mon Sep 17 00:00:00 2001
From: Miika Alikirri <[email protected]>
Date: Tue, 10 Feb 2026 18:47:35 +0200
Subject: Don't use esbuild wasm on ppc64
For some reason, wasm runtime is broken on node24 so we should
use native runtime instead
---
build.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build.js b/build.js
index 7548c91..26340e5 100755
--- a/build.js
+++ b/build.js
@@ -13,7 +13,7 @@ import { cockpitPoEsbuildPlugin } from
'./pkg/lib/cockpit-po-plugin.js';
import { cockpitRsyncEsbuildPlugin } from './pkg/lib/cockpit-rsync-plugin.js';
const production = process.env.NODE_ENV === 'production';
-const useWasm = os.arch() !== 'x64';
+const useWasm = os.arch() !== 'x64' && os.arch() !== 'ppc64';
const esbuild = (await import(useWasm ? 'esbuild-wasm' : 'esbuild')).default;
const parser = (await import('argparse')).default.ArgumentParser();
--
2.52.0