Commit5475d26dRecorded1 Apr 2026Repositorysigil-youtube

Migrate to 0.9.1 transitive deps with version ranges and lockfile

Message

Trim deps to direct-only (remove sigil-tls, sigil-crypto, sigil-log), replace tag pins with version ranges, generate lockfile, update README build instructions. Transitive deps resolved via sigil-oauth.

Changed
 README.md   | 11 +++--------
 package.sgl | 14 ++++----------
 sigil.lock  | 32 ++++++++++++++++++++++++++++++++
 3 files changed, 39 insertions(+), 18 deletions(-)
Diff
README.mdmodified
@@ -32,9 +32,6 @@ analytics, livestreaming, and playlist APIs.
32
- `sigil-stdlib` — core, dict, string, struct
33
- `sigil-json` — JSON encode/decode
34
- `sigil-http` — HTTP client
35
- `sigil-tls` — HTTPS support
36
- `sigil-crypto` — cryptographic primitives (for sigil-oauth)
37
- `sigil-log` — structured logging
35
- `sigil-oauth` — shared OAuth 2.0 client library
36
37
Core dependencies are from the [sigil](https://codeberg.org/sigil/sigil) mono-repo.
@@ -43,11 +40,9 @@ OAuth support is from [sigil-oauth](https://codeberg.org/sigil/sigil-oauth).
40
## Building
41
42
```bash
46
# With local sigil checkout (development)
47
sigil build --redirects dev-redirects.sgl
48
49
# Run tests
50
sigil test --redirects dev-redirects.sgl
+43
sigil deps install
+44
sigil build
+45
sigil test
46
```
47
48
## Usage
package.sglmodified
@@ -3,9 +3,6 @@
3
;;; Provides functions for OAuth2 authentication, video management,
4
;;; resumable uploads, analytics queries, and livestream control.
5
6
(define sigil-repo "codeberg:sigil/sigil#v0.8.0")
7
(define oauth-repo "codeberg:sigil/sigil-oauth")
8
6
(package
7
name: "sigil-youtube"
8
version: "0.1.0"
@@ -27,13 +24,10 @@
24
optimize: 2))
25
26
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")
36
(from-git url: oauth-repo package: "sigil-oauth"))
+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" package: "sigil-json" version: "^0.9.0")
+30
(from-git url: "codeberg:sigil/sigil-oauth" version: "^0.9.0"))
31
32
tasks: (list
33
(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-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-oauth"
+22
url: "codeberg:sigil/sigil-oauth"
+23
ref: "^0.9.0"
+24
sha: "b924a7d1c1cd14bee54652c56e6d42badfec33ca"
+25
version: "0.9.1")
+26
(package name: "sigil-log"
+27
url: "codeberg:sigil/sigil"
+28
ref: "^0.9.0"
+29
sha: "54f66e8ec446b65b75ab6f12454d2c0aa269f2c0"
+30
package-selector: "sigil-log"
+31
version: "0.9.1")
+32
)