Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package cockpit-subscriptions for
openSUSE:Factory checked in at 2026-02-16 13:14:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/cockpit-subscriptions (Old)
and /work/SRC/openSUSE:Factory/.cockpit-subscriptions.new.1977 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "cockpit-subscriptions"
Mon Feb 16 13:14:21 2026 rev:10 rq:1333286 version:14.4
Changes:
--------
---
/work/SRC/openSUSE:Factory/cockpit-subscriptions/cockpit-subscriptions.changes
2026-02-05 18:05:53.121412731 +0100
+++
/work/SRC/openSUSE:Factory/.cockpit-subscriptions.new.1977/cockpit-subscriptions.changes
2026-02-16 13:19:15.630917985 +0100
@@ -1,0 +2,6 @@
+Wed Feb 11 17:23:37 UTC 2026 - Miika Alikirri <[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-subscriptions.spec ++++++
--- /var/tmp/diff_new_pack.OroKIe/_old 2026-02-16 13:19:17.142980851 +0100
+++ /var/tmp/diff_new_pack.OroKIe/_new 2026-02-16 13:19:17.146981017 +0100
@@ -27,6 +27,7 @@
Source12: update_version.sh
%include %_sourcedir/node_modules.spec.inc
Patch10: load-css-overrides.patch
+Patch11: esbuild-ppc64.patch
BuildArch: noarch
BuildRequires: local-npm-registry
++++++ _scmsync.obsinfo ++++++
--- /var/tmp/diff_new_pack.OroKIe/_old 2026-02-16 13:19:17.198983179 +0100
+++ /var/tmp/diff_new_pack.OroKIe/_new 2026-02-16 13:19:17.206983511 +0100
@@ -1,6 +1,6 @@
-mtime: 1770106274
-commit: dbb5801282107154535da40b31288da1621f8c1181d92cab5734cede54cf408c
+mtime: 1770884275
+commit: 32e10d3f62dfc1405f8d00715122db1eb9e665152b2baa902ec9b492d945c437
url: https://src.opensuse.org/cockpit/cockpit-subscriptions.git
-revision: dbb5801282107154535da40b31288da1621f8c1181d92cab5734cede54cf408c
+revision: 32e10d3f62dfc1405f8d00715122db1eb9e665152b2baa902ec9b492d945c437
projectscmsync: https://src.opensuse.org/cockpit/_ObsPrj.git
++++++ 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