Package: guix-patches;
Reported by: iyzsong <at> envs.net
Date: Sat, 8 Mar 2025 10:49:01 UTC
Severity: normal
Tags: patch
Done: 宋文武 <iyzsong <at> envs.net>
Bug is archived. No further changes may be made.
Message #14 received at 76862 <at> debbugs.gnu.org (full text, mbox):
From: iyzsong <at> envs.net To: 76862 <at> debbugs.gnu.org Cc: 宋文武 <iyzsong <at> member.fsf.org> Subject: [PATCH 4/6] gnu: wasm3: Update to 0.5.0-1.139076a. Date: Sat, 8 Mar 2025 18:55:32 +0800
From: 宋文武 <iyzsong <at> member.fsf.org> * gnu/packages/web.scm (wasm3): Update to 0.5.0-1.139076a. Change-Id: I0c1e28d8ed20b4e030db3d118ca69fe459b338c0 --- gnu/packages/web.scm | 92 ++++++++++++++++++++++---------------------- 1 file changed, 47 insertions(+), 45 deletions(-) diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 193241bcf3..d10cee88fe 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -1850,51 +1850,53 @@ (define-public wabt (license license:asl2.0))) (define-public wasm3 - (package - (name "wasm3") - (version "0.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/wasm3/wasm3") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07zzmk776j8ydyxhrnnjiscbhhmz182a62r6aix6kfk5kq2cwia2")))) - (build-system cmake-build-system) - (arguments - ;; The default WASI option "uvwasi" causes CMake to initiate a 'git - ;; clone' which cannot happen within the build container. - '(#:configure-flags '("-DBUILD_WASI=simple") - ;; No check target. There are tests but they require a network - ;; connection to download the WebAssembly core test suite. - #:tests? #f - ;; There is no install target. Instead, we have to manually copy the - ;; wasm3 build artifacts to the output directory. - #:phases - (modify-phases %standard-phases - (replace 'install - (lambda* (#:key outputs #:allow-other-keys) - (let* ((out (assoc-ref outputs "out")) - (bindir (string-append out "/bin")) - (includedir (string-append out "/include")) - (libdir (string-append out "/lib"))) - (mkdir-p bindir) - (mkdir-p includedir) - (mkdir-p libdir) - (copy-file "wasm3" (string-append bindir "/wasm3")) - (for-each (lambda (header) - (copy-file header - (string-append includedir "/" - (basename header)))) - (find-files "../source/source" "\\.h$")) - (copy-file "source/libm3.a" - (string-append libdir "/libm3.a")))))))) - (home-page "https://github.com/wasm3/wasm3") - (synopsis "WebAssembly interpreter") - (description "WASM3 is a fast WebAssembly interpreter.") - (license license:expat))) + ;; Use an unreleased version with 'm3_GetTableFunction' for tic80. + (let ((commit "139076a98b8321b67f850a844f558b5e91b5ac83")) + (package + (name "wasm3") + (version (git-version "0.5.0" "1" commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/wasm3/wasm3") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0329kx43n0ns9qxj813239wna69qyi9ghfb1sks46f39h24q0n3x")))) + (build-system cmake-build-system) + (arguments + ;; The default WASI option "uvwasi" causes CMake to initiate a 'git + ;; clone' which cannot happen within the build container. + '(#:configure-flags '("-DBUILD_WASI=simple") + ;; No check target. There are tests but they require a network + ;; connection to download the WebAssembly core test suite. + #:tests? #f + ;; There is no install target. Instead, we have to manually copy the + ;; wasm3 build artifacts to the output directory. + #:phases + (modify-phases %standard-phases + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (bindir (string-append out "/bin")) + (includedir (string-append out "/include")) + (libdir (string-append out "/lib"))) + (mkdir-p bindir) + (mkdir-p includedir) + (mkdir-p libdir) + (copy-file "wasm3" (string-append bindir "/wasm3")) + (for-each (lambda (header) + (copy-file header + (string-append includedir "/" + (basename header)))) + (find-files "../source/source" "\\.h$")) + (copy-file "source/libm3.a" + (string-append libdir "/libm3.a")))))))) + (home-page "https://github.com/wasm3/wasm3") + (synopsis "WebAssembly interpreter") + (description "WASM3 is a fast WebAssembly interpreter.") + (license license:expat)))) (define-public wasm-micro-runtime (package -- 2.48.1
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.