Commitb924a7d1Recorded1 Apr 2026Repositorysigil-oauth

Migrate to 0.9.1 transitive deps with version ranges and lockfile

Message

Replace tag-pinned monorepo deps with version ranges, remove sigil-tls and sigil-crypto (transitive deps), generate sigil.lock, and update README build instructions.

Changed
 README.md   | 24 ++++++++----------------
 package.sgl | 14 +++++---------
 sigil.lock  | 27 +++++++++++++++++++++++++++
 3 files changed, 40 insertions(+), 25 deletions(-)
Diff
README.mdmodified
@@ -128,25 +128,17 @@ Tokens are stored as JSON in `~/.config/sigil/<service-name>/tokens.json`:
128
(oauth-clear-tokens "youtube") ;; returns #t if deleted, #f if missing
129
```
130
131
## Building
132
133
```bash
134
sigil build --redirects dev-redirects.sgl
135
```
136
137
## Testing
138
139
```bash
140
sigil build --redirects dev-redirects.sgl
141
ln -sf build/dev/lib lib # one-time setup
142
sigil test --redirects dev-redirects.sgl
143
```
144
131
## Dependencies
132
133
- sigil-stdlib
148
- sigil-tls
134
- sigil-http
135
- sigil-json
151
- sigil-crypto
136
- sigil-log
+137
+138
## Building
+139
+140
```bash
+141
sigil deps install
+142
sigil build
+143
sigil test
+144
```
package.sglmodified
@@ -4,11 +4,9 @@
4
;;; token refresh, token storage, and local redirect handling.
5
;;; Used by sigil-youtube, sigil-twitch, and other API clients.
6
7
(define sigil-repo "codeberg:sigil/sigil#v0.8.0")
8
7
(package
8
name: "sigil-oauth"
11
version: "0.1.0"
+9
version: "0.9.1"
10
description: "OAuth 2.0 client library for Sigil"
11
url: "https://codeberg.org/sigil/sigil-oauth"
12
license: "BSD-3-Clause"
@@ -27,12 +25,10 @@
25
optimize: 2))
26
27
dependencies: (list
30
(from-git url: sigil-repo package: "sigil-stdlib")
31
(from-git url: sigil-repo package: "sigil-tls")
32
(from-git url: sigil-repo package: "sigil-http")
33
(from-git url: sigil-repo package: "sigil-json")
34
(from-git url: sigil-repo package: "sigil-crypto")
35
(from-git url: sigil-repo package: "sigil-log"))
+28
(from-git url: "codeberg:sigil/sigil" package: "sigil-stdlib" version: "^0.9.0")
+29
(from-git url: "codeberg:sigil/sigil" package: "sigil-http" version: "^0.9.0")
+30
(from-git url: "codeberg:sigil/sigil" package: "sigil-json" version: "^0.9.0")
+31
(from-git url: "codeberg:sigil/sigil" package: "sigil-log" version: "^0.9.0"))
32
33
tasks: (list
34
(task
sigil.lockadded
@@ -0,0 +1,27 @@
+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-json"
+16
url: "codeberg:sigil/sigil"
+17
ref: "^0.9.0"
+18
sha: "54f66e8ec446b65b75ab6f12454d2c0aa269f2c0"
+19
package-selector: "sigil-json"
+20
version: "0.9.1")
+21
(package name: "sigil-log"
+22
url: "codeberg:sigil/sigil"
+23
ref: "^0.9.0"
+24
sha: "54f66e8ec446b65b75ab6f12454d2c0aa269f2c0"
+25
package-selector: "sigil-log"
+26
version: "0.9.1")
+27
)