Commit22f43f39Recorded1 Apr 2026Repositorysigil-forgejo
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). Remove sigil-tls (transitive, not directly imported). Add sigil.lock for reproducible builds. Update README build instructions to include sigil deps install.
Changed
README.md | 3 ++-
package.sgl | 9 +++------
sigil.lock | 15 +++++++++++++++
3 files changed, 20 insertions(+), 7 deletions(-)Diff
README.mdmodified
@@ -42,7 +42,8 @@ Then import the modules you need:
42
## Building 43
44
```bash−45
sigil build --redirects dev-redirects.sgl+45
sigil deps install+46
sigil build 47
``` 48
49
## Licensepackage.sglmodified
@@ -3,20 +3,17 @@
3
;;; Provides typed access to the Forgejo REST API for managing repositories, 4
;;; organizations, topics, issues, pull requests, releases, and more. 5
−6
(define sigil-repo "codeberg:sigil/sigil#v0.8.0")−7
6
(package 7
name: "sigil-forgejo"−10
version: "0.1.0"+8
version: "0.9.1" 9
description: "Forgejo/Codeberg API client library" 10
url: "https://codeberg.org/sigil/sigil-forgejo" 11
license: "BSD-3-Clause" 12
authors: (list "David Wilson <[email protected]>") 13
14
dependencies: (list−17
(from-git url: sigil-repo package: "sigil-stdlib")−18
(from-git url: sigil-repo package: "sigil-http")−19
(from-git url: sigil-repo package: "sigil-tls"))+15
(from-git url: "codeberg:sigil/sigil" package: "sigil-stdlib" version: "^0.9.0")+16
(from-git url: "codeberg:sigil/sigil" package: "sigil-http" version: "^0.9.0")) 17
18
tasks: (list 19
(tasksigil.lockadded
@@ -0,0 +1,15 @@
+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
)