CCSDS Space Data Link Security (355.0-B-2)
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.

+11 -11
+4 -4
dune-project
··· 12 12 (tags (org:blacksun aerospace codec.ccsds crypto)) 13 13 (depends 14 14 (ocaml (>= 5.1)) 15 - (crypto (>= 0.1)) 15 + (nox-crypto (>= 0.1)) 16 16 (fmt (>= 0.9)) 17 17 (logs (>= 0.7)) 18 18 (digestif (>= 1.0)) ··· 32 32 (eio (>= 1.0)) 33 33 (eio_main :with-test) 34 34 (fpath (>= 0.7)) 35 - (crypto (>= 0.1)) 36 - (crypto-rng (>= 0.1)) 35 + (nox-crypto (>= 0.1)) 36 + (nox-crypto-rng (>= 0.1)) 37 37 (pbkdf2 (>= 0.1)) 38 - (hkdf (>= 0.1)) 38 + (nox-hkdf (>= 0.1)) 39 39 (fmt (>= 0.9)) 40 40 (logs (>= 0.7)) 41 41 (mdx :with-test)))
+1 -1
eio/dune
··· 1 1 (library 2 2 (name sdls_eio) 3 3 (public_name sdls-eio) 4 - (libraries sdls eio eio.unix fpath crypto crypto-rng fmt logs pbkdf2 hkdf)) 4 + (libraries sdls eio eio.unix fpath nox-crypto nox-crypto-rng fmt logs pbkdf2 nox-hkdf))
+1 -1
lib/dune
··· 1 1 (library 2 2 (name sdls) 3 3 (public_name sdls) 4 - (libraries wire fmt logs crypto digestif eqaf bitv)) 4 + (libraries wire fmt logs nox-crypto digestif eqaf bitv))
+3 -3
sdls-eio.opam
··· 14 14 "eio" {>= "1.0"} 15 15 "eio_main" {with-test} 16 16 "fpath" {>= "0.7"} 17 - "crypto" {>= "0.1"} 18 - "crypto-rng" {>= "0.1"} 17 + "nox-crypto" {>= "0.1"} 18 + "nox-crypto-rng" {>= "0.1"} 19 19 "pbkdf2" {>= "0.1"} 20 - "hkdf" {>= "0.1"} 20 + "nox-hkdf" {>= "0.1"} 21 21 "fmt" {>= "0.9"} 22 22 "logs" {>= "0.7"} 23 23 "mdx" {with-test}
+1 -1
sdls.opam
··· 10 10 depends: [ 11 11 "dune" {>= "3.21"} 12 12 "ocaml" {>= "5.1"} 13 - "crypto" {>= "0.1"} 13 + "nox-crypto" {>= "0.1"} 14 14 "fmt" {>= "0.9"} 15 15 "logs" {>= "0.7"} 16 16 "digestif" {>= "1.0"}
+1 -1
test/interop/cryptolib/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries sdls tc fsr csv alcotest) 3 + (libraries sdls tc fsr nox-csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))