Build information library for monopam tools.
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
··· 7 7 8 8 (generate_opam_files true) 9 9 10 + (source (tangled gazagnaire.org/monopam-info)) 11 + 10 12 (package 11 13 (name monopam-info) 12 14 (synopsis "Git commit hash version for OCaml CLIs")
+3
monopam-info.opam
··· 5 5 authors: ["Thomas Gazagnaire <thomas@gazagnaire.org>"] 6 6 license: "ISC" 7 7 tags: ["org:blacksun" "cli" "git"] 8 + homepage: "https://tangled.org/gazagnaire.org/monopam-info" 9 + bug-reports: "https://tangled.org/gazagnaire.org/monopam-info/issues" 8 10 depends: [ 9 11 "ocaml" {>= "5.0"} 10 12 "dune" {>= "3.21" & >= "3.0"} ··· 27 29 "@doc" {with-doc} 28 30 ] 29 31 ] 32 + dev-repo: "git+https://tangled.org/gazagnaire.org/monopam-info" 30 33 x-maintenance-intent: ["(latest)"] 31 34 x-quality-build: "2026-04-15" 32 35 x-quality-test: "2026-04-15"