-
-
Notifications
You must be signed in to change notification settings - Fork 171
packages: Add VSCodium #1930
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
packages: Add VSCodium #1930
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,10 @@ | ||||||
| DEFVER=1 | ||||||
| ARCHS_SUPPORTED="amd64 arm64 ppc64el" | ||||||
| get_github_releases "VSCodium/vscodium" "latest" | ||||||
| if [ "${ACTION}" != prettylist ]; then | ||||||
| URL=$(grep -m 1 "browser_download_url.*\.deb\"" "${CACHE_FILE}" | cut -d '"' -f 4) | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P1: The Prompt for AI agents
Suggested change
|
||||||
| VERSION_PUBLISHED=$(cut -d '/' -f 8 <<< "${URL//v/}") | ||||||
| fi | ||||||
| PRETTY_NAME="VSCodium" | ||||||
| WEBSITE="https://vscodium.com" | ||||||
| SUMMARY="VSCodium is a community-driven, freely-licensed binary distribution of Microsoft’s editor VS Code." | ||||||
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.
P1: The newly added
vscodiumpackage definition is missing from the project manifest (01-main/manifest). PerAGENTS.md, every new package must be added to the manifest alphabetically so that it is discoverable and covered by CI installation tests. Without this registration, the package exists on disk but will not be listed or tested.Prompt for AI agents