The unpac monorepo manager self-hosting as a monorepo using unpac
0
fork

Configure Feed

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

new organisation url

+12 -10
+1
vendor/opam/iomux/CHANGES.md
··· 2 2 3 3 * Clamp max open files to 2^19, as macOS sometimes returns 4 4 2^32-1 (#7 @avsm). 5 + * Upgrade to dune 3.19 and move to ocaml-multicore organisation (@avsm). 5 6 6 7 ## v0.3 (2023-03-10) 7 8
+4 -4
vendor/opam/iomux/dune-project
··· 1 - (lang dune 3.6) 1 + (lang dune 3.19) 2 2 (name iomux) 3 3 (generate_opam_files true) 4 4 (source 5 - (github haesbaert/ocaml-iomux)) 5 + (github ocaml-multicore/ocaml-iomux)) 6 6 (authors "Christiano Haesbaert") 7 - (maintainers "Christiano Haesbaert") 7 + (maintainers "OCaml Multicore Team") 8 8 (license ISC) 9 - (documentation https://haesbaert.github.io/ocaml-iomux) 9 + (documentation https://ocaml-multicore.github.io/ocaml-iomux) 10 10 11 11 (package 12 12 (name iomux)
+7 -6
vendor/opam/iomux/iomux.opam
··· 3 3 synopsis: "IO Multiplexer bindings" 4 4 description: 5 5 "Low level bindings for Unix IO Multiplexers (poll/ppoll/kevent/epoll)" 6 - maintainer: ["Christiano Haesbaert"] 6 + maintainer: ["OCaml Multicore Team"] 7 7 authors: ["Christiano Haesbaert"] 8 8 license: "ISC" 9 9 tags: ["io" "multiplexing" "poll" "ppoll" "epoll" "kevent" "kqueue"] 10 - homepage: "https://github.com/haesbaert/ocaml-iomux" 11 - doc: "https://haesbaert.github.io/ocaml-iomux" 12 - bug-reports: "https://github.com/haesbaert/ocaml-iomux/issues" 10 + homepage: "https://github.com/ocaml-multicore/ocaml-iomux" 11 + doc: "https://ocaml-multicore.github.io/ocaml-iomux" 12 + bug-reports: "https://github.com/ocaml-multicore/ocaml-iomux/issues" 13 13 depends: [ 14 14 "ocaml" {>= "4.08"} 15 - "dune" {>= "3.6"} 15 + "dune" {>= "3.19"} 16 16 "dune-configurator" 17 17 "alcotest" {with-test} 18 18 "odoc" {with-doc} ··· 31 31 "@doc" {with-doc} 32 32 ] 33 33 ] 34 - dev-repo: "git+https://github.com/haesbaert/ocaml-iomux.git" 34 + dev-repo: "git+https://github.com/ocaml-multicore/ocaml-iomux.git" 35 + x-maintenance-intent: ["(latest)"]