Matter smart home protocol implementation for OCaml
0
fork

Configure Feed

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

Add (source ...) stanzas to subtree dune-projects

38 subtrees lacked a (source ...) stanza in their dune-project, so
their generated .opam files had no dev-repo: field. That broke
downstream tooling that uses dev-repo to identify the subtree
(notably the root.opam external-dep filter, which couldn't tell
internal packages from external ones).

Add (source (tangled gazagnaire.org/<subtree>)) to each, matching
the URL configured in sources.toml. dune regenerates dev-repo:,
homepage: and bug-reports: in every affected .opam.

+5
+2
dune-project
··· 9 9 (authors "Thomas Gazagnaire <thomas@gazagnaire.org>") 10 10 (maintainers "Thomas Gazagnaire <thomas@gazagnaire.org>") 11 11 12 + (source (tangled gazagnaire.org/ocaml-matter)) 13 + 12 14 (package 13 15 (name matter) 14 16 (synopsis "Matter protocol implementation for OCaml")
+3
matter.opam
··· 10 10 authors: ["Thomas Gazagnaire <thomas@gazagnaire.org>"] 11 11 license: "MIT" 12 12 tags: ["org:blacksun" "system" "network"] 13 + homepage: "https://tangled.org/gazagnaire.org/ocaml-matter" 14 + bug-reports: "https://tangled.org/gazagnaire.org/ocaml-matter/issues" 13 15 depends: [ 14 16 "dune" {>= "3.21"} 15 17 "ocaml" {>= "4.14"} ··· 49 51 "@doc" {with-doc} 50 52 ] 51 53 ] 54 + dev-repo: "git+https://tangled.org/gazagnaire.org/ocaml-matter" 52 55 x-maintenance-intent: ["(latest)"] 53 56 x-quality-build: "2026-04-15" 54 57 x-quality-fuzz: "2026-04-15"