Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions registry/racket.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
backends = ["aqua:racket/racket/minimal"]

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 The aqua backend identifier is incorrect. The aqua registry package added in aquaproj/aqua-registry#53232 (also referenced in the PR description) is named racket-lang.org/racket-minimal, which means the mise identifier should be aqua:racket-lang.org/racket-minimal. The current value aqua:racket/racket/minimal does not correspond to any existing aqua package and will fail at install time. Existing domain-style aqua packages in this registry (e.g., aqua:atlassian.com/acli) confirm that the domain prefix must be included as-is.

Suggested change
backends = ["aqua:racket/racket/minimal"]
backends = ["aqua:racket-lang.org/racket-minimal"]

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 The aqua backend identifier aqua:racket/racket/minimal does not match the package name in the aqua registry. The PR description links to aquaproj/aqua-registry#53232, which adds the package as racket-lang.org/racket-minimal. Other domain-prefixed aqua entries in this registry (e.g. aqua:atlassian.com/acli, aqua:getdbt.com/dbt-fusion) confirm the full domain must be included as-is. Using the wrong identifier will cause mise install racket to fail at runtime.

Suggested change
backends = ["aqua:racket/racket/minimal"]
backends = ["aqua:racket-lang.org/racket-minimal"]

description = "Minimal Racket distribution"
test = { cmd = "racket --version", expected = "Welcome to Racket v{{version}}" }