Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package cockpit-tukit for openSUSE:Factory checked in at 2026-02-16 13:14:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/cockpit-tukit (Old) and /work/SRC/openSUSE:Factory/.cockpit-tukit.new.1977 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "cockpit-tukit" Mon Feb 16 13:14:16 2026 rev:15 rq:1333284 version:0.1.7~git0.61e54f1 Changes: -------- --- /work/SRC/openSUSE:Factory/cockpit-tukit/cockpit-tukit.changes 2026-01-19 18:43:05.274428675 +0100 +++ /work/SRC/openSUSE:Factory/.cockpit-tukit.new.1977/cockpit-tukit.changes 2026-02-16 13:19:06.950557092 +0100 @@ -1,0 +2,6 @@ +Wed Feb 11 17:59:39 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-tukit.spec ++++++ --- /var/tmp/diff_new_pack.6GRbK5/_old 2026-02-16 13:19:10.118688809 +0100 +++ /var/tmp/diff_new_pack.6GRbK5/_new 2026-02-16 13:19:10.138689641 +0100 @@ -27,6 +27,7 @@ Source11: node_modules.spec.inc %include %_sourcedir/node_modules.spec.inc Patch2: load-css-overrides.patch +Patch3: esbuild-ppc64.patch BuildArch: noarch BuildRequires: appstream-glib BuildRequires: cockpit-devel >= 293 ++++++ _scmsync.obsinfo ++++++ --- /var/tmp/diff_new_pack.6GRbK5/_old 2026-02-16 13:19:10.590708434 +0100 +++ /var/tmp/diff_new_pack.6GRbK5/_new 2026-02-16 13:19:10.618709598 +0100 @@ -1,6 +1,6 @@ -mtime: 1768554248 -commit: b8e83d9d5196a2691ccf5b652f978b02fc1641966133dde0267218c472d2409c +mtime: 1770884187 +commit: a004b2e4295a89d654e47d0e14bbbfb97dc4a1b4403cc67416d9359079b60aaa url: https://src.opensuse.org/cockpit/cockpit-tukit.git -revision: b8e83d9d5196a2691ccf5b652f978b02fc1641966133dde0267218c472d2409c +revision: a004b2e4295a89d654e47d0e14bbbfb97dc4a1b4403cc67416d9359079b60aaa 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-02-16 09:25:12.000000000 +0100 @@ -0,0 +1,3 @@ +.osc +cockpit-tukit +node_modules.sums \ No newline at end of file ++++++ 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
