diff --git a/packages/abstract_algebra/abstract_algebra.v0.16.0/opam b/packages/abstract_algebra/abstract_algebra.v0.16.0/opam new file mode 100644 index 00000000000..a4d350a3c14 --- /dev/null +++ b/packages/abstract_algebra/abstract_algebra.v0.16.0/opam @@ -0,0 +1,27 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/abstract_algebra" +bug-reports: "https://github.com/janestreet/abstract_algebra/issues" +dev-repo: "git+https://github.com/janestreet/abstract_algebra.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/abstract_algebra/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A small library describing abstract algebra concepts" +description: " +A library describing abstract algebra concepts. Currently, it includes +Commutative_group and Vector_space. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/abstract_algebra-v0.16.0.tar.gz" +checksum: "sha256=70df5e88cf6e2d7a6f4fddb52f2706d82c3deee2ce3313ce902fc92f6fa442c3" +} diff --git a/packages/accessor/accessor.v0.16.0/opam b/packages/accessor/accessor.v0.16.0/opam new file mode 100644 index 00000000000..05b9d9e47bd --- /dev/null +++ b/packages/accessor/accessor.v0.16.0/opam @@ -0,0 +1,32 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/accessor" +bug-reports: "https://github.com/janestreet/accessor/issues" +dev-repo: "git+https://github.com/janestreet/accessor.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/accessor/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "higher_kinded" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A library that makes it nicer to work with nested functional data structures" +description: " +An accessor is a value that understands how to reach data within a larger data structure, +independently from what you intend to do with it. Accessors allow you to read and write +data and perform possibly-monadic traversals. By composing accessors, you can work with +increasingly complex data structures. + +In case you have ever heard of \"lenses\", this is an OCaml implementation of that idea. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/accessor-v0.16.0.tar.gz" +checksum: "sha256=a37b678d4b0d9ee119bbad2ec0354850672144bb74df5a27f33156ce20e96215" +} diff --git a/packages/accessor_async/accessor_async.v0.16.0/opam b/packages/accessor_async/accessor_async.v0.16.0/opam new file mode 100644 index 00000000000..f75c5e8480f --- /dev/null +++ b/packages/accessor_async/accessor_async.v0.16.0/opam @@ -0,0 +1,29 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/accessor_async" +bug-reports: "https://github.com/janestreet/accessor_async/issues" +dev-repo: "git+https://github.com/janestreet/accessor_async.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/accessor_async/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "accessor_core" {>= "v0.16" & < "v0.17"} + "async_kernel" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_accessor" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Accessors for Async types, for use with the Accessor library" +description: " +This library provides accessors for numerous types in Async. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/accessor_async-v0.16.0.tar.gz" +checksum: "sha256=5e3553d8150561a1446d82328d462f3059a9a3b305f0cb89c715183b4a0598d2" +} diff --git a/packages/accessor_base/accessor_base.v0.16.0/opam b/packages/accessor_base/accessor_base.v0.16.0/opam new file mode 100644 index 00000000000..4f1e5fa9056 --- /dev/null +++ b/packages/accessor_base/accessor_base.v0.16.0/opam @@ -0,0 +1,29 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/accessor_base" +bug-reports: "https://github.com/janestreet/accessor_base/issues" +dev-repo: "git+https://github.com/janestreet/accessor_base.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/accessor_base/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "accessor" {>= "v0.16" & < "v0.17"} + "base" {>= "v0.16" & < "v0.17"} + "higher_kinded" {>= "v0.16" & < "v0.17"} + "ppx_accessor" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Accessors for Base types, for use with the Accessor library" +description: " +This library provides accessors for numerous types in Base. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/accessor_base-v0.16.0.tar.gz" +checksum: "sha256=ebfebe69955f97992e361a1e3804750f792e1ee449a7744cd8a516041e132d8f" +} diff --git a/packages/accessor_core/accessor_core.v0.16.0/opam b/packages/accessor_core/accessor_core.v0.16.0/opam new file mode 100644 index 00000000000..3509e0e0de1 --- /dev/null +++ b/packages/accessor_core/accessor_core.v0.16.0/opam @@ -0,0 +1,29 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/accessor_core" +bug-reports: "https://github.com/janestreet/accessor_core/issues" +dev-repo: "git+https://github.com/janestreet/accessor_core.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/accessor_core/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "accessor_base" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_accessor" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "ppx_optcomp" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Accessors for Core types, for use with the Accessor library" +description: " +This library provides accessors for numerous types in Core. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/accessor_core-v0.16.0.tar.gz" +checksum: "sha256=08384be5de5de35732793472437485440388960ea6e59e32d98795ab9cd28648" +} diff --git a/packages/async/async.v0.16.0/opam b/packages/async/async.v0.16.0/opam new file mode 100644 index 00000000000..06fafe1a3e4 --- /dev/null +++ b/packages/async/async.v0.16.0/opam @@ -0,0 +1,36 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/async" +bug-reports: "https://github.com/janestreet/async/issues" +dev-repo: "git+https://github.com/janestreet/async.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/async/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async_kernel" {>= "v0.16" & < "v0.17"} + "async_rpc_kernel" {>= "v0.16" & < "v0.17"} + "async_unix" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "ppx_log" {>= "v0.16" & < "v0.17"} + "textutils" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Monadic concurrency library" +description: " +Part of Jane Street's Core library +The Core suite of libraries is an industrial strength alternative to +OCaml's standard library that was developed by Jane Street, the +largest industrial user of OCaml. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/async-v0.16.0.tar.gz" +checksum: "sha256=709041c755f4cd8740b7262e657f59c1066a8540b70c3b99368f369a1196a681" +} diff --git a/packages/async_durable/async_durable.v0.16.0/opam b/packages/async_durable/async_durable.v0.16.0/opam new file mode 100644 index 00000000000..90aea22bd26 --- /dev/null +++ b/packages/async_durable/async_durable.v0.16.0/opam @@ -0,0 +1,29 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/async_durable" +bug-reports: "https://github.com/janestreet/async_durable/issues" +dev-repo: "git+https://github.com/janestreet/async_durable.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/async_durable/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async_kernel" {>= "v0.16" & < "v0.17"} + "async_rpc_kernel" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Durable connections for use with async" +description: " +Async_durable helps recover from errors when connections can be easily be recreated. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/async_durable-v0.16.0.tar.gz" +checksum: "sha256=c5e88464d3805e3edb7721897a21e2a526c90607f34169c780840543a68d43e2" +} diff --git a/packages/async_extra/async_extra.v0.16.0/opam b/packages/async_extra/async_extra.v0.16.0/opam new file mode 100644 index 00000000000..3daf22d87c3 --- /dev/null +++ b/packages/async_extra/async_extra.v0.16.0/opam @@ -0,0 +1,31 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/async_extra" +bug-reports: "https://github.com/janestreet/async_extra/issues" +dev-repo: "git+https://github.com/janestreet/async_extra.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/async_extra/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async_kernel" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Monadic concurrency library" +description: " +Part of Jane Street's Core library +The Core suite of libraries is an industrial strength alternative to +OCaml's standard library that was developed by Jane Street, the +largest industrial user of OCaml. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/async_extra-v0.16.0.tar.gz" +checksum: "sha256=8084ad31437e9cede75470ac4f893c7a9d438c1c8502eea25fc3ef0af66aed00" +} diff --git a/packages/async_find/async_find.v0.16.0/opam b/packages/async_find/async_find.v0.16.0/opam new file mode 100644 index 00000000000..4aea93eb836 --- /dev/null +++ b/packages/async_find/async_find.v0.16.0/opam @@ -0,0 +1,26 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/async_find" +bug-reports: "https://github.com/janestreet/async_find/issues" +dev-repo: "git+https://github.com/janestreet/async_find.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/async_find/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Directory traversal with Async" +description: " +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/async_find-v0.16.0.tar.gz" +checksum: "sha256=2bfb01f8540edd0a26a7c56b404dac88ce003d7299b68ac28fe822bc12a81cb2" +} diff --git a/packages/async_inotify/async_inotify.v0.16.0/opam b/packages/async_inotify/async_inotify.v0.16.0/opam new file mode 100644 index 00000000000..5201440b39b --- /dev/null +++ b/packages/async_inotify/async_inotify.v0.16.0/opam @@ -0,0 +1,29 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/async_inotify" +bug-reports: "https://github.com/janestreet/async_inotify/issues" +dev-repo: "git+https://github.com/janestreet/async_inotify.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/async_inotify/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "async_find" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "inotify" {>= "2.4.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Async wrapper for inotify" +description: " +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/async_inotify-v0.16.0.tar.gz" +checksum: "sha256=1c3a88ee4e7048f11093683cb7134cf5d2b76add85fea2f82bc0a45e3b27899a" +} diff --git a/packages/async_interactive/async_interactive.v0.16.0/opam b/packages/async_interactive/async_interactive.v0.16.0/opam new file mode 100644 index 00000000000..6df3ad54617 --- /dev/null +++ b/packages/async_interactive/async_interactive.v0.16.0/opam @@ -0,0 +1,28 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/async_interactive" +bug-reports: "https://github.com/janestreet/async_interactive/issues" +dev-repo: "git+https://github.com/janestreet/async_interactive.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/async_interactive/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "spawn" {>= "v0.15"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Utilities for building simple command-line based user interfaces" +description: " +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/async_interactive-v0.16.0.tar.gz" +checksum: "sha256=7a624a3a425c831e000de07b57690c311e06f38099457517b1f79a61cf8b9d81" +} diff --git a/packages/async_js/async_js.v0.16.0/opam b/packages/async_js/async_js.v0.16.0/opam new file mode 100644 index 00000000000..8171542d9d4 --- /dev/null +++ b/packages/async_js/async_js.v0.16.0/opam @@ -0,0 +1,30 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/async_js" +bug-reports: "https://github.com/janestreet/async_js/issues" +dev-repo: "git+https://github.com/janestreet/async_js.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/async_js/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async_kernel" {>= "v0.16" & < "v0.17"} + "async_rpc_kernel" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "js_of_ocaml" {>= "5.1.1"} + "js_of_ocaml-ppx" {>= "5.1.1"} + "uri" {>= "3.0.0"} + "uri-sexp" {>= "3.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A small library that provide Async support for JavaScript platforms" +description: " +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/async_js-v0.16.0.tar.gz" +checksum: "sha256=9487c01a447adf8c8d02dd5c915f1ab69772a2e4125481f0a755b0e9e7324558" +} diff --git a/packages/async_kernel/async_kernel.v0.16.0/opam b/packages/async_kernel/async_kernel.v0.16.0/opam new file mode 100644 index 00000000000..b81409e85c0 --- /dev/null +++ b/packages/async_kernel/async_kernel.v0.16.0/opam @@ -0,0 +1,30 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/async_kernel" +bug-reports: "https://github.com/janestreet/async_kernel/issues" +dev-repo: "git+https://github.com/janestreet/async_kernel.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/async_kernel/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Monadic concurrency library" +description: " +Part of Jane Street's Core library +The Core suite of libraries is an industrial strength alternative to +OCaml's standard library that was developed by Jane Street, the +largest industrial user of OCaml. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/async_kernel-v0.16.0.tar.gz" +checksum: "sha256=0eda59386235e967698834d71cb8924d7b466bc4fcbf26ae72797ad05ca6f8a9" +} diff --git a/packages/async_rpc_kernel/async_rpc_kernel.v0.16.0/opam b/packages/async_rpc_kernel/async_rpc_kernel.v0.16.0/opam new file mode 100644 index 00000000000..51db69829ac --- /dev/null +++ b/packages/async_rpc_kernel/async_rpc_kernel.v0.16.0/opam @@ -0,0 +1,31 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/async_rpc_kernel" +bug-reports: "https://github.com/janestreet/async_rpc_kernel/issues" +dev-repo: "git+https://github.com/janestreet/async_rpc_kernel.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/async_rpc_kernel/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async_kernel" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "protocol_version_header" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Platform-independent core of Async RPC library" +description: " +Part of Jane Street's Core library +The Core suite of libraries is an industrial strength alternative to +OCaml's standard library that was developed by Jane Street, the +largest industrial user of OCaml. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/async_rpc_kernel-v0.16.0.tar.gz" +checksum: "sha256=4fe8ced35d51f8a5270180d49385fcde7b33cc8fb5638322049b5350ec84cbb8" +} diff --git a/packages/async_rpc_websocket/async_rpc_websocket.v0.16.0/opam b/packages/async_rpc_websocket/async_rpc_websocket.v0.16.0/opam new file mode 100644 index 00000000000..116dede0b1b --- /dev/null +++ b/packages/async_rpc_websocket/async_rpc_websocket.v0.16.0/opam @@ -0,0 +1,36 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/async_rpc_websocket" +bug-reports: "https://github.com/janestreet/async_rpc_websocket/issues" +dev-repo: "git+https://github.com/janestreet/async_rpc_websocket.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/async_rpc_websocket/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async_rpc_kernel" {>= "v0.16" & < "v0.17"} + "cohttp_async_websocket" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "cohttp-async" {>= "2.5.7" & < "3.0.0" | >= "5.1.1" & < "6.0.0"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Library to serve and dispatch Async RPCs over websockets" +description: " +Library to serve and dispatch Async RPCs over websockets. + +Rpc_websocket makes it easy to serve and send Async RPCs with +HTTP+Websocket underlying the transport. It also provides a mechanism to share the +RPC implementations between a vanilla TCP server and a HTTP server. + +On the server side, the library detects when a websocket connection +is established, and routes to an optionally provided vanilla HTTP handler +when non-websocket traffic occurs. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/async_rpc_websocket-v0.16.0.tar.gz" +checksum: "sha256=06b585dd96c290a5f5e6c72bfbe1ff2b4985306423bd4bbdbc707025982b9a7c" +} diff --git a/packages/async_sendfile/async_sendfile.v0.16.0/opam b/packages/async_sendfile/async_sendfile.v0.16.0/opam new file mode 100644 index 00000000000..084d4e77e76 --- /dev/null +++ b/packages/async_sendfile/async_sendfile.v0.16.0/opam @@ -0,0 +1,27 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/async_sendfile" +bug-reports: "https://github.com/janestreet/async_sendfile/issues" +dev-repo: "git+https://github.com/janestreet/async_sendfile.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/async_sendfile/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async_kernel" {>= "v0.16" & < "v0.17"} + "async_unix" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Thin wrapper around [Linux_ext.sendfile] to send full files" +description: " +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/async_sendfile-v0.16.0.tar.gz" +checksum: "sha256=8c3d7c2c434427f9d7cb03546df265bbad54a499ec1fb15c60aac5544e077f99" +} diff --git a/packages/async_shell/async_shell.v0.16.0/opam b/packages/async_shell/async_shell.v0.16.0/opam new file mode 100644 index 00000000000..cf9a49c6921 --- /dev/null +++ b/packages/async_shell/async_shell.v0.16.0/opam @@ -0,0 +1,27 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/async_shell" +bug-reports: "https://github.com/janestreet/async_shell/issues" +dev-repo: "git+https://github.com/janestreet/async_shell.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/async_shell/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "shell" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Shell helpers for Async" +description: " +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/async_shell-v0.16.0.tar.gz" +checksum: "sha256=7747705be23cec1fe8b4a714df6583b73f8d0849b401da9b94c22e6217045578" +} diff --git a/packages/async_smtp/async_smtp.v0.16.0/opam b/packages/async_smtp/async_smtp.v0.16.0/opam new file mode 100644 index 00000000000..f5c7986474e --- /dev/null +++ b/packages/async_smtp/async_smtp.v0.16.0/opam @@ -0,0 +1,39 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/async_smtp" +bug-reports: "https://github.com/janestreet/async_smtp/issues" +dev-repo: "git+https://github.com/janestreet/async_smtp.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/async_smtp/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "async_extra" {>= "v0.16" & < "v0.17"} + "async_inotify" {>= "v0.16" & < "v0.17"} + "async_sendfile" {>= "v0.16" & < "v0.17"} + "async_shell" {>= "v0.16" & < "v0.17"} + "async_ssl" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "email_message" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "re2" {>= "v0.16" & < "v0.17"} + "resource_cache" {>= "v0.16" & < "v0.17"} + "sexp_macro" {>= "v0.16" & < "v0.17"} + "textutils" {>= "v0.16" & < "v0.17"} + "base64" {>= "3.4.0"} + "cryptokit" {>= "1.16" & < "1.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "SMTP client and server" +description: " +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/async_smtp-v0.16.0.tar.gz" +checksum: "sha256=46d57c39e83b57301cee7f8d5a0a3b3b29b691734f06839ea30efd1f3090b8b9" +} diff --git a/packages/async_ssl/async_ssl.v0.16.0/opam b/packages/async_ssl/async_ssl.v0.16.0/opam new file mode 100644 index 00000000000..ac9f312614e --- /dev/null +++ b/packages/async_ssl/async_ssl.v0.16.0/opam @@ -0,0 +1,35 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/async_ssl" +bug-reports: "https://github.com/janestreet/async_ssl/issues" +dev-repo: "git+https://github.com/janestreet/async_ssl.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/async_ssl/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "base" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "ppx_optcomp" {>= "v0.16" & < "v0.17"} + "stdio" {>= "v0.16" & < "v0.17"} + "conf-libssl" + "ctypes" {>= "0.18.0"} + "ctypes-foreign" + "dune" {>= "2.0.0"} + "dune-configurator" +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "An Async-pipe-based interface with OpenSSL" +description: " +This library allows you to create an SSL client and server, with +encrypted communication between both. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/async_ssl-v0.16.0.tar.gz" +checksum: "sha256=5c9f74ddc00228634c2f6c60c10f3a821dc664f873d80c427284588c3e01bedd" +} diff --git a/packages/async_udp/async_udp.v0.16.0/opam b/packages/async_udp/async_udp.v0.16.0/opam new file mode 100644 index 00000000000..055aecab3e0 --- /dev/null +++ b/packages/async_udp/async_udp.v0.16.0/opam @@ -0,0 +1,30 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/async_udp" +bug-reports: "https://github.com/janestreet/async_udp/issues" +dev-repo: "git+https://github.com/janestreet/async_udp.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/async_udp/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Monadic concurrency library" +description: " +Part of Jane Street's Core library +The Core suite of libraries is an industrial strength alternative to +OCaml's standard library that was developed by Jane Street, the +largest industrial user of OCaml. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/async_udp-v0.16.0.tar.gz" +checksum: "sha256=1f57bb9c3bf4cd829aac0acf7cda4656010c177bba4980dd1e7b855e640485ad" +} diff --git a/packages/async_unix/async_unix.v0.16.0/opam b/packages/async_unix/async_unix.v0.16.0/opam new file mode 100644 index 00000000000..e7531ac27bc --- /dev/null +++ b/packages/async_unix/async_unix.v0.16.0/opam @@ -0,0 +1,32 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/async_unix" +bug-reports: "https://github.com/janestreet/async_unix/issues" +dev-repo: "git+https://github.com/janestreet/async_unix.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/async_unix/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async_kernel" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Monadic concurrency library" +description: " +Part of Jane Street's Core library +The Core suite of libraries is an industrial strength alternative to +OCaml's standard library that was developed by Jane Street, the +largest industrial user of OCaml. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/async_unix-v0.16.0.tar.gz" +checksum: "sha256=a6a86202acea433b5c739ac20190a9a364da9d9eb7ebd402f517b8c58983839b" +} diff --git a/packages/async_websocket/async_websocket.v0.16.0/opam b/packages/async_websocket/async_websocket.v0.16.0/opam new file mode 100644 index 00000000000..d499fa1ec6c --- /dev/null +++ b/packages/async_websocket/async_websocket.v0.16.0/opam @@ -0,0 +1,29 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/async_websocket" +bug-reports: "https://github.com/janestreet/async_websocket/issues" +dev-repo: "git+https://github.com/janestreet/async_websocket.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/async_websocket/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "cryptokit" {>= "1.16" & < "1.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A library that implements the websocket protocol on top of Async" +description: " +This library implements both the server and client side of + the websocket protocol. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/async_websocket-v0.16.0.tar.gz" +checksum: "sha256=f7710de516c48eec103569c4c9a9d3ac18d6b8e435ffc1fed6519488b08ef275" +} diff --git a/packages/babel/babel.v0.16.0/opam b/packages/babel/babel.v0.16.0/opam new file mode 100644 index 00000000000..fcc3a178123 --- /dev/null +++ b/packages/babel/babel.v0.16.0/opam @@ -0,0 +1,29 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/babel" +bug-reports: "https://github.com/janestreet/babel/issues" +dev-repo: "git+https://github.com/janestreet/babel.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/babel/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async_rpc_kernel" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "streamable" {>= "v0.16" & < "v0.17"} + "tilde_f" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A library for defining Rpcs that can evolve over time without breaking backward compatibility." +description: " +A library for defining Rpcs that can evolve over time without breaking backward compatibility. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/babel-v0.16.0.tar.gz" +checksum: "sha256=8afe3e90915efc7edddfc98bd583d576cc12f44fba433324a0e6d40d1e9e7140" +} diff --git a/packages/base/base.v0.16.0/opam b/packages/base/base.v0.16.0/opam new file mode 100644 index 00000000000..67f8d065359 --- /dev/null +++ b/packages/base/base.v0.16.0/opam @@ -0,0 +1,37 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/base" +bug-reports: "https://github.com/janestreet/base/issues" +dev-repo: "git+https://github.com/janestreet/base.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/base/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "sexplib0" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "dune-configurator" +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Full standard library replacement for OCaml" +description: " +Full standard library replacement for OCaml + +Base is a complete and portable alternative to the OCaml standard +library. It provides all standard functionalities one would expect +from a language standard library. It uses consistent conventions +across all of its module. + +Base aims to be usable in any context. As a result system dependent +features such as I/O are not offered by Base. They are instead +provided by companion libraries such as stdio: + + https://github.com/janestreet/stdio +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/base-v0.16.0.tar.gz" +checksum: "sha256=ae7076435fb2b4e92b0a6a831ee76a2869b924a47d89ba3d5fc771aa8f54f66d" +} diff --git a/packages/base_bigstring/base_bigstring.v0.16.0/opam b/packages/base_bigstring/base_bigstring.v0.16.0/opam new file mode 100644 index 00000000000..fe5e47b3528 --- /dev/null +++ b/packages/base_bigstring/base_bigstring.v0.16.0/opam @@ -0,0 +1,27 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/base_bigstring" +bug-reports: "https://github.com/janestreet/base_bigstring/issues" +dev-repo: "git+https://github.com/janestreet/base_bigstring.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/base_bigstring/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "int_repr" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "String type based on [Bigarray], for use in I/O and C-bindings" +description: " +String type based on [Bigarray], for use in I/O and C-bindings. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/base_bigstring-v0.16.0.tar.gz" +checksum: "sha256=19fcbf8fa1fa557d513679413a9087e4ff1cb846cef1e8a78eaffb293fa926c3" +} diff --git a/packages/base_quickcheck/base_quickcheck.v0.16.0/opam b/packages/base_quickcheck/base_quickcheck.v0.16.0/opam new file mode 100644 index 00000000000..09cee49540b --- /dev/null +++ b/packages/base_quickcheck/base_quickcheck.v0.16.0/opam @@ -0,0 +1,33 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/base_quickcheck" +bug-reports: "https://github.com/janestreet/base_quickcheck/issues" +dev-repo: "git+https://github.com/janestreet/base_quickcheck.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/base_quickcheck/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_base" {>= "v0.16" & < "v0.17"} + "ppx_fields_conv" {>= "v0.16" & < "v0.17"} + "ppx_let" {>= "v0.16" & < "v0.17"} + "ppx_sexp_message" {>= "v0.16" & < "v0.17"} + "ppx_sexp_value" {>= "v0.16" & < "v0.17"} + "splittable_random" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Randomized testing framework, designed for compatibility with Base" +description: " +Base_quickcheck provides randomized testing in the style of Haskell's Quickcheck library, +with support for built-in types as well as types provided by Base. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/base_quickcheck-v0.16.0.tar.gz" +checksum: "sha256=88f80a75d224ceed33d0f891e6bb931979ec24397871b3347b8be22ef96d2e7e" +} diff --git a/packages/base_trie/base_trie.v0.16.0/opam b/packages/base_trie/base_trie.v0.16.0/opam new file mode 100644 index 00000000000..f92598e6d3f --- /dev/null +++ b/packages/base_trie/base_trie.v0.16.0/opam @@ -0,0 +1,31 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/base_trie" +bug-reports: "https://github.com/janestreet/base_trie/issues" +dev-repo: "git+https://github.com/janestreet/base_trie.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/base_trie/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "expect_test_helpers_core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Trie data structure library" +description: " +This library provides an implementation of a trie data structure. + +Lookup is based on \"chains\" of keys; each node of the trie has children representing +each potential next key in the chain. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/base_trie-v0.16.0.tar.gz" +checksum: "sha256=e7544117bfa8ab1708fd5d78151bbc73b55f10dba52360bcbc2ac2bf5f9a16eb" +} diff --git a/packages/bidirectional_map/bidirectional_map.v0.16.0/opam b/packages/bidirectional_map/bidirectional_map.v0.16.0/opam new file mode 100644 index 00000000000..bef12824489 --- /dev/null +++ b/packages/bidirectional_map/bidirectional_map.v0.16.0/opam @@ -0,0 +1,26 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/bidirectional_map" +bug-reports: "https://github.com/janestreet/bidirectional_map/issues" +dev-repo: "git+https://github.com/janestreet/bidirectional_map.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/bidirectional_map/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A library for bidirectional maps and multimaps." +description: " + +A library for bidirectional maps with one-to-one key relationships, +and bidirectional multimaps with many-to-many key relationships. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/bidirectional_map-v0.16.0.tar.gz" +checksum: "sha256=d2ab1fe44354229defb8b13b72769da3b9fc8cfb297a8ffa775a7bf64ed70992" +} diff --git a/packages/bigdecimal/bigdecimal.v0.16.0/opam b/packages/bigdecimal/bigdecimal.v0.16.0/opam new file mode 100644 index 00000000000..eaea3dc1881 --- /dev/null +++ b/packages/bigdecimal/bigdecimal.v0.16.0/opam @@ -0,0 +1,30 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/bigdecimal" +bug-reports: "https://github.com/janestreet/bigdecimal/issues" +dev-repo: "git+https://github.com/janestreet/bigdecimal.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/bigdecimal/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "bignum" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "expect_test_helpers_core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "zarith" {>= "1.11"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Arbitrary-precision decimal based on Zarith" +description: " +A high-precision representation of decimal numbers as [mantissa * 10^exponent], where +the mantissa is internally a [Bigint.t] and the exponent is an [int]. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/bigdecimal-v0.16.0.tar.gz" +checksum: "sha256=6b9b935460f904d6955ade682446f91fd6223310762d5796144a4ae95358211b" +} diff --git a/packages/bignum/bignum.v0.16.0/opam b/packages/bignum/bignum.v0.16.0/opam new file mode 100644 index 00000000000..e830165495c --- /dev/null +++ b/packages/bignum/bignum.v0.16.0/opam @@ -0,0 +1,30 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/bignum" +bug-reports: "https://github.com/janestreet/bignum/issues" +dev-repo: "git+https://github.com/janestreet/bignum.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/bignum/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "splittable_random" {>= "v0.16" & < "v0.17"} + "typerep" {>= "v0.16" & < "v0.17"} + "zarith_stubs_js" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "num" + "zarith" {>= "1.11"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Core-flavoured wrapper around zarith's arbitrary-precision rationals" +description: " +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/bignum-v0.16.0.tar.gz" +checksum: "sha256=6f577731f8152d96c86d608289cba3b60e94ddf7b9e8b19565fb0e51a2575541" +} diff --git a/packages/bin_prot/bin_prot.v0.16.0/opam b/packages/bin_prot/bin_prot.v0.16.0/opam new file mode 100644 index 00000000000..a33fed63034 --- /dev/null +++ b/packages/bin_prot/bin_prot.v0.16.0/opam @@ -0,0 +1,38 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/bin_prot" +bug-reports: "https://github.com/janestreet/bin_prot/issues" +dev-repo: "git+https://github.com/janestreet/bin_prot.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/bin_prot/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_compare" {>= "v0.16" & < "v0.17"} + "ppx_custom_printf" {>= "v0.16" & < "v0.17"} + "ppx_fields_conv" {>= "v0.16" & < "v0.17"} + "ppx_optcomp" {>= "v0.16" & < "v0.17"} + "ppx_sexp_conv" {>= "v0.16" & < "v0.17"} + "ppx_stable_witness" {>= "v0.16" & < "v0.17"} + "ppx_variants_conv" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +depopts: [ + "mirage-xen-ocaml" +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A binary protocol generator" +description: " +Part of Jane Street's Core library +The Core suite of libraries is an industrial strength alternative to +OCaml's standard library that was developed by Jane Street, the +largest industrial user of OCaml. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/bin_prot-v0.16.0.tar.gz" +checksum: "sha256=3ede8089d809186ba2bc7ade49d814c6d60e0414c2ba075807eaeb05d1d0a2f1" +} diff --git a/packages/bonsai/bonsai.v0.16.0/opam b/packages/bonsai/bonsai.v0.16.0/opam new file mode 100644 index 00000000000..cd0d5486aad --- /dev/null +++ b/packages/bonsai/bonsai.v0.16.0/opam @@ -0,0 +1,66 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/bonsai" +bug-reports: "https://github.com/janestreet/bonsai/issues" +dev-repo: "git+https://github.com/janestreet/bonsai.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/bonsai/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "async_durable" {>= "v0.16" & < "v0.17"} + "async_extra" {>= "v0.16" & < "v0.17"} + "async_js" {>= "v0.16" & < "v0.17"} + "async_kernel" {>= "v0.16" & < "v0.17"} + "async_rpc_kernel" {>= "v0.16" & < "v0.17"} + "async_rpc_websocket" {>= "v0.16" & < "v0.17"} + "babel" {>= "v0.16" & < "v0.17"} + "base" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "core_bench" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "expect_test_helpers_core" {>= "v0.16" & < "v0.17"} + "fuzzy_match" {>= "v0.16" & < "v0.17"} + "incr_dom" {>= "v0.16" & < "v0.17"} + "incr_map" {>= "v0.16" & < "v0.17"} + "indentation_buffer" {>= "v0.16" & < "v0.17"} + "ordinal_abbreviation" {>= "v0.16" & < "v0.17"} + "patdiff" {>= "v0.16" & < "v0.17"} + "polling_state_rpc" {>= "v0.16" & < "v0.17"} + "ppx_css" {>= "v0.16" & < "v0.17"} + "ppx_here" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "ppx_let" {>= "v0.16" & < "v0.17"} + "ppx_pattern_bind" {>= "v0.16" & < "v0.17"} + "ppx_typed_fields" {>= "v0.16" & < "v0.17"} + "profunctor" {>= "v0.16" & < "v0.17"} + "sexp_grammar" {>= "v0.16" & < "v0.17"} + "sexplib0" {>= "v0.16" & < "v0.17"} + "textutils" {>= "v0.16" & < "v0.17"} + "virtual_dom" {>= "v0.16" & < "v0.17"} + "base64" {>= "3.4.0"} + "cohttp-async" {>= "2.5.7" & < "3.0.0" | >= "5.1.1" & < "6.0.0"} + "dune" {>= "2.0.0"} + "gen_js_api" {>= "1.0.8"} + "js_of_ocaml" {>= "5.1.1"} + "js_of_ocaml-ppx" {>= "5.1.1"} + "ocaml-embed-file" {>= "v0.16" & < "v0.17"} + "ppxlib" {>= "0.28.0"} + "re" {>= "1.8.0"} + "uri" {>= "3.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A library for building dynamic webapps, using Js_of_ocaml" +description: " +Bonsai is a library for building reusable UI components inside an + Incremental-style UI framework such as Incr_dom or React. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/bonsai-v0.16.0.tar.gz" +checksum: "sha256=1d68aab713659951eba5b85f21d6f9382e0efa8579a02c3be65d9071c6e86303" +} diff --git a/packages/cohttp_async_websocket/cohttp_async_websocket.v0.16.0/opam b/packages/cohttp_async_websocket/cohttp_async_websocket.v0.16.0/opam new file mode 100644 index 00000000000..37e0517d29e --- /dev/null +++ b/packages/cohttp_async_websocket/cohttp_async_websocket.v0.16.0/opam @@ -0,0 +1,41 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/cohttp_async_websocket" +bug-reports: "https://github.com/janestreet/cohttp_async_websocket/issues" +dev-repo: "git+https://github.com/janestreet/cohttp_async_websocket.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/cohttp_async_websocket/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "async_ssl" {>= "v0.16" & < "v0.17"} + "async_websocket" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "base64" {>= "3.4.0"} + "cohttp" {>= "2.5.6"} + "cohttp-async" {>= "2.5.7" & < "3.0.0" | >= "5.1.1" & < "6.0.0"} + "dune" {>= "2.0.0"} + "uri-sexp" {>= "3.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Websocket library for use with cohttp and async" +description: " +Websocket library for use with cohttp and async. + +Cohttp_async_websocket is a full-featured server-side +websocket implementation, using Async as the concurrency library, +and Cohttp for HTTP negotiation. + +It implements a large portion of RFC6445. The library has been +hardened with many applications using it for several year, in +conjunction with async-js and google-chrome. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/cohttp_async_websocket-v0.16.0.tar.gz" +checksum: "sha256=786451c7d47cfe1cc54201b168b81949e2d847d562285107f596062e8d3185c9" +} diff --git a/packages/cohttp_static_handler/cohttp_static_handler.v0.16.0/opam b/packages/cohttp_static_handler/cohttp_static_handler.v0.16.0/opam new file mode 100644 index 00000000000..0ec6df56c63 --- /dev/null +++ b/packages/cohttp_static_handler/cohttp_static_handler.v0.16.0/opam @@ -0,0 +1,28 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/cohttp_static_handler" +bug-reports: "https://github.com/janestreet/cohttp_static_handler/issues" +dev-repo: "git+https://github.com/janestreet/cohttp_static_handler.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/cohttp_static_handler/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "cohttp-async" {>= "2.5.7" & < "3.0.0" | >= "5.1.1" & < "6.0.0"} + "dune" {>= "2.0.0"} + "uri-sexp" {>= "3.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A library for easily creating a cohttp handler for static files" +description: " +Single page handlers are handlers that serve user specified JavaScript and css + files along with a generated index page that loads those files. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/cohttp_static_handler-v0.16.0.tar.gz" +checksum: "sha256=9cc326d5f2c52b9f791c735384ad08f4d800f4ee74833a187424ebe2975ef409" +} diff --git a/packages/command_rpc/command_rpc.v0.16.0/opam b/packages/command_rpc/command_rpc.v0.16.0/opam new file mode 100644 index 00000000000..be592a22ee6 --- /dev/null +++ b/packages/command_rpc/command_rpc.v0.16.0/opam @@ -0,0 +1,26 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/command_rpc" +bug-reports: "https://github.com/janestreet/command_rpc/issues" +dev-repo: "git+https://github.com/janestreet/command_rpc.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/command_rpc/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Utilities for Versioned RPC communication with a child process over stdin and stdout" +description: " +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/command_rpc-v0.16.0.tar.gz" +checksum: "sha256=ac5e034c5b0463fe26615a406e009632377808691206613f0cb0fcb43fc5e0e6" +} diff --git a/packages/content_security_policy/content_security_policy.v0.16.0/opam b/packages/content_security_policy/content_security_policy.v0.16.0/opam new file mode 100644 index 00000000000..c612b85ca97 --- /dev/null +++ b/packages/content_security_policy/content_security_policy.v0.16.0/opam @@ -0,0 +1,26 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/content_security_policy" +bug-reports: "https://github.com/janestreet/content_security_policy/issues" +dev-repo: "git+https://github.com/janestreet/content_security_policy.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/content_security_policy/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A library for building content-security policies" +description: " +https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/content_security_policy-v0.16.0.tar.gz" +checksum: "sha256=208eac0c45cbc4cf5f0f4d09c855b3479e0207d5cfabe990173a932317f88fc1" +} diff --git a/packages/core/core.v0.16.0/opam b/packages/core/core.v0.16.0/opam new file mode 100644 index 00000000000..a935e481a13 --- /dev/null +++ b/packages/core/core.v0.16.0/opam @@ -0,0 +1,49 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/core" +bug-reports: "https://github.com/janestreet/core/issues" +dev-repo: "git+https://github.com/janestreet/core.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/core/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "base_bigstring" {>= "v0.16" & < "v0.17"} + "base_quickcheck" {>= "v0.16" & < "v0.17"} + "bin_prot" {>= "v0.16" & < "v0.17"} + "fieldslib" {>= "v0.16" & < "v0.17"} + "jane-street-headers" {>= "v0.16" & < "v0.17"} + "jst-config" {>= "v0.16" & < "v0.17"} + "ppx_assert" {>= "v0.16" & < "v0.17"} + "ppx_base" {>= "v0.16" & < "v0.17"} + "ppx_hash" {>= "v0.16" & < "v0.17"} + "ppx_inline_test" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "ppx_optcomp" {>= "v0.16" & < "v0.17"} + "ppx_sexp_conv" {>= "v0.16" & < "v0.17"} + "ppx_sexp_message" {>= "v0.16" & < "v0.17"} + "sexplib" {>= "v0.16" & < "v0.17"} + "splittable_random" {>= "v0.16" & < "v0.17"} + "stdio" {>= "v0.16" & < "v0.17"} + "time_now" {>= "v0.16" & < "v0.17"} + "typerep" {>= "v0.16" & < "v0.17"} + "variantslib" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Industrial strength alternative to OCaml's standard library" +description: " +The Core suite of libraries is an industrial strength alternative to +OCaml's standard library that was developed by Jane Street, the +largest industrial user of OCaml. + +This is the system-independent part of Core. Unix-specific parts were moved to [core-unix]. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/core-v0.16.0.tar.gz" +checksum: "sha256=47c80523fc50da4cc1a95d6fde7bcdb99c74a51a7f88823f8c6f089ff1c95c87" +} diff --git a/packages/core_bench/core_bench.v0.16.0/opam b/packages/core_bench/core_bench.v0.16.0/opam new file mode 100644 index 00000000000..496d6da4255 --- /dev/null +++ b/packages/core_bench/core_bench.v0.16.0/opam @@ -0,0 +1,33 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/core_bench" +bug-reports: "https://github.com/janestreet/core_bench/issues" +dev-repo: "git+https://github.com/janestreet/core_bench.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/core_bench/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "ppx_compare" {>= "v0.16" & < "v0.17"} + "ppx_fields_conv" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "ppx_let" {>= "v0.16" & < "v0.17"} + "ppx_sexp_conv" {>= "v0.16" & < "v0.17"} + "textutils" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "re" {>= "1.8.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Benchmarking library" +description: " +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/core_bench-v0.16.0.tar.gz" +checksum: "sha256=fbba6bf4d5ab009a478d62d772ef75b132e1aee568273112a585a29c39999ad5" +} diff --git a/packages/core_extended/core_extended.v0.16.0/opam b/packages/core_extended/core_extended.v0.16.0/opam new file mode 100644 index 00000000000..08544d0450b --- /dev/null +++ b/packages/core_extended/core_extended.v0.16.0/opam @@ -0,0 +1,31 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/core_extended" +bug-reports: "https://github.com/janestreet/core_extended/issues" +dev-repo: "git+https://github.com/janestreet/core_extended.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/core_extended/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "record_builder" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "re" {>= "1.8.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Extra components that are not as closely vetted or as stable as Core" +description: " +The Core suite of libraries is an industrial strength alternative to +OCaml's standard library that was developed by Jane Street, the +largest industrial user of OCaml. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/core_extended-v0.16.0.tar.gz" +checksum: "sha256=ccbb4e47e76edfd0b8aa5c2d3722e8813102c624851beec0cedd77ba13c4ccfb" +} diff --git a/packages/core_kernel/core_kernel.v0.16.0/opam b/packages/core_kernel/core_kernel.v0.16.0/opam new file mode 100644 index 00000000000..202b1394419 --- /dev/null +++ b/packages/core_kernel/core_kernel.v0.16.0/opam @@ -0,0 +1,34 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/core_kernel" +bug-reports: "https://github.com/janestreet/core_kernel/issues" +dev-repo: "git+https://github.com/janestreet/core_kernel.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/core_kernel/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "int_repr" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "ppx_optcomp" {>= "v0.16" & < "v0.17"} + "base-threads" + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Industrial strength alternative to OCaml's standard library" +description: " +The Core suite of libraries is an industrial strength alternative to +OCaml's standard library that was developed by Jane Street, the +largest industrial user of OCaml. + +Core_kernel is the system-independent part of Core. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/core_kernel-v0.16.0.tar.gz" +checksum: "sha256=e37370bad978cfb71fdaf2b1a25ab1506b98ef0b91e0dbd189ffd9d853245ce2" +} diff --git a/packages/core_profiler/core_profiler.v0.16.0/opam b/packages/core_profiler/core_profiler.v0.16.0/opam new file mode 100644 index 00000000000..f180da46a5d --- /dev/null +++ b/packages/core_profiler/core_profiler.v0.16.0/opam @@ -0,0 +1,33 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/core_profiler" +bug-reports: "https://github.com/janestreet/core_profiler/issues" +dev-repo: "git+https://github.com/janestreet/core_profiler.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/core_profiler/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "re2" {>= "v0.16" & < "v0.17"} + "shell" {>= "v0.16" & < "v0.17"} + "textutils" {>= "v0.16" & < "v0.17"} + "textutils_kernel" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Profiling library" +description: " +Core_profiler is a library that helps you profile programs and +estimate various costs. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/core_profiler-v0.16.0.tar.gz" +checksum: "sha256=ac2dcb95988ed8cbd11af45d699d74aef7f71821a764d06ce4799b357acc4604" +} diff --git a/packages/core_unix/core_unix.v0.16.0/opam b/packages/core_unix/core_unix.v0.16.0/opam new file mode 100644 index 00000000000..a252cdefe79 --- /dev/null +++ b/packages/core_unix/core_unix.v0.16.0/opam @@ -0,0 +1,37 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/core_unix" +bug-reports: "https://github.com/janestreet/core_unix/issues" +dev-repo: "git+https://github.com/janestreet/core_unix.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/core_unix/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "expect_test_helpers_core" {>= "v0.16" & < "v0.17"} + "jane-street-headers" {>= "v0.16" & < "v0.17"} + "jst-config" {>= "v0.16" & < "v0.17"} + "ocaml_intrinsics" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "ppx_optcomp" {>= "v0.16" & < "v0.17"} + "sexplib" {>= "v0.16" & < "v0.17"} + "timezone" {>= "v0.16" & < "v0.17"} + "base-threads" + "dune" {>= "2.0.0"} + "spawn" {>= "v0.15"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Unix-specific portions of Core" +description: " +Unix-specific extensions to some of the modules defined in [core] and [core_kernel]. +" +depexts: ["linux-headers"] {os-family = "alpine"} +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/core_unix-v0.16.0.tar.gz" +checksum: "sha256=4f70a9d3a761799d00c0a207942b4abd9f1a144bbcb19df98021d9fb7bfa9e5f" +} diff --git a/packages/csvfields/csvfields.v0.16.0/opam b/packages/csvfields/csvfields.v0.16.0/opam new file mode 100644 index 00000000000..9b7c929cf68 --- /dev/null +++ b/packages/csvfields/csvfields.v0.16.0/opam @@ -0,0 +1,27 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/csvfields" +bug-reports: "https://github.com/janestreet/csvfields/issues" +dev-repo: "git+https://github.com/janestreet/csvfields.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/csvfields/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "sexplib" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "num" +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Runtime support for ppx_xml_conv and ppx_csv_conv_deprecated" +description: " +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/csvfields-v0.16.0.tar.gz" +checksum: "sha256=a5360f8aefbcb3b9f1d75ef40869e15b2cd06cf3c3c1d814761f1a2967631e92" +} diff --git a/packages/dedent/dedent.v0.16.0/opam b/packages/dedent/dedent.v0.16.0/opam new file mode 100644 index 00000000000..ada9705065d --- /dev/null +++ b/packages/dedent/dedent.v0.16.0/opam @@ -0,0 +1,27 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/dedent" +bug-reports: "https://github.com/janestreet/dedent/issues" +dev-repo: "git+https://github.com/janestreet/dedent.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/dedent/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "stdio" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A library for improving redability of multi-line string constants in code." +description: " +A library for improving redability of multi-line string constants in code. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/dedent-v0.16.0.tar.gz" +checksum: "sha256=f221a9cecb9ed932a7b58018fb31fb19a7b2eb2e3aba6a953235f807b7668f71" +} diff --git a/packages/delimited_parsing/delimited_parsing.v0.16.0/opam b/packages/delimited_parsing/delimited_parsing.v0.16.0/opam new file mode 100644 index 00000000000..a3d694f401d --- /dev/null +++ b/packages/delimited_parsing/delimited_parsing.v0.16.0/opam @@ -0,0 +1,29 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/delimited_parsing" +bug-reports: "https://github.com/janestreet/delimited_parsing/issues" +dev-repo: "git+https://github.com/janestreet/delimited_parsing.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/delimited_parsing/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "core_extended" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Parsing of character (e.g., comma) separated and fixed-width values" +description: " +Delimited_parsing parses character-separated values (such as CSV files) and fixed-width +records. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/delimited_parsing-v0.16.0.tar.gz" +checksum: "sha256=3388cf5cfeb9d1da603335ff20959508a63d9773b9a1b20564baebac9d9e3d14" +} diff --git a/packages/diffable/diffable.v0.16.0/opam b/packages/diffable/diffable.v0.16.0/opam new file mode 100644 index 00000000000..e9fe2ff0975 --- /dev/null +++ b/packages/diffable/diffable.v0.16.0/opam @@ -0,0 +1,28 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/diffable" +bug-reports: "https://github.com/janestreet/diffable/issues" +dev-repo: "git+https://github.com/janestreet/diffable.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/diffable/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "stored_reversed" {>= "v0.16" & < "v0.17"} + "streamable" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "An interface for diffs." +description: " +Diffable interface. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/diffable-v0.16.0.tar.gz" +checksum: "sha256=b8d019566a117a7d097e17f924b0fe7b35e00e293290e24feb113ae7a3565ea5" +} diff --git a/packages/ecaml/ecaml.v0.16.0/opam b/packages/ecaml/ecaml.v0.16.0/opam new file mode 100644 index 00000000000..230a78e8bcb --- /dev/null +++ b/packages/ecaml/ecaml.v0.16.0/opam @@ -0,0 +1,33 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ecaml" +bug-reports: "https://github.com/janestreet/ecaml/issues" +dev-repo: "git+https://github.com/janestreet/ecaml.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ecaml/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "async_kernel" {>= "v0.16" & < "v0.17"} + "async_unix" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "expect_test_helpers_core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Library for writing Emacs plugin in OCaml" +description: " +Ecaml is a library for writing Emacs plugins in OCaml. It uses Emacs +25 support for plugins to load native OCaml compiled code. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ecaml-v0.16.0.tar.gz" +checksum: "sha256=d9c6f98e7b0906a7e3d332d1a30fe950b59586b860e4f051348ea854c3ae3434" +} diff --git a/packages/email_message/email_message.v0.16.0/opam b/packages/email_message/email_message.v0.16.0/opam new file mode 100644 index 00000000000..098422997f0 --- /dev/null +++ b/packages/email_message/email_message.v0.16.0/opam @@ -0,0 +1,33 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/email_message" +bug-reports: "https://github.com/janestreet/email_message/issues" +dev-repo: "git+https://github.com/janestreet/email_message.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/email_message/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "re2" {>= "v0.16" & < "v0.17"} + "angstrom" {>= "0.15.0"} + "base64" {>= "3.4.0"} + "cryptokit" {>= "1.16" & < "1.17"} + "dune" {>= "2.0.0"} + "magic-mime" +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "E-mail message parser" +description: " +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/email_message-v0.16.0.tar.gz" +checksum: "sha256=65611ce8433e92554a844e4ae6e3ea448b8665486e94c99a425503ee4083d95a" +} diff --git a/packages/env_config/env_config.v0.16.0/opam b/packages/env_config/env_config.v0.16.0/opam new file mode 100644 index 00000000000..f52ac2aa302 --- /dev/null +++ b/packages/env_config/env_config.v0.16.0/opam @@ -0,0 +1,31 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/env_config" +bug-reports: "https://github.com/janestreet/env_config/issues" +dev-repo: "git+https://github.com/janestreet/env_config.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/env_config/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Helper library for retrieving configuration from an environment variable" +description: " +The Env_config library is a helper for retrieving library and program +configuration from an environment variable. Its goal is to make it easy +to override a configuration that is loaded from disk, computed, or embedded +in a library. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/env_config-v0.16.0.tar.gz" +checksum: "sha256=f32ec330701f5896c60dd77709b183749c6fed654ad5b2a41d907dcf5d931c83" +} diff --git a/packages/expect_test_helpers_async/expect_test_helpers_async.v0.16.0/opam b/packages/expect_test_helpers_async/expect_test_helpers_async.v0.16.0/opam new file mode 100644 index 00000000000..dc34540f8ce --- /dev/null +++ b/packages/expect_test_helpers_async/expect_test_helpers_async.v0.16.0/opam @@ -0,0 +1,33 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/expect_test_helpers_async" +bug-reports: "https://github.com/janestreet/expect_test_helpers_async/issues" +dev-repo: "git+https://github.com/janestreet/expect_test_helpers_async.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/expect_test_helpers_async/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "expect_test_helpers_core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "sexp_pretty" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Async helpers for writing expectation tests" +description: " +This library provides helper functions for writing expect tests. + +Note that this library uses Async, for helpers that don't use Async, +look at expect_test_helpers_core. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/expect_test_helpers_async-v0.16.0.tar.gz" +checksum: "sha256=c37ec54bd27a2464e07561081a9ff888be9fa65182d031920569e7760b7754aa" +} diff --git a/packages/expect_test_helpers_core/expect_test_helpers_core.v0.16.0/opam b/packages/expect_test_helpers_core/expect_test_helpers_core.v0.16.0/opam new file mode 100644 index 00000000000..fd2a79d6e41 --- /dev/null +++ b/packages/expect_test_helpers_core/expect_test_helpers_core.v0.16.0/opam @@ -0,0 +1,34 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/expect_test_helpers_core" +bug-reports: "https://github.com/janestreet/expect_test_helpers_core/issues" +dev-repo: "git+https://github.com/janestreet/expect_test_helpers_core.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/expect_test_helpers_core/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "base_quickcheck" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "sexp_pretty" {>= "v0.16" & < "v0.17"} + "stdio" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "re" {>= "1.8.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Helpers for writing expectation tests" +description: " +This library provides helper functions for writing expect tests. + +If you want helpers for writing expect tests using the Async library, +look at expect_test_helpers_async. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/expect_test_helpers_core-v0.16.0.tar.gz" +checksum: "sha256=e9e9d20470c0c2028ee495c8b0f9d489347545863306241ab95584ef46e53e8a" +} diff --git a/packages/fieldslib/fieldslib.v0.16.0/opam b/packages/fieldslib/fieldslib.v0.16.0/opam new file mode 100644 index 00000000000..711b1b4c875 --- /dev/null +++ b/packages/fieldslib/fieldslib.v0.16.0/opam @@ -0,0 +1,28 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/fieldslib" +bug-reports: "https://github.com/janestreet/fieldslib/issues" +dev-repo: "git+https://github.com/janestreet/fieldslib.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/fieldslib/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Syntax extension to define first class values representing record fields, to get and set record fields, iterate and fold over all fields of a record and create new record values" +description: " +Part of Jane Street's Core library +The Core suite of libraries is an industrial strength alternative to +OCaml's standard library that was developed by Jane Street, the +largest industrial user of OCaml. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/fieldslib-v0.16.0.tar.gz" +checksum: "sha256=2cc5954259e71a747dfaad0e86bfe32c04dca35e83372dbcdeefb08c6059b2f1" +} diff --git a/packages/file_path/file_path.v0.16.0/opam b/packages/file_path/file_path.v0.16.0/opam new file mode 100644 index 00000000000..1d7e68e859d --- /dev/null +++ b/packages/file_path/file_path.v0.16.0/opam @@ -0,0 +1,31 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/file_path" +bug-reports: "https://github.com/janestreet/file_path/issues" +dev-repo: "git+https://github.com/janestreet/file_path.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/file_path/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "expect_test_helpers_async" {>= "v0.16" & < "v0.17"} + "expect_test_helpers_core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A library for typed manipulation of UNIX-style file paths" +description: " +A library for typed manipulation of UNIX-style file paths. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/file_path-v0.16.0.tar.gz" +checksum: "sha256=370ffbaf4818176e25ce52e700903d393e874dc2eb5a07b564600254a292788b" +} diff --git a/packages/fuzzy_match/fuzzy_match.v0.16.0/opam b/packages/fuzzy_match/fuzzy_match.v0.16.0/opam new file mode 100644 index 00000000000..b64ab6837ef --- /dev/null +++ b/packages/fuzzy_match/fuzzy_match.v0.16.0/opam @@ -0,0 +1,26 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/fuzzy_match" +bug-reports: "https://github.com/janestreet/fuzzy_match/issues" +dev-repo: "git+https://github.com/janestreet/fuzzy_match.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/fuzzy_match/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Libraries for fuzzy string matching" +description: " +Libraries for fuzzy string matching +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/fuzzy_match-v0.16.0.tar.gz" +checksum: "sha256=4a175c1df53f1b93cc69ff01d5cd1e02726611808df696e493aebe47c4fdeb67" +} diff --git a/packages/fzf/fzf.v0.16.0/opam b/packages/fzf/fzf.v0.16.0/opam new file mode 100644 index 00000000000..f2d3b2b2dcb --- /dev/null +++ b/packages/fzf/fzf.v0.16.0/opam @@ -0,0 +1,27 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/fzf" +bug-reports: "https://github.com/janestreet/fzf/issues" +dev-repo: "git+https://github.com/janestreet/fzf.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/fzf/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A library for running the fzf command line tool" +description: " +A library for running the fzf command line fuzzy matcher +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/fzf-v0.16.0.tar.gz" +checksum: "sha256=c05d197ff918cd4f2c4f458852cf2d1f597b5f4d74949500f51a19d9ade66209" +} diff --git a/packages/hardcaml/hardcaml.v0.16.0/opam b/packages/hardcaml/hardcaml.v0.16.0/opam new file mode 100644 index 00000000000..68128c26bcc --- /dev/null +++ b/packages/hardcaml/hardcaml.v0.16.0/opam @@ -0,0 +1,37 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/hardcaml" +bug-reports: "https://github.com/janestreet/hardcaml/issues" +dev-repo: "git+https://github.com/janestreet/hardcaml.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/hardcaml/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "bin_prot" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "ppx_sexp_conv" {>= "v0.16" & < "v0.17"} + "stdio" {>= "v0.16" & < "v0.17"} + "topological_sort" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} + "zarith" {>= "1.11"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "RTL Hardware Design in OCaml" +description: " +Hardcaml is an embedded DSL for designing and simulating hardware in OCaml. +Generic hardware designs are easily expressed using features such as higher +order functions, lists, maps etc. A built in simulator allows designs to +be simulated within Hardcaml. Designs are converted to either Verilog or +VHDL to interact with standard back end tooling. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/hardcaml-v0.16.0.tar.gz" +checksum: "sha256=1cc136550365918c5e72db328acf7bbf109f680bdacb60edb80972dee042a58d" +} diff --git a/packages/hardcaml_axi/hardcaml_axi.v0.16.0/opam b/packages/hardcaml_axi/hardcaml_axi.v0.16.0/opam new file mode 100644 index 00000000000..7b285e9b4cc --- /dev/null +++ b/packages/hardcaml_axi/hardcaml_axi.v0.16.0/opam @@ -0,0 +1,30 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/hardcaml_axi" +bug-reports: "https://github.com/janestreet/hardcaml_axi/issues" +dev-repo: "git+https://github.com/janestreet/hardcaml_axi.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/hardcaml_axi/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "hardcaml" {>= "v0.16" & < "v0.17"} + "hardcaml_circuits" {>= "v0.16" & < "v0.17"} + "hardcaml_handshake" {>= "v0.16" & < "v0.17"} + "ppx_deriving_hardcaml" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Hardcaml AXI Interface Types" +description: " +AXI Lite, Full and Stream Interfaces for Hardcaml +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/hardcaml_axi-v0.16.0.tar.gz" +checksum: "sha256=66688f73bef7712623c828655e99fc9b017e34e1fbae58f6eef15f0f9beaf3c6" +} diff --git a/packages/hardcaml_c/hardcaml_c.v0.16.0/opam b/packages/hardcaml_c/hardcaml_c.v0.16.0/opam new file mode 100644 index 00000000000..928e09119ce --- /dev/null +++ b/packages/hardcaml_c/hardcaml_c.v0.16.0/opam @@ -0,0 +1,35 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/hardcaml_c" +bug-reports: "https://github.com/janestreet/hardcaml_c/issues" +dev-repo: "git+https://github.com/janestreet/hardcaml_c.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/hardcaml_c/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "hardcaml" {>= "v0.16" & < "v0.17"} + "ppx_deriving_hardcaml" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "ctypes" {>= "0.18.0"} + "ctypes-foreign" + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Hardcaml C Simulation Backend" +description: " +A fast C-based simulation backend for Hardcaml circuits. + +The library transparently compiles a Hardcaml Circuit to C code, which is in turn compiled +and linked into the running executable. The generated simulation object can be used like +any other cyclesim simulation. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/hardcaml_c-v0.16.0.tar.gz" +checksum: "sha256=38bc7b0b0bdb958c7855005452f8842540d28ef4a16dededabf8d48e0e43d143" +} diff --git a/packages/hardcaml_circuits/hardcaml_circuits.v0.16.0/opam b/packages/hardcaml_circuits/hardcaml_circuits.v0.16.0/opam new file mode 100644 index 00000000000..ce104aa49cf --- /dev/null +++ b/packages/hardcaml_circuits/hardcaml_circuits.v0.16.0/opam @@ -0,0 +1,28 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/hardcaml_circuits" +bug-reports: "https://github.com/janestreet/hardcaml_circuits/issues" +dev-repo: "git+https://github.com/janestreet/hardcaml_circuits.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/hardcaml_circuits/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "hardcaml" {>= "v0.16" & < "v0.17"} + "ppx_deriving_hardcaml" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Hardcaml Circuits" +description: " +A small library of useful/interesting Hardcaml circuits. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/hardcaml_circuits-v0.16.0.tar.gz" +checksum: "sha256=6b770a28f203f90815f296961420a865832f44935375ee081664def5c4dac4ff" +} diff --git a/packages/hardcaml_fixed_point/hardcaml_fixed_point.v0.16.0/opam b/packages/hardcaml_fixed_point/hardcaml_fixed_point.v0.16.0/opam new file mode 100644 index 00000000000..9078c62fb76 --- /dev/null +++ b/packages/hardcaml_fixed_point/hardcaml_fixed_point.v0.16.0/opam @@ -0,0 +1,28 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/hardcaml_fixed_point" +bug-reports: "https://github.com/janestreet/hardcaml_fixed_point/issues" +dev-repo: "git+https://github.com/janestreet/hardcaml_fixed_point.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/hardcaml_fixed_point/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "hardcaml" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Hardcaml fixed point arithmetic" +description: " +Signed and Unsigned fixed point operations, with a full complement of rounding and +overflow functionality. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/hardcaml_fixed_point-v0.16.0.tar.gz" +checksum: "sha256=07bffdcc9648e9ee8191cae06612b0e49ca808605b0c1d4546cd77679e42f869" +} diff --git a/packages/hardcaml_handshake/hardcaml_handshake.v0.16.0/opam b/packages/hardcaml_handshake/hardcaml_handshake.v0.16.0/opam new file mode 100644 index 00000000000..a15b1710886 --- /dev/null +++ b/packages/hardcaml_handshake/hardcaml_handshake.v0.16.0/opam @@ -0,0 +1,28 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/hardcaml_handshake" +bug-reports: "https://github.com/janestreet/hardcaml_handshake/issues" +dev-repo: "git+https://github.com/janestreet/hardcaml_handshake.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/hardcaml_handshake/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "hardcaml" {>= "v0.16" & < "v0.17"} + "ppx_deriving_hardcaml" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Hardcaml Handshake" +description: " +Library for constructing circuits with a pair of valid and ready handshake signals. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/hardcaml_handshake-v0.16.0.tar.gz" +checksum: "sha256=1569be35d38d7b5640191042d354e677fc71e79a449e6f4840429553f9988858" +} diff --git a/packages/hardcaml_of_verilog/hardcaml_of_verilog.v0.16.0/opam b/packages/hardcaml_of_verilog/hardcaml_of_verilog.v0.16.0/opam new file mode 100644 index 00000000000..97a499bdb7b --- /dev/null +++ b/packages/hardcaml_of_verilog/hardcaml_of_verilog.v0.16.0/opam @@ -0,0 +1,38 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/hardcaml_of_verilog" +bug-reports: "https://github.com/janestreet/hardcaml_of_verilog/issues" +dev-repo: "git+https://github.com/janestreet/hardcaml_of_verilog.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/hardcaml_of_verilog/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "hardcaml" {>= "v0.16" & < "v0.17"} + "hardcaml_verify" {>= "v0.16" & < "v0.17"} + "jsonaf" {>= "v0.16" & < "v0.17"} + "ppx_deriving_hardcaml" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "ppx_jsonaf_conv" {>= "v0.16" & < "v0.17"} + "stdio" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Convert Verilog to a Hardcaml design" +description: " +The opensource synthesis tool yosys is used to convert a verilog design to a JSON based +netlist representation. This library can load the JSON netlist and build a hardcaml +circuit. + +Code can also be generated to wrap the conversion process using Hardcaml interfaces. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/hardcaml_of_verilog-v0.16.0.tar.gz" +checksum: "sha256=d0c73140e80b48f7e971d6fa94e7f8ed8aa64cd7685d0fb442eb590ba6a244b4" +} diff --git a/packages/hardcaml_step_testbench/hardcaml_step_testbench.v0.16.0/opam b/packages/hardcaml_step_testbench/hardcaml_step_testbench.v0.16.0/opam new file mode 100644 index 00000000000..14fb7afe4a1 --- /dev/null +++ b/packages/hardcaml_step_testbench/hardcaml_step_testbench.v0.16.0/opam @@ -0,0 +1,31 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/hardcaml_step_testbench" +bug-reports: "https://github.com/janestreet/hardcaml_step_testbench/issues" +dev-repo: "git+https://github.com/janestreet/hardcaml_step_testbench.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/hardcaml_step_testbench/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "expect_test_helpers_core" {>= "v0.16" & < "v0.17"} + "hardcaml" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Hardcaml Testbench Monad" +description: " +A monad for interacting with Hardcaml.Cyclesim based simulations. + +Allows multiple control threads to interact with a simulation module, all of which are +synchronised to the system clock. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/hardcaml_step_testbench-v0.16.0.tar.gz" +checksum: "sha256=2a8382d8acb404fced2e8b9fb794e5ac14cee6e15a77149b5c63ad560f873953" +} diff --git a/packages/hardcaml_verify/hardcaml_verify.v0.16.0/opam b/packages/hardcaml_verify/hardcaml_verify.v0.16.0/opam new file mode 100644 index 00000000000..57a8db753ea --- /dev/null +++ b/packages/hardcaml_verify/hardcaml_verify.v0.16.0/opam @@ -0,0 +1,38 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/hardcaml_verify" +bug-reports: "https://github.com/janestreet/hardcaml_verify/issues" +dev-repo: "git+https://github.com/janestreet/hardcaml_verify.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/hardcaml_verify/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "hardcaml" {>= "v0.16" & < "v0.17"} + "hardcaml_waveterm" {>= "v0.16" & < "v0.17"} + "ppx_deriving_hardcaml" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "stdio" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "re" {>= "1.8.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Hardcaml Verification Tools" +description: " +Tools for verifying properties of Hardcaml circuits. + +Combinational circuits can be converted to 'conjunctive normal form' for input into SAT +solvers via DIMAC files. Support for a few opensource solvers is integrated - minisat, +picosat, Z3 - just ensure they are in your PATH. + +Circuits can also be converted to NuSMV format for advanced bounded and unbounded model +checking tasks. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/hardcaml_verify-v0.16.0.tar.gz" +checksum: "sha256=b475dc8e540d9855b438309de3cf1984b28d29e7cd8a4d2b76d58a68894a8749" +} diff --git a/packages/hardcaml_verilator/hardcaml_verilator.v0.16.0/opam b/packages/hardcaml_verilator/hardcaml_verilator.v0.16.0/opam new file mode 100644 index 00000000000..351bb42c20c --- /dev/null +++ b/packages/hardcaml_verilator/hardcaml_verilator.v0.16.0/opam @@ -0,0 +1,34 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/hardcaml_verilator" +bug-reports: "https://github.com/janestreet/hardcaml_verilator/issues" +dev-repo: "git+https://github.com/janestreet/hardcaml_verilator.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/hardcaml_verilator/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "hardcaml" {>= "v0.16" & < "v0.17"} + "ppx_deriving_hardcaml" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "ctypes" {>= "0.18.0"} + "ctypes-foreign" + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Hardcaml Verilator Simulation Backend" +description: " +Very fast verilator-based simulations of Hardcaml circuits. + +This library transparently compiles a verilator-based shared library, and links it back +to the running executable to be used as a Cyclesim simulation. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/hardcaml_verilator-v0.16.0.tar.gz" +checksum: "sha256=c0c60e3ad9905be924fbd12d4c249a1725ba80368a38a68b3849632eafb46485" +} diff --git a/packages/hardcaml_waveterm/hardcaml_waveterm.v0.16.0/opam b/packages/hardcaml_waveterm/hardcaml_waveterm.v0.16.0/opam new file mode 100644 index 00000000000..47155d129f4 --- /dev/null +++ b/packages/hardcaml_waveterm/hardcaml_waveterm.v0.16.0/opam @@ -0,0 +1,41 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/hardcaml_waveterm" +bug-reports: "https://github.com/janestreet/hardcaml_waveterm/issues" +dev-repo: "git+https://github.com/janestreet/hardcaml_waveterm.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/hardcaml_waveterm/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "expect_test_helpers_core" {>= "v0.16" & < "v0.17"} + "hardcaml" {>= "v0.16" & < "v0.17"} + "notty_async" {>= "v0.16" & < "v0.17"} + "ppx_deriving_hardcaml" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "stdio" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "notty" {>= "0.2.1"} + "num" + "re" {>= "1.8.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A terminal based digital waveform viewer for Hardcaml" +description: " +The hardcaml_waveterm library renders digital waveforms to unicode. Such +waveforms can be used in expect tests or for debugging using the supplied +interactive terminal application. + +The library is closely integrated with Hardcaml and can be easily attached +to simulations. +" +conflicts: ["hardcaml-waveterm"] +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/hardcaml_waveterm-v0.16.0.tar.gz" +checksum: "sha256=20844546139ee69e8d328b75a54369b2c1db91d88e43f7ca9ccfc0cd855be828" +} diff --git a/packages/hardcaml_xilinx/hardcaml_xilinx.v0.16.0/opam b/packages/hardcaml_xilinx/hardcaml_xilinx.v0.16.0/opam new file mode 100644 index 00000000000..a015e18ff9a --- /dev/null +++ b/packages/hardcaml_xilinx/hardcaml_xilinx.v0.16.0/opam @@ -0,0 +1,32 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/hardcaml_xilinx" +bug-reports: "https://github.com/janestreet/hardcaml_xilinx/issues" +dev-repo: "git+https://github.com/janestreet/hardcaml_xilinx.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/hardcaml_xilinx/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "hardcaml" {>= "v0.16" & < "v0.17"} + "ppx_deriving_hardcaml" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Hardcaml wrappers for Xilinx memory primitives" +description: " +The Hardcaml_xilinx library provides wrappers for Xilinx specific RAM and FIFO primitive +blocks. In many cases a simulation model is provided. + +The `Synthesis` module implements various arithmetic and logical RTL components with +Xilinx LUT primitives. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/hardcaml_xilinx-v0.16.0.tar.gz" +checksum: "sha256=36d5083f34d56c103c868ba0f95dba51baeba32ebe3792cace6b93beb565ba16" +} diff --git a/packages/hardcaml_xilinx_components/hardcaml_xilinx_components.v0.16.0/opam b/packages/hardcaml_xilinx_components/hardcaml_xilinx_components.v0.16.0/opam new file mode 100644 index 00000000000..319817df635 --- /dev/null +++ b/packages/hardcaml_xilinx_components/hardcaml_xilinx_components.v0.16.0/opam @@ -0,0 +1,32 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/hardcaml_xilinx_components" +bug-reports: "https://github.com/janestreet/hardcaml_xilinx_components/issues" +dev-repo: "git+https://github.com/janestreet/hardcaml_xilinx_components.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/hardcaml_xilinx_components/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "hardcaml" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "stdio" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "re" {>= "1.8.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Hardcaml Xilinx component definitions" +description: " +A tool for reading Xilinx VHDL Unisim and XPM component definitions from a Vivado +installation and generating Hardcaml interfaces automatically. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/hardcaml_xilinx_components-v0.16.0.tar.gz" +checksum: "sha256=51f52de39bacae0026b61e8d419940718d7e2281e1ecbec1ee3240ae6fe62ad8" +} diff --git a/packages/hardcaml_xilinx_reports/hardcaml_xilinx_reports.v0.16.0/opam b/packages/hardcaml_xilinx_reports/hardcaml_xilinx_reports.v0.16.0/opam new file mode 100644 index 00000000000..cb6a4eb3846 --- /dev/null +++ b/packages/hardcaml_xilinx_reports/hardcaml_xilinx_reports.v0.16.0/opam @@ -0,0 +1,40 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/hardcaml_xilinx_reports" +bug-reports: "https://github.com/janestreet/hardcaml_xilinx_reports/issues" +dev-repo: "git+https://github.com/janestreet/hardcaml_xilinx_reports.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/hardcaml_xilinx_reports/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.08.0"} + "async" {>= "v0.16" & < "v0.17"} + "base" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "hardcaml" {>= "v0.16" & < "v0.17"} + "ppx_deriving_hardcaml" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "stdio" {>= "v0.16" & < "v0.17"} + "textutils" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Hardcaml Xilinx Reports" +description: " +Provides a library which can take a hierarchical hardcaml design and run Xilinx +Vivado synthesis on each module in the design hierarchy. + +Resource utilization and timing estimates are provided for each module. + +The synthesis process for each module can be configured to report statistics for +just the local module, or for all modules below it as well. Running in different +ways can provide better insight into the design. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/hardcaml_xilinx_reports-v0.16.0.tar.gz" +checksum: "sha256=0f9e0c652970c3e788c2c6ac5c429aad5dc421126121ceeeb4d44bc0241ed66b" +} diff --git a/packages/hex_encode/hex_encode.v0.16.0/opam b/packages/hex_encode/hex_encode.v0.16.0/opam new file mode 100644 index 00000000000..f96430e9841 --- /dev/null +++ b/packages/hex_encode/hex_encode.v0.16.0/opam @@ -0,0 +1,26 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/hex_encode" +bug-reports: "https://github.com/janestreet/hex_encode/issues" +dev-repo: "git+https://github.com/janestreet/hex_encode.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/hex_encode/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Hexadecimal encoding library" +description: " +This library implements hexadecimal encoding and decoding +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/hex_encode-v0.16.0.tar.gz" +checksum: "sha256=7771bb5de62a960359b65bb46e423764bdba6d9430b1b019b6616e01b077cf6f" +} diff --git a/packages/hg_lib/hg_lib.v0.16.0/opam b/packages/hg_lib/hg_lib.v0.16.0/opam new file mode 100644 index 00000000000..16a9e7d837e --- /dev/null +++ b/packages/hg_lib/hg_lib.v0.16.0/opam @@ -0,0 +1,29 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/hg_lib" +bug-reports: "https://github.com/janestreet/hg_lib/issues" +dev-repo: "git+https://github.com/janestreet/hg_lib.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/hg_lib/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "expect_test_helpers_core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A library that wraps the Mercurial command line interface" +description: " +A library that wraps the Mercurial command line interface. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/hg_lib-v0.16.0.tar.gz" +checksum: "sha256=ee53cd5759f097c0d19da0ba413b3246acd485fe47bd70fd47694a309d5d9453" +} diff --git a/packages/higher_kinded/higher_kinded.v0.16.0/opam b/packages/higher_kinded/higher_kinded.v0.16.0/opam new file mode 100644 index 00000000000..712ca63bbba --- /dev/null +++ b/packages/higher_kinded/higher_kinded.v0.16.0/opam @@ -0,0 +1,29 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/higher_kinded" +bug-reports: "https://github.com/janestreet/higher_kinded/issues" +dev-repo: "git+https://github.com/janestreet/higher_kinded.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/higher_kinded/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A library with an encoding of higher kinded types in OCaml" +description: " +OCaml natively supports parameterized type constructors, such as =option=. The parameters +of a type constructor may only be types, not arbitrary type constructors. This library +makes it possible to parameterize a type with a witness that represents a type +constructor. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/higher_kinded-v0.16.0.tar.gz" +checksum: "sha256=33c1e3c1272eae1201975d3281e8af2858045349d4a0b8e9573844760620f046" +} diff --git a/packages/incr_dom/incr_dom.v0.16.0/opam b/packages/incr_dom/incr_dom.v0.16.0/opam new file mode 100644 index 00000000000..8ca398145c9 --- /dev/null +++ b/packages/incr_dom/incr_dom.v0.16.0/opam @@ -0,0 +1,52 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/incr_dom" +bug-reports: "https://github.com/janestreet/incr_dom/issues" +dev-repo: "git+https://github.com/janestreet/incr_dom.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/incr_dom/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async_js" {>= "v0.16" & < "v0.17"} + "async_kernel" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "incr_map" {>= "v0.16" & < "v0.17"} + "incr_select" {>= "v0.16" & < "v0.17"} + "incremental" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "virtual_dom" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "js_of_ocaml" {>= "5.1.1"} + "js_of_ocaml-ppx" {>= "5.1.1"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A library for building dynamic webapps, using Js_of_ocaml" +description: " +The library is designed roughly on a model/view/controller model. +Your application is built out of: + +- A functional model type that tracks the state of your application. + +- An incremental /view/ function for computing an HTML-like + representation of how your application should render on the browser. + The is based on the [[https://github.com/Matt-Esch/virtual-dom][virtual-dom]] javascript library. + +- An action type that is used to schedule events that update the + model. + +Combined with the ability to use Async, and in particular to send out +network requests using websockets, this should allow the easy +construction of rich web applications in a fairly comprehensible +style. + +If you want a more concrete sense of how this works, look in the +examples directory. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/incr_dom-v0.16.0.tar.gz" +checksum: "sha256=199e5d3ab8299832e3c2c3a08db86a0e5859420e88a867f4da331b91d2078c1b" +} diff --git a/packages/incr_dom_interactive/incr_dom_interactive.v0.16.0/opam b/packages/incr_dom_interactive/incr_dom_interactive.v0.16.0/opam new file mode 100644 index 00000000000..8fe6a16adb9 --- /dev/null +++ b/packages/incr_dom_interactive/incr_dom_interactive.v0.16.0/opam @@ -0,0 +1,35 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/incr_dom_interactive" +bug-reports: "https://github.com/janestreet/incr_dom_interactive/issues" +dev-repo: "git+https://github.com/janestreet/incr_dom_interactive.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/incr_dom_interactive/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async_js" {>= "v0.16" & < "v0.17"} + "async_kernel" {>= "v0.16" & < "v0.17"} + "incr_dom" {>= "v0.16" & < "v0.17"} + "incr_map" {>= "v0.16" & < "v0.17"} + "incr_select" {>= "v0.16" & < "v0.17"} + "incremental" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "splay_tree" {>= "v0.16" & < "v0.17"} + "virtual_dom" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "js_of_ocaml" {>= "5.1.1"} + "js_of_ocaml-ppx" {>= "5.1.1"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A monad for composing chains of interactive UI elements" +description: " +This library allows your program to receive input from the user using DOM elements such as checkboxes, text fields, and buttons. It allows you to inspect the user's input and decide afterwards what the rest of the [Interactive.t] should be. This library is intended to be used in conjunction with Incr_dom. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/incr_dom_interactive-v0.16.0.tar.gz" +checksum: "sha256=19740211a32529631ee8d0be7748520bc442459d003d7bad52671667739e793e" +} diff --git a/packages/incr_dom_partial_render/incr_dom_partial_render.v0.16.0/opam b/packages/incr_dom_partial_render/incr_dom_partial_render.v0.16.0/opam new file mode 100644 index 00000000000..207f0e1c831 --- /dev/null +++ b/packages/incr_dom_partial_render/incr_dom_partial_render.v0.16.0/opam @@ -0,0 +1,31 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/incr_dom_partial_render" +bug-reports: "https://github.com/janestreet/incr_dom_partial_render/issues" +dev-repo: "git+https://github.com/janestreet/incr_dom_partial_render.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/incr_dom_partial_render/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "incr_dom" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "ppx_pattern_bind" {>= "v0.16" & < "v0.17"} + "splay_tree" {>= "v0.16" & < "v0.17"} + "virtual_dom" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "js_of_ocaml" {>= "5.1.1"} + "js_of_ocaml-ppx" {>= "5.1.1"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A library for simplifying rendering of large amounts of data" +description: " +This library provides tools for rendering of tabular data efficiently, in particular supporting _partial rendering_, i.e. only rendering a subset of the widgets that are logically in the view, depending on what is expected to be visible to the end user. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/incr_dom_partial_render-v0.16.0.tar.gz" +checksum: "sha256=5a890134b13ef0a60a2201a4d6d676cc9c62d9b9ebe05816cf1cf78029256a22" +} diff --git a/packages/incr_dom_sexp_form/incr_dom_sexp_form.v0.16.0/opam b/packages/incr_dom_sexp_form/incr_dom_sexp_form.v0.16.0/opam new file mode 100644 index 00000000000..0ae57173af1 --- /dev/null +++ b/packages/incr_dom_sexp_form/incr_dom_sexp_form.v0.16.0/opam @@ -0,0 +1,34 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/incr_dom_sexp_form" +bug-reports: "https://github.com/janestreet/incr_dom_sexp_form/issues" +dev-repo: "git+https://github.com/janestreet/incr_dom_sexp_form.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/incr_dom_sexp_form/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "incr_dom" {>= "v0.16" & < "v0.17"} + "incr_dom_interactive" {>= "v0.16" & < "v0.17"} + "incr_map" {>= "v0.16" & < "v0.17"} + "incr_select" {>= "v0.16" & < "v0.17"} + "incremental" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "splay_tree" {>= "v0.16" & < "v0.17"} + "virtual_dom" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "js_of_ocaml" {>= "5.1.1"} + "js_of_ocaml-ppx" {>= "5.1.1"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A library for building forms that allow the user to edit complicated types" +description: " +It relies on the fact that the type of the value being edited can be serialized via sexps. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/incr_dom_sexp_form-v0.16.0.tar.gz" +checksum: "sha256=289cca1988bbefac24609d01c09505033419a860b71f61c746daafc354caf331" +} diff --git a/packages/incr_map/incr_map.v0.16.0/opam b/packages/incr_map/incr_map.v0.16.0/opam new file mode 100644 index 00000000000..c7a1f7bc6d0 --- /dev/null +++ b/packages/incr_map/incr_map.v0.16.0/opam @@ -0,0 +1,35 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/incr_map" +bug-reports: "https://github.com/janestreet/incr_map/issues" +dev-repo: "git+https://github.com/janestreet/incr_map.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/incr_map/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "abstract_algebra" {>= "v0.16" & < "v0.17"} + "bignum" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "diffable" {>= "v0.16" & < "v0.17"} + "incremental" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "ppx_pattern_bind" {>= "v0.16" & < "v0.17"} + "streamable" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Helpers for incremental operations on map like data structures" +description: " +A set of functions for operating incrementally and efficiently on map +like data structures. This leverages new functionality in Incremental +along with the ability to efficiently diff map data structures using +=Map.symmetric_diff=. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/incr_map-v0.16.0.tar.gz" +checksum: "sha256=a29d13cbc1759714ef49cc398ccfd5548212d1c0ba497552877548c9ce734d67" +} diff --git a/packages/incr_select/incr_select.v0.16.0/opam b/packages/incr_select/incr_select.v0.16.0/opam new file mode 100644 index 00000000000..0ac3ad2ab30 --- /dev/null +++ b/packages/incr_select/incr_select.v0.16.0/opam @@ -0,0 +1,32 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/incr_select" +bug-reports: "https://github.com/janestreet/incr_select/issues" +dev-repo: "git+https://github.com/janestreet/incr_select.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/incr_select/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "incremental" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Handling of large set of incremental outputs from a single input" +description: " +Ability to create a large set of incremental outputs based on a single +incremental input, where some subset of the outputs are selected to +have specific values, and the remainder are left with a specified +default value. The outputs are updated in time proportional to the +number of outputs that are changed, independent of the number of +outputs that exist. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/incr_select-v0.16.0.tar.gz" +checksum: "sha256=6e34ea0f8cb138525d31a59b820a801c3dadb2e592a31abc5690c3294c5ea614" +} diff --git a/packages/incremental/incremental.v0.16.0/opam b/packages/incremental/incremental.v0.16.0/opam new file mode 100644 index 00000000000..b12afa4f3af --- /dev/null +++ b/packages/incremental/incremental.v0.16.0/opam @@ -0,0 +1,32 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/incremental" +bug-reports: "https://github.com/janestreet/incremental/issues" +dev-repo: "git+https://github.com/janestreet/incremental.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/incremental/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "lru_cache" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "ppx_optcomp" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Library for incremental computations" +description: " +Part of Jane Street's Core library +The Core suite of libraries is an industrial strength alternative to +OCaml's standard library that was developed by Jane Street, the +largest industrial user of OCaml. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/incremental-v0.16.0.tar.gz" +checksum: "sha256=3464f34f1048ee53e0727c83acfaa8c303f0133e3cf78ef745773fa63aa0872a" +} diff --git a/packages/indentation_buffer/indentation_buffer.v0.16.0/opam b/packages/indentation_buffer/indentation_buffer.v0.16.0/opam new file mode 100644 index 00000000000..498476c2314 --- /dev/null +++ b/packages/indentation_buffer/indentation_buffer.v0.16.0/opam @@ -0,0 +1,26 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/indentation_buffer" +bug-reports: "https://github.com/janestreet/indentation_buffer/issues" +dev-repo: "git+https://github.com/janestreet/indentation_buffer.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/indentation_buffer/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A library for building strings with indentation" +description: " +A library for building strings with indentation +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/indentation_buffer-v0.16.0.tar.gz" +checksum: "sha256=1ac71d3dfd82d264260519e92d04429f99a9209477c22bc9ff655f7787a801a0" +} diff --git a/packages/int_repr/int_repr.v0.16.0/opam b/packages/int_repr/int_repr.v0.16.0/opam new file mode 100644 index 00000000000..0837801428e --- /dev/null +++ b/packages/int_repr/int_repr.v0.16.0/opam @@ -0,0 +1,26 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/int_repr" +bug-reports: "https://github.com/janestreet/int_repr/issues" +dev-repo: "git+https://github.com/janestreet/int_repr.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/int_repr/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Integers of various widths" +description: " +Integers of various widths. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/int_repr-v0.16.0.tar.gz" +checksum: "sha256=132f56262ffee171ff81162460c7132ac366f0295a23801795385c3620b6f076" +} diff --git a/packages/jane-street-headers/jane-street-headers.v0.16.0/opam b/packages/jane-street-headers/jane-street-headers.v0.16.0/opam new file mode 100644 index 00000000000..27b811512e1 --- /dev/null +++ b/packages/jane-street-headers/jane-street-headers.v0.16.0/opam @@ -0,0 +1,24 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/jane-street-headers" +bug-reports: "https://github.com/janestreet/jane-street-headers/issues" +dev-repo: "git+https://github.com/janestreet/jane-street-headers.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/jane-street-headers/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Jane Street C header files" +description: " +C header files shared between the various Jane Street packages +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/jane-street-headers-v0.16.0.tar.gz" +checksum: "sha256=876d409feeb495487b10010fb601c64829d2aa15f1b156b704ec141337d360ea" +} diff --git a/packages/jane_rope/jane_rope.v0.16.0/opam b/packages/jane_rope/jane_rope.v0.16.0/opam new file mode 100644 index 00000000000..14bb6908ac1 --- /dev/null +++ b/packages/jane_rope/jane_rope.v0.16.0/opam @@ -0,0 +1,25 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/jane_rope" +bug-reports: "https://github.com/janestreet/jane_rope/issues" +dev-repo: "git+https://github.com/janestreet/jane_rope.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/jane_rope/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "String representation with cheap concatenation." +description: " +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/jane_rope-v0.16.0.tar.gz" +checksum: "sha256=d91d3c8c398c9aa723667463e63a9ffc1b569f7efc1266ad735ee506c60b8b73" +} diff --git a/packages/janestreet_cpuid/janestreet_cpuid.v0.16.0/opam b/packages/janestreet_cpuid/janestreet_cpuid.v0.16.0/opam new file mode 100644 index 00000000000..b19c018f6f4 --- /dev/null +++ b/packages/janestreet_cpuid/janestreet_cpuid.v0.16.0/opam @@ -0,0 +1,28 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/janestreet_cpuid" +bug-reports: "https://github.com/janestreet/janestreet_cpuid/issues" +dev-repo: "git+https://github.com/janestreet/janestreet_cpuid.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/janestreet_cpuid/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +synopsis: "A library for parsing CPU capabilities out of the `cpuid` instruction." +description: " +Supports a broad swath of Intel CPU capabilities and a more limited subset of AMD CPU +capabilities. +" +available: (arch = "x86_64" | arch = "arm64") & os = "linux" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/janestreet_cpuid-v0.16.0.tar.gz" +checksum: "sha256=fa01bf75531eee07ce73538fa7d835cb4341e2bb204a322bda42c9c66bfbe3a3" +} diff --git a/packages/janestreet_csv/janestreet_csv.v0.16.0/opam b/packages/janestreet_csv/janestreet_csv.v0.16.0/opam new file mode 100644 index 00000000000..1cb50dd684a --- /dev/null +++ b/packages/janestreet_csv/janestreet_csv.v0.16.0/opam @@ -0,0 +1,39 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/janestreet_csv" +bug-reports: "https://github.com/janestreet/janestreet_csv/issues" +dev-repo: "git+https://github.com/janestreet/janestreet_csv.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/janestreet_csv/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "bignum" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "csvfields" {>= "v0.16" & < "v0.17"} + "delimited_parsing" {>= "v0.16" & < "v0.17"} + "fieldslib" {>= "v0.16" & < "v0.17"} + "numeric_string" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "re2" {>= "v0.16" & < "v0.17"} + "textutils" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "pcre" + "tyxml" {>= "4.3.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Tools for working with CSVs on the command line" +description: " +A suite of tools for working with CSVs from the command line. It +contains subcommands for pretty printing, selecting, and combining +CSVs, as well as some conversions to other formats. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/janestreet_csv-v0.16.0.tar.gz" +checksum: "sha256=c039eeef15bc68460984e74a003c3068da2e4854c4dc2cdcfec6be946f2b0a65" +} diff --git a/packages/js_of_ocaml_patches/js_of_ocaml_patches.v0.16.0/opam b/packages/js_of_ocaml_patches/js_of_ocaml_patches.v0.16.0/opam new file mode 100644 index 00000000000..8dec8becdc1 --- /dev/null +++ b/packages/js_of_ocaml_patches/js_of_ocaml_patches.v0.16.0/opam @@ -0,0 +1,26 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/js_of_ocaml_patches" +bug-reports: "https://github.com/janestreet/js_of_ocaml_patches/issues" +dev-repo: "git+https://github.com/janestreet/js_of_ocaml_patches.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/js_of_ocaml_patches/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "dune" {>= "2.0.0"} + "js_of_ocaml" {>= "5.1.1"} + "js_of_ocaml-ppx" {>= "5.1.1"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Additions to js_of_ocaml's standard library that are required by Jane Street libraries." +description: " +Additions to js_of_ocaml's standard library that are required by Jane Street libraries. Most, if not everything in this library is intended to be upstreamed. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/js_of_ocaml_patches-v0.16.0.tar.gz" +checksum: "sha256=72a5b83dcd57a3496dec793fe8c9fbd866ceeca5a2f6cc45b42e33296aaead4c" +} diff --git a/packages/jsonaf/jsonaf.v0.16.0/opam b/packages/jsonaf/jsonaf.v0.16.0/opam new file mode 100644 index 00000000000..beb8a51125d --- /dev/null +++ b/packages/jsonaf/jsonaf.v0.16.0/opam @@ -0,0 +1,28 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/jsonaf" +bug-reports: "https://github.com/janestreet/jsonaf/issues" +dev-repo: "git+https://github.com/janestreet/jsonaf.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/jsonaf/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "angstrom" {>= "0.15.0"} + "dune" {>= "2.0.0"} + "faraday" +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A library for parsing, manipulating, and serializing data structured as JSON" +description: " +A library for parsing, manipulating, and serializing data structured as JSON. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/jsonaf-v0.16.0.tar.gz" +checksum: "sha256=0c85230d47dcc80c428ad82e0f2cb0ecbb5048129eaa036aeeb4cfb8d9d2063f" +} diff --git a/packages/jst-config/jst-config.v0.16.0/opam b/packages/jst-config/jst-config.v0.16.0/opam new file mode 100644 index 00000000000..8861b8a97a6 --- /dev/null +++ b/packages/jst-config/jst-config.v0.16.0/opam @@ -0,0 +1,32 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/jst-config" +bug-reports: "https://github.com/janestreet/jst-config/issues" +dev-repo: "git+https://github.com/janestreet/jst-config.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/jst-config/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_assert" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "dune-configurator" +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Compile-time configuration for Jane Street libraries" +description: " +Defines compile-time constants used in Jane Street libraries such as Base, Core, and +Async. + +This package has an unstable interface; it is intended only to share configuration between +different packages from Jane Street. Future updates may not be backward-compatible, and we +do not recommend using this package directly. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/jst-config-v0.16.0.tar.gz" +checksum: "sha256=faead56d8582868cdc099ad54f9bae059cc48710b724600cc64013e73c14d95b" +} diff --git a/packages/krb/krb.v0.16.0/opam b/packages/krb/krb.v0.16.0/opam new file mode 100644 index 00000000000..2bfe1a25bf7 --- /dev/null +++ b/packages/krb/krb.v0.16.0/opam @@ -0,0 +1,41 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/krb" +bug-reports: "https://github.com/janestreet/krb/issues" +dev-repo: "git+https://github.com/janestreet/krb.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/krb/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "base" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "env_config" {>= "v0.16" & < "v0.17"} + "hex_encode" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "protocol_version_header" {>= "v0.16" & < "v0.17"} + "stdio" {>= "v0.16" & < "v0.17"} + "username_kernel" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "dune-configurator" +] +synopsis: "A library for using Kerberos for both Rpc and Tcp communication" +description: " +Jane Street's library for Kerberizing RPC connections so that + - the server gets an authenticated principal (i.e. username) with + every incoming connection, and + - RPC communication may be encrypted, if necessary. +" +depexts: [ + ["libkrb5-dev"] {os-family = "debian"} + ["krb5-devel"] {os-family = "fedora" | os-family = "suse"} +] +available: (arch = "x86_64" | arch = "arm64") & os = "linux" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/krb-v0.16.0.tar.gz" +checksum: "sha256=353675621e4c5a888f2483dc1bb7281bd17ce4ed7dfd2f40142257f98db7c77d" +} diff --git a/packages/line-up-words/line-up-words.v0.16.0/opam b/packages/line-up-words/line-up-words.v0.16.0/opam new file mode 100644 index 00000000000..0be3c55e29b --- /dev/null +++ b/packages/line-up-words/line-up-words.v0.16.0/opam @@ -0,0 +1,33 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/line-up-words" +bug-reports: "https://github.com/janestreet/line-up-words/issues" +dev-repo: "git+https://github.com/janestreet/line-up-words.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/line-up-words/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "patience_diff" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "re2" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "pcre" +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Align words in an intelligent way" +description: " +line-up-words is a small command line tool that tries to align words +in a sequence of lines in an intelligent way. + +It comes as a binary and an emacs mode. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/line-up-words-v0.16.0.tar.gz" +checksum: "sha256=4c9135e6f947bf5e8c1c9898329415944681580042f223639a1c3dda999b1738" +} diff --git a/packages/lru_cache/lru_cache.v0.16.0/opam b/packages/lru_cache/lru_cache.v0.16.0/opam new file mode 100644 index 00000000000..2d492cc90d0 --- /dev/null +++ b/packages/lru_cache/lru_cache.v0.16.0/opam @@ -0,0 +1,26 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/lru_cache" +bug-reports: "https://github.com/janestreet/lru_cache/issues" +dev-repo: "git+https://github.com/janestreet/lru_cache.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/lru_cache/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "An LRU Cache implementation." +description: " +Implementation of a Least Recently Used Cache. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/lru_cache-v0.16.0.tar.gz" +checksum: "sha256=aa6b87aa9316ee41ca6e8b1291b6955305b26ba3330aa4e7fdcc0f921e3fc976" +} diff --git a/packages/man_in_the_middle_debugger/man_in_the_middle_debugger.v0.16.0/opam b/packages/man_in_the_middle_debugger/man_in_the_middle_debugger.v0.16.0/opam new file mode 100644 index 00000000000..11124758b06 --- /dev/null +++ b/packages/man_in_the_middle_debugger/man_in_the_middle_debugger.v0.16.0/opam @@ -0,0 +1,30 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/man_in_the_middle_debugger" +bug-reports: "https://github.com/janestreet/man_in_the_middle_debugger/issues" +dev-repo: "git+https://github.com/janestreet/man_in_the_middle_debugger.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/man_in_the_middle_debugger/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "angstrom" {>= "0.15.0"} + "angstrom-async" {>= "0.15.0"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Man-in-the-middle debugging library" +description: " +This library helps debug a connection between two parties speaking a +protocol by capturing the traffic that passes between them. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/man_in_the_middle_debugger-v0.16.0.tar.gz" +checksum: "sha256=9945c05f720305bf071db61d887db8d473b1b86298066b45828730b47921a0f9" +} diff --git a/packages/memtrace_viewer/memtrace_viewer.v0.16.0/opam b/packages/memtrace_viewer/memtrace_viewer.v0.16.0/opam new file mode 100644 index 00000000000..0f1a11499b4 --- /dev/null +++ b/packages/memtrace_viewer/memtrace_viewer.v0.16.0/opam @@ -0,0 +1,37 @@ +opam-version: "2.0" +maintainer: "opensource-contacts@janestreet.com" +authors: ["Jane Street Group, LLC "] +homepage: "https://github.com/janestreet/memtrace_viewer" +bug-reports: "https://github.com/janestreet/memtrace_viewer/issues" +dev-repo: "git+https://github.com/janestreet/memtrace_viewer.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/memtrace_viewer/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.11.0"} + "async_js" {>= "v0.16" & < "v0.17"} + "async_kernel" {>= "v0.16" & < "v0.17"} + "async_rpc_kernel" {>= "v0.16" & < "v0.17"} + "bonsai" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "async_rpc_websocket" {>= "v0.16" & < "v0.17"} + "virtual_dom" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "js_of_ocaml-ppx" + "memtrace" + "ocaml-embed-file" {>= "v0.16" & < "v0.17"} +] +synopsis: "Interactive memory profiler based on Memtrace" +description: " +Processes traces produced by the Memtrace library and displays the +top allocators in a table or flame graph. To help find space leaks, +events can be filtered by lifetime, showing only allocations of +objects that are still live at peak memory usage. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/memtrace_viewer-v0.16.0.tar.gz" +checksum: "sha256=bb50fc48fef748dffe7ff1e151021b1361500c432a8c2991065fd31fd474f817" +} diff --git a/packages/mlt_parser/mlt_parser.v0.16.0/opam b/packages/mlt_parser/mlt_parser.v0.16.0/opam new file mode 100644 index 00000000000..5d0e2fbcdd2 --- /dev/null +++ b/packages/mlt_parser/mlt_parser.v0.16.0/opam @@ -0,0 +1,30 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/mlt_parser" +bug-reports: "https://github.com/janestreet/mlt_parser/issues" +dev-repo: "git+https://github.com/janestreet/mlt_parser.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/mlt_parser/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_expect" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Parsing of top-expect files" +description: " +Mlt_parser contains functions for parsing .mlt files (which contain OCaml toplevel +sessions) both to power toplevel expect tests and to support a tool that converts +.mlt files into .org files, for literate-style documentation. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/mlt_parser-v0.16.0.tar.gz" +checksum: "sha256=44a2d0f4d12e64fddde494ce8d61a0afa27fbfb84bb46ccc2c590372c0c4d516" +} diff --git a/packages/n_ary/n_ary.v0.16.0/opam b/packages/n_ary/n_ary.v0.16.0/opam new file mode 100644 index 00000000000..e6ba6bc34ca --- /dev/null +++ b/packages/n_ary/n_ary.v0.16.0/opam @@ -0,0 +1,36 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/n_ary" +bug-reports: "https://github.com/janestreet/n_ary/issues" +dev-repo: "git+https://github.com/janestreet/n_ary.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/n_ary/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "expect_test_helpers_core" {>= "v0.16" & < "v0.17"} + "ppx_compare" {>= "v0.16" & < "v0.17"} + "ppx_enumerate" {>= "v0.16" & < "v0.17"} + "ppx_hash" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "ppx_sexp_conv" {>= "v0.16" & < "v0.17"} + "ppx_sexp_message" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A library for N-ary datatypes and operations." +description: " + +A library for N-ary datatypes and operations. + +Provides tuples, enumerations, variants, and list operations +implemented for N from 2 to 16, inclusive. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/n_ary-v0.16.0.tar.gz" +checksum: "sha256=5109c6637383c2590cbe5797fb9f9060feea03bd5caa9ac8b80fad4da75ca676" +} diff --git a/packages/netsnmp/netsnmp.v0.16.0/opam b/packages/netsnmp/netsnmp.v0.16.0/opam new file mode 100644 index 00000000000..db19b1ad18f --- /dev/null +++ b/packages/netsnmp/netsnmp.v0.16.0/opam @@ -0,0 +1,33 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/netsnmp" +bug-reports: "https://github.com/janestreet/netsnmp/issues" +dev-repo: "git+https://github.com/janestreet/netsnmp.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/netsnmp/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "conf-netsnmp" {>= "1.0.0"} + "dune" {>= "2.0.0"} + "re" {>= "1.8.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "An interface to the Net-SNMP client library" +description: " +Provides a wrapper around the Net-SNMP client libraries including +MIB handling and SNMP requests +" +depexts: [ + ["net-snmp"] {os-family = "arch"} +] +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/netsnmp-v0.16.0.tar.gz" +checksum: "sha256=ebb8a7aa4af5fdc5cc8d9d0f0640041154ea766037d9c32562705ebbbd331774" +} diff --git a/packages/notty_async/notty_async.v0.16.0/opam b/packages/notty_async/notty_async.v0.16.0/opam new file mode 100644 index 00000000000..111f793ad90 --- /dev/null +++ b/packages/notty_async/notty_async.v0.16.0/opam @@ -0,0 +1,29 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/notty_async" +bug-reports: "https://github.com/janestreet/notty_async/issues" +dev-repo: "git+https://github.com/janestreet/notty_async.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/notty_async/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "notty" {>= "0.2.1"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "An Async driver for Notty" +description: " +Notty is a library for writing graphical terminal applications, and Notty_async +is an Async driver, which makes it easy to build terminal applications using +Async for managing concurrency. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/notty_async-v0.16.0.tar.gz" +checksum: "sha256=225850f972165bb3ed930fcbf5443dee2e8f270b8a186fab3065528ef1d85854" +} diff --git a/packages/numeric_string/numeric_string.v0.16.0/opam b/packages/numeric_string/numeric_string.v0.16.0/opam new file mode 100644 index 00000000000..95faa0dc322 --- /dev/null +++ b/packages/numeric_string/numeric_string.v0.16.0/opam @@ -0,0 +1,39 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/numeric_string" +bug-reports: "https://github.com/janestreet/numeric_string/issues" +dev-repo: "git+https://github.com/janestreet/numeric_string.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/numeric_string/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A comparison function for strings that sorts numeric fragments of strings according to their numeric value, so that e.g. \"abc2\" < \"abc10\"." +description: " +A comparison function (and assorted sets / maps / etc.) for strings +that sorts numeric fragments of strings according to their numeric +value, so that e.g. \"abc2\" < \"abc10\". + +People often call this \"natural sort\", and link to this: + +https://blog.codinghorror.com/sorting-for-humans-natural-sort-order/ + +which links to a few other posts about the matter. Sometimes it's +called \"alphanum sort\" or \"human sort\" or something. \"Numeric string +compare\" is chosen as the name that gets closest to expressing what it +actually does (to me, \"natural sort\" sounds like something that might +include a different treatment of case, special handling of whitespace +or punctuation, etc.) +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/numeric_string-v0.16.0.tar.gz" +checksum: "sha256=b4a43ada27dd4f8c399a7222637e23897f71bbc70c83ecfa258212cafc64d16b" +} diff --git a/packages/ocaml-embed-file/ocaml-embed-file.v0.16.0/opam b/packages/ocaml-embed-file/ocaml-embed-file.v0.16.0/opam new file mode 100644 index 00000000000..71faba5489f --- /dev/null +++ b/packages/ocaml-embed-file/ocaml-embed-file.v0.16.0/opam @@ -0,0 +1,29 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ocaml-embed-file" +bug-reports: "https://github.com/janestreet/ocaml-embed-file/issues" +dev-repo: "git+https://github.com/janestreet/ocaml-embed-file.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ocaml-embed-file/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Files contents as module constants" +description: " +Embed-file takes some files and generates code for an OCaml module +defining string constants containing the contents of those files. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ocaml-embed-file-v0.16.0.tar.gz" +checksum: "sha256=eb278140b41da0cab6a5dfb83f18a85dd305a55946c01ff197dca451273b13a5" +} diff --git a/packages/ocaml-probes/ocaml-probes.v0.16.0/opam b/packages/ocaml-probes/ocaml-probes.v0.16.0/opam new file mode 100644 index 00000000000..9787bdf93c5 --- /dev/null +++ b/packages/ocaml-probes/ocaml-probes.v0.16.0/opam @@ -0,0 +1,27 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ocaml-probes" +bug-reports: "https://github.com/janestreet/ocaml-probes/issues" +dev-repo: "git+https://github.com/janestreet/ocaml-probes.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ocaml-probes/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "dune" {>= "2.0.0"} + "owee" {>= "0.4"} +] +synopsis: "USDT probes for OCaml: command line tool" +description: " +A tool for controlling user-space statically-defined tracing probes for OCaml. +Experimental. +" +depexts: ["linux-headers"] {os-family = "alpine"} +available: (arch = "x86_64" | arch = "arm64") & os = "linux" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ocaml-probes-v0.16.0.tar.gz" +checksum: "sha256=bc8d2b0449a43966aace3815d20a71c51188317a2e8268b6e68cb4955d482f10" +} diff --git a/packages/ocaml_intrinsics/ocaml_intrinsics.v0.16.0/opam b/packages/ocaml_intrinsics/ocaml_intrinsics.v0.16.0/opam new file mode 100644 index 00000000000..ee3780363ed --- /dev/null +++ b/packages/ocaml_intrinsics/ocaml_intrinsics.v0.16.0/opam @@ -0,0 +1,26 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ocaml_intrinsics" +bug-reports: "https://github.com/janestreet/ocaml_intrinsics/issues" +dev-repo: "git+https://github.com/janestreet/ocaml_intrinsics.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ocaml_intrinsics/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "dune" {>= "2.0.0"} + "dune-configurator" +] +synopsis: "Intrinsics" +description: " +Provides functions to invoke amd64 instructions (such as clz,popcnt,rdtsc,rdpmc) + when available, or compatible software implementation on other targets. +" +available: (arch = "x86_64" | arch = "arm64") & os != "win32" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ocaml_intrinsics-v0.16.0.tar.gz" +checksum: "sha256=9b28693fefa85b8d783317f93aa4764aab9bac8967d38a360e8bb36972f807a4" +} diff --git a/packages/of_json/of_json.v0.16.0/opam b/packages/of_json/of_json.v0.16.0/opam new file mode 100644 index 00000000000..feaed6f8f8b --- /dev/null +++ b/packages/of_json/of_json.v0.16.0/opam @@ -0,0 +1,28 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/of_json" +bug-reports: "https://github.com/janestreet/of_json/issues" +dev-repo: "git+https://github.com/janestreet/of_json.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/of_json/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "core_extended" {>= "v0.16" & < "v0.17"} + "jsonaf" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A friendly applicative interface for Jsonaf." +description: " +This library provides an applicative interface for extracting values from JSON objects with an emphasis on readability and error handling, particularly with nested values. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/of_json-v0.16.0.tar.gz" +checksum: "sha256=f3808f2dffd18035fe579b705813276cc4279914c682d273dfefb12f123b6b13" +} diff --git a/packages/ordinal_abbreviation/ordinal_abbreviation.v0.16.0/opam b/packages/ordinal_abbreviation/ordinal_abbreviation.v0.16.0/opam new file mode 100644 index 00000000000..1d24786b90e --- /dev/null +++ b/packages/ordinal_abbreviation/ordinal_abbreviation.v0.16.0/opam @@ -0,0 +1,26 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ordinal_abbreviation" +bug-reports: "https://github.com/janestreet/ordinal_abbreviation/issues" +dev-repo: "git+https://github.com/janestreet/ordinal_abbreviation.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ordinal_abbreviation/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A minimal library for generating ordinal names of integers." +description: " +A minimal library for generating ordinal names of integers. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ordinal_abbreviation-v0.16.0.tar.gz" +checksum: "sha256=c8082935e7961cb7ec6459e7219a3c85b615243fe6bad0cb349451f8251c6a47" +} diff --git a/packages/pam/pam.v0.16.0/opam b/packages/pam/pam.v0.16.0/opam new file mode 100644 index 00000000000..b4ebe58ac89 --- /dev/null +++ b/packages/pam/pam.v0.16.0/opam @@ -0,0 +1,32 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/pam" +bug-reports: "https://github.com/janestreet/pam/issues" +dev-repo: "git+https://github.com/janestreet/pam.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/pam/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "conf-pam" + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "OCaml bindings for the Linux-PAM library" +description: " +This provides OCaml bindings for the Linux-PAM (Pluggable Authentication +Modules for Linux) library. It allows OCaml programs to delegate +authentication tasks to the Linux-PAM framework. +" +depexts: [ + ["pam-devel"] {os-family = "fedora"} +] +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/pam-v0.16.0.tar.gz" +checksum: "sha256=9ab14a09c80ac7c79863d2f0aaa579d53dd05e93222a53000a91e1ae53254f46" +} diff --git a/packages/parsexp/parsexp.v0.16.0/opam b/packages/parsexp/parsexp.v0.16.0/opam new file mode 100644 index 00000000000..164bab34c14 --- /dev/null +++ b/packages/parsexp/parsexp.v0.16.0/opam @@ -0,0 +1,43 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/parsexp" +bug-reports: "https://github.com/janestreet/parsexp/issues" +dev-repo: "git+https://github.com/janestreet/parsexp.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/parsexp/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "sexplib0" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "S-expression parsing library" +description: " +This library provides generic parsers for parsing S-expressions from +strings or other medium. + +The library is focused on performances but still provide full generic +parsers that can be used with strings, bigstrings, lexing buffers, +character streams or any other sources effortlessly. + +It provides three different class of parsers: +- the normal parsers, producing [Sexp.t] or [Sexp.t list] values +- the parsers with positions, building compact position sequences so + that one can recover original positions in order to report properly + located errors at little cost +- the Concrete Syntax Tree parsers, produce values of type + [Parsexp.Cst.t] which record the concrete layout of the s-expression + syntax, including comments + +This library is portable and doesn't provide IO functions. To read +s-expressions from files or other external sources, you should use +parsexp_io. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/parsexp-v0.16.0.tar.gz" +checksum: "sha256=b6e2572c8e6191a85cb8f9c3276ed87fe00522c81ba7a268179fb08185e55e12" +} diff --git a/packages/parsexp_io/parsexp_io.v0.16.0/opam b/packages/parsexp_io/parsexp_io.v0.16.0/opam new file mode 100644 index 00000000000..e778a1a9b2e --- /dev/null +++ b/packages/parsexp_io/parsexp_io.v0.16.0/opam @@ -0,0 +1,28 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/parsexp_io" +bug-reports: "https://github.com/janestreet/parsexp_io/issues" +dev-repo: "git+https://github.com/janestreet/parsexp_io.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/parsexp_io/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "parsexp" {>= "v0.16" & < "v0.17"} + "ppx_js_style" {>= "v0.16" & < "v0.17"} + "stdio" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "S-expression parsing library (IO functions)" +description: " +Parsexp_io provides functions for loading s-expressions from files. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/parsexp_io-v0.16.0.tar.gz" +checksum: "sha256=77cd9edd0cdd67ac6b56ec72deee4c6e762e5d5185e2a3ab0905f672e448b6de" +} diff --git a/packages/patdiff/patdiff.v0.16.0/opam b/packages/patdiff/patdiff.v0.16.0/opam new file mode 100644 index 00000000000..5ff7402c8b0 --- /dev/null +++ b/packages/patdiff/patdiff.v0.16.0/opam @@ -0,0 +1,31 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/patdiff" +bug-reports: "https://github.com/janestreet/patdiff/issues" +dev-repo: "git+https://github.com/janestreet/patdiff.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/patdiff/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "expect_test_helpers_core" {>= "v0.16" & < "v0.17"} + "patience_diff" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "pcre" + "re" {>= "1.8.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "File Diff using the Patience Diff algorithm" +description: " +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/patdiff-v0.16.0.tar.gz" +checksum: "sha256=60661ffca35e4726c40c42901774976f2634ac6a4f993a5a13f2fa458571cf16" +} diff --git a/packages/patience_diff/patience_diff.v0.16.0/opam b/packages/patience_diff/patience_diff.v0.16.0/opam new file mode 100644 index 00000000000..6d81fd4d480 --- /dev/null +++ b/packages/patience_diff/patience_diff.v0.16.0/opam @@ -0,0 +1,26 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/patience_diff" +bug-reports: "https://github.com/janestreet/patience_diff/issues" +dev-repo: "git+https://github.com/janestreet/patience_diff.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/patience_diff/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Diff library using Bram Cohen's patience diff algorithm" +description: " +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/patience_diff-v0.16.0.tar.gz" +checksum: "sha256=53759c7458f137db9380a7a7c711bbde6a4655abaad67435083a0f016f42e85c" +} diff --git a/packages/polling_state_rpc/polling_state_rpc.v0.16.0/opam b/packages/polling_state_rpc/polling_state_rpc.v0.16.0/opam new file mode 100644 index 00000000000..ccab7e21145 --- /dev/null +++ b/packages/polling_state_rpc/polling_state_rpc.v0.16.0/opam @@ -0,0 +1,30 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/polling_state_rpc" +bug-reports: "https://github.com/janestreet/polling_state_rpc/issues" +dev-repo: "git+https://github.com/janestreet/polling_state_rpc.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/polling_state_rpc/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async_kernel" {>= "v0.16" & < "v0.17"} + "async_rpc_kernel" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "diffable" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "An RPC which tracks state on the client and server so it only needs to send diffs across the wire." +description: " +An RPC which tracks state on the client and server so it only needs to send diffs across the wire. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/polling_state_rpc-v0.16.0.tar.gz" +checksum: "sha256=6b930abc3c9863d2391882d78d56694d3c4ed58f0d364e5b17f21d7d1ec10d49" +} diff --git a/packages/posixat/posixat.v0.16.0/opam b/packages/posixat/posixat.v0.16.0/opam new file mode 100644 index 00000000000..911b79e6838 --- /dev/null +++ b/packages/posixat/posixat.v0.16.0/opam @@ -0,0 +1,32 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/posixat" +bug-reports: "https://github.com/janestreet/posixat/issues" +dev-repo: "git+https://github.com/janestreet/posixat.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/posixat/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_optcomp" {>= "v0.16" & < "v0.17"} + "ppx_sexp_conv" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Bindings to the posix *at functions" +description: " +Posixat is a small library that just binds the various *at posix +functions. + +The posix *at functions takes the current working directory as a file +descriptor. For instance this allows to reliably maintain several +working directories inside the same process. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/posixat-v0.16.0.tar.gz" +checksum: "sha256=3879113bbccdee09cbbd88ae0b6e890922f2dcb8cfbcbaf935c8b6663530262e" +} diff --git a/packages/postgres_async/postgres_async.v0.16.0/opam b/packages/postgres_async/postgres_async.v0.16.0/opam new file mode 100644 index 00000000000..9ba647aeec1 --- /dev/null +++ b/packages/postgres_async/postgres_async.v0.16.0/opam @@ -0,0 +1,33 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/postgres_async" +bug-reports: "https://github.com/janestreet/postgres_async/issues" +dev-repo: "git+https://github.com/janestreet/postgres_async.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/postgres_async/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "async_ssl" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "OCaml/async implementation of the postgres protocol (i.e., does not use C-bindings to libpq)" +description: " +postgres_async is an OCaml PostgreSQL client that implements the PostgreSQL +protocol rather than binding to the libpq C library. It provides support for +regular queries (including support for 'parameters': \"SELECT * WHERE a = $1\") +and COPY IN mode. The interface presented is minimal to keep the library simple +for now, though in the future a layer on top may add convenience functions. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/postgres_async-v0.16.0.tar.gz" +checksum: "sha256=3a8b4ecf02dee62e101fed6d8981f5f42f8d42b84381507fd1eadf001830fdcb" +} diff --git a/packages/ppx_accessor/ppx_accessor.v0.16.0/opam b/packages/ppx_accessor/ppx_accessor.v0.16.0/opam new file mode 100644 index 00000000000..3e0d54bd059 --- /dev/null +++ b/packages/ppx_accessor/ppx_accessor.v0.16.0/opam @@ -0,0 +1,27 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_accessor" +bug-reports: "https://github.com/janestreet/ppx_accessor/issues" +dev-repo: "git+https://github.com/janestreet/ppx_accessor.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_accessor/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "accessor" {>= "v0.16" & < "v0.17"} + "base" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "[@@deriving] plugin to generate accessors for use with the Accessor libraries" +description: " +Automatically generate accessors given a type definition. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_accessor-v0.16.0.tar.gz" +checksum: "sha256=8d29c51cc809e5a4349c619f5f4e0d0ecfa30ec4b77fabbcf7f5d08dc1a45628" +} diff --git a/packages/ppx_assert/ppx_assert.v0.16.0/opam b/packages/ppx_assert/ppx_assert.v0.16.0/opam new file mode 100644 index 00000000000..3dbec9d439d --- /dev/null +++ b/packages/ppx_assert/ppx_assert.v0.16.0/opam @@ -0,0 +1,30 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_assert" +bug-reports: "https://github.com/janestreet/ppx_assert/issues" +dev-repo: "git+https://github.com/janestreet/ppx_assert.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_assert/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_cold" {>= "v0.16" & < "v0.17"} + "ppx_compare" {>= "v0.16" & < "v0.17"} + "ppx_here" {>= "v0.16" & < "v0.17"} + "ppx_sexp_conv" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Assert-like extension nodes that raise useful errors on failure" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_assert-v0.16.0.tar.gz" +checksum: "sha256=57dc6e241827eb1d5112c958f2f682ddd0addf5a8e9d589f5361ec2669883fd5" +} diff --git a/packages/ppx_base/ppx_base.v0.16.0/opam b/packages/ppx_base/ppx_base.v0.16.0/opam new file mode 100644 index 00000000000..51d3c53eb67 --- /dev/null +++ b/packages/ppx_base/ppx_base.v0.16.0/opam @@ -0,0 +1,34 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_base" +bug-reports: "https://github.com/janestreet/ppx_base/issues" +dev-repo: "git+https://github.com/janestreet/ppx_base.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_base/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "ppx_cold" {>= "v0.16" & < "v0.17"} + "ppx_compare" {>= "v0.16" & < "v0.17"} + "ppx_enumerate" {>= "v0.16" & < "v0.17"} + "ppx_globalize" {>= "v0.16" & < "v0.17"} + "ppx_hash" {>= "v0.16" & < "v0.17"} + "ppx_sexp_conv" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Base set of ppx rewriters" +description: " +ppx_base is the set of ppx rewriters used for Base. + +Note that Base doesn't need ppx to build, it is only used as a +verification tool. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_base-v0.16.0.tar.gz" +checksum: "sha256=64835763153d3262a2fa56cf307a351ebfd10cedf504c488ab3bb93f3d9569a3" +} diff --git a/packages/ppx_bench/ppx_bench.v0.16.0/opam b/packages/ppx_bench/ppx_bench.v0.16.0/opam new file mode 100644 index 00000000000..07ebb7804bc --- /dev/null +++ b/packages/ppx_bench/ppx_bench.v0.16.0/opam @@ -0,0 +1,26 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_bench" +bug-reports: "https://github.com/janestreet/ppx_bench/issues" +dev-repo: "git+https://github.com/janestreet/ppx_bench.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_bench/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "ppx_inline_test" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Syntax extension for writing in-line benchmarks in ocaml code" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_bench-v0.16.0.tar.gz" +checksum: "sha256=e307fc25b4cb38125685fa01888255d00aaf6c1b82f52c4f02ebd48a4471761d" +} diff --git a/packages/ppx_bin_prot/ppx_bin_prot.v0.16.0/opam b/packages/ppx_bin_prot/ppx_bin_prot.v0.16.0/opam new file mode 100644 index 00000000000..d2a17e2e8f8 --- /dev/null +++ b/packages/ppx_bin_prot/ppx_bin_prot.v0.16.0/opam @@ -0,0 +1,28 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_bin_prot" +bug-reports: "https://github.com/janestreet/ppx_bin_prot/issues" +dev-repo: "git+https://github.com/janestreet/ppx_bin_prot.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_bin_prot/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "bin_prot" {>= "v0.16" & < "v0.17"} + "ppx_here" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Generation of bin_prot readers and writers from types" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_bin_prot-v0.16.0.tar.gz" +checksum: "sha256=94486e7d6357f12f8aa358196783822c500b3b2fe04c597ea86c1c42bc5c3b61" +} diff --git a/packages/ppx_cold/ppx_cold.v0.16.0/opam b/packages/ppx_cold/ppx_cold.v0.16.0/opam new file mode 100644 index 00000000000..01d5f4ed2b4 --- /dev/null +++ b/packages/ppx_cold/ppx_cold.v0.16.0/opam @@ -0,0 +1,26 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_cold" +bug-reports: "https://github.com/janestreet/ppx_cold/issues" +dev-repo: "git+https://github.com/janestreet/ppx_cold.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_cold/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Expands [@cold] into [@inline never][@specialise never][@local never]" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_cold-v0.16.0.tar.gz" +checksum: "sha256=803bdb583b501aa246d8ae34be0c16b892d8ae96852bb593f3e355232e6aa4da" +} diff --git a/packages/ppx_compare/ppx_compare.v0.16.0/opam b/packages/ppx_compare/ppx_compare.v0.16.0/opam new file mode 100644 index 00000000000..9223293db2c --- /dev/null +++ b/packages/ppx_compare/ppx_compare.v0.16.0/opam @@ -0,0 +1,26 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_compare" +bug-reports: "https://github.com/janestreet/ppx_compare/issues" +dev-repo: "git+https://github.com/janestreet/ppx_compare.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_compare/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Generation of comparison functions from types" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_compare-v0.16.0.tar.gz" +checksum: "sha256=7ac1dd852e62de6c4b6a879b8bd962c0167db822c39e8c972c8a6af4c48f26aa" +} diff --git a/packages/ppx_conv_func/ppx_conv_func.v0.16.0/opam b/packages/ppx_conv_func/ppx_conv_func.v0.16.0/opam new file mode 100644 index 00000000000..1e40b4aee96 --- /dev/null +++ b/packages/ppx_conv_func/ppx_conv_func.v0.16.0/opam @@ -0,0 +1,26 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_conv_func" +bug-reports: "https://github.com/janestreet/ppx_conv_func/issues" +dev-repo: "git+https://github.com/janestreet/ppx_conv_func.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_conv_func/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Deprecated" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_conv_func-v0.16.0.tar.gz" +checksum: "sha256=acd97b13bb811d3556f7540a5b5a9a6d2f719669e18b3b41b327b5fbd7d4a669" +} diff --git a/packages/ppx_css/ppx_css.v0.16.0/opam b/packages/ppx_css/ppx_css.v0.16.0/opam new file mode 100644 index 00000000000..e280d232bac --- /dev/null +++ b/packages/ppx_css/ppx_css.v0.16.0/opam @@ -0,0 +1,41 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_css" +bug-reports: "https://github.com/janestreet/ppx_css/issues" +dev-repo: "git+https://github.com/janestreet/ppx_css.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_css/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "async_unix" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "ppx_here" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "ppx_let" {>= "v0.16" & < "v0.17"} + "ppx_sexp_conv" {>= "v0.16" & < "v0.17"} + "stdio" {>= "v0.16" & < "v0.17"} + "virtual_dom" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "js_of_ocaml" {>= "5.1.1"} + "js_of_ocaml-ppx" {>= "5.1.1"} + "menhirLib" + "ppxlib" {>= "0.28.0"} + "re" {>= "1.8.0"} + "sedlex" {>= "2.6"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A ppx that takes in css strings and produces a module for accessing the unique names defined within" +description: " +A ppx that takes in css strings and produces a module for accessing the unique names defined within. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_css-v0.16.0.tar.gz" +checksum: "sha256=58a8f237e28c0f223e85552f0f1097c9f7a9682fccee61c593dae32c506926ae" +} diff --git a/packages/ppx_csv_conv/ppx_csv_conv.v0.16.0/opam b/packages/ppx_csv_conv/ppx_csv_conv.v0.16.0/opam new file mode 100644 index 00000000000..3cf0728d4c7 --- /dev/null +++ b/packages/ppx_csv_conv/ppx_csv_conv.v0.16.0/opam @@ -0,0 +1,29 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_csv_conv" +bug-reports: "https://github.com/janestreet/ppx_csv_conv/issues" +dev-repo: "git+https://github.com/janestreet/ppx_csv_conv.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_csv_conv/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "csvfields" {>= "v0.16" & < "v0.17"} + "ppx_conv_func" {>= "v0.16" & < "v0.17"} + "ppx_fields_conv" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Generate functions to read/write records in csv format" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_csv_conv-v0.16.0.tar.gz" +checksum: "sha256=3f4cf5176b803295341308ffd87fc33bbc441ab03862805d7b46c56a6d8e279b" +} diff --git a/packages/ppx_custom_printf/ppx_custom_printf.v0.16.0/opam b/packages/ppx_custom_printf/ppx_custom_printf.v0.16.0/opam new file mode 100644 index 00000000000..f9ff2c00638 --- /dev/null +++ b/packages/ppx_custom_printf/ppx_custom_printf.v0.16.0/opam @@ -0,0 +1,27 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_custom_printf" +bug-reports: "https://github.com/janestreet/ppx_custom_printf/issues" +dev-repo: "git+https://github.com/janestreet/ppx_custom_printf.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_custom_printf/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_sexp_conv" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Printf-style format-strings for user-defined string conversion" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_custom_printf-v0.16.0.tar.gz" +checksum: "sha256=2161639b7b81712abf503098202e108b3cff3d652f0ee517908081308264a1a6" +} diff --git a/packages/ppx_demo/ppx_demo.v0.16.0/opam b/packages/ppx_demo/ppx_demo.v0.16.0/opam new file mode 100644 index 00000000000..ff116c3b002 --- /dev/null +++ b/packages/ppx_demo/ppx_demo.v0.16.0/opam @@ -0,0 +1,28 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_demo" +bug-reports: "https://github.com/janestreet/ppx_demo/issues" +dev-repo: "git+https://github.com/janestreet/ppx_demo.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_demo/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "dedent" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "PPX that exposes the source code string of an expression/module structure." +description: " +PPX that exposes the source code string of an expression/module structure. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_demo-v0.16.0.tar.gz" +checksum: "sha256=6abef5c073772cef7d37fba6bbfd76b1ac32e0ad94976a63f91762bcaf783507" +} diff --git a/packages/ppx_derive_at_runtime/ppx_derive_at_runtime.v0.16.0/opam b/packages/ppx_derive_at_runtime/ppx_derive_at_runtime.v0.16.0/opam new file mode 100644 index 00000000000..6fe676d1d1d --- /dev/null +++ b/packages/ppx_derive_at_runtime/ppx_derive_at_runtime.v0.16.0/opam @@ -0,0 +1,31 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_derive_at_runtime" +bug-reports: "https://github.com/janestreet/ppx_derive_at_runtime/issues" +dev-repo: "git+https://github.com/janestreet/ppx_derive_at_runtime.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_derive_at_runtime/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "expect_test_helpers_core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Define a new ppx deriver by naming a runtime module." +description: " + +Allows specifying new ppx derivers much more easily than writing +a ppx by hand. For example, to get `[@@deriving foo]`, you only have to +specify a module path such as `My_library.Foo`. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_derive_at_runtime-v0.16.0.tar.gz" +checksum: "sha256=bfa640b9f952020de58aea15bb73788c9981aee7903abd78c11fdd5ea2edbbb0" +} diff --git a/packages/ppx_deriving_hardcaml/ppx_deriving_hardcaml.v0.16.0/opam b/packages/ppx_deriving_hardcaml/ppx_deriving_hardcaml.v0.16.0/opam new file mode 100644 index 00000000000..f510f5a7952 --- /dev/null +++ b/packages/ppx_deriving_hardcaml/ppx_deriving_hardcaml.v0.16.0/opam @@ -0,0 +1,32 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_deriving_hardcaml" +bug-reports: "https://github.com/janestreet/ppx_deriving_hardcaml/issues" +dev-repo: "git+https://github.com/janestreet/ppx_deriving_hardcaml.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_deriving_hardcaml/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "hardcaml" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Rewrite OCaml records for use as Hardcaml Interfaces" +description: " +An interface in Hardcaml is an OCaml record with special attributes including +a bit width and RTL netlist name. Input and output ports of a hardware design +can then be accessed through the OCaml record. This allows easier management +of bundles of ports when working with the Simulator, Netlist generation or +hierarchical designs. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_deriving_hardcaml-v0.16.0.tar.gz" +checksum: "sha256=83540d2cdd3eeb7f57ec870ff4ac9070f59781824245133af7f59ba2a0b730d8" +} diff --git a/packages/ppx_disable_unused_warnings/ppx_disable_unused_warnings.v0.16.0/opam b/packages/ppx_disable_unused_warnings/ppx_disable_unused_warnings.v0.16.0/opam new file mode 100644 index 00000000000..1da319e7de5 --- /dev/null +++ b/packages/ppx_disable_unused_warnings/ppx_disable_unused_warnings.v0.16.0/opam @@ -0,0 +1,26 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_disable_unused_warnings" +bug-reports: "https://github.com/janestreet/ppx_disable_unused_warnings/issues" +dev-repo: "git+https://github.com/janestreet/ppx_disable_unused_warnings.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_disable_unused_warnings/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Expands [@disable_unused_warnings] into [@warning \"-20-26-32-33-34-35-36-37-38-39-60-66-67\"]" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_disable_unused_warnings-v0.16.0.tar.gz" +checksum: "sha256=3fd18ff840e4f84eb34683efdd56508ba330011b8f906d0f60684f8fce4298e7" +} diff --git a/packages/ppx_enumerate/ppx_enumerate.v0.16.0/opam b/packages/ppx_enumerate/ppx_enumerate.v0.16.0/opam new file mode 100644 index 00000000000..fedda4d0a70 --- /dev/null +++ b/packages/ppx_enumerate/ppx_enumerate.v0.16.0/opam @@ -0,0 +1,26 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_enumerate" +bug-reports: "https://github.com/janestreet/ppx_enumerate/issues" +dev-repo: "git+https://github.com/janestreet/ppx_enumerate.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_enumerate/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Generate a list containing all values of a finite type" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_enumerate-v0.16.0.tar.gz" +checksum: "sha256=2832635d6d9ac4c63d48ed51d72745cd8a548e226a6110909d5a412d40ef9953" +} diff --git a/packages/ppx_expect/ppx_expect.v0.16.0/opam b/packages/ppx_expect/ppx_expect.v0.16.0/opam new file mode 100644 index 00000000000..a7751d70564 --- /dev/null +++ b/packages/ppx_expect/ppx_expect.v0.16.0/opam @@ -0,0 +1,30 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_expect" +bug-reports: "https://github.com/janestreet/ppx_expect/issues" +dev-repo: "git+https://github.com/janestreet/ppx_expect.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_expect/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_here" {>= "v0.16" & < "v0.17"} + "ppx_inline_test" {>= "v0.16" & < "v0.17"} + "stdio" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} + "re" {>= "1.8.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Cram like framework for OCaml" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_expect-v0.16.0.tar.gz" +checksum: "sha256=e0795a0ae2d576758aaaa685440951b28fe75d072d88f5c6bf415fb1a44e423c" +} diff --git a/packages/ppx_fields_conv/ppx_fields_conv.v0.16.0/opam b/packages/ppx_fields_conv/ppx_fields_conv.v0.16.0/opam new file mode 100644 index 00000000000..a1c0d008992 --- /dev/null +++ b/packages/ppx_fields_conv/ppx_fields_conv.v0.16.0/opam @@ -0,0 +1,27 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_fields_conv" +bug-reports: "https://github.com/janestreet/ppx_fields_conv/issues" +dev-repo: "git+https://github.com/janestreet/ppx_fields_conv.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_fields_conv/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "fieldslib" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Generation of accessor and iteration functions for ocaml records" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_fields_conv-v0.16.0.tar.gz" +checksum: "sha256=b098fab38b5204114623a791e7034ff1316e676ba984ca70cadb4084dfc61898" +} diff --git a/packages/ppx_fixed_literal/ppx_fixed_literal.v0.16.0/opam b/packages/ppx_fixed_literal/ppx_fixed_literal.v0.16.0/opam new file mode 100644 index 00000000000..55e733127f1 --- /dev/null +++ b/packages/ppx_fixed_literal/ppx_fixed_literal.v0.16.0/opam @@ -0,0 +1,27 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_fixed_literal" +bug-reports: "https://github.com/janestreet/ppx_fixed_literal/issues" +dev-repo: "git+https://github.com/janestreet/ppx_fixed_literal.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_fixed_literal/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Simpler notation for fixed point literals" +description: " +A ppx rewriter that rewrites fixed point literal of the +form 1.0v to conversion functions currently in scope. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_fixed_literal-v0.16.0.tar.gz" +checksum: "sha256=a7d1a3d4f8ac3e9db9a6e03a8fb58d07c2b9c4050d154d782c4057789e488339" +} diff --git a/packages/ppx_globalize/ppx_globalize.v0.16.0/opam b/packages/ppx_globalize/ppx_globalize.v0.16.0/opam new file mode 100644 index 00000000000..f4de504d534 --- /dev/null +++ b/packages/ppx_globalize/ppx_globalize.v0.16.0/opam @@ -0,0 +1,26 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_globalize" +bug-reports: "https://github.com/janestreet/ppx_globalize/issues" +dev-repo: "git+https://github.com/janestreet/ppx_globalize.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_globalize/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A ppx rewriter that generates functions to copy local values to the global heap" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_globalize-v0.16.0.tar.gz" +checksum: "sha256=9068d7b4b765112974b17dd354cadf007f044afb11d2f99cd45b2e3b99ab491b" +} diff --git a/packages/ppx_hash/ppx_hash.v0.16.0/opam b/packages/ppx_hash/ppx_hash.v0.16.0/opam new file mode 100644 index 00000000000..f7ae6c5a260 --- /dev/null +++ b/packages/ppx_hash/ppx_hash.v0.16.0/opam @@ -0,0 +1,28 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_hash" +bug-reports: "https://github.com/janestreet/ppx_hash/issues" +dev-repo: "git+https://github.com/janestreet/ppx_hash.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_hash/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_compare" {>= "v0.16" & < "v0.17"} + "ppx_sexp_conv" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A ppx rewriter that generates hash functions from type expressions and definitions" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_hash-v0.16.0.tar.gz" +checksum: "sha256=9b012546b7b9278bfd536f802fb6da88a11ebb5340d8aa47e9bf49acbf13b6e5" +} diff --git a/packages/ppx_here/ppx_here.v0.16.0/opam b/packages/ppx_here/ppx_here.v0.16.0/opam new file mode 100644 index 00000000000..559577dae91 --- /dev/null +++ b/packages/ppx_here/ppx_here.v0.16.0/opam @@ -0,0 +1,26 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_here" +bug-reports: "https://github.com/janestreet/ppx_here/issues" +dev-repo: "git+https://github.com/janestreet/ppx_here.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_here/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Expands [%here] into its location" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_here-v0.16.0.tar.gz" +checksum: "sha256=278198b92500c306fab3411e3dede264d678f203eb3295dd8dd79b70ed9273f0" +} diff --git a/packages/ppx_ignore_instrumentation/ppx_ignore_instrumentation.v0.16.0/opam b/packages/ppx_ignore_instrumentation/ppx_ignore_instrumentation.v0.16.0/opam new file mode 100644 index 00000000000..d4e241391b5 --- /dev/null +++ b/packages/ppx_ignore_instrumentation/ppx_ignore_instrumentation.v0.16.0/opam @@ -0,0 +1,26 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_ignore_instrumentation" +bug-reports: "https://github.com/janestreet/ppx_ignore_instrumentation/issues" +dev-repo: "git+https://github.com/janestreet/ppx_ignore_instrumentation.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_ignore_instrumentation/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Ignore Jane Street specific instrumentation extensions" +description: " +Ignore Jane Street specific instrumentation extensions from internal PPXs or compiler + features not yet upstreamed. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_ignore_instrumentation-v0.16.0.tar.gz" +checksum: "sha256=522f50ef213300812658b5ea260299c072c24130502bde7e4f74eeda4c709305" +} diff --git a/packages/ppx_inline_test/ppx_inline_test.v0.16.0/opam b/packages/ppx_inline_test/ppx_inline_test.v0.16.0/opam new file mode 100644 index 00000000000..de5042490cf --- /dev/null +++ b/packages/ppx_inline_test/ppx_inline_test.v0.16.0/opam @@ -0,0 +1,27 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_inline_test" +bug-reports: "https://github.com/janestreet/ppx_inline_test/issues" +dev-repo: "git+https://github.com/janestreet/ppx_inline_test.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_inline_test/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "time_now" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Syntax extension for writing in-line tests in ocaml code" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_inline_test-v0.16.0.tar.gz" +checksum: "sha256=216462f8fe988587d1e90f4a10aeb38664facb6eaeb3df60a32e9fb1a6bfbc67" +} diff --git a/packages/ppx_jane/ppx_jane.v0.16.0/opam b/packages/ppx_jane/ppx_jane.v0.16.0/opam new file mode 100644 index 00000000000..bf812e77fbe --- /dev/null +++ b/packages/ppx_jane/ppx_jane.v0.16.0/opam @@ -0,0 +1,52 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_jane" +bug-reports: "https://github.com/janestreet/ppx_jane/issues" +dev-repo: "git+https://github.com/janestreet/ppx_jane.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_jane/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base_quickcheck" {>= "v0.16" & < "v0.17"} + "ppx_assert" {>= "v0.16" & < "v0.17"} + "ppx_base" {>= "v0.16" & < "v0.17"} + "ppx_bench" {>= "v0.16" & < "v0.17"} + "ppx_bin_prot" {>= "v0.16" & < "v0.17"} + "ppx_custom_printf" {>= "v0.16" & < "v0.17"} + "ppx_disable_unused_warnings" {>= "v0.16" & < "v0.17"} + "ppx_expect" {>= "v0.16" & < "v0.17"} + "ppx_fields_conv" {>= "v0.16" & < "v0.17"} + "ppx_fixed_literal" {>= "v0.16" & < "v0.17"} + "ppx_here" {>= "v0.16" & < "v0.17"} + "ppx_ignore_instrumentation" {>= "v0.16" & < "v0.17"} + "ppx_inline_test" {>= "v0.16" & < "v0.17"} + "ppx_let" {>= "v0.16" & < "v0.17"} + "ppx_log" {>= "v0.16" & < "v0.17"} + "ppx_module_timer" {>= "v0.16" & < "v0.17"} + "ppx_optional" {>= "v0.16" & < "v0.17"} + "ppx_pipebang" {>= "v0.16" & < "v0.17"} + "ppx_sexp_message" {>= "v0.16" & < "v0.17"} + "ppx_sexp_value" {>= "v0.16" & < "v0.17"} + "ppx_stable" {>= "v0.16" & < "v0.17"} + "ppx_stable_witness" {>= "v0.16" & < "v0.17"} + "ppx_string" {>= "v0.16" & < "v0.17"} + "ppx_tydi" {>= "v0.16" & < "v0.17"} + "ppx_typerep_conv" {>= "v0.16" & < "v0.17"} + "ppx_variants_conv" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Standard Jane Street ppx rewriters" +description: " +This package installs a ppx-jane executable, which is a ppx driver +including all standard Jane Street ppx rewriters. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_jane-v0.16.0.tar.gz" +checksum: "sha256=9d53b01dd2e38bbe82b6927f43fa27e347418045409fd2cd3e2a203a9951c133" +} diff --git a/packages/ppx_js_style/ppx_js_style.v0.16.0/opam b/packages/ppx_js_style/ppx_js_style.v0.16.0/opam new file mode 100644 index 00000000000..7f397fcb8d6 --- /dev/null +++ b/packages/ppx_js_style/ppx_js_style.v0.16.0/opam @@ -0,0 +1,30 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_js_style" +bug-reports: "https://github.com/janestreet/ppx_js_style/issues" +dev-repo: "git+https://github.com/janestreet/ppx_js_style.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_js_style/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "octavius" + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Code style checker for Jane Street Packages" +description: " +Part of the Jane Street's PPX rewriters collection. + +This packages is a no-op ppx rewriter. It is used as a 'lint' tool to +enforce some coding conventions across all Jane Street packages. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_js_style-v0.16.0.tar.gz" +checksum: "sha256=a63789aaf1b2301d60d29a67f8bae9ba127d98a4f004ab9567b8f16b3c885de0" +} diff --git a/packages/ppx_jsonaf_conv/ppx_jsonaf_conv.v0.16.0/opam b/packages/ppx_jsonaf_conv/ppx_jsonaf_conv.v0.16.0/opam new file mode 100644 index 00000000000..ddd05edbefe --- /dev/null +++ b/packages/ppx_jsonaf_conv/ppx_jsonaf_conv.v0.16.0/opam @@ -0,0 +1,28 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_jsonaf_conv" +bug-reports: "https://github.com/janestreet/ppx_jsonaf_conv/issues" +dev-repo: "git+https://github.com/janestreet/ppx_jsonaf_conv.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_jsonaf_conv/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "jsonaf" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "[@@deriving] plugin to generate Jsonaf conversion functions" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_jsonaf_conv-v0.16.0.tar.gz" +checksum: "sha256=b9e7e6fb74e673d79429c980d03aef6cf581ce792708007ed8929842776efc5b" +} diff --git a/packages/ppx_let/ppx_let.v0.16.0/opam b/packages/ppx_let/ppx_let.v0.16.0/opam new file mode 100644 index 00000000000..5cc31d59802 --- /dev/null +++ b/packages/ppx_let/ppx_let.v0.16.0/opam @@ -0,0 +1,27 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_let" +bug-reports: "https://github.com/janestreet/ppx_let/issues" +dev-repo: "git+https://github.com/janestreet/ppx_let.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_let/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_here" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Monadic let-bindings" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_let-v0.16.0.tar.gz" +checksum: "sha256=2f4afb3100f4f0ae87be781b0ca6710f0a360ee8edd7eeaeb7574eca4d8be65c" +} diff --git a/packages/ppx_log/ppx_log.v0.16.0/opam b/packages/ppx_log/ppx_log.v0.16.0/opam new file mode 100644 index 00000000000..76880686731 --- /dev/null +++ b/packages/ppx_log/ppx_log.v0.16.0/opam @@ -0,0 +1,30 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_log" +bug-reports: "https://github.com/janestreet/ppx_log/issues" +dev-repo: "git+https://github.com/janestreet/ppx_log.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_log/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_here" {>= "v0.16" & < "v0.17"} + "ppx_sexp_conv" {>= "v0.16" & < "v0.17"} + "ppx_sexp_message" {>= "v0.16" & < "v0.17"} + "sexplib" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Ppx_sexp_message-like extension nodes for lazily rendering log messages" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_log-v0.16.0.tar.gz" +checksum: "sha256=94d92ab27d5f1e4e50d269d23e33e6819a4a1a613fe0312f59201e3c1d74faf8" +} diff --git a/packages/ppx_module_timer/ppx_module_timer.v0.16.0/opam b/packages/ppx_module_timer/ppx_module_timer.v0.16.0/opam new file mode 100644 index 00000000000..9d395760634 --- /dev/null +++ b/packages/ppx_module_timer/ppx_module_timer.v0.16.0/opam @@ -0,0 +1,29 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_module_timer" +bug-reports: "https://github.com/janestreet/ppx_module_timer/issues" +dev-repo: "git+https://github.com/janestreet/ppx_module_timer.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_module_timer/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_base" {>= "v0.16" & < "v0.17"} + "stdio" {>= "v0.16" & < "v0.17"} + "time_now" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Ppx rewriter that records top-level module startup times" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_module_timer-v0.16.0.tar.gz" +checksum: "sha256=2aee6ebec3dc3378a88a245a2c4f7c6314e96c377a02f390622c125bcef41f74" +} diff --git a/packages/ppx_optcomp/ppx_optcomp.v0.16.0/opam b/packages/ppx_optcomp/ppx_optcomp.v0.16.0/opam new file mode 100644 index 00000000000..a180a69a879 --- /dev/null +++ b/packages/ppx_optcomp/ppx_optcomp.v0.16.0/opam @@ -0,0 +1,27 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_optcomp" +bug-reports: "https://github.com/janestreet/ppx_optcomp/issues" +dev-repo: "git+https://github.com/janestreet/ppx_optcomp.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_optcomp/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "stdio" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Optional compilation for OCaml" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_optcomp-v0.16.0.tar.gz" +checksum: "sha256=99b209084a5375dafce4c6b128979661ab2ab6bf898a6872d596e65ded590ba2" +} diff --git a/packages/ppx_optional/ppx_optional.v0.16.0/opam b/packages/ppx_optional/ppx_optional.v0.16.0/opam new file mode 100644 index 00000000000..0c34a5b8df1 --- /dev/null +++ b/packages/ppx_optional/ppx_optional.v0.16.0/opam @@ -0,0 +1,27 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_optional" +bug-reports: "https://github.com/janestreet/ppx_optional/issues" +dev-repo: "git+https://github.com/janestreet/ppx_optional.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_optional/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Pattern matching on flat options" +description: " +A ppx rewriter that rewrites simple match statements with an if then +else expression. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_optional-v0.16.0.tar.gz" +checksum: "sha256=70f94f6794dc4ba39db69253988af429e45f608dc12d71b792a8551219bcbfab" +} diff --git a/packages/ppx_pattern_bind/ppx_pattern_bind.v0.16.0/opam b/packages/ppx_pattern_bind/ppx_pattern_bind.v0.16.0/opam new file mode 100644 index 00000000000..469b4b5707a --- /dev/null +++ b/packages/ppx_pattern_bind/ppx_pattern_bind.v0.16.0/opam @@ -0,0 +1,29 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_pattern_bind" +bug-reports: "https://github.com/janestreet/ppx_pattern_bind/issues" +dev-repo: "git+https://github.com/janestreet/ppx_pattern_bind.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_pattern_bind/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_let" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A ppx for writing fast incremental bind nodes in a pattern match" +description: " +A ppx rewriter that is intended for use with Incremental. It makes it +easier to write incremental computations using pattern-matching in a +way that causes incremental nodes to fire as little as possible. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_pattern_bind-v0.16.0.tar.gz" +checksum: "sha256=8c67fe24726af67268534a39d841ae4d099ec761b5459e6b28cd89a052d5c1f6" +} diff --git a/packages/ppx_pipebang/ppx_pipebang.v0.16.0/opam b/packages/ppx_pipebang/ppx_pipebang.v0.16.0/opam new file mode 100644 index 00000000000..c09ed6c4bb0 --- /dev/null +++ b/packages/ppx_pipebang/ppx_pipebang.v0.16.0/opam @@ -0,0 +1,25 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_pipebang" +bug-reports: "https://github.com/janestreet/ppx_pipebang/issues" +dev-repo: "git+https://github.com/janestreet/ppx_pipebang.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_pipebang/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A ppx rewriter that inlines reverse application operators `|>` and `|!`" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_pipebang-v0.16.0.tar.gz" +checksum: "sha256=b9e447e49cdbc55fb0f66401ed0d7b6522fbec6518a43f7a4905af67e41efa66" +} diff --git a/packages/ppx_python/ppx_python.v0.16.0/opam b/packages/ppx_python/ppx_python.v0.16.0/opam new file mode 100644 index 00000000000..4d397fbf6e0 --- /dev/null +++ b/packages/ppx_python/ppx_python.v0.16.0/opam @@ -0,0 +1,28 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_python" +bug-reports: "https://github.com/janestreet/ppx_python/issues" +dev-repo: "git+https://github.com/janestreet/ppx_python.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_python/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_base" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} + "pyml" {>= "20211015"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "[@@deriving] plugin to generate Python conversion functions" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_python-v0.16.0.tar.gz" +checksum: "sha256=56d8e79cafb18f58f715586b6eba086d301fa85c2824946bd840f54637e7bb1b" +} diff --git a/packages/ppx_sexp_conv/ppx_sexp_conv.v0.16.0/opam b/packages/ppx_sexp_conv/ppx_sexp_conv.v0.16.0/opam new file mode 100644 index 00000000000..6f6fb54399a --- /dev/null +++ b/packages/ppx_sexp_conv/ppx_sexp_conv.v0.16.0/opam @@ -0,0 +1,27 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_sexp_conv" +bug-reports: "https://github.com/janestreet/ppx_sexp_conv/issues" +dev-repo: "git+https://github.com/janestreet/ppx_sexp_conv.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_sexp_conv/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "sexplib0" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "[@@deriving] plugin to generate S-expression conversion functions" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_sexp_conv-v0.16.0.tar.gz" +checksum: "sha256=41bcb7a3b33bdf50428408bfaf1dbcede528a488ac8c436ce710681bcd91200d" +} diff --git a/packages/ppx_sexp_message/ppx_sexp_message.v0.16.0/opam b/packages/ppx_sexp_message/ppx_sexp_message.v0.16.0/opam new file mode 100644 index 00000000000..b4c8558bda8 --- /dev/null +++ b/packages/ppx_sexp_message/ppx_sexp_message.v0.16.0/opam @@ -0,0 +1,28 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_sexp_message" +bug-reports: "https://github.com/janestreet/ppx_sexp_message/issues" +dev-repo: "git+https://github.com/janestreet/ppx_sexp_message.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_sexp_message/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_here" {>= "v0.16" & < "v0.17"} + "ppx_sexp_conv" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A ppx rewriter for easy construction of s-expressions" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_sexp_message-v0.16.0.tar.gz" +checksum: "sha256=1829931dc8670232b4687b74187777061b0df5a667478e6b9dad324e30a47d38" +} diff --git a/packages/ppx_sexp_value/ppx_sexp_value.v0.16.0/opam b/packages/ppx_sexp_value/ppx_sexp_value.v0.16.0/opam new file mode 100644 index 00000000000..7dd5bb5c242 --- /dev/null +++ b/packages/ppx_sexp_value/ppx_sexp_value.v0.16.0/opam @@ -0,0 +1,28 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_sexp_value" +bug-reports: "https://github.com/janestreet/ppx_sexp_value/issues" +dev-repo: "git+https://github.com/janestreet/ppx_sexp_value.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_sexp_value/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_here" {>= "v0.16" & < "v0.17"} + "ppx_sexp_conv" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A ppx rewriter that simplifies building s-expressions from ocaml values" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_sexp_value-v0.16.0.tar.gz" +checksum: "sha256=74d4015a4cf2582bb7d3bcaefa91d0a89c6f3cfb423d2983ec205c007631d369" +} diff --git a/packages/ppx_stable/ppx_stable.v0.16.0/opam b/packages/ppx_stable/ppx_stable.v0.16.0/opam new file mode 100644 index 00000000000..ef42b685e18 --- /dev/null +++ b/packages/ppx_stable/ppx_stable.v0.16.0/opam @@ -0,0 +1,27 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_stable" +bug-reports: "https://github.com/janestreet/ppx_stable/issues" +dev-repo: "git+https://github.com/janestreet/ppx_stable.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_stable/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Stable types conversions generator" +description: " +A ppx extension for easier implementation of conversion functions between almost +identical types. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_stable-v0.16.0.tar.gz" +checksum: "sha256=91b8e7540662c94922d8f7cb7afa7ea73e8890341e65290785c2aca0c2173094" +} diff --git a/packages/ppx_stable_witness/ppx_stable_witness.v0.16.0/opam b/packages/ppx_stable_witness/ppx_stable_witness.v0.16.0/opam new file mode 100644 index 00000000000..f192b4db5c0 --- /dev/null +++ b/packages/ppx_stable_witness/ppx_stable_witness.v0.16.0/opam @@ -0,0 +1,26 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_stable_witness" +bug-reports: "https://github.com/janestreet/ppx_stable_witness/issues" +dev-repo: "git+https://github.com/janestreet/ppx_stable_witness.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_stable_witness/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Ppx extension for deriving a witness that a type is intended to be stable. In this\n context, stable means that the serialization format will never change. This allows\n programs running at different versions of the code to safely communicate." +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_stable_witness-v0.16.0.tar.gz" +checksum: "sha256=4f9857612d9d65c3844bd8940b946a19472e2d5b9df29e91c829d6d0aa78c5ef" +} diff --git a/packages/ppx_string/ppx_string.v0.16.0/opam b/packages/ppx_string/ppx_string.v0.16.0/opam new file mode 100644 index 00000000000..fb320dda8ab --- /dev/null +++ b/packages/ppx_string/ppx_string.v0.16.0/opam @@ -0,0 +1,27 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_string" +bug-reports: "https://github.com/janestreet/ppx_string/issues" +dev-repo: "git+https://github.com/janestreet/ppx_string.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_string/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_base" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Ppx extension for string interpolation" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_string-v0.16.0.tar.gz" +checksum: "sha256=1f5b999446a8eeb666feb493eb6e593a66819afe610d7f95ef424b151d148336" +} diff --git a/packages/ppx_tydi/ppx_tydi.v0.16.0/opam b/packages/ppx_tydi/ppx_tydi.v0.16.0/opam new file mode 100644 index 00000000000..30a610d6ae1 --- /dev/null +++ b/packages/ppx_tydi/ppx_tydi.v0.16.0/opam @@ -0,0 +1,26 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_tydi" +bug-reports: "https://github.com/janestreet/ppx_tydi/issues" +dev-repo: "git+https://github.com/janestreet/ppx_tydi.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_tydi/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Let expressions, inferring pattern type from expression." +description: " +Provides a ppx for [let%tydi]: type-directed [let] bindings. In [let%tydi a = b in ...], [a]'s type is inferred from [b] rather than the other way around. This is convenient for record patterns whose fields are not in scope. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_tydi-v0.16.0.tar.gz" +checksum: "sha256=a363153a1f58b35b789321dca9b5b03da46bc1c9152a38d307ffb338b3e25ac6" +} diff --git a/packages/ppx_typed_fields/ppx_typed_fields.v0.16.0/opam b/packages/ppx_typed_fields/ppx_typed_fields.v0.16.0/opam new file mode 100644 index 00000000000..7ba5daab383 --- /dev/null +++ b/packages/ppx_typed_fields/ppx_typed_fields.v0.16.0/opam @@ -0,0 +1,34 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_typed_fields" +bug-reports: "https://github.com/janestreet/ppx_typed_fields/issues" +dev-repo: "git+https://github.com/janestreet/ppx_typed_fields.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_typed_fields/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_compare" {>= "v0.16" & < "v0.17"} + "ppx_enumerate" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "ppx_sexp_conv" {>= "v0.16" & < "v0.17"} + "ppx_string" {>= "v0.16" & < "v0.17"} + "sexplib" {>= "v0.16" & < "v0.17"} + "sexplib0" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "GADT-based field accessors and utilities" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_typed_fields-v0.16.0.tar.gz" +checksum: "sha256=53339ca08f310446ef58639da72e7a6493f43a48943f0373041b34287824dcb4" +} diff --git a/packages/ppx_typerep_conv/ppx_typerep_conv.v0.16.0/opam b/packages/ppx_typerep_conv/ppx_typerep_conv.v0.16.0/opam new file mode 100644 index 00000000000..d2e1273917d --- /dev/null +++ b/packages/ppx_typerep_conv/ppx_typerep_conv.v0.16.0/opam @@ -0,0 +1,27 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_typerep_conv" +bug-reports: "https://github.com/janestreet/ppx_typerep_conv/issues" +dev-repo: "git+https://github.com/janestreet/ppx_typerep_conv.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_typerep_conv/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "typerep" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Generation of runtime types from type declarations" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_typerep_conv-v0.16.0.tar.gz" +checksum: "sha256=ffd565ee7b30dbb9c57e38c0cda8b33b4153edb3adae05796e0f97a7780f0d9a" +} diff --git a/packages/ppx_variants_conv/ppx_variants_conv.v0.16.0/opam b/packages/ppx_variants_conv/ppx_variants_conv.v0.16.0/opam new file mode 100644 index 00000000000..ac3ffba074d --- /dev/null +++ b/packages/ppx_variants_conv/ppx_variants_conv.v0.16.0/opam @@ -0,0 +1,27 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_variants_conv" +bug-reports: "https://github.com/janestreet/ppx_variants_conv/issues" +dev-repo: "git+https://github.com/janestreet/ppx_variants_conv.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_variants_conv/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "variantslib" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Generation of accessor and iteration functions for ocaml variant types" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_variants_conv-v0.16.0.tar.gz" +checksum: "sha256=20ab1035bf7661ebad1ad0745bce434616488f56a1ed3a121a8a372ec96885e4" +} diff --git a/packages/ppx_xml_conv/ppx_xml_conv.v0.16.0/opam b/packages/ppx_xml_conv/ppx_xml_conv.v0.16.0/opam new file mode 100644 index 00000000000..57b2c488016 --- /dev/null +++ b/packages/ppx_xml_conv/ppx_xml_conv.v0.16.0/opam @@ -0,0 +1,29 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_xml_conv" +bug-reports: "https://github.com/janestreet/ppx_xml_conv/issues" +dev-repo: "git+https://github.com/janestreet/ppx_xml_conv.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_xml_conv/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "csvfields" {>= "v0.16" & < "v0.17"} + "ppx_conv_func" {>= "v0.16" & < "v0.17"} + "ppx_fields_conv" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Generate XML conversion functions from records" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_xml_conv-v0.16.0.tar.gz" +checksum: "sha256=6ce333d4210faa820dbad4a65d728a13f6955332f4ffe2443f73ff660350026c" +} diff --git a/packages/ppx_yojson_conv/ppx_yojson_conv.v0.16.0/opam b/packages/ppx_yojson_conv/ppx_yojson_conv.v0.16.0/opam new file mode 100644 index 00000000000..860554e9c12 --- /dev/null +++ b/packages/ppx_yojson_conv/ppx_yojson_conv.v0.16.0/opam @@ -0,0 +1,28 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_yojson_conv" +bug-reports: "https://github.com/janestreet/ppx_yojson_conv/issues" +dev-repo: "git+https://github.com/janestreet/ppx_yojson_conv.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_yojson_conv/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_js_style" {>= "v0.16" & < "v0.17"} + "ppx_yojson_conv_lib" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "[@@deriving] plugin to generate Yojson conversion functions" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_yojson_conv-v0.16.0.tar.gz" +checksum: "sha256=4217eb9da7324c2cd086e985839fb5e6a1c2888d6a07f0b9016721a84f495ca8" +} diff --git a/packages/ppx_yojson_conv_lib/ppx_yojson_conv_lib.v0.16.0/opam b/packages/ppx_yojson_conv_lib/ppx_yojson_conv_lib.v0.16.0/opam new file mode 100644 index 00000000000..093945115f8 --- /dev/null +++ b/packages/ppx_yojson_conv_lib/ppx_yojson_conv_lib.v0.16.0/opam @@ -0,0 +1,25 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/ppx_yojson_conv_lib" +bug-reports: "https://github.com/janestreet/ppx_yojson_conv_lib/issues" +dev-repo: "git+https://github.com/janestreet/ppx_yojson_conv_lib.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_yojson_conv_lib/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "dune" {>= "2.0.0"} + "yojson" {>= "1.7.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Runtime lib for ppx_yojson_conv" +description: " +Part of the Jane Street's PPX rewriters collection. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_yojson_conv_lib-v0.16.0.tar.gz" +checksum: "sha256=557c43c88d365b4cbb514d809f1eecc54d7b9976b0669bc55b02169e6c86ec7d" +} diff --git a/packages/profunctor/profunctor.v0.16.0/opam b/packages/profunctor/profunctor.v0.16.0/opam new file mode 100644 index 00000000000..b3175874cf0 --- /dev/null +++ b/packages/profunctor/profunctor.v0.16.0/opam @@ -0,0 +1,29 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/profunctor" +bug-reports: "https://github.com/janestreet/profunctor/issues" +dev-repo: "git+https://github.com/janestreet/profunctor.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/profunctor/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "record_builder" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A library providing a signature for simple profunctors and traversal of a record" +description: " +This is a very small library which provides a signature for profunctor types +and operations which can be used to traverse a record with them based on +record_builder and the =ppx_fields= syntax extension. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/profunctor-v0.16.0.tar.gz" +checksum: "sha256=91f7a1bd948477ec5d336e534b1ed3cb1ac484cecac78c2f44d6da22985e2a83" +} diff --git a/packages/protocol_version_header/protocol_version_header.v0.16.0/opam b/packages/protocol_version_header/protocol_version_header.v0.16.0/opam new file mode 100644 index 00000000000..b9cad412feb --- /dev/null +++ b/packages/protocol_version_header/protocol_version_header.v0.16.0/opam @@ -0,0 +1,29 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/protocol_version_header" +bug-reports: "https://github.com/janestreet/protocol_version_header/issues" +dev-repo: "git+https://github.com/janestreet/protocol_version_header.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/protocol_version_header/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Protocol versioning" +description: " +This library offers a lightweight way for applications protocols to +version themselves. The more protocols that add themselves to +[Known_protocol], the nicer error messages we will get when connecting +to a service while using the wrong protocol. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/protocol_version_header-v0.16.0.tar.gz" +checksum: "sha256=9c3c81bd6e378b7a33ede28b6b1691512ee8a299a65387da03b9eb2adabcb25f" +} diff --git a/packages/pythonlib/pythonlib.v0.16.0/opam b/packages/pythonlib/pythonlib.v0.16.0/opam new file mode 100644 index 00000000000..1b56b2b4c79 --- /dev/null +++ b/packages/pythonlib/pythonlib.v0.16.0/opam @@ -0,0 +1,36 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/pythonlib" +bug-reports: "https://github.com/janestreet/pythonlib/issues" +dev-repo: "git+https://github.com/janestreet/pythonlib.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/pythonlib/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.11.0" & < "4.13.0"} + "base" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "expect_test_helpers_core" {>= "v0.16" & < "v0.17"} + "ppx_compare" {>= "v0.16" & < "v0.17"} + "ppx_expect" {>= "v0.16" & < "v0.17"} + "ppx_here" {>= "v0.16" & < "v0.17"} + "ppx_let" {>= "v0.16" & < "v0.17"} + "ppx_python" {>= "v0.16" & < "v0.17"} + "ppx_string" {>= "v0.16" & < "v0.17"} + "stdio" {>= "v0.16" & < "v0.17"} + "typerep" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "pyml" {>= "20211015"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A library to help writing wrappers around ocaml code for python" +description: " +This library helps exposing ocaml functions to python. The python runtime interaction is handled by pyml. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/pythonlib-v0.16.0.tar.gz" +checksum: "sha256=f1f8e2329e64a3d6d0e34a6c73263195a53487c0517a462bb9ba92d9ca033c67" +} diff --git a/packages/re2/re2.v0.16.0/opam b/packages/re2/re2.v0.16.0/opam new file mode 100644 index 00000000000..23f918e8b16 --- /dev/null +++ b/packages/re2/re2.v0.16.0/opam @@ -0,0 +1,28 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/re2" +bug-reports: "https://github.com/janestreet/re2/issues" +dev-repo: "git+https://github.com/janestreet/re2.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/re2/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "jane_rope" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "regex_parser_intf" {>= "v0.16" & < "v0.17"} + "conf-g++" {build} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "OCaml bindings for RE2, Google's regular expression library" +description: " +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/re2-v0.16.0.tar.gz" +checksum: "sha256=391f3bf8019beeca300d8e496d7998792e596f9dd75b535d334eb78c08859104" +} diff --git a/packages/re_parser/re_parser.v0.16.0/opam b/packages/re_parser/re_parser.v0.16.0/opam new file mode 100644 index 00000000000..5201fc30336 --- /dev/null +++ b/packages/re_parser/re_parser.v0.16.0/opam @@ -0,0 +1,29 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/re_parser" +bug-reports: "https://github.com/janestreet/re_parser/issues" +dev-repo: "git+https://github.com/janestreet/re_parser.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/re_parser/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "regex_parser_intf" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "re" {>= "1.8.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Typed parsing using regular expressions." +description: " + +Applicative-based interface for parsing using regular expressions from `ocaml-re`. +Shares its interface with `Re2.Parser`. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/re_parser-v0.16.0.tar.gz" +checksum: "sha256=65e635a7996f47084d9283b85a2177dc270862e4dfa86249a904197253c2dec5" +} diff --git a/packages/record_builder/record_builder.v0.16.0/opam b/packages/record_builder/record_builder.v0.16.0/opam new file mode 100644 index 00000000000..e276eb851bb --- /dev/null +++ b/packages/record_builder/record_builder.v0.16.0/opam @@ -0,0 +1,30 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/record_builder" +bug-reports: "https://github.com/janestreet/record_builder/issues" +dev-repo: "git+https://github.com/janestreet/record_builder.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/record_builder/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A library which provides traversal of records with an applicative" +description: " +This is a very small library which utilises the functionality provided by the +=ppx_fields= syntax extension, more specifically it acts as a wrapper to the +derived =Fields.make_creator= function for a given record type. The wrapper +automatically handles all of the mapping and combining of applicative terms +needed to build the record from a single applicative term for each field. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/record_builder-v0.16.0.tar.gz" +checksum: "sha256=7370ce4ffd7d21de7e3c3f3a7359e5fa5b6d120c8c6dc0ee7d0e48e620ea6e39" +} diff --git a/packages/redis-async/redis-async.v0.16.0/opam b/packages/redis-async/redis-async.v0.16.0/opam new file mode 100644 index 00000000000..cb96c00d475 --- /dev/null +++ b/packages/redis-async/redis-async.v0.16.0/opam @@ -0,0 +1,34 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/redis-async" +bug-reports: "https://github.com/janestreet/redis-async/issues" +dev-repo: "git+https://github.com/janestreet/redis-async.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/redis-async/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "bignum" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Redis client for Async applications" +description: " +A client library for Redis versions 6 and higher. + +Provides a strongly-typed API with transparent (de)serialization for application-defined +types. + +Supports client tracking and internally uses the RESP3 protocol. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/redis-async-v0.16.0.tar.gz" +checksum: "sha256=250076dd5eb5aadeab3964e43066c0576ca0ab7b3cb00b43ddcecc2591c4f430" +} diff --git a/packages/regex_parser_intf/regex_parser_intf.v0.16.0/opam b/packages/regex_parser_intf/regex_parser_intf.v0.16.0/opam new file mode 100644 index 00000000000..212dd18a35c --- /dev/null +++ b/packages/regex_parser_intf/regex_parser_intf.v0.16.0/opam @@ -0,0 +1,24 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/regex_parser_intf" +bug-reports: "https://github.com/janestreet/regex_parser_intf/issues" +dev-repo: "git+https://github.com/janestreet/regex_parser_intf.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/regex_parser_intf/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Interface shared by Re_parser and Re2.Parser" +description: " +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/regex_parser_intf-v0.16.0.tar.gz" +checksum: "sha256=f06744e7aeaef57edb3778db3efc0f097898c9e4a4ae02ac904c936375069aeb" +} diff --git a/packages/resource_cache/resource_cache.v0.16.0/opam b/packages/resource_cache/resource_cache.v0.16.0/opam new file mode 100644 index 00000000000..eb7c25381df --- /dev/null +++ b/packages/resource_cache/resource_cache.v0.16.0/opam @@ -0,0 +1,30 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/resource_cache" +bug-reports: "https://github.com/janestreet/resource_cache/issues" +dev-repo: "git+https://github.com/janestreet/resource_cache.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/resource_cache/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async_kernel" {>= "v0.16" & < "v0.17"} + "async_rpc_kernel" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "General resource cache" +description: " +This library offers a functor to create a resource cache over some +abstract [Resource] type. The cache enables resource reuse while +obeying various limits. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/resource_cache-v0.16.0.tar.gz" +checksum: "sha256=716f58355b7e1af5dc0ec7172ea8a612538dab968c9fb49daaad34826b6f5bbf" +} diff --git a/packages/rpc_parallel/rpc_parallel.v0.16.0/opam b/packages/rpc_parallel/rpc_parallel.v0.16.0/opam new file mode 100644 index 00000000000..6e5eda68597 --- /dev/null +++ b/packages/rpc_parallel/rpc_parallel.v0.16.0/opam @@ -0,0 +1,34 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/rpc_parallel" +bug-reports: "https://github.com/janestreet/rpc_parallel/issues" +dev-repo: "git+https://github.com/janestreet/rpc_parallel.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/rpc_parallel/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "krb" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "sexplib" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Type-safe parallel library built on top of Async_rpc" +description: " +Rpc_parallel offers an API to define various workers and protocols, +spawn workers as separate processes, and communicate with them using +Async Rpc. + +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/rpc_parallel-v0.16.0.tar.gz" +checksum: "sha256=1e6e85e9f7cf3c1c221ceaa8c0d7a2370d402ae2ee12d68aefb6ebe47ef33016" +} diff --git a/packages/semantic_version/semantic_version.v0.16.0/opam b/packages/semantic_version/semantic_version.v0.16.0/opam new file mode 100644 index 00000000000..36f120e318f --- /dev/null +++ b/packages/semantic_version/semantic_version.v0.16.0/opam @@ -0,0 +1,27 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/semantic_version" +bug-reports: "https://github.com/janestreet/semantic_version/issues" +dev-repo: "git+https://github.com/janestreet/semantic_version.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/semantic_version/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "re" {>= "1.8.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Semantic versioning" +description: " +A library for representing semantic versions (https://semver.org) +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/semantic_version-v0.16.0.tar.gz" +checksum: "sha256=c073fc501eb9cba07bccb224386c3291ba64a82ac4bc20f6d90523786aec4bcd" +} diff --git a/packages/sequencer_table/sequencer_table.v0.16.0/opam b/packages/sequencer_table/sequencer_table.v0.16.0/opam new file mode 100644 index 00000000000..4c93e8a8068 --- /dev/null +++ b/packages/sequencer_table/sequencer_table.v0.16.0/opam @@ -0,0 +1,27 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/sequencer_table" +bug-reports: "https://github.com/janestreet/sequencer_table/issues" +dev-repo: "git+https://github.com/janestreet/sequencer_table.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/sequencer_table/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async_kernel" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A table of [Async.Sequencer]'s, indexed by key" +description: " +A single-module library for a data structure. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/sequencer_table-v0.16.0.tar.gz" +checksum: "sha256=faf40fbeaa0014713354be64123229bb01ff32849d37d9902d7ed081c166e069" +} diff --git a/packages/sexp/sexp.v0.16.0/opam b/packages/sexp/sexp.v0.16.0/opam new file mode 100644 index 00000000000..0142c7a6601 --- /dev/null +++ b/packages/sexp/sexp.v0.16.0/opam @@ -0,0 +1,40 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/sexp" +bug-reports: "https://github.com/janestreet/sexp/issues" +dev-repo: "git+https://github.com/janestreet/sexp.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/sexp/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "csvfields" {>= "v0.16" & < "v0.17"} + "jsonaf" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "re2" {>= "v0.16" & < "v0.17"} + "sexp_diff" {>= "v0.16" & < "v0.17"} + "sexp_macro" {>= "v0.16" & < "v0.17"} + "sexp_pretty" {>= "v0.16" & < "v0.17"} + "sexp_select" {>= "v0.16" & < "v0.17"} + "sexplib" {>= "v0.16" & < "v0.17"} + "shell" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "S-expression swiss knife" +description: " +A suite of tools for working with s-expressions from the command line. +It contains subcommands for pretty printing, querying, and modifying +sexps, as well as some conversions to and from other formats. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/sexp-v0.16.0.tar.gz" +checksum: "sha256=bde6acfd2814bcc38a0d3cacb42e513d8932595152dd9798419559fb0e026f4e" +} diff --git a/packages/sexp_diff/sexp_diff.v0.16.0/opam b/packages/sexp_diff/sexp_diff.v0.16.0/opam new file mode 100644 index 00000000000..05178fe32f8 --- /dev/null +++ b/packages/sexp_diff/sexp_diff.v0.16.0/opam @@ -0,0 +1,27 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/sexp_diff" +bug-reports: "https://github.com/janestreet/sexp_diff/issues" +dev-repo: "git+https://github.com/janestreet/sexp_diff.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/sexp_diff/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Code for computing the diff of two sexps" +description: " +The code behind the [diff] subcommand of the Jane Street's [sexp] +command line tool. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/sexp_diff-v0.16.0.tar.gz" +checksum: "sha256=a42fd7d3fe43a0f7d159c2c834d3a59d4b5e94ac5d8c411c646424ea70eeed18" +} diff --git a/packages/sexp_grammar/sexp_grammar.v0.16.0/opam b/packages/sexp_grammar/sexp_grammar.v0.16.0/opam new file mode 100644 index 00000000000..adf4c9744d0 --- /dev/null +++ b/packages/sexp_grammar/sexp_grammar.v0.16.0/opam @@ -0,0 +1,32 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/sexp_grammar" +bug-reports: "https://github.com/janestreet/sexp_grammar/issues" +dev-repo: "git+https://github.com/janestreet/sexp_grammar.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/sexp_grammar/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_bin_prot" {>= "v0.16" & < "v0.17"} + "ppx_compare" {>= "v0.16" & < "v0.17"} + "ppx_hash" {>= "v0.16" & < "v0.17"} + "ppx_let" {>= "v0.16" & < "v0.17"} + "ppx_sexp_conv" {>= "v0.16" & < "v0.17"} + "ppx_sexp_message" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "zarith" {>= "1.11"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Sexp grammar helpers" +description: " +Helpers for manipulating [Sexplib.Sexp_grammar] values. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/sexp_grammar-v0.16.0.tar.gz" +checksum: "sha256=37dacd32dcdd0351ea220f7bcbc7329d25f7da49bd49dc3917b28edc151f7d51" +} diff --git a/packages/sexp_macro/sexp_macro.v0.16.0/opam b/packages/sexp_macro/sexp_macro.v0.16.0/opam new file mode 100644 index 00000000000..04a75596b42 --- /dev/null +++ b/packages/sexp_macro/sexp_macro.v0.16.0/opam @@ -0,0 +1,28 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/sexp_macro" +bug-reports: "https://github.com/janestreet/sexp_macro/issues" +dev-repo: "git+https://github.com/janestreet/sexp_macro.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/sexp_macro/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "sexplib" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Sexp macros" +description: " +Sexp macros allow the user to define and use constants and simple functions in sexp files, +include one sexp file in another. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/sexp_macro-v0.16.0.tar.gz" +checksum: "sha256=e85193d54f59f604f8fa19be2fcefd39a25736378894d88817b0c1fe1e298c77" +} diff --git a/packages/sexp_pretty/sexp_pretty.v0.16.0/opam b/packages/sexp_pretty/sexp_pretty.v0.16.0/opam new file mode 100644 index 00000000000..318dadbea1c --- /dev/null +++ b/packages/sexp_pretty/sexp_pretty.v0.16.0/opam @@ -0,0 +1,29 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/sexp_pretty" +bug-reports: "https://github.com/janestreet/sexp_pretty/issues" +dev-repo: "git+https://github.com/janestreet/sexp_pretty.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/sexp_pretty/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_base" {>= "v0.16" & < "v0.17"} + "sexplib" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "re" {>= "1.8.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "S-expression pretty-printer" +description: " +A library for pretty-printing s-expressions, using better indentation rules than +the default pretty printer in Sexplib. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/sexp_pretty-v0.16.0.tar.gz" +checksum: "sha256=0502ffec75e097967e8745b98f65b6ce3b4cd4b64e569d67fe052ab90851ea60" +} diff --git a/packages/sexp_select/sexp_select.v0.16.0/opam b/packages/sexp_select/sexp_select.v0.16.0/opam new file mode 100644 index 00000000000..339840e67fc --- /dev/null +++ b/packages/sexp_select/sexp_select.v0.16.0/opam @@ -0,0 +1,27 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/sexp_select" +bug-reports: "https://github.com/janestreet/sexp_select/issues" +dev-repo: "git+https://github.com/janestreet/sexp_select.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/sexp_select/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A library to use CSS-style selectors to traverse sexp trees" +description: " +This library provides a convenient method to traverse sexp trees +and return subtrees that match the given program. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/sexp_select-v0.16.0.tar.gz" +checksum: "sha256=7439001f089164e79422e88e9fb5632df7b5abf22f5c49a37b89b4a69be18978" +} diff --git a/packages/sexp_string_quickcheck/sexp_string_quickcheck.v0.16.0/opam b/packages/sexp_string_quickcheck/sexp_string_quickcheck.v0.16.0/opam new file mode 100644 index 00000000000..79265890a99 --- /dev/null +++ b/packages/sexp_string_quickcheck/sexp_string_quickcheck.v0.16.0/opam @@ -0,0 +1,29 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/sexp_string_quickcheck" +bug-reports: "https://github.com/janestreet/sexp_string_quickcheck/issues" +dev-repo: "git+https://github.com/janestreet/sexp_string_quickcheck.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/sexp_string_quickcheck/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "parsexp" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Quickcheck helpers for strings parsing to sexps" +description: " +This library provides quickcheck generators, helpers, and shrinkers for +quickcheck-based tests that wish to exercise the concrete syntax of sexps, +including escape sequences and comments. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/sexp_string_quickcheck-v0.16.0.tar.gz" +checksum: "sha256=bd226e04d699ba725f1d86ffc0d3ccc3bfadc9ac7ac92556f4957a53096f6a50" +} diff --git a/packages/sexplib/sexplib.v0.16.0/opam b/packages/sexplib/sexplib.v0.16.0/opam new file mode 100644 index 00000000000..ce31f067a32 --- /dev/null +++ b/packages/sexplib/sexplib.v0.16.0/opam @@ -0,0 +1,30 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/sexplib" +bug-reports: "https://github.com/janestreet/sexplib/issues" +dev-repo: "git+https://github.com/janestreet/sexplib.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/sexplib/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "parsexp" {>= "v0.16" & < "v0.17"} + "sexplib0" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "num" +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Library for serializing OCaml values to and from S-expressions" +description: " +Part of Jane Street's Core library +The Core suite of libraries is an industrial strength alternative to +OCaml's standard library that was developed by Jane Street, the +largest industrial user of OCaml. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/sexplib-v0.16.0.tar.gz" +checksum: "sha256=e564d5d1ca157314ba5fd64b4e89fa12c6cba8efee3becf6d09d7d9dda21ac5b" +} diff --git a/packages/sexplib0/sexplib0.v0.16.0/opam b/packages/sexplib0/sexplib0.v0.16.0/opam new file mode 100644 index 00000000000..28907df8fa0 --- /dev/null +++ b/packages/sexplib0/sexplib0.v0.16.0/opam @@ -0,0 +1,27 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/sexplib0" +bug-reports: "https://github.com/janestreet/sexplib0/issues" +dev-repo: "git+https://github.com/janestreet/sexplib0.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/sexplib0/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.08.0"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Library containing the definition of S-expressions and some base converters" +description: " +Part of Jane Street's Core library +The Core suite of libraries is an industrial strength alternative to +OCaml's standard library that was developed by Jane Street, the +largest industrial user of OCaml. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/sexplib0-v0.16.0.tar.gz" +checksum: "sha256=86dba26468194512f789f2fb709063515a9cb4e5c4461c021c239a369590701d" +} diff --git a/packages/shell/shell.v0.16.0/opam b/packages/shell/shell.v0.16.0/opam new file mode 100644 index 00000000000..fa834508aab --- /dev/null +++ b/packages/shell/shell.v0.16.0/opam @@ -0,0 +1,31 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/shell" +bug-reports: "https://github.com/janestreet/shell/issues" +dev-repo: "git+https://github.com/janestreet/shell.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/shell/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "jst-config" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "textutils" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "spawn" {>= "v0.15"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Yet another implementation of fork&exec and related functionality" +description: " +This library is a relatively featureful and flexible implementation of fork&exec with related functionality, including some basic support for asynchronous I/O. This is an old and unmaintained code. New users are advised to try using [Async.Process] for certain use cases and [Shexp_process] for certain other use cases. +" +depexts: ["linux-headers"] {os-family = "alpine"} +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/shell-v0.16.0.tar.gz" +checksum: "sha256=1e267e9120dc73c7dc94598f68b209622e64942f916dd1c1d3285f2a9fcab214" +} diff --git a/packages/shexp/shexp.v0.16.0/opam b/packages/shexp/shexp.v0.16.0/opam new file mode 100644 index 00000000000..987dfc7256d --- /dev/null +++ b/packages/shexp/shexp.v0.16.0/opam @@ -0,0 +1,30 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/shexp" +bug-reports: "https://github.com/janestreet/shexp/issues" +dev-repo: "git+https://github.com/janestreet/shexp.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/shexp/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "posixat" {>= "v0.16" & < "v0.17"} + "sexplib0" {>= "v0.16" & < "v0.17"} + "base-threads" + "dune" {>= "2.0.0"} + "spawn" {>= "v0.15"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Process library and s-expression based shell" +description: " +Shexp is composed of two parts: a library providing a process monad +for shell scripting in OCaml as well as a simple s-expression based +shell interpreter. Shexp works on both Unix and Windows. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/shexp-v0.16.0.tar.gz" +checksum: "sha256=fae7de344e97b6e75e63ee7b8058a29afd358235f50727a02d3f9445675afed0" +} diff --git a/packages/splay_tree/splay_tree.v0.16.0/opam b/packages/splay_tree/splay_tree.v0.16.0/opam new file mode 100644 index 00000000000..c121efde1c3 --- /dev/null +++ b/packages/splay_tree/splay_tree.v0.16.0/opam @@ -0,0 +1,36 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/splay_tree" +bug-reports: "https://github.com/janestreet/splay_tree/issues" +dev-repo: "git+https://github.com/janestreet/splay_tree.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/splay_tree/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A splay tree implementation" +description: " +Splay trees are binary search trees that move recently accessed nodes +closer to the root for easier access. They have amortized O(log +n)-time access for a large enough sequence of primitive operations. + +A splay trees may outperform other trees such as red-black trees when +recently accessed items are more likely to be accessed in the near +future. + +Notably, this splay tree implementation is parameterized by a +reduction operation which lets you specify an extra accumulator value, +which can then be searched by efficiently. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/splay_tree-v0.16.0.tar.gz" +checksum: "sha256=83a664ad9ce3f325588c418fb6f9bf0c1a846948aeb7bc35d0d11ec726371148" +} diff --git a/packages/splittable_random/splittable_random.v0.16.0/opam b/packages/splittable_random/splittable_random.v0.16.0/opam new file mode 100644 index 00000000000..f0e4185c00a --- /dev/null +++ b/packages/splittable_random/splittable_random.v0.16.0/opam @@ -0,0 +1,36 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/splittable_random" +bug-reports: "https://github.com/janestreet/splittable_random/issues" +dev-repo: "git+https://github.com/janestreet/splittable_random.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/splittable_random/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_assert" {>= "v0.16" & < "v0.17"} + "ppx_bench" {>= "v0.16" & < "v0.17"} + "ppx_inline_test" {>= "v0.16" & < "v0.17"} + "ppx_sexp_message" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "PRNG that can be split into independent streams" +description: " +PRNG that can be split into independent streams + +A splittable pseudo-random number generator (SPRNG) functions like a PRNG in that it can +be used as a stream of random values; it can also be \"split\" to produce a second, +independent stream of random values. + +This library implements a splittable pseudo-random number generator that sacrifices +cryptographic-quality randomness in favor of performance. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/splittable_random-v0.16.0.tar.gz" +checksum: "sha256=e16f1b063f03e3c18ce39f2037bebf803e13f4e5bbe824f2481ff12d121ff6d3" +} diff --git a/packages/stdio/stdio.v0.16.0/opam b/packages/stdio/stdio.v0.16.0/opam new file mode 100644 index 00000000000..3181a314ea5 --- /dev/null +++ b/packages/stdio/stdio.v0.16.0/opam @@ -0,0 +1,28 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/stdio" +bug-reports: "https://github.com/janestreet/stdio/issues" +dev-repo: "git+https://github.com/janestreet/stdio.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/stdio/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Standard IO library for OCaml" +description: " +Stdio implements simple input/output functionalities for OCaml. + +It re-exports the input/output functions of the OCaml standard +libraries using a more consistent API. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/stdio-v0.16.0.tar.gz" +checksum: "sha256=61f0b75950614ac5378c6ec0d822cce6463402d919d5810b736fc46522b3a73e" +} diff --git a/packages/stored_reversed/stored_reversed.v0.16.0/opam b/packages/stored_reversed/stored_reversed.v0.16.0/opam new file mode 100644 index 00000000000..05dfc950057 --- /dev/null +++ b/packages/stored_reversed/stored_reversed.v0.16.0/opam @@ -0,0 +1,26 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/stored_reversed" +bug-reports: "https://github.com/janestreet/stored_reversed/issues" +dev-repo: "git+https://github.com/janestreet/stored_reversed.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/stored_reversed/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A library for representing a list temporarily stored in reverse order." +description: " +A ['a list t] represents a list temporarily stored in the reverse of its logical order. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/stored_reversed-v0.16.0.tar.gz" +checksum: "sha256=b05635bb02635eedc8eedb87e66b37b026c6fbcacc48c016a6c67e6032b8a6ab" +} diff --git a/packages/streamable/streamable.v0.16.0/opam b/packages/streamable/streamable.v0.16.0/opam new file mode 100644 index 00000000000..bb8e1d1e149 --- /dev/null +++ b/packages/streamable/streamable.v0.16.0/opam @@ -0,0 +1,31 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/streamable" +bug-reports: "https://github.com/janestreet/streamable/issues" +dev-repo: "git+https://github.com/janestreet/streamable.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/streamable/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async_kernel" {>= "v0.16" & < "v0.17"} + "async_rpc_kernel" {>= "v0.16" & < "v0.17"} + "base" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "A collection of types suitable for incremental serialization." +description: " +A collection of types suitable for incremental serialization. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/streamable-v0.16.0.tar.gz" +checksum: "sha256=619eb20eec02100eb0a49ab7b0c63b083c89e81a326b16851dfa1c5aa906b0a8" +} diff --git a/packages/string_dict/string_dict.v0.16.0/opam b/packages/string_dict/string_dict.v0.16.0/opam new file mode 100644 index 00000000000..11ef0c35c99 --- /dev/null +++ b/packages/string_dict/string_dict.v0.16.0/opam @@ -0,0 +1,32 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/string_dict" +bug-reports: "https://github.com/janestreet/string_dict/issues" +dev-repo: "git+https://github.com/janestreet/string_dict.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/string_dict/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_compare" {>= "v0.16" & < "v0.17"} + "ppx_hash" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Efficient static string dictionaries" +description: " +Efficient static string dictionaries. +By static, we mean that new key-value pairs cannot be added after the +dictionary is created. + +This uses the algorithm the OCaml compiler uses for pattern matching +on strings. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/string_dict-v0.16.0.tar.gz" +checksum: "sha256=3b1ddb64e46272a434dfd593b6c1f3c370fd585899cfa9dd5334c170ee9ce67b" +} diff --git a/packages/textutils/textutils.v0.16.0/opam b/packages/textutils/textutils.v0.16.0/opam new file mode 100644 index 00000000000..5c812555a55 --- /dev/null +++ b/packages/textutils/textutils.v0.16.0/opam @@ -0,0 +1,29 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/textutils" +bug-reports: "https://github.com/janestreet/textutils/issues" +dev-repo: "git+https://github.com/janestreet/textutils.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/textutils/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "textutils_kernel" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "uutf" {>= "1.0.2"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Text output utilities" +description: " +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/textutils-v0.16.0.tar.gz" +checksum: "sha256=7814aa3ce89fa18e48c41f4764336a99cbd4b761fcb46a9df73297923b57feb2" +} diff --git a/packages/textutils_kernel/textutils_kernel.v0.16.0/opam b/packages/textutils_kernel/textutils_kernel.v0.16.0/opam new file mode 100644 index 00000000000..f729fa9a4d3 --- /dev/null +++ b/packages/textutils_kernel/textutils_kernel.v0.16.0/opam @@ -0,0 +1,26 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/textutils_kernel" +bug-reports: "https://github.com/janestreet/textutils_kernel/issues" +dev-repo: "git+https://github.com/janestreet/textutils_kernel.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/textutils_kernel/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "uutf" {>= "1.0.2"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Text output utilities" +description: " +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/textutils_kernel-v0.16.0.tar.gz" +checksum: "sha256=621e8ecf031ceac0dbb70a5ac4d8ef6add20cf387844402a3fb9e149870ad131" +} diff --git a/packages/tilde_f/tilde_f.v0.16.0/opam b/packages/tilde_f/tilde_f.v0.16.0/opam new file mode 100644 index 00000000000..b0afad06fa7 --- /dev/null +++ b/packages/tilde_f/tilde_f.v0.16.0/opam @@ -0,0 +1,26 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/tilde_f" +bug-reports: "https://github.com/janestreet/tilde_f/issues" +dev-repo: "git+https://github.com/janestreet/tilde_f.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/tilde_f/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Provides a let-syntax for continuation-passing style." +description: " +Provides a let-syntax for continuation-passing style. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/tilde_f-v0.16.0.tar.gz" +checksum: "sha256=b059bbe0100d63eb0e6950e04ca82b1e136e35ddd6d69c03f4bd347e3f683dcd" +} diff --git a/packages/time_now/time_now.v0.16.0/opam b/packages/time_now/time_now.v0.16.0/opam new file mode 100644 index 00000000000..6a39d527069 --- /dev/null +++ b/packages/time_now/time_now.v0.16.0/opam @@ -0,0 +1,30 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/time_now" +bug-reports: "https://github.com/janestreet/time_now/issues" +dev-repo: "git+https://github.com/janestreet/time_now.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/time_now/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "jane-street-headers" {>= "v0.16" & < "v0.17"} + "jst-config" {>= "v0.16" & < "v0.17"} + "ppx_base" {>= "v0.16" & < "v0.17"} + "ppx_optcomp" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Reports the current time" +description: " +Provides a single function to report the current time in nanoseconds +since the start of the Unix epoch. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/time_now-v0.16.0.tar.gz" +checksum: "sha256=5fa084aadee6aaedbb8976e4a2bc0c1dfe69eecdd0576ff901f21eedd46dc3a1" +} diff --git a/packages/timezone/timezone.v0.16.0/opam b/packages/timezone/timezone.v0.16.0/opam new file mode 100644 index 00000000000..3218bf98dfe --- /dev/null +++ b/packages/timezone/timezone.v0.16.0/opam @@ -0,0 +1,27 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/timezone" +bug-reports: "https://github.com/janestreet/timezone/issues" +dev-repo: "git+https://github.com/janestreet/timezone.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/timezone/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Time-zone handling" +description: " +Timezone handles parsing timezone data and create [Timezone.t] that +can later be used to manipulate time in core_kernel or core. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/timezone-v0.16.0.tar.gz" +checksum: "sha256=3eb3f044734051d4c7dce0ef49aae0e8963dcf4680768f7946583ac3f5fe87a0" +} diff --git a/packages/toplevel_backend/toplevel_backend.v0.16.0/opam b/packages/toplevel_backend/toplevel_backend.v0.16.0/opam new file mode 100644 index 00000000000..e94198acb6d --- /dev/null +++ b/packages/toplevel_backend/toplevel_backend.v0.16.0/opam @@ -0,0 +1,29 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/toplevel_backend" +bug-reports: "https://github.com/janestreet/toplevel_backend/issues" +dev-repo: "git+https://github.com/janestreet/toplevel_backend.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/toplevel_backend/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_here" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "ppx_optcomp" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} + "ocamlfind" {>= "1.7.2"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Shared backend for setting up toplevels" +description: " +Module for setting up dependencies (like printers and liblinks) for toplevels. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/toplevel_backend-v0.16.0.tar.gz" +checksum: "sha256=483586f2e05b9bdcb5be705efbd195fe8e86025c43f224baa4fe7ea84172576c" +} diff --git a/packages/toplevel_expect_test/toplevel_expect_test.v0.16.0/opam b/packages/toplevel_expect_test/toplevel_expect_test.v0.16.0/opam new file mode 100644 index 00000000000..69de3d8abd4 --- /dev/null +++ b/packages/toplevel_expect_test/toplevel_expect_test.v0.16.0/opam @@ -0,0 +1,39 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/toplevel_expect_test" +bug-reports: "https://github.com/janestreet/toplevel_expect_test/issues" +dev-repo: "git+https://github.com/janestreet/toplevel_expect_test.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/toplevel_expect_test/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "mlt_parser" {>= "v0.16" & < "v0.17"} + "ppx_expect" {>= "v0.16" & < "v0.17"} + "ppx_inline_test" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "ppx_optcomp" {>= "v0.16" & < "v0.17"} + "toplevel_backend" {>= "v0.16" & < "v0.17"} + "base-threads" + "dune" {>= "2.0.0"} + "ocaml-compiler-libs" {>= "v0.11.0"} + "ocamlfind" {>= "1.7.2"} + "ppxlib" {>= "0.28.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Expectation tests for the OCaml toplevel" +description: " +Allows one to write both toplevel phrases and the expected output from +the toplevel in the same file. This provides an easy way to test +compilations errors as well as provide a nice alternative to using +the toplevel in a terminal. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/toplevel_expect_test-v0.16.0.tar.gz" +checksum: "sha256=2f9937f8013ad7e52497be52ee0fa61be1707356b16248d0e9e679dabd96e133" +} diff --git a/packages/topological_sort/topological_sort.v0.16.0/opam b/packages/topological_sort/topological_sort.v0.16.0/opam new file mode 100644 index 00000000000..5aa83d2bc45 --- /dev/null +++ b/packages/topological_sort/topological_sort.v0.16.0/opam @@ -0,0 +1,28 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/topological_sort" +bug-reports: "https://github.com/janestreet/topological_sort/issues" +dev-repo: "git+https://github.com/janestreet/topological_sort.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/topological_sort/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "stdio" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Topological sort algorithm" +description: " +Topological_sort is a single-module library that implements a simple +topological-sort algorithm. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/topological_sort-v0.16.0.tar.gz" +checksum: "sha256=b8474d1b40cebe2763705c5f8bf24a177875485d50b41c23d6ef48babadfb7b2" +} diff --git a/packages/torch/torch.v0.16.0/opam b/packages/torch/torch.v0.16.0/opam new file mode 100644 index 00000000000..e049267b588 --- /dev/null +++ b/packages/torch/torch.v0.16.0/opam @@ -0,0 +1,38 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/torch" +bug-reports: "https://github.com/janestreet/torch/issues" +dev-repo: "git+https://github.com/janestreet/torch.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/torch/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14"} + "base" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_bench" {>= "v0.16" & < "v0.17"} + "ppx_expect" {>= "v0.16" & < "v0.17"} + "ppx_inline_test" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "stdio" {>= "v0.16" & < "v0.17"} + "ctypes" {>= "0.18.0"} + "ctypes-foreign" + "dune" {>= "2.0.0"} + "dune-configurator" + "ocaml-compiler-libs" {>= "v0.11.0"} + "libtorch" {>= "1.13.0" & < "1.14.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Torch bindings for OCaml" +description: " +The ocaml-torch project provides some OCaml bindings for the Torch library. +This brings to OCaml NumPy-like tensor computations with GPU acceleration and +tape-based automatic differentiation. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/torch-v0.16.0.tar.gz" +checksum: "sha256=ccd9ef3b630bdc7c41e363e71d8ecb86c316460cbf79afe67546c6ff22c19da4" +} diff --git a/packages/tracing/tracing.v0.16.0/opam b/packages/tracing/tracing.v0.16.0/opam new file mode 100644 index 00000000000..6db7e44ebb2 --- /dev/null +++ b/packages/tracing/tracing.v0.16.0/opam @@ -0,0 +1,29 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/tracing" +bug-reports: "https://github.com/janestreet/tracing/issues" +dev-repo: "git+https://github.com/janestreet/tracing.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/tracing/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Tracing library" +description: " +Utilities for creating and parsing traces in Fuchsia Trace Format. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/tracing-v0.16.0.tar.gz" +checksum: "sha256=1224dbf57bad65a8bcf7de06fb8785155759eafff4940e7c4d909a0a1243dce6" +} diff --git a/packages/typerep/typerep.v0.16.0/opam b/packages/typerep/typerep.v0.16.0/opam new file mode 100644 index 00000000000..46da3657472 --- /dev/null +++ b/packages/typerep/typerep.v0.16.0/opam @@ -0,0 +1,24 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/typerep" +bug-reports: "https://github.com/janestreet/typerep/issues" +dev-repo: "git+https://github.com/janestreet/typerep.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/typerep/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Typerep is a library for runtime types" +description: " +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/typerep-v0.16.0.tar.gz" +checksum: "sha256=e5157fef61e0229dacf01a5677bb93416ab59ee86046904c3d691e872ed4f72c" +} diff --git a/packages/username_kernel/username_kernel.v0.16.0/opam b/packages/username_kernel/username_kernel.v0.16.0/opam new file mode 100644 index 00000000000..5537a3997a9 --- /dev/null +++ b/packages/username_kernel/username_kernel.v0.16.0/opam @@ -0,0 +1,26 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/username_kernel" +bug-reports: "https://github.com/janestreet/username_kernel/issues" +dev-repo: "git+https://github.com/janestreet/username_kernel.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/username_kernel/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "An identifier for a user" +description: " +A string representation for a user, typically a UNIX username +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/username_kernel-v0.16.0.tar.gz" +checksum: "sha256=524d8359d92eb900f8addb2b4b72cdcbf998bf0e29c4136e6592f83f02aac78e" +} diff --git a/packages/variantslib/variantslib.v0.16.0/opam b/packages/variantslib/variantslib.v0.16.0/opam new file mode 100644 index 00000000000..36798b882a3 --- /dev/null +++ b/packages/variantslib/variantslib.v0.16.0/opam @@ -0,0 +1,27 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/variantslib" +bug-reports: "https://github.com/janestreet/variantslib/issues" +dev-repo: "git+https://github.com/janestreet/variantslib.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/variantslib/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Part of Jane Street's Core library" +description: " +The Core suite of libraries is an industrial strength alternative to +OCaml's standard library that was developed by Jane Street, the +largest industrial user of OCaml. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/variantslib-v0.16.0.tar.gz" +checksum: "sha256=27ae7ad0bc123861c49c3cc0a74f01e68f91d3fb6c52c84505764e96a89d372f" +} diff --git a/packages/vcaml/vcaml.v0.16.0/opam b/packages/vcaml/vcaml.v0.16.0/opam new file mode 100644 index 00000000000..fe68a02fdc1 --- /dev/null +++ b/packages/vcaml/vcaml.v0.16.0/opam @@ -0,0 +1,40 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/vcaml" +bug-reports: "https://github.com/janestreet/vcaml/issues" +dev-repo: "git+https://github.com/janestreet/vcaml.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/vcaml/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "async" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "core_unix" {>= "v0.16" & < "v0.17"} + "expect_test_helpers_async" {>= "v0.16" & < "v0.17"} + "jsonaf" {>= "v0.16" & < "v0.17"} + "man_in_the_middle_debugger" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "ppx_optcomp" {>= "v0.16" & < "v0.17"} + "semantic_version" {>= "v0.16" & < "v0.17"} + "textutils" {>= "v0.16" & < "v0.17"} + "angstrom" {>= "0.15.0"} + "angstrom-async" {>= "0.15.0"} + "dune" {>= "2.0.0"} + "faraday" +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "OCaml bindings for the Neovim API" +description: " +VCaml provides OCaml bindings for Neovim's and models some of Neovim's +more tricky semantics so plugin authors do not need to consider them when writing plugins. +Plugins communicate with Neovim remotely over Msgpack RPC (see `:h api` for details). +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/vcaml-v0.16.0.tar.gz" +checksum: "sha256=dd123302c46af7ca6eda8a7806c78236fd217a8c73a2e1cd7da85f1d69ed1ae4" +} diff --git a/packages/virtual_dom/virtual_dom.v0.16.0/opam b/packages/virtual_dom/virtual_dom.v0.16.0/opam new file mode 100644 index 00000000000..602ab730afd --- /dev/null +++ b/packages/virtual_dom/virtual_dom.v0.16.0/opam @@ -0,0 +1,38 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/virtual_dom" +bug-reports: "https://github.com/janestreet/virtual_dom/issues" +dev-repo: "git+https://github.com/janestreet/virtual_dom.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/virtual_dom/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "base" {>= "v0.16" & < "v0.17"} + "core" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "js_of_ocaml_patches" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "stdio" {>= "v0.16" & < "v0.17"} + "base64" {>= "3.4.0"} + "dune" {>= "2.0.0"} + "gen_js_api" {>= "1.0.8"} + "js_of_ocaml" {>= "5.1.1"} + "js_of_ocaml-ppx" {>= "5.1.1"} + "lambdasoup" {>= "0.6.3"} + "tyxml" {>= "4.3.0"} + "uri" {>= "3.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "OCaml bindings for the virtual-dom library" +description: " +The library itself may be found at +https://github.com/Matt-Esch/virtual-dom. +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/virtual_dom-v0.16.0.tar.gz" +checksum: "sha256=0c6f07894dce56db88d46b3aa4f2cad1a84aeaf0009560a285492f9f2959d565" +} diff --git a/packages/zarith_stubs_js/zarith_stubs_js.v0.16.0/opam b/packages/zarith_stubs_js/zarith_stubs_js.v0.16.0/opam new file mode 100644 index 00000000000..1704936b055 --- /dev/null +++ b/packages/zarith_stubs_js/zarith_stubs_js.v0.16.0/opam @@ -0,0 +1,25 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/zarith_stubs_js" +bug-reports: "https://github.com/janestreet/zarith_stubs_js/issues" +dev-repo: "git+https://github.com/janestreet/zarith_stubs_js.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/zarith_stubs_js/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "dune" {>= "2.0.0"} +] +available: arch != "arm32" & arch != "x86_32" +synopsis: "Javascripts stubs for the Zarith library" +description: " +This library contains no ocaml code, but instead implements +all of the Zarith C stubs in Javascript for use in Js_of_ocaml +" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/zarith_stubs_js-v0.16.0.tar.gz" +checksum: "sha256=d82391d892472355b992656a39fb01a9f6b8a6bd4feef3f286b4709cda255020" +} diff --git a/packages/zstandard/zstandard.v0.16.0/opam b/packages/zstandard/zstandard.v0.16.0/opam new file mode 100644 index 00000000000..03355a67623 --- /dev/null +++ b/packages/zstandard/zstandard.v0.16.0/opam @@ -0,0 +1,29 @@ +opam-version: "2.0" +maintainer: "Jane Street developers" +authors: ["Jane Street Group, LLC"] +homepage: "https://github.com/janestreet/zstandard" +bug-reports: "https://github.com/janestreet/zstandard/issues" +dev-repo: "git+https://github.com/janestreet/zstandard.git" +doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/zstandard/index.html" +license: "MIT" +build: [ + ["dune" "build" "-p" name "-j" jobs] +] +depends: [ + "ocaml" {>= "4.14.0"} + "core" {>= "v0.16" & < "v0.17"} + "core_kernel" {>= "v0.16" & < "v0.17"} + "ppx_jane" {>= "v0.16" & < "v0.17"} + "conf-zstd" + "ctypes" {>= "0.18.0"} + "dune" {>= "2.0.0"} +] +synopsis: "OCaml bindings to Zstandard" +description: " +Zstandard is a real-time compression algorithm which provides high compression ratios. +" +available: (arch = "x86_64" | arch = "arm64") & os = "linux" +url { +src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/zstandard-v0.16.0.tar.gz" +checksum: "sha256=992e7fe7c7ed13f0e80fa91a6f2ab90d05577acf746a27d02657a0f59e2cef4e" +}