upstream: github.com/mirage/ca-certs
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Forks: point (source ...) at upstream and add Thomas as maintainer

Each fork's dune-project (source ...) now matches the canonical
upstream URL recorded in sources.toml, so the generated dev-repo:
in opam-repository points users at the real home rather than the
in-monorepo collaboration fork. Where Thomas is doing maintenance
on the fork but isn't yet listed, add him to the relevant author
or maintainer fields.

ca-certs -> github mirage/ca-certs
(added Thomas to authors and maintainers)
ocaml-cbor -> tangled anil.recoil.org/ocaml-cbort
ocaml-cookie -> tangled anil.recoil.org/ocaml-cookeio
ocaml-json -> github dbuenzli/jsont
ocaml-jwt -> tangled anil.recoil.org/ocaml-jsonwt
ocaml-tar -> github mirage/ocaml-tar
(added Thomas to maintainers)
ocaml-toml -> tangled anil.recoil.org/ocaml-tomlt
ocaml-yaml -> tangled anil.recoil.org/ocaml-yamlt

+18 -8
+10 -5
ca-certs.opam
··· 3 3 synopsis: "Detect root CA certificates from the operating system" 4 4 description: 5 5 "TLS requires a set of root anchors (Certificate Authorities) to authenticate servers. This library exposes this list so that it can be registered with ocaml-tls." 6 - maintainer: ["Etienne Millon <me@emillon.org>"] 6 + maintainer: [ 7 + "Etienne Millon <me@emillon.org>" 8 + "Thomas Gazagnaire <thomas@gazagnaire.org>" 9 + ] 7 10 authors: [ 8 - "Etienne Millon <me@emillon.org>, Hannes Mehnert <hannes@mehnert.org>" 11 + "Etienne Millon <me@emillon.org>" 12 + "Hannes Mehnert <hannes@mehnert.org>" 13 + "Thomas Gazagnaire <thomas@gazagnaire.org>" 9 14 ] 10 15 license: "ISC" 11 - homepage: "https://tangled.org/gazagnaire.org/ca-certs" 12 - bug-reports: "https://tangled.org/gazagnaire.org/ca-certs/issues" 16 + homepage: "https://github.com/mirage/ca-certs" 17 + bug-reports: "https://github.com/mirage/ca-certs/issues" 13 18 depends: [ 14 19 "dune" {>= "3.21"} 15 20 "bos" ··· 30 35 conflicts: [ 31 36 "result" {< "1.5"} 32 37 ] 33 - dev-repo: "git+https://tangled.org/gazagnaire.org/ca-certs" 38 + dev-repo: "git+https://github.com/mirage/ca-certs.git" 34 39 build: [ 35 40 ["dune" "subst"] {dev} 36 41 [
+8 -3
dune-project
··· 3 3 (name ca-certs) 4 4 5 5 (generate_opam_files true) 6 - (source (tangled gazagnaire.org/ca-certs)) 6 + (source (github mirage/ca-certs)) 7 7 (license ISC) 8 - (maintainers "Etienne Millon <me@emillon.org>") 9 - (authors "Etienne Millon <me@emillon.org>, Hannes Mehnert <hannes@mehnert.org>") 8 + (maintainers 9 + "Etienne Millon <me@emillon.org>" 10 + "Thomas Gazagnaire <thomas@gazagnaire.org>") 11 + (authors 12 + "Etienne Millon <me@emillon.org>" 13 + "Hannes Mehnert <hannes@mehnert.org>" 14 + "Thomas Gazagnaire <thomas@gazagnaire.org>") 10 15 11 16 (package 12 17 (name ca-certs)