Commit59241583Recorded1 Apr 2026Repositorysigil-xmpp

Migrate to 0.9.1 transitive deps with version ranges and lockfile

Message

Replace tag-pinned monorepo refs with version: "^0.9.0" ranges. Use extracted sigil-sxml repo URL. Add sigil.lock for reproducible builds. Update README build instructions to use sigil deps install workflow.

Changed
 README.md   |  3 ++-
 package.sgl | 12 +++++-------
 sigil.lock  | 32 ++++++++++++++++++++++++++++++++
 3 files changed, 39 insertions(+), 8 deletions(-)
Diff
README.mdmodified
@@ -67,7 +67,8 @@ Then import and connect:
67
## Building
68
69
```bash
70
sigil build --redirects dev-redirects.sgl
+70
sigil deps install
+71
sigil build
72
sigil test
73
```
74
package.sglmodified
@@ -3,8 +3,6 @@
3
;;; Provides XMPP client functionality with STARTTLS, SASL authentication,
4
;;; roster management, presence, MUC support, and cooperative non-blocking I/O.
5
6
(define sigil-repo "codeberg:sigil/sigil#v0.8.0")
7
6
(package
7
name: "sigil-xmpp"
8
version: "0.7.0"
@@ -26,11 +24,11 @@
24
optimize: 2))
25
26
dependencies: (list
29
(from-git url: sigil-repo package: "sigil-stdlib")
30
(from-git url: sigil-repo package: "sigil-socket")
31
(from-git url: sigil-repo package: "sigil-tls")
32
(from-git url: sigil-repo package: "sigil-crypto")
33
(from-git url: sigil-repo package: "sigil-sxml"))
+27
(from-git url: "codeberg:sigil/sigil" package: "sigil-stdlib" version: "^0.9.0")
+28
(from-git url: "codeberg:sigil/sigil" package: "sigil-socket" version: "^0.9.0")
+29
(from-git url: "codeberg:sigil/sigil" package: "sigil-tls" version: "^0.9.0")
+30
(from-git url: "codeberg:sigil/sigil" package: "sigil-crypto" version: "^0.9.0")
+31
(from-git url: "codeberg:sigil/sigil-sxml" version: "^0.9.0"))
32
33
tasks: (list
34
(task
sigil.lockadded
@@ -0,0 +1,32 @@
+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-socket"
+10
url: "codeberg:sigil/sigil"
+11
ref: "^0.9.0"
+12
sha: "54f66e8ec446b65b75ab6f12454d2c0aa269f2c0"
+13
package-selector: "sigil-socket"
+14
version: "0.9.1")
+15
(package name: "sigil-tls"
+16
url: "codeberg:sigil/sigil"
+17
ref: "^0.9.0"
+18
sha: "54f66e8ec446b65b75ab6f12454d2c0aa269f2c0"
+19
package-selector: "sigil-tls"
+20
version: "0.9.1")
+21
(package name: "sigil-crypto"
+22
url: "codeberg:sigil/sigil"
+23
ref: "^0.9.0"
+24
sha: "54f66e8ec446b65b75ab6f12454d2c0aa269f2c0"
+25
package-selector: "sigil-crypto"
+26
version: "0.9.1")
+27
(package name: "sigil-sxml"
+28
url: "codeberg:sigil/sigil-sxml"
+29
ref: "^0.9.0"
+30
sha: "081b6337c28d2ae55cd7658002cd6bc5e79ea07b"
+31
version: "0.9.1")
+32
)