upstream: github.com/mirleft/ocaml-x509
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.

+21 -21
+1 -1
dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries x509 cstruct)) 7 + (libraries nox-x509 cstruct))
+7 -7
dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 - (name x509) 3 + (name nox-x509) 4 4 (source (tangled gazagnaire.org/ocaml-x509)) 5 5 (license BSD-2-Clause) 6 6 (authors ··· 11 11 (generate_opam_files true) 12 12 13 13 (package 14 - (name x509) 14 + (name nox-x509) 15 15 (synopsis "Public Key Infrastructure (RFC 5280, PKCS) purely in OCaml") 16 16 (description 17 17 "X.509 is a public key infrastructure used mostly on the Internet. Certificates include public keys and identifiers signed by an authority. This library implements most parts of RFC5280 and RFC6125, plus PKCS 1, 5, 7, 8, 9, 10, and 12 encoding/decoding in ASN.1 DER and PEM format.") ··· 22 22 (asn1-combinators (>= 0.3.1)) 23 23 ptime 24 24 (base64 (>= 3.3.0)) 25 - (crypto (>= 1.0.0)) 26 - crypto-pk 27 - (crypto-ec (>= 0.10.7)) 28 - (crypto-rng (>= 1.2.0)) 25 + (nox-crypto (>= 1.0.0)) 26 + nox-crypto-pk 27 + (nox-crypto-ec (>= 0.10.7)) 28 + (nox-crypto-rng (>= 1.2.0)) 29 29 (fmt (>= 0.8.7)) 30 30 (alcotest :with-test) 31 31 (gmap (>= 0.3.0)) 32 32 (domain-name (>= 0.3.0)) 33 33 logs 34 - (kdf (>= 1.0.0)) 34 + (nox-kdf (>= 1.0.0)) 35 35 (ohex (>= 0.2.0)) 36 36 (mdx :with-test) 37 37 (ipaddr (>= 5.2.0)))
+6 -6
lib/dune
··· 1 1 (library 2 2 (name x509) 3 - (public_name x509) 3 + (public_name nox-x509) 4 4 (private_modules 5 5 asn_grammars 6 6 registry ··· 24 24 asn1-combinators 25 25 fmt 26 26 ptime 27 - crypto 28 - crypto-pk 27 + nox-crypto 28 + nox-crypto-pk 29 29 gmap 30 30 domain-name 31 31 base64 32 32 logs 33 - crypto-ec 34 - kdf.pbkdf 35 - crypto-rng 33 + nox-crypto-ec 34 + nox-kdf.pbkdf 35 + nox-crypto-rng 36 36 ipaddr 37 37 ohex))
+1 -1
tests/custom_pp/dune
··· 1 1 (executable 2 2 (name custom_pp) 3 - (libraries x509 asn1-combinators fmt)) 3 + (libraries nox-x509 asn1-combinators fmt)) 4 4 5 5 (rule 6 6 (deps
+1 -1
tests/dune
··· 7 7 (source_tree csr) 8 8 (source_tree pkcs12) 9 9 (source_tree ocsp)) 10 - (libraries x509 alcotest ptime.clock.os crypto-pk crypto-ec crypto-rng.unix)) 10 + (libraries nox-x509 alcotest ptime.clock.os nox-crypto-pk nox-crypto-ec nox-crypto-rng.unix))
+5 -5
x509.opam nox-x509.opam
··· 17 17 "asn1-combinators" {>= "0.3.1"} 18 18 "ptime" 19 19 "base64" {>= "3.3.0"} 20 - "crypto" {>= "1.0.0"} 21 - "crypto-pk" 22 - "crypto-ec" {>= "0.10.7"} 23 - "crypto-rng" {>= "1.2.0"} 20 + "nox-crypto" {>= "1.0.0"} 21 + "nox-crypto-pk" 22 + "nox-crypto-ec" {>= "0.10.7"} 23 + "nox-crypto-rng" {>= "1.2.0"} 24 24 "fmt" {>= "0.8.7"} 25 25 "alcotest" {with-test} 26 26 "gmap" {>= "0.3.0"} 27 27 "domain-name" {>= "0.3.0"} 28 28 "logs" 29 - "kdf" {>= "1.0.0"} 29 + "nox-kdf" {>= "1.0.0"} 30 30 "ohex" {>= "0.2.0"} 31 31 "mdx" {with-test} 32 32 "ipaddr" {>= "5.2.0"}
x509.opam.template nox-x509.opam.template