Commit24bd3400Recorded1 Apr 2026Repositorysigil-caldav

Migrate to 0.9.1 transitive deps with version ranges and lockfile

Message

Replace tag-pinned monorepo URL with per-dep version ranges (^0.9.0). Use standalone repo URL for sigil-sxml. Add sigil.lock for reproducible builds. Update README build instructions to include sigil deps install.

Changed
 README.md   |  3 ++-
 package.sgl | 12 +++++-------
 sigil.lock  | 26 ++++++++++++++++++++++++++
 3 files changed, 33 insertions(+), 8 deletions(-)
Diff
README.mdmodified
@@ -67,7 +67,8 @@ Then connect and manage calendars:
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,11 +3,9 @@
3
;;; Provides a CalDAV (RFC 4791) client for interacting with
4
;;; calendar servers like Fastmail, Nextcloud, and Radicale.
5
6
(define sigil-repo "codeberg:sigil/sigil#v0.8.0")
7
6
(package
7
name: "sigil-caldav"
10
version: "0.8.0"
+8
version: "0.9.1"
9
description: "CalDAV calendar client library for Sigil"
10
url: "https://codeberg.org/sigil/sigil-caldav"
11
license: "BSD-3-Clause"
@@ -26,10 +24,10 @@
24
optimize: 2))
25
26
dependencies: (list
29
(from-git url: sigil-repo package: "sigil-stdlib")
30
(from-git url: sigil-repo package: "sigil-http")
31
(from-git url: sigil-repo package: "sigil-sxml")
32
(from-git url: sigil-repo package: "sigil-crypto"))
+27
(from-git url: "codeberg:sigil/sigil" package: "sigil-stdlib" version: "^0.9.0")
+28
(from-git url: "codeberg:sigil/sigil" package: "sigil-http" version: "^0.9.0")
+29
(from-git url: "codeberg:sigil/sigil-sxml" version: "^0.9.0")
+30
(from-git url: "codeberg:sigil/sigil" package: "sigil-crypto" version: "^0.9.0"))
31
32
tasks: (list
33
(task
sigil.lockadded
@@ -0,0 +1,26 @@
+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-http"
+10
url: "codeberg:sigil/sigil"
+11
ref: "^0.9.0"
+12
sha: "54f66e8ec446b65b75ab6f12454d2c0aa269f2c0"
+13
package-selector: "sigil-http"
+14
version: "0.9.1")
+15
(package name: "sigil-sxml"
+16
url: "codeberg:sigil/sigil-sxml"
+17
ref: "^0.9.0"
+18
sha: "081b6337c28d2ae55cd7658002cd6bc5e79ea07b"
+19
version: "0.9.1")
+20
(package name: "sigil-crypto"
+21
url: "codeberg:sigil/sigil"
+22
ref: "^0.9.0"
+23
sha: "54f66e8ec446b65b75ab6f12454d2c0aa269f2c0"
+24
package-selector: "sigil-crypto"
+25
version: "0.9.1")
+26
)