@@ -242,7 +242,7 @@ url = "https://github.com/edge-toolkit/core/releases/download/rp-v1/rustpython-0
242242# asset filename in data.toml and the url here.
243243[tools ."http:rp-wasm" ]
244244checksum = " sha256:7b81d53f5b3a63c60fc2bc1717e87466026d796ec522b925f009532c7b0291f3"
245- url = " https://github.com/edge-toolkit/core/releases/download/{{ vars.a_rp_release }}/{{ vars.rp_wasm_asset }}"
245+ url = " https://github.com/edge-toolkit/core/releases/download/{{ vars.a_rp_release }}/{{ vars.a_rp_wasm_asset }}"
246246version = " 08a1d6f"
247247
248248[tools ."http:augeas" ]
@@ -368,19 +368,19 @@ pip_for_rustpython_wheel_url = ":http:packages/{{ vars.pip_for_rustpython_sha }}
368368# wasm-pack --target web; `freeze-stdlib` is the default crates/wasm
369369# feature so the .wasm embeds the Python stdlib (no RUSTPYTHONPATH dance
370370# needed at consumer-side). Tracks main HEAD so the upstream `pip` audit-
371- # hook fix (RustPython#7956) is in. rp_wasm_asset pins the upstream short
371+ # hook fix (RustPython#7956) is in. a_rp_wasm_asset pins the upstream short
372372# SHA; config/upstream-cache/data.toml records the matching SHA256; built + uploaded
373373# by config.maint.toml's `publish-rp-wasm-to-release` (sharing the rp-v<N>
374374# release tag with the native rustpython binary builds).
375- # `rp_wasm_short ` is the canonical version source -- the upstream
375+ # `a_rp_wasm_short ` is the canonical version source -- the upstream
376376# RustPython commit's 7-char short SHA. rp_wasm_dir templates against
377377# it, and the publish-rp-wasm-to-release maint task bumps it (plus
378- # rp_wasm_asset , the tool entry's version + checksum, and the
379- # data.toml asset row) in one go. rp_wasm_asset stays a literal
378+ # a_rp_wasm_asset , the tool entry's version + checksum, and the
379+ # data.toml asset row) in one go. a_rp_wasm_asset stays a literal
380380# string because checksums.rego reads the raw TOML and needs the
381381# filename verbatim to cross-check the data.toml [asset.*] entry.
382- rp_wasm_asset = " rustpython-wasm-08a1d6f.tar.gz"
383- rp_wasm_short = " 08a1d6f"
382+ a_rp_wasm_asset = " rustpython-wasm-08a1d6f.tar.gz"
383+ a_rp_wasm_short = " 08a1d6f"
384384# Install dir for the [tools."http:rp-wasm"] tarball -- mise extracts
385385# to `installs/http-rp-wasm/<version>/`. Picks the per-OS install
386386# root inline: on Windows mise uses %LOCALAPPDATA%\mise (config.toml's
@@ -394,13 +394,13 @@ rp_wasm_short = "08a1d6f"
394394# ("C:/Users/runneradmin/AppData/Local"), and a mixed-slash path
395395# trips uutils-coreutils' Windows path normalizer (`cp: The system
396396# cannot find the path specified. (os error 3)`).
397+ gh_http = " --http-url https://github.com --progress --ignore-existing"
397398rp_wasm_dir = ''' {% if os() == "windows" -%}
398399{%- set base = get_env(name="LOCALAPPDATA", default="") | replace(from=`\`, to="/") -%}
399- {{- base -}}/mise/installs/http-rp-wasm/{{- vars.rp_wasm_short -}}
400+ {{- base -}}/mise/installs/http-rp-wasm/{{- vars.a_rp_wasm_short -}}
400401{%- else -%}
401- {{- vars.mise_data_dir -}}/installs/http-rp-wasm/{{- vars.rp_wasm_short -}}
402+ {{- vars.mise_data_dir -}}/installs/http-rp-wasm/{{- vars.a_rp_wasm_short -}}
402403{%- endif %}'''
403- gh_http = " --http-url https://github.com --progress --ignore-existing"
404404
405405[env ]
406406# Comma-separated list of every language env (one per .mise/config.<lang>.toml).
0 commit comments