Pure OCaml ARP table lookup - reads /proc/net/arp on Linux and arp -a on macOS/BSD
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Migrate dune-project files to tangled source format

Convert all packages from:
(source (uri https://tangled.org/handle/repo))
to:
(source (tangled handle/repo))

This uses dune 3.21's native tangled support for cleaner source
declarations. Also removes redundant homepage/bug_reports fields
that are auto-generated from tangled sources.

+7 -4
+5 -2
arp.opam
··· 3 3 synopsis: "Pure OCaml ARP table lookup" 4 4 description: 5 5 "Read the system ARP cache without external dependencies. Uses /proc/net/arp on Linux and arp -a on macOS/BSD." 6 + homepage: "https://tangled.org/gazagnaire.org/ocaml-arp" 7 + bug-reports: "https://tangled.org/gazagnaire.org/ocaml-arp/issues" 6 8 depends: [ 7 9 "ocaml" {>= "4.14.0"} 8 - "dune" {>= "3.0" & >= "3.0"} 10 + "dune" {>= "3.21" & >= "3.0"} 9 11 "alcotest" {with-test} 10 12 "odoc" {with-doc} 11 13 ] ··· 23 25 "@doc" {with-doc} 24 26 ] 25 27 ] 26 - dev-repo: "https://tangled.org/gazagnaire.org/ocaml-arp" 28 + dev-repo: "git+https://tangled.org/gazagnaire.org/ocaml-arp" 29 + x-maintenance-intent: ["(latest)"]
+2 -2
dune-project
··· 1 - (lang dune 3.0) 1 + (lang dune 3.21) 2 2 (name arp) 3 - (source (uri https://tangled.org/gazagnaire.org/ocaml-arp)) 3 + (source (tangled gazagnaire.org/ocaml-arp)) 4 4 5 5 (generate_opam_files true) 6 6