Terminal styling and layout widgets for OCaml (tables, trees, panels, colors)
1
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.

+8
+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-tty)) 13 + 12 14 (package 13 15 (name tty) 14 16 (synopsis "Terminal styling and layout widgets")
+3
tty-eio.opam
··· 8 8 authors: ["Thomas Gazagnaire <thomas@gazagnaire.org>"] 9 9 license: "MIT" 10 10 tags: ["org:blacksun" "cli" "format" "eio"] 11 + homepage: "https://tangled.org/gazagnaire.org/ocaml-tty" 12 + bug-reports: "https://tangled.org/gazagnaire.org/ocaml-tty/issues" 11 13 depends: [ 12 14 "dune" {>= "3.21"} 13 15 "ocaml" {>= "5.1"} ··· 32 34 "@doc" {with-doc} 33 35 ] 34 36 ] 37 + dev-repo: "git+https://tangled.org/gazagnaire.org/ocaml-tty" 35 38 x-maintenance-intent: ["(latest)"]
+3
tty.opam
··· 9 9 authors: ["Thomas Gazagnaire <thomas@gazagnaire.org>"] 10 10 license: "MIT" 11 11 tags: ["org:blacksun" "cli" "format"] 12 + homepage: "https://tangled.org/gazagnaire.org/ocaml-tty" 13 + bug-reports: "https://tangled.org/gazagnaire.org/ocaml-tty/issues" 12 14 depends: [ 13 15 "dune" {>= "3.21"} 14 16 "ocaml" {>= "5.1"} ··· 35 37 "@doc" {with-doc} 36 38 ] 37 39 ] 40 + dev-repo: "git+https://tangled.org/gazagnaire.org/ocaml-tty" 38 41 x-maintenance-intent: ["(latest)"] 39 42 x-quality-build: "2026-04-15" 40 43 x-quality-cram: "2026-04-15"