Commitf8020956Recorded1 Apr 2026Repositorysigil-freetype

Migrate to 0.9.1 transitive deps with version ranges and lockfile

Message
  • Remove tag pin from monorepo URL, add version: ^0.9.0 ranges
  • Generate sigil.lock for reproducible builds
  • Update README with sigil deps install workflow and system prerequisites
Changed
 README.md   | 10 +++++++---
 package.sgl |  6 ++----
 sigil.lock  | 15 +++++++++++++++
 3 files changed, 24 insertions(+), 7 deletions(-)
Diff
README.mdmodified
@@ -32,12 +32,16 @@ FreeType font loading FFI bindings for [Sigil](https://codeberg.org/sigil/sigil)
32
33
Requires FreeType system library (`libfreetype`).
34
+35
## System Prerequisites
+36
+37
- [FreeType](https://freetype.org/) (`libfreetype`)
+38
39
## Development
40
41
```bash
38
guix shell -m ~/Projects/Code/sigil/sigil/manifest.scm
39
sigil build --redirects dev-redirects.sgl
40
sigil test --redirects dev-redirects.sgl
+42
sigil deps install
+43
sigil build
+44
sigil test
45
```
46
47
## License
package.sglmodified
@@ -3,8 +3,6 @@
3
;;; Provides FFI bindings to the FreeType library for loading and
4
;;; rendering fonts in Sigil applications.
5
6
(define sigil-repo "codeberg:sigil/sigil#v0.8.0")
7
6
(package
7
name: "sigil-freetype"
8
version: "0.7.0"
@@ -26,8 +24,8 @@
24
optimize: 2))
25
26
dependencies: (list
29
(from-git url: sigil-repo package: "sigil-stdlib")
30
(from-git url: sigil-repo package: "sigil-ffi"))
+27
(from-git url: "codeberg:sigil/sigil" package: "sigil-stdlib" version: "^0.9.0")
+28
(from-git url: "codeberg:sigil/sigil" package: "sigil-ffi" version: "^0.9.0"))
29
30
tasks: (list
31
(task
sigil.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-ffi"
+10
url: "codeberg:sigil/sigil"
+11
ref: "^0.9.0"
+12
sha: "54f66e8ec446b65b75ab6f12454d2c0aa269f2c0"
+13
package-selector: "sigil-ffi"
+14
version: "0.9.1")
+15
)