HomeKit Accessory Protocol (HAP) for OCaml
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
+4 -4
dune-project
··· 23 23 (ocaml (>= 4.14)) 24 24 (srp (>= 0.1)) 25 25 (mdns (>= 0.1)) 26 - (kdf (>= 0.1)) 27 - (crypto (>= 1.0.0)) 28 - (crypto-ec (>= 1.0.0)) 29 - (crypto-rng (>= 1.0.0)) 26 + (nox-kdf (>= 0.1)) 27 + (nox-crypto (>= 1.0.0)) 28 + (nox-crypto-ec (>= 1.0.0)) 29 + (nox-crypto-rng (>= 1.0.0)) 30 30 (eio (>= 1.0)) 31 31 (re (>= 1.10)) 32 32 (requests (>= 0.1))
+4 -4
hap.opam
··· 16 16 "ocaml" {>= "4.14"} 17 17 "srp" {>= "0.1"} 18 18 "mdns" {>= "0.1"} 19 - "kdf" {>= "0.1"} 20 - "crypto" {>= "1.0.0"} 21 - "crypto-ec" {>= "1.0.0"} 22 - "crypto-rng" {>= "1.0.0"} 19 + "nox-kdf" {>= "0.1"} 20 + "nox-crypto" {>= "1.0.0"} 21 + "nox-crypto-ec" {>= "1.0.0"} 22 + "nox-crypto-rng" {>= "1.0.0"} 23 23 "eio" {>= "1.0"} 24 24 "re" {>= "1.10"} 25 25 "requests" {>= "0.1"}
+4 -4
lib/dune
··· 5 5 srp 6 6 mdns 7 7 requests 8 - kdf.hkdf 9 - crypto 10 - crypto-ec 11 - crypto-rng 8 + nox-kdf.hkdf 9 + nox-crypto 10 + nox-crypto-ec 11 + nox-crypto-rng 12 12 eio 13 13 re 14 14 json