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

Configure Feed

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

Prefix all blacksun packages with nox-

Renames 35 packages to make blacksun forks distinguishable from their
opam-repository upstreams. Module names (Git.x, Tls.x, ...) stay bare;
opam package names and dune (public_name) findlib references move to
nox-X. After this commit, zero local package names overlap with
opam-repository.

Renamed:
- nox-git, nox-irmin
- nox-crypto, nox-crypto-pk, nox-crypto-rng, nox-crypto-ec
- nox-tls, nox-tls-eio, nox-tar, nox-tar-eio, nox-tty, nox-tty-eio
- nox-arp, nox-ca-certs, nox-cbor, nox-cookie, nox-crc, nox-csv
- nox-gpt, nox-hkdf, nox-http, nox-jwt, nox-kdf, nox-loc
- nox-memtrace, nox-pds, nox-sexp, nox-slack, nox-toml
- nox-websocket, nox-x509, nox-xdge, nox-yaml

Also drops orphan tar-mirage and tar-unix opam templates that had no
matching package stanza.

+12 -12
+3 -3
ca-certs.opam nox-ca-certs.opam
··· 22 22 "ptime" 23 23 "logs" 24 24 "digestif" {>= "1.2.0"} 25 - "crypto" {>= "1.0.0"} 26 - "x509" {>= "1.0.0"} 27 - "tls" {with-test} 25 + "nox-crypto" {>= "1.0.0"} 26 + "nox-x509" {>= "1.0.0"} 27 + "nox-tls" {with-test} 28 28 "ocaml" {>= "4.13.0"} 29 29 "ohex" {>= "0.2.0"} 30 30 "alcotest" {with-test}
ca-certs.opam.template nox-ca-certs.opam.template
+1 -1
dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries ca-certs tls)) 7 + (libraries nox-ca-certs nox-tls))
+5 -5
dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 - (name ca-certs) 3 + (name nox-ca-certs) 4 4 5 5 (generate_opam_files true) 6 6 (source (github mirage/ca-certs)) ··· 14 14 "Thomas Gazagnaire <thomas@gazagnaire.org>") 15 15 16 16 (package 17 - (name ca-certs) 17 + (name nox-ca-certs) 18 18 (depends 19 19 bos fpath ptime logs 20 20 (digestif (>= 1.2.0)) 21 - (crypto (>= 1.0.0)) 22 - (x509 (>= 1.0.0)) 23 - (tls :with-test) 21 + (nox-crypto (>= 1.0.0)) 22 + (nox-x509 (>= 1.0.0)) 23 + (nox-tls :with-test) 24 24 (ocaml (>= 4.13.0)) 25 25 (ohex (>= 0.2.0)) 26 26 (alcotest :with-test)
+2 -2
lib/dune
··· 1 1 (library 2 2 (name ca_certs) 3 - (public_name ca-certs) 4 - (libraries crypto x509 bos fpath logs ptime.clock.os digestif ohex) 3 + (public_name nox-ca-certs) 4 + (libraries nox-crypto nox-x509 bos fpath logs ptime.clock.os digestif ohex) 5 5 (foreign_stubs 6 6 (language c) 7 7 (names ca_certs_stubs))
+1 -1
test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries ca-certs fmt alcotest vlog)) 3 + (libraries nox-ca-certs fmt alcotest vlog))