HTTP types: headers, status codes, methods, bodies, MIME types
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
··· 8 8 (authors "Thomas Gazagnaire <thomas@gazagnaire.org>") 9 9 (maintainers "Thomas Gazagnaire <thomas@gazagnaire.org>") 10 10 11 + (source (tangled gazagnaire.org/ocaml-http)) 12 + 11 13 (package 12 14 (name http) 13 15 (synopsis "HTTP types: headers, status codes, methods, bodies, MIME types")
+3
http.opam
··· 5 5 authors: ["Thomas Gazagnaire <thomas@gazagnaire.org>"] 6 6 license: "ISC" 7 7 tags: ["org:blacksun" "network" "http"] 8 + homepage: "https://tangled.org/gazagnaire.org/ocaml-http" 9 + bug-reports: "https://tangled.org/gazagnaire.org/ocaml-http/issues" 8 10 depends: [ 9 11 "dune" {>= "3.21"} 10 12 "ocaml" {>= "5.1"} ··· 35 37 "@doc" {with-doc} 36 38 ] 37 39 ] 40 + dev-repo: "git+https://tangled.org/gazagnaire.org/ocaml-http" 38 41 x-maintenance-intent: ["(latest)"] 39 42 x-quality-build: "2026-04-15" 40 43 x-quality-test: "2026-04-15"