Commitad759dabRecorded1 Apr 2026Repositorysigil-cairo

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
@@ -41,12 +41,16 @@ Cairo 2D graphics FFI bindings for [Sigil](https://codeberg.org/sigil/sigil).
41
42
Requires Cairo system library (`libcairo`).
43
+44
## System Prerequisites
+45
+46
- [Cairo](https://www.cairographics.org/) (`libcairo`)
+47
48
## Development
49
50
```bash
47
guix shell -m ~/Projects/Code/sigil/sigil/manifest.scm
48
sigil build --redirects dev-redirects.sgl
49
sigil test --redirects dev-redirects.sgl
+51
sigil deps install
+52
sigil build
+53
sigil test
54
```
55
56
## License
package.sglmodified
@@ -3,8 +3,6 @@
3
;;; Provides FFI bindings to the Cairo library for 2D graphics
4
;;; rendering in Sigil applications.
5
6
(define sigil-repo "codeberg:sigil/sigil#v0.8.0")
7
6
(package
7
name: "sigil-cairo"
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
)