Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package cockpit-repos for openSUSE:Factory checked in at 2026-02-16 13:14:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/cockpit-repos (Old) and /work/SRC/openSUSE:Factory/.cockpit-repos.new.1977 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "cockpit-repos" Mon Feb 16 13:14:19 2026 rev:8 rq:1333285 version:4.7 Changes: -------- --- /work/SRC/openSUSE:Factory/cockpit-repos/cockpit-repos.changes 2026-02-05 18:06:05.441929557 +0100 +++ /work/SRC/openSUSE:Factory/.cockpit-repos.new.1977/cockpit-repos.changes 2026-02-16 13:19:13.142814540 +0100 @@ -1,0 +2,6 @@ +Tue Feb 10 19:10:42 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-repos.spec ++++++ --- /var/tmp/diff_new_pack.fK7Ccd/_old 2026-02-16 13:19:14.934889047 +0100 +++ /var/tmp/diff_new_pack.fK7Ccd/_new 2026-02-16 13:19:14.938889213 +0100 @@ -27,6 +27,7 @@ Source11: node_modules.spec.inc %include %_sourcedir/node_modules.spec.inc Patch10: load-css-overrides.patch +Patch11: esbuild-ppc64.patch BuildArch: noarch %if ! 0%{?suse_version} ++++++ _scmsync.obsinfo ++++++ --- /var/tmp/diff_new_pack.fK7Ccd/_old 2026-02-16 13:19:15.002891874 +0100 +++ /var/tmp/diff_new_pack.fK7Ccd/_new 2026-02-16 13:19:15.010892207 +0100 @@ -1,6 +1,6 @@ -mtime: 1770286245 -commit: 7b4ff82e715165119e2cedfe87eff7e658c108bad2dff84a10f6c6f0b11bf633 +mtime: 1770884497 +commit: 2646f23d6e5d1d9a02c0f12d194bffcaab6a7556f7faaa193ae70fb9460360eb url: https://src.opensuse.org/cockpit/cockpit-repos.git -revision: 7b4ff82e715165119e2cedfe87eff7e658c108bad2dff84a10f6c6f0b11bf633 +revision: 2646f23d6e5d1d9a02c0f12d194bffcaab6a7556f7faaa193ae70fb9460360eb 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:19:40.000000000 +0100 @@ -0,0 +1 @@ +.osc ++++++ 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
