Terminal styling and layout widgets for OCaml (tables, trees, panels, colors)
1
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.

+14 -14
+1 -1
dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries tty tty-eio fmt)) 7 + (libraries nox-tty nox-tty-eio fmt))
+4 -4
dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 3 4 - (name tty) 4 + (name nox-tty) 5 5 6 6 (generate_opam_files true) 7 7 ··· 12 12 (source (tangled gazagnaire.org/ocaml-tty)) 13 13 14 14 (package 15 - (name tty) 15 + (name nox-tty) 16 16 (synopsis "Terminal styling and layout widgets") 17 17 (tags (org:blacksun cli format)) 18 18 (description ··· 30 30 (alcobar :with-test))) 31 31 32 32 (package 33 - (name tty-eio) 33 + (name nox-tty-eio) 34 34 (synopsis "Eio bindings for tty progress bars") 35 35 (tags (org:blacksun cli format eio)) 36 36 (description ··· 38 38 so the core tty library stays scheduler-agnostic.") 39 39 (depends 40 40 (ocaml (>= 5.1)) 41 - (tty (= :version)) 41 + (nox-tty (= :version)) 42 42 (eio (>= 1.0)) 43 43 (mdx :with-test) 44 44 logs
+1 -1
fuzz/dune
··· 1 1 (library 2 2 (name fuzz_tty) 3 3 (modules fuzz_tty) 4 - (libraries tty alcobar)) 4 + (libraries nox-tty alcobar)) 5 5 6 6 (executable 7 7 (name fuzz)
+1 -1
lib/dune
··· 1 1 (library 2 2 (name tty) 3 - (public_name tty) 3 + (public_name nox-tty) 4 4 (libraries fmt logs unix uucp uutf) 5 5 (foreign_stubs 6 6 (language c)
+2 -2
lib/eio/dune
··· 1 1 (library 2 2 (name tty_eio) 3 - (public_name tty-eio) 4 - (libraries tty eio)) 3 + (public_name nox-tty-eio) 4 + (libraries nox-tty eio))
+1 -1
test/cram/helpers/dune
··· 1 1 (executable 2 2 (name dump_progress) 3 - (libraries tty unix re)) 3 + (libraries nox-tty unix re))
+3 -3
test/dune
··· 11 11 test_table 12 12 test_tree 13 13 test_width) 14 - (libraries tty alcotest re fmt)) 14 + (libraries nox-tty alcotest re fmt)) 15 15 16 16 (executable 17 17 (name debug_progress) 18 18 (modules debug_progress) 19 - (libraries tty unix)) 19 + (libraries nox-tty unix)) 20 20 21 21 (executable 22 22 (name check_width) 23 23 (modules check_width) 24 - (libraries tty unix)) 24 + (libraries nox-tty unix)) 25 25 26 26 (executable 27 27 (name minimal_progress)
+1 -1
tty-eio.opam nox-tty-eio.opam
··· 13 13 depends: [ 14 14 "dune" {>= "3.21"} 15 15 "ocaml" {>= "5.1"} 16 - "tty" {= version} 16 + "nox-tty" {= version} 17 17 "eio" {>= "1.0"} 18 18 "mdx" {with-test} 19 19 "logs"
tty.opam nox-tty.opam
tty.opam.template nox-tty.opam.template