From 3fe2f6485774f321c82617a884c2e1e4d350f55a Mon Sep 17 00:00:00 2001 From: Hiroki Tagato Date: Tue, 8 Apr 2025 20:53:58 +0900 Subject: devel/electron35: add port: Build cross-platform desktop apps with JavaScript, HTML, and CSS Build cross platform desktop apps with JavaScript, HTML, and CSS. It's easier than you think. If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application. WWW: https://electronjs.org/ --- .../electron35/files/patch-electron_spec_api-protocol-spec.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 devel/electron35/files/patch-electron_spec_api-protocol-spec.ts (limited to 'devel/electron35/files/patch-electron_spec_api-protocol-spec.ts') diff --git a/devel/electron35/files/patch-electron_spec_api-protocol-spec.ts b/devel/electron35/files/patch-electron_spec_api-protocol-spec.ts new file mode 100644 index 000000000000..3195a7eabb74 --- /dev/null +++ b/devel/electron35/files/patch-electron_spec_api-protocol-spec.ts @@ -0,0 +1,11 @@ +--- electron/spec/api-protocol-spec.ts.orig 2024-11-07 16:14:43 UTC ++++ electron/spec/api-protocol-spec.ts +@@ -1738,7 +1738,7 @@ describe('protocol module', () => { + + // TODO(nornagon): this test doesn't pass on Linux currently, investigate. + // test is also flaky on CI on macOS so it is currently disabled there as well. +- ifit(process.platform !== 'linux' && (!process.env.CI || process.platform !== 'darwin'))('is fast', async () => { ++ ifit((process.platform !== 'linux' && process.platform !== 'freebsd') && (!process.env.CI || process.platform !== 'darwin'))('is fast', async () => { + // 128 MB of spaces. + const chunk = new Uint8Array(128 * 1024 * 1024); + chunk.fill(' '.charCodeAt(0)); -- cgit v1.2.3