Commitf7499fcfRecorded1 Apr 2026Repositorysigil-tui
Migrate to transitive deps with version ranges and lockfile
Message
Replace tag-pinned monorepo URLs with version ranges (^0.9.0) and generate sigil.lock for reproducible builds.
Changed
package.sgl | 8 +++-----
sigil.lock | 21 +++++++++++++++++++++
2 files changed, 24 insertions(+), 5 deletions(-)Diff
package.sglmodified
@@ -3,8 +3,6 @@
3
;;; Immediate-mode terminal UI with grid-based rendering, input parsing, 4
;;; layout, and components for building interactive terminal applications. 5
−6
(define sigil-repo "codeberg:sigil/sigil#v0.8.0")−7
6
(package 7
name: "sigil-tui" 8
version: "0.7.0"@@ -26,9 +24,9 @@
24
optimize: 2)) 25
26
dependencies: (list−29
(from-git url: sigil-repo package: "sigil-stdlib")−30
(from-git url: sigil-repo package: "sigil-ansi")−31
(from-git url: sigil-repo package: "sigil-socket"))+27
(from-git url: "codeberg:sigil/sigil" package: "sigil-stdlib" version: "^0.9.0")+28
(from-git url: "codeberg:sigil/sigil" package: "sigil-ansi" version: "^0.9.0")+29
(from-git url: "codeberg:sigil/sigil" package: "sigil-socket" version: "^0.9.0")) 30
31
;; Native library for high-performance grid operations 32
libraries: (listsigil.lockadded
@@ -0,0 +1,21 @@
+1
;; Auto-generated by sigil deps install. Do not edit.+2
(lock+3
(package name: "sigil-stdlib"+4
url: "codeberg:sigil/sigil"+5
ref: "^0.9.0"+6
sha: "54f66e8ec446b65b75ab6f12454d2c0aa269f2c0"+7
package-selector: "sigil-stdlib"+8
version: "0.9.1")+9
(package name: "sigil-ansi"+10
url: "codeberg:sigil/sigil"+11
ref: "^0.9.0"+12
sha: "54f66e8ec446b65b75ab6f12454d2c0aa269f2c0"+13
package-selector: "sigil-ansi"+14
version: "0.9.1")+15
(package name: "sigil-socket"+16
url: "codeberg:sigil/sigil"+17
ref: "^0.9.0"+18
sha: "54f66e8ec446b65b75ab6f12454d2c0aa269f2c0"+19
package-selector: "sigil-socket"+20
version: "0.9.1")+21
)