OCaml library and CLI for OCI and Docker image manipulation
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-oci)) 13 + 12 14 (package 13 15 (name oci) 14 16 (synopsis "OCaml library and CLI for OCI and Docker image manipulation")
+3
oci.opam
··· 7 7 authors: ["Thomas Gazagnaire <thomas@gazagnaire.org>"] 8 8 license: "ISC" 9 9 tags: ["org:blacksun" "codec.text"] 10 + homepage: "https://tangled.org/gazagnaire.org/ocaml-oci" 11 + bug-reports: "https://tangled.org/gazagnaire.org/ocaml-oci/issues" 10 12 depends: [ 11 13 "dune" {>= "3.21"} 12 14 "ocaml" {>= "5.0.0"} ··· 55 57 "@doc" {with-doc} 56 58 ] 57 59 ] 60 + dev-repo: "git+https://tangled.org/gazagnaire.org/ocaml-oci" 58 61 x-maintenance-intent: ["(latest)"] 59 62 x-quality-interop: "2026-04-15" 60 63 x-quality-test: "2026-04-15"