Eio HTTP server with static file serving and route handlers
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/ocaml-respond)) 11 + 10 12 (package 11 13 (name respond) 12 14 (synopsis "Eio HTTP server with static file serving and route handlers")
+3
respond.opam
··· 7 7 authors: ["Thomas Gazagnaire <thomas@gazagnaire.org>"] 8 8 license: "ISC" 9 9 tags: ["org:blacksun" "network" "http" "eio"] 10 + homepage: "https://tangled.org/gazagnaire.org/ocaml-respond" 11 + bug-reports: "https://tangled.org/gazagnaire.org/ocaml-respond/issues" 10 12 depends: [ 11 13 "ocaml" {>= "5.1"} 12 14 "dune" {>= "3.21" & >= "3.0"} ··· 33 35 "@doc" {with-doc} 34 36 ] 35 37 ] 38 + dev-repo: "git+https://tangled.org/gazagnaire.org/ocaml-respond" 36 39 x-maintenance-intent: ["(latest)"] 37 40 x-quality-build: "2026-04-15" 38 41 x-quality-test: "2026-04-15"