Minimal bootable disk image builder
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.

+9 -9
+1 -1
bin/dune
··· 1 1 (executable 2 2 (name main) 3 3 (public_name uniboot) 4 - (libraries uniboot cmdliner vlog fmt monopam-info memtrace)) 4 + (libraries uniboot cmdliner vlog fmt monopam-info nox-memtrace))
+3 -3
dune-project
··· 26 26 (depends 27 27 (ocaml (>= 5.1)) 28 28 (bytesrw (>= 0.1)) 29 - (gpt (>= 0.1)) 29 + (nox-gpt (>= 0.1)) 30 30 (mbr (>= 0.1)) 31 31 (squashfs (>= 0.1)) 32 32 (initramfs (>= 0.1)) 33 33 oci 34 34 (eio (>= 1.0)) 35 - xdge 35 + nox-xdge 36 36 (cmdliner (>= 1.2)) 37 37 (fmt (>= 0.9)) 38 38 (logs (>= 0.7)) 39 39 (vlog (>= 0.1)) 40 40 (uuidm (>= 0.9.9)) 41 - memtrace 41 + nox-memtrace 42 42 monopam-info 43 43 (mdx :with-test) 44 44 (alcotest :with-test)))
+2 -2
lib/dune
··· 3 3 (public_name uniboot) 4 4 (libraries 5 5 bytesrw 6 - gpt 6 + nox-gpt 7 7 mbr 8 8 squashfs 9 9 initramfs ··· 13 13 logs 14 14 uuidm 15 15 unix 16 - xdge)) 16 + nox-xdge))
+3 -3
uniboot.opam
··· 15 15 "dune" {>= "3.21"} 16 16 "ocaml" {>= "5.1"} 17 17 "bytesrw" {>= "0.1"} 18 - "gpt" {>= "0.1"} 18 + "nox-gpt" {>= "0.1"} 19 19 "mbr" {>= "0.1"} 20 20 "squashfs" {>= "0.1"} 21 21 "initramfs" {>= "0.1"} 22 22 "oci" 23 23 "eio" {>= "1.0"} 24 - "xdge" 24 + "nox-xdge" 25 25 "cmdliner" {>= "1.2"} 26 26 "fmt" {>= "0.9"} 27 27 "logs" {>= "0.7"} 28 28 "vlog" {>= "0.1"} 29 29 "uuidm" {>= "0.9.9"} 30 - "memtrace" 30 + "nox-memtrace" 31 31 "monopam-info" 32 32 "mdx" {with-test} 33 33 "alcotest" {with-test}