-
-
Notifications
You must be signed in to change notification settings - Fork 6.1k
Add quickjs 2025.09.13 #32022
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Add quickjs 2025.09.13 #32022
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| bot: | ||
| automerge: true | ||
| build_platform: | ||
| linux_aarch64: linux_64 | ||
| linux_ppc64le: linux_64 | ||
| osx_arm64: osx_64 | ||
| test: native_and_emulated |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,56 @@ | ||
| context: | ||
| version: "2025.09.13" | ||
| commit: f1139494d18a2053630c5ed3384a42bb70db3c53 | ||
|
|
||
| package: | ||
| name: quickjs | ||
| version: ${{ version }} | ||
|
|
||
| source: | ||
| url: https://github.com/bellard/quickjs/archive/${{ commit }}.tar.gz | ||
| sha256: 0364fd5136857117c8204c2f0c203b71b25b9f025dc1a0605ea51f0fd7f92511 | ||
|
|
||
| build: | ||
| number: 0 | ||
| skip: | ||
| - win | ||
| script: | ||
| - make -j${CPU_COUNT} CC="${CC}" PREFIX="${PREFIX}" | ||
| - make test CC="${CC}" | ||
| - make install PREFIX="${PREFIX}" | ||
|
|
||
| requirements: | ||
| build: | ||
| - ${{ compiler('c') }} | ||
| - ${{ stdlib('c') }} | ||
| - make | ||
|
|
||
| tests: | ||
| - script: | ||
| - qjs -e "console.log('hello')" | ||
| - package_contents: | ||
| bin: | ||
| - qjs | ||
| - qjsc | ||
| include: | ||
| - quickjs/quickjs.h | ||
| - quickjs/quickjs-libc.h | ||
| files: | ||
| - lib/quickjs/libquickjs.a | ||
|
|
||
| about: | ||
| homepage: https://bellard.org/quickjs/ | ||
| summary: A small and embeddable JavaScript engine | ||
| description: | | ||
| QuickJS is a small and embeddable JavaScript engine. It supports the | ||
| ES2023 specification including modules, asynchronous generators, | ||
| proxies and BigInt. It optionally supports mathematical extensions | ||
| such as big decimal floating point numbers (BigDecimal), big binary | ||
| floating point numbers (BigFloat) and operator overloading. | ||
| license: MIT | ||
| license_file: LICENSE | ||
| repository: https://github.com/bellard/quickjs | ||
|
|
||
| extra: | ||
| recipe-maintainers: | ||
| - chrisburr | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Upstream is explicit about not supporting a shared build:
At this point I'm inclined to ignore it as I doubt it is going to matter.