From 0d82849798748eaef39e4f0e75a144d611a0d147 Mon Sep 17 00:00:00 2001 From: Julian Noble Date: Mon, 3 Aug 2026 19:33:54 +1000 Subject: [PATCH] bootsupport manifest: commandstack pulled from minted root modules commandstack is first-party (src/modules source, minted to root modules/ since the module left vendormodules) - the manifest still pointed at src/vendormodules, which carries no commandstack-*.tm, so bootsupport was frozen at the stale 0.3/0.4 copies. Repoint to base `modules` (the packagepreference pattern) in include_modules.config and the tclpackages toml record so `make.tcl bootsupport` promotes the minted 0.6.0. Layout manifest copies sync on the next make.tcl modules run. Claude-Session: https://claude.ai/code/session_01TNn3C58Cpekt3CsZNLCqvR Assisted-by: harness=claude; primary-model=claude-fable-5; api-location=anthropic.com --- src/bootsupport/modules/include_modules.config | 2 +- src/bootsupport/tclpackages.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bootsupport/modules/include_modules.config b/src/bootsupport/modules/include_modules.config index 223df580..d446ccc8 100644 --- a/src/bootsupport/modules/include_modules.config +++ b/src/bootsupport/modules/include_modules.config @@ -18,7 +18,7 @@ # Files without punkcheck install records are never pruned automatically. # (glob detection: [regexp {[*?\[\]]} $modulematch] in make.tcl bootsupport_localupdate; see also src/bootsupport/AGENTS.md) set bootsupport_modules [list\ - src/vendormodules commandstack\ + modules commandstack\ src/vendormodules cksum\ src/vendormodules cmdline\ src/vendormodules debug\ diff --git a/src/bootsupport/tclpackages.toml b/src/bootsupport/tclpackages.toml index 8437bdd4..d146e77e 100644 --- a/src/bootsupport/tclpackages.toml +++ b/src/bootsupport/tclpackages.toml @@ -44,7 +44,7 @@ [modules.tcl] [[modules.tcl.allplatforms]] name = "commandstack" - source = "src/vendormodules" + source = "modules" [[modules.tcl.allplatforms]] name = "cksum" source = "src/vendormodules"