SquashFS compressed filesystem reader in pure OCaml
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Migrate dune-project files to tangled source format

Convert all packages from:
(source (uri https://tangled.org/handle/repo))
to:
(source (tangled handle/repo))

This uses dune 3.21's native tangled support for cleaner source
declarations. Also removes redundant homepage/bug_reports fields
that are auto-generated from tangled sources.

+6 -7
+3 -5
dune-project
··· 1 - (lang dune 3.0) 1 + (lang dune 3.21) 2 2 3 3 (name squashfs) 4 4 ··· 8 8 (authors "Thomas Gazagnaire <thomas@gazagnaire.org>") 9 9 (maintainers "Thomas Gazagnaire <thomas@gazagnaire.org>") 10 10 11 - (source 12 - (uri https://tangled.org/gazagnaire.org/ocaml-squashfs)) 11 + 12 + (source (tangled gazagnaire.org/ocaml-squashfs)) 13 13 14 14 (package 15 15 (name squashfs) ··· 18 18 "Pure OCaml implementation for reading SquashFS compressed filesystems. 19 19 Supports gzip and zstd compression. Useful for reading initramfs images, 20 20 container filesystems, and embedded system images.") 21 - (homepage "https://tangled.org/gazagnaire.org/ocaml-squashfs") 22 - (bug_reports "https://tangled.org/gazagnaire.org/ocaml-squashfs/issues") 23 21 (depends 24 22 (ocaml (>= 5.1)) 25 23 (bytesrw (>= 0.3))
+3 -2
squashfs.opam
··· 11 11 homepage: "https://tangled.org/gazagnaire.org/ocaml-squashfs" 12 12 bug-reports: "https://tangled.org/gazagnaire.org/ocaml-squashfs/issues" 13 13 depends: [ 14 - "dune" {>= "3.0"} 14 + "dune" {>= "3.21"} 15 15 "ocaml" {>= "5.1"} 16 16 "bytesrw" {>= "0.3"} 17 17 "conf-zlib" ··· 35 35 "@doc" {with-doc} 36 36 ] 37 37 ] 38 - dev-repo: "https://tangled.org/gazagnaire.org/ocaml-squashfs" 38 + dev-repo: "git+https://tangled.org/gazagnaire.org/ocaml-squashfs" 39 + x-maintenance-intent: ["(latest)"]