From 97e02f24377796b66e558acd5c7e0b41d68f01f4 Mon Sep 17 00:00:00 2001 From: Calascibetta Romain Date: Mon, 21 Jan 2019 11:35:21 +0100 Subject: [PATCH 1/3] [new release] base64 (3.0.0) CHANGES: * Implemenation of Base64 according to RFC 2045 (available on base64.rfc2045) * New implementation of Base64 according to RFC 4648 from nocrypto's implementation * Fix bad access with `String.iter` on the old implementation of Base64 (@dinosaure, mirage/ocaml-base64#23) * Check isomorphism between `encode` & `decode` function (@hannesm, @dinosaure, mirage/ocaml-base64#20) * Add tests from RFC 3548 and from PHP impl. (@hannesm, @dinosaure, mirage/ocaml-base64#24) * Add fuzzer on both implementations - check isomorphism - check bijection - check if `decode` does not raise any exception * __break-api__, `B64` was renamed to `Base64` (@copy, @avsm, @dinosaure, mirage/ocaml-base64#17) * __break-api__, `Base64.decode` and `Base64.encode` returns a result type instead to raise an exception (@hannesm, @dinosaure, mirage/ocaml-base64#21) * __break-api__, Add `sub` type to avoid allocation to the end-user (@avsm, @dinosaure, mirage/ocaml-base64#24) * __break-api__, Add `pad` argument on `decode` function to check if input is well-padded or not (@hannesm, @dinosaure, mirage/ocaml-base64#24) * __break-api__, Add `off` and `len` optional arguments on `encode` & `decode` functions to compute a part of input (@cfcs, @dinosaure, mirage/ocaml-base64#24) * Better performance (see mirage/ocaml-base64#24) (@dinosaure) * Review of code by @cfcs (see mirage/ocaml-base64#24) --- packages/base64/base64.3.0.0/opam | 33 +++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 packages/base64/base64.3.0.0/opam diff --git a/packages/base64/base64.3.0.0/opam b/packages/base64/base64.3.0.0/opam new file mode 100644 index 00000000000..edac9c5e745 --- /dev/null +++ b/packages/base64/base64.3.0.0/opam @@ -0,0 +1,33 @@ +opam-version: "2.0" +maintainer: "mirageos-devel@lists.xenproject.org" +authors: [ "Thomas Gazagnaire" + "Anil Madhavapeddy" + "Peter Zotov" ] +license: "ISC" +homepage: "https://github.com/mirage/ocaml-base64" +doc: "http://mirage.github.io/ocaml-base64/" +bug-reports: "https://github.com/mirage/ocaml-base64/issues" +dev-repo: "git+https://github.com/mirage/ocaml-base64.git" +synopsis: "Base64 encoding for OCaml" +description: """ +Base64 is a group of similar binary-to-text encoding schemes that represent +binary data in an ASCII string format by translating it into a radix-64 +representation. It is specified in RFC 4648. +""" +depends: [ + "base-bytes" + "dune" {build & >= "1.0.1"} + "bos" {with-test} + "rresult" {with-test} + "alcotest" {with-test} +] +build: [ + ["dune" "subst"] + ["dune" "build" "-p" name "-j" jobs] + ["dune" "runtest" "-p" name] {with-test} +] +url { + src: + "https://github.com/mirage/ocaml-base64/releases/download/v3.0.0/base64-v3.0.0.tbz" + checksum: "md5=f94f8e73b7325bf02436293b1321e35b" +} From 0c555ba9fc982cf3aa0f3752bb3e743789589468 Mon Sep 17 00:00:00 2001 From: Calascibetta Romain Date: Mon, 21 Jan 2019 15:28:27 +0100 Subject: [PATCH 2/3] Add constraint 'base64 < 3.0.0' (API break) on packages which use base64 --- packages/aws-s3/aws-s3.4.0.0/opam | 2 +- packages/aws-s3/aws-s3.4.0.1/opam | 2 +- packages/aws-s3/aws-s3.4.1.0/opam | 2 +- packages/aws-s3/aws-s3.4.2.0/opam | 2 +- packages/biocaml/biocaml.0.8.0/opam | 2 +- packages/biocaml/biocaml.0.9.0/opam | 3 +-- packages/bulletml/bulletml.0.1.0/opam | 2 +- packages/bulletml/bulletml.0.2.0/opam | 2 +- packages/capnp-rpc-lwt/capnp-rpc-lwt.0.2/opam | 2 +- packages/capnp-rpc-lwt/capnp-rpc-lwt.0.3.1/opam | 2 +- packages/capnp-rpc-lwt/capnp-rpc-lwt.0.3/opam | 2 +- packages/coclobas/coclobas.0.0.0/opam | 2 +- packages/coclobas/coclobas.0.0.1/opam | 2 +- packages/coclobas/coclobas.0.0.2/opam | 2 +- packages/cohttp/cohttp.0.15.0/opam | 2 +- packages/cohttp/cohttp.0.15.1/opam | 2 +- packages/cohttp/cohttp.0.15.2/opam | 2 +- packages/cohttp/cohttp.0.16.0/opam | 2 +- packages/cohttp/cohttp.0.16.1/opam | 2 +- packages/cohttp/cohttp.0.17.0/opam | 2 +- packages/cohttp/cohttp.0.17.1/opam | 2 +- packages/cohttp/cohttp.0.17.2/opam | 2 +- packages/cohttp/cohttp.0.18.0/opam | 2 +- packages/cohttp/cohttp.0.18.1/opam | 2 +- packages/cohttp/cohttp.0.18.2/opam | 2 +- packages/cohttp/cohttp.0.18.3/opam | 2 +- packages/cohttp/cohttp.0.19.0/opam | 2 +- packages/cohttp/cohttp.0.19.1/opam | 2 +- packages/cohttp/cohttp.0.19.2/opam | 2 +- packages/cohttp/cohttp.0.19.3/opam | 2 +- packages/cohttp/cohttp.0.20.0/opam | 2 +- packages/cohttp/cohttp.0.20.1/opam | 2 +- packages/cohttp/cohttp.0.20.2/opam | 2 +- packages/cohttp/cohttp.0.21.0/opam | 2 +- packages/cohttp/cohttp.0.21.1/opam | 2 +- packages/cohttp/cohttp.0.22.0/opam | 2 +- packages/cohttp/cohttp.0.99.0/opam | 2 +- packages/cohttp/cohttp.1.0.0/opam | 2 +- packages/cohttp/cohttp.1.0.2/opam | 2 +- packages/cohttp/cohttp.1.1.0/opam | 2 +- packages/cohttp/cohttp.1.1.1/opam | 2 +- packages/cohttp/cohttp.1.2.0/opam | 4 ++-- packages/dns/dns.0.12.0/opam | 2 +- packages/dns/dns.0.13.0/opam | 2 +- packages/dns/dns.0.14.0/opam | 2 +- packages/dns/dns.0.14.1/opam | 2 +- packages/dns/dns.0.15.0/opam | 2 +- packages/dns/dns.0.15.1/opam | 2 +- packages/dns/dns.0.15.2/opam | 2 +- packages/dns/dns.0.15.3/opam | 2 +- packages/dns/dns.0.16.0/opam | 2 +- packages/dns/dns.0.17.0/opam | 2 +- packages/dns/dns.0.18.0/opam | 2 +- packages/dns/dns.0.18.1/opam | 2 +- packages/dns/dns.0.19.0/opam | 2 +- packages/dns/dns.0.19.1/opam | 2 +- packages/dns/dns.0.20.0/opam | 2 +- packages/dns/dns.0.20.1/opam | 2 +- packages/dns/dns.1.0.0/opam | 2 +- packages/dns/dns.1.0.1/opam | 2 +- packages/dns/dns.1.1.0/opam | 4 ++-- packages/elf2json/elf2json.1.0.0/opam | 2 +- packages/frenetic/frenetic.3.3.0/opam | 2 +- packages/frenetic/frenetic.3.4.0/opam | 2 +- packages/frenetic/frenetic.3.4.1/opam | 2 +- packages/frenetic/frenetic.5.0.0/opam | 2 +- packages/frenetic/frenetic.5.0.2/opam | 2 +- packages/frenetic/frenetic.5.0.3/opam | 2 +- packages/imap/imap.1.0/opam | 2 +- packages/imap/imap.1.1.0/opam | 2 +- packages/imap/imap.1.1.1/opam | 2 +- packages/irmin-indexeddb/irmin-indexeddb.0.1/opam | 2 +- packages/irmin-indexeddb/irmin-indexeddb.0.2/opam | 2 +- packages/irmin-indexeddb/irmin-indexeddb.0.3/opam | 2 +- packages/js_of_ocaml/js_of_ocaml.2.6/opam | 2 +- packages/js_of_ocaml/js_of_ocaml.2.7/opam | 2 +- packages/js_of_ocaml/js_of_ocaml.2.8.1/opam | 2 +- packages/js_of_ocaml/js_of_ocaml.2.8.2/opam | 2 +- packages/js_of_ocaml/js_of_ocaml.2.8.3/opam | 2 +- packages/js_of_ocaml/js_of_ocaml.2.8.4/opam | 2 +- packages/js_of_ocaml/js_of_ocaml.2.8/opam | 2 +- packages/jupyter/jupyter.0.0.0/opam | 2 +- packages/jupyter/jupyter.0.1.0/opam | 2 +- packages/jupyter/jupyter.1.0.0/opam | 2 +- packages/jupyter/jupyter.1.0.1/opam | 2 +- packages/jupyter/jupyter.1.0.2/opam | 2 +- packages/jupyter/jupyter.1.1.0/opam | 2 +- packages/jupyter/jupyter.2.0.0/opam | 2 +- packages/jupyter/jupyter.2.1.0/opam | 2 +- packages/jupyter/jupyter.2.2.0/opam | 2 +- packages/jupyter/jupyter.2.2.1/opam | 2 +- packages/jupyter/jupyter.2.2.2/opam | 2 +- packages/jupyter/jupyter.2.3.0/opam | 2 +- packages/jupyter/jupyter.2.3.1/opam | 2 +- packages/jupyter/jupyter.2.3.2/opam | 2 +- packages/jupyter/jupyter.2.3.3/opam | 2 +- packages/jupyter/jupyter.2.3.4/opam | 2 +- packages/jupyter/jupyter.2.3.5/opam | 2 +- packages/jupyter/jupyter.2.4.0/opam | 2 +- packages/jwt/jwt.0.1/opam | 2 +- packages/jwto/jwto.0.1.4/opam | 2 +- packages/links/links.0.6.1/opam | 2 +- packages/links/links.0.6/opam | 2 +- packages/links/links.0.7.1/opam | 2 +- packages/links/links.0.7.2/opam | 2 +- packages/links/links.0.7.3/opam | 2 +- packages/links/links.0.7/opam | 2 +- packages/links/links.0.8/opam | 2 +- packages/macaroons/macaroons.0.1.0/opam | 2 +- packages/macaroons/macaroons.0.1.1/opam | 2 +- packages/ocamltter/ocamltter.4.1.0/opam | 2 +- packages/ocamltter/ocamltter.4.1.1/opam | 2 +- packages/ojs-base/ojs-base.0.3.0/opam | 2 +- packages/ojs-base/ojs-base.0.4.0/opam | 2 +- packages/ojs-base/ojs-base.0.5.0/opam | 2 +- packages/opium/opium.0.12.0/opam | 2 +- packages/opium/opium.0.13.0/opam | 2 +- packages/opium/opium.0.13.1/opam | 2 +- packages/opium/opium.0.13.2/opam | 2 +- packages/opium/opium.0.13.3/opam | 2 +- packages/opium/opium.0.14.0/opam | 2 +- packages/opium/opium.0.15.0/opam | 2 +- packages/opium/opium.0.15.1/opam | 2 +- packages/opium_kernel/opium_kernel.0.16.0/opam | 2 +- packages/opium_kernel/opium_kernel.0.17.0/opam | 2 +- packages/pgx/pgx.0.1/opam | 2 +- packages/pgx_async/pgx_async.0.1/opam | 2 +- packages/pgx_lwt/pgx_lwt.0.1/opam | 2 +- packages/pgx_unix/pgx_unix.0.1/opam | 2 +- packages/piqilib/piqilib.0.6.12/opam | 2 +- packages/piqilib/piqilib.0.6.13/opam | 2 +- packages/piqilib/piqilib.0.6.14/opam | 2 +- packages/plotkicadsch/plotkicadsch.0.1.4/opam | 2 +- packages/plotkicadsch/plotkicadsch.0.2.0/opam | 2 +- packages/plotkicadsch/plotkicadsch.0.3.0/opam | 2 +- packages/plotkicadsch/plotkicadsch.0.4.0/opam | 2 +- packages/ppx_relit/ppx_relit.0.1/opam | 2 +- packages/ppx_relit/ppx_relit.0.2.0/opam | 2 +- packages/relit_helper/relit_helper.0.1/opam | 2 +- packages/relit_helper/relit_helper.0.2.0/opam | 2 +- packages/websocket/websocket.2.10/opam | 2 +- packages/websocket/websocket.2.12/opam | 2 +- packages/ws/ws.0.1/opam | 2 +- 143 files changed, 145 insertions(+), 146 deletions(-) diff --git a/packages/aws-s3/aws-s3.4.0.0/opam b/packages/aws-s3/aws-s3.4.0.0/opam index 3ecae121de9..e07035daae7 100644 --- a/packages/aws-s3/aws-s3.4.0.0/opam +++ b/packages/aws-s3/aws-s3.4.0.0/opam @@ -23,7 +23,7 @@ depends: [ "ppx_protocol_conv_json" "cmdliner" "ppx_inline_test" {< "v0.12"} - "base64" + "base64" {< "3.0.0"} ] synopsis: "Ocaml library for accessing Amazon S3" description: """ diff --git a/packages/aws-s3/aws-s3.4.0.1/opam b/packages/aws-s3/aws-s3.4.0.1/opam index 8fcfbfe025b..3f67df52f1f 100644 --- a/packages/aws-s3/aws-s3.4.0.1/opam +++ b/packages/aws-s3/aws-s3.4.0.1/opam @@ -23,7 +23,7 @@ depends: [ "ppx_protocol_conv_json" "cmdliner" "ppx_inline_test" {< "v0.12"} - "base64" + "base64" {< "3.0.0"} ] synopsis: "Ocaml library for accessing Amazon S3" description: """ diff --git a/packages/aws-s3/aws-s3.4.1.0/opam b/packages/aws-s3/aws-s3.4.1.0/opam index 5182084f0fc..f10e0941c53 100644 --- a/packages/aws-s3/aws-s3.4.1.0/opam +++ b/packages/aws-s3/aws-s3.4.1.0/opam @@ -23,7 +23,7 @@ depends: [ "ppx_protocol_conv_json" "cmdliner" "ppx_inline_test" {< "v0.12"} - "base64" + "base64" {< "3.0.0"} ] synopsis: "Ocaml library for accessing Amazon S3" description: """ diff --git a/packages/aws-s3/aws-s3.4.2.0/opam b/packages/aws-s3/aws-s3.4.2.0/opam index cb6799a905c..362a647de5e 100644 --- a/packages/aws-s3/aws-s3.4.2.0/opam +++ b/packages/aws-s3/aws-s3.4.2.0/opam @@ -24,7 +24,7 @@ depends: [ "ppx_protocol_conv_json" "cmdliner" "ppx_inline_test" {< "v0.12"} - "base64" + "base64" {< "3.0.0"} ] synopsis: "Ocaml library for accessing Amazon S3" description: """ diff --git a/packages/biocaml/biocaml.0.8.0/opam b/packages/biocaml/biocaml.0.8.0/opam index d016876c4b1..a8ae23c2f6f 100644 --- a/packages/biocaml/biocaml.0.8.0/opam +++ b/packages/biocaml/biocaml.0.8.0/opam @@ -17,7 +17,7 @@ dev-repo: "git+https://github.com/biocaml/biocaml.git" build: ["jbuilder" "build" "-p" name "-j" jobs] depends: [ "ocaml" {>= "4.03.0" & < "4.06.0"} - "base64" + "base64" {< "3.0.0"} "ocamlfind" {build} "jbuilder" {build & >= "1.0+beta8"} "core_kernel" {>= "v0.9.1" & < "v0.11"} diff --git a/packages/biocaml/biocaml.0.9.0/opam b/packages/biocaml/biocaml.0.9.0/opam index 9083a092570..4d8316ea9dc 100644 --- a/packages/biocaml/biocaml.0.9.0/opam +++ b/packages/biocaml/biocaml.0.9.0/opam @@ -27,7 +27,7 @@ build: ["dune" "build" "-p" name "-j" jobs] depends: [ "ocaml" - "base64" + "base64" {< "3.0.0"} "dune" {build} "core_kernel" {>= "v0.11.0"} "sexplib" @@ -40,7 +40,6 @@ depends: [ "rresult" "uri" ] - depopts: [ "async" "core" diff --git a/packages/bulletml/bulletml.0.1.0/opam b/packages/bulletml/bulletml.0.1.0/opam index 8c48c26c727..9a035126c35 100644 --- a/packages/bulletml/bulletml.0.1.0/opam +++ b/packages/bulletml/bulletml.0.1.0/opam @@ -15,7 +15,7 @@ depends: [ "ocaml" {>= "4.02.2"} "ocamlfind" {build} "ounit" {with-test} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "re" "mparser" "alcotest" {with-test} diff --git a/packages/bulletml/bulletml.0.2.0/opam b/packages/bulletml/bulletml.0.2.0/opam index c99846b7ce1..ee5c7feeea5 100644 --- a/packages/bulletml/bulletml.0.2.0/opam +++ b/packages/bulletml/bulletml.0.2.0/opam @@ -15,7 +15,7 @@ depends: [ "ocaml" {>= "4.02.2"} "ocamlfind" {build} "ounit" {with-test} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "re" "mparser" "alcotest" diff --git a/packages/capnp-rpc-lwt/capnp-rpc-lwt.0.2/opam b/packages/capnp-rpc-lwt/capnp-rpc-lwt.0.2/opam index 933834c8fc6..b6cc54e7773 100644 --- a/packages/capnp-rpc-lwt/capnp-rpc-lwt.0.2/opam +++ b/packages/capnp-rpc-lwt/capnp-rpc-lwt.0.2/opam @@ -23,7 +23,7 @@ depends: [ "tls" {>= "0.8.0" & < "0.9.0"} "mirage-kv-lwt" "mirage-clock" - "base64" + "base64" {< "3.0.0"} "uri" {>= "1.6.0"} "jbuilder" {build & >= "1.0+beta10"} "alcotest" {with-test} diff --git a/packages/capnp-rpc-lwt/capnp-rpc-lwt.0.3.1/opam b/packages/capnp-rpc-lwt/capnp-rpc-lwt.0.3.1/opam index e661253e7cd..9fd650368fc 100644 --- a/packages/capnp-rpc-lwt/capnp-rpc-lwt.0.3.1/opam +++ b/packages/capnp-rpc-lwt/capnp-rpc-lwt.0.3.1/opam @@ -23,7 +23,7 @@ depends: [ "tls" {>= "0.8.0"} "mirage-kv-lwt" "mirage-clock" - "base64" + "base64" {< "3.0.0"} "uri" {>= "1.6.0"} "ptime" "asn1-combinators" {>= "0.2.0"} diff --git a/packages/capnp-rpc-lwt/capnp-rpc-lwt.0.3/opam b/packages/capnp-rpc-lwt/capnp-rpc-lwt.0.3/opam index 4fa4d6d2d03..3c7fc91b08b 100644 --- a/packages/capnp-rpc-lwt/capnp-rpc-lwt.0.3/opam +++ b/packages/capnp-rpc-lwt/capnp-rpc-lwt.0.3/opam @@ -23,7 +23,7 @@ depends: [ "tls" {>= "0.8.0" & < "0.9.0"} "mirage-kv-lwt" "mirage-clock" - "base64" + "base64" {< "3.0.0"} "uri" {>= "1.6.0"} "jbuilder" {build & >= "1.0+beta10"} "alcotest-lwt" {with-test} diff --git a/packages/coclobas/coclobas.0.0.0/opam b/packages/coclobas/coclobas.0.0.0/opam index b7bfa40d5d3..dfd2c9eeca6 100644 --- a/packages/coclobas/coclobas.0.0.0/opam +++ b/packages/coclobas/coclobas.0.0.0/opam @@ -26,7 +26,7 @@ depends: [ "ppx_deriving" {< "4.2"} "ppx_deriving_yojson" {>= "3.0"} "uuidm" - "base64" + "base64" {< "3.0.0"} "odate" ] depopts: "ketrew" diff --git a/packages/coclobas/coclobas.0.0.1/opam b/packages/coclobas/coclobas.0.0.1/opam index def2441316c..7ed60a73980 100644 --- a/packages/coclobas/coclobas.0.0.1/opam +++ b/packages/coclobas/coclobas.0.0.1/opam @@ -26,7 +26,7 @@ depends: [ "ppx_deriving" {< "4.2"} "ppx_deriving_yojson" {>= "3.0"} "uuidm" - "base64" + "base64" {< "3.0.0"} "odate" ] depopts: "ketrew" diff --git a/packages/coclobas/coclobas.0.0.2/opam b/packages/coclobas/coclobas.0.0.2/opam index eab66e84141..6a3372f8e4b 100644 --- a/packages/coclobas/coclobas.0.0.2/opam +++ b/packages/coclobas/coclobas.0.0.2/opam @@ -29,7 +29,7 @@ depends: [ "ppx_deriving" {< "4.2"} "ppx_deriving_yojson" {>= "3.0"} "uuidm" - "base64" + "base64" {< "3.0.0"} "odate" ] depopts: [ diff --git a/packages/cohttp/cohttp.0.15.0/opam b/packages/cohttp/cohttp.0.15.0/opam index a09073a3ab4..6fa69005113 100644 --- a/packages/cohttp/cohttp.0.15.0/opam +++ b/packages/cohttp/cohttp.0.15.0/opam @@ -36,7 +36,7 @@ depends: [ "sexplib" {>= "109.53.00" & < "113.01.00"} "conduit" {>= "0.7.0" & < "0.16.0"} "stringext" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "ounit" {with-test} "ocamlbuild" {build} ] diff --git a/packages/cohttp/cohttp.0.15.1/opam b/packages/cohttp/cohttp.0.15.1/opam index 2abe23b524d..a212f69d60f 100644 --- a/packages/cohttp/cohttp.0.15.1/opam +++ b/packages/cohttp/cohttp.0.15.1/opam @@ -39,7 +39,7 @@ depends: [ "sexplib" {>= "109.53.00" & < "113.01.00"} "conduit" {>= "0.7.0" & < "0.16.0"} "stringext" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "ounit" {with-test} "ocamlbuild" {build} ] diff --git a/packages/cohttp/cohttp.0.15.2/opam b/packages/cohttp/cohttp.0.15.2/opam index e78b8e935d2..153295948a5 100644 --- a/packages/cohttp/cohttp.0.15.2/opam +++ b/packages/cohttp/cohttp.0.15.2/opam @@ -38,7 +38,7 @@ depends: [ "sexplib" {>= "109.53.00" & < "113.01.00"} "conduit" {>= "0.7.0" & < "0.16.0"} "stringext" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "ounit" {with-test} "oasis" {build & >= "0.4.4"} "ocamlbuild" {build} diff --git a/packages/cohttp/cohttp.0.16.0/opam b/packages/cohttp/cohttp.0.16.0/opam index fc5fdac351b..c03cb6ddce6 100644 --- a/packages/cohttp/cohttp.0.16.0/opam +++ b/packages/cohttp/cohttp.0.16.0/opam @@ -37,7 +37,7 @@ depends: [ "sexplib" {>= "109.53.00" & < "113.01.00"} "conduit" {>= "0.7.0" & < "0.16.0"} "stringext" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "magic-mime" "ounit" {with-test} "ocamlbuild" {build} diff --git a/packages/cohttp/cohttp.0.16.1/opam b/packages/cohttp/cohttp.0.16.1/opam index a158cca20c8..e3f8300d999 100644 --- a/packages/cohttp/cohttp.0.16.1/opam +++ b/packages/cohttp/cohttp.0.16.1/opam @@ -37,7 +37,7 @@ depends: [ "sexplib" {>= "109.53.00" & < "113.01.00"} "conduit" {>= "0.7.0" & < "0.16.0"} "stringext" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "magic-mime" "ounit" {with-test} "ocamlbuild" {build} diff --git a/packages/cohttp/cohttp.0.17.0/opam b/packages/cohttp/cohttp.0.17.0/opam index d2ef889e194..4c5189da724 100644 --- a/packages/cohttp/cohttp.0.17.0/opam +++ b/packages/cohttp/cohttp.0.17.0/opam @@ -41,7 +41,7 @@ depends: [ "sexplib" {>= "109.53.00" & < "113.01.00"} "conduit" {>= "0.7.0" & < "0.16.0"} "stringext" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "magic-mime" "ounit" {with-test} "alcotest" {with-test} diff --git a/packages/cohttp/cohttp.0.17.1/opam b/packages/cohttp/cohttp.0.17.1/opam index fbc28c2ef4b..a84d54cdf30 100644 --- a/packages/cohttp/cohttp.0.17.1/opam +++ b/packages/cohttp/cohttp.0.17.1/opam @@ -41,7 +41,7 @@ depends: [ "sexplib" {>= "109.53.00" & < "113.01.00"} "conduit" {>= "0.7.0" & < "0.16.0"} "stringext" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "magic-mime" "ounit" {with-test} "alcotest" {with-test} diff --git a/packages/cohttp/cohttp.0.17.2/opam b/packages/cohttp/cohttp.0.17.2/opam index 2e8cf542f91..45159eb95a4 100644 --- a/packages/cohttp/cohttp.0.17.2/opam +++ b/packages/cohttp/cohttp.0.17.2/opam @@ -37,7 +37,7 @@ depends: [ "sexplib" {>= "109.53.00" & < "113.01.00"} "conduit" {>= "0.7.0" & < "0.16.0"} "stringext" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "magic-mime" "ounit" {with-test} "alcotest" {with-test} diff --git a/packages/cohttp/cohttp.0.18.0/opam b/packages/cohttp/cohttp.0.18.0/opam index b8bc6bb080c..a2b5d71db01 100644 --- a/packages/cohttp/cohttp.0.18.0/opam +++ b/packages/cohttp/cohttp.0.18.0/opam @@ -37,7 +37,7 @@ depends: [ "sexplib" {>= "109.53.00" & < "113.01.00"} "conduit" {>= "0.7.0" & < "0.16.0"} "stringext" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "magic-mime" "ounit" {with-test} "alcotest" {with-test} diff --git a/packages/cohttp/cohttp.0.18.1/opam b/packages/cohttp/cohttp.0.18.1/opam index 6c9c9ef44b3..03177bd16d9 100644 --- a/packages/cohttp/cohttp.0.18.1/opam +++ b/packages/cohttp/cohttp.0.18.1/opam @@ -37,7 +37,7 @@ depends: [ "sexplib" {>= "109.53.00" & < "113.01.00"} "conduit" {>= "0.7.0" & < "0.16.0"} "stringext" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "magic-mime" "ounit" {with-test} "alcotest" {with-test} diff --git a/packages/cohttp/cohttp.0.18.2/opam b/packages/cohttp/cohttp.0.18.2/opam index 2bccfe1e13b..c545f7019ea 100644 --- a/packages/cohttp/cohttp.0.18.2/opam +++ b/packages/cohttp/cohttp.0.18.2/opam @@ -37,7 +37,7 @@ depends: [ "sexplib" {>= "109.53.00" & < "113.01.00"} "conduit" {>= "0.7.0" & < "0.16.0"} "stringext" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "magic-mime" "ounit" {with-test} "alcotest" {with-test} diff --git a/packages/cohttp/cohttp.0.18.3/opam b/packages/cohttp/cohttp.0.18.3/opam index 841f3f536b5..4ddbc997aa7 100644 --- a/packages/cohttp/cohttp.0.18.3/opam +++ b/packages/cohttp/cohttp.0.18.3/opam @@ -37,7 +37,7 @@ depends: [ "sexplib" {>= "109.53.00" & < "113.01.00"} "conduit" {>= "0.7.0" & < "0.16.0"} "stringext" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "magic-mime" "ounit" {with-test} "alcotest" {with-test} diff --git a/packages/cohttp/cohttp.0.19.0/opam b/packages/cohttp/cohttp.0.19.0/opam index 746d352b033..f18ea004bf1 100644 --- a/packages/cohttp/cohttp.0.19.0/opam +++ b/packages/cohttp/cohttp.0.19.0/opam @@ -40,7 +40,7 @@ depends: [ "sexplib" {>= "109.53.00" & < "113.01.00"} "conduit" {>= "0.7.0" & < "0.16.0"} "stringext" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "magic-mime" "ounit" {with-test} "alcotest" {with-test} diff --git a/packages/cohttp/cohttp.0.19.1/opam b/packages/cohttp/cohttp.0.19.1/opam index 832d4e16918..4c63ff5d709 100644 --- a/packages/cohttp/cohttp.0.19.1/opam +++ b/packages/cohttp/cohttp.0.19.1/opam @@ -34,7 +34,7 @@ depends: [ "sexplib" {>= "109.53.00" & < "113.01.00"} "conduit" {>= "0.7.0" & < "0.16.0"} "stringext" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "magic-mime" "ounit" {with-test} "alcotest" {with-test} diff --git a/packages/cohttp/cohttp.0.19.2/opam b/packages/cohttp/cohttp.0.19.2/opam index 88a3dc19807..7e1fd2399ef 100644 --- a/packages/cohttp/cohttp.0.19.2/opam +++ b/packages/cohttp/cohttp.0.19.2/opam @@ -34,7 +34,7 @@ depends: [ "sexplib" {>= "109.53.00" & < "113.01.00"} "conduit" {>= "0.7.0" & < "0.16.0"} "stringext" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "magic-mime" "ounit" {with-test} "alcotest" {with-test} diff --git a/packages/cohttp/cohttp.0.19.3/opam b/packages/cohttp/cohttp.0.19.3/opam index a5444f6cdf8..73bf05e2e23 100644 --- a/packages/cohttp/cohttp.0.19.3/opam +++ b/packages/cohttp/cohttp.0.19.3/opam @@ -34,7 +34,7 @@ depends: [ "sexplib" {>= "109.53.00" & < "113.01.00"} "conduit" {>= "0.7.0" & < "0.16.0"} "stringext" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "magic-mime" "ounit" {with-test} "alcotest" {with-test} diff --git a/packages/cohttp/cohttp.0.20.0/opam b/packages/cohttp/cohttp.0.20.0/opam index 81153ce6a61..1aac53a8184 100644 --- a/packages/cohttp/cohttp.0.20.0/opam +++ b/packages/cohttp/cohttp.0.20.0/opam @@ -38,7 +38,7 @@ depends: [ "pa_fields_conv" "conduit" {>= "0.11.0" & < "0.16.0"} "stringext" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "magic-mime" "ounit" {with-test} "alcotest" {with-test} diff --git a/packages/cohttp/cohttp.0.20.1/opam b/packages/cohttp/cohttp.0.20.1/opam index 9bb73eedb0c..f723d6b3ff1 100644 --- a/packages/cohttp/cohttp.0.20.1/opam +++ b/packages/cohttp/cohttp.0.20.1/opam @@ -38,7 +38,7 @@ depends: [ "ppx_deriving" "ppx_sexp_conv" {< "v0.12"} "stringext" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "magic-mime" "ounit" {with-test} "alcotest" {with-test} diff --git a/packages/cohttp/cohttp.0.20.2/opam b/packages/cohttp/cohttp.0.20.2/opam index 4464797d6e1..6bac66a4eec 100644 --- a/packages/cohttp/cohttp.0.20.2/opam +++ b/packages/cohttp/cohttp.0.20.2/opam @@ -39,7 +39,7 @@ depends: [ "ppx_deriving" "ppx_sexp_conv" {< "v0.12"} "stringext" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "magic-mime" "ounit" {with-test} "alcotest" {with-test} diff --git a/packages/cohttp/cohttp.0.21.0/opam b/packages/cohttp/cohttp.0.21.0/opam index 3f2056a9d91..508a7b70cca 100644 --- a/packages/cohttp/cohttp.0.21.0/opam +++ b/packages/cohttp/cohttp.0.21.0/opam @@ -38,7 +38,7 @@ depends: [ "ppx_deriving" "ppx_sexp_conv" {< "v0.12"} "stringext" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "magic-mime" "ounit" {with-test} "alcotest" {with-test} diff --git a/packages/cohttp/cohttp.0.21.1/opam b/packages/cohttp/cohttp.0.21.1/opam index 3275e07aaf2..9845f58fb6a 100644 --- a/packages/cohttp/cohttp.0.21.1/opam +++ b/packages/cohttp/cohttp.0.21.1/opam @@ -39,7 +39,7 @@ depends: [ "ppx_deriving" "ppx_sexp_conv" {< "v0.12"} "stringext" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "magic-mime" "ounit" {with-test} "alcotest" {with-test} diff --git a/packages/cohttp/cohttp.0.22.0/opam b/packages/cohttp/cohttp.0.22.0/opam index b38ef7a09d0..207219e2e34 100644 --- a/packages/cohttp/cohttp.0.22.0/opam +++ b/packages/cohttp/cohttp.0.22.0/opam @@ -39,7 +39,7 @@ depends: [ "ppx_deriving" "ppx_sexp_conv" {< "v0.12"} "stringext" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "magic-mime" "fmt" "logs" diff --git a/packages/cohttp/cohttp.0.99.0/opam b/packages/cohttp/cohttp.0.99.0/opam index 51c4df164f4..aa161e07fc6 100644 --- a/packages/cohttp/cohttp.0.99.0/opam +++ b/packages/cohttp/cohttp.0.99.0/opam @@ -30,7 +30,7 @@ depends: [ "ppx_fields_conv" {>= "v0.9.0" & < "v0.12"} "ppx_sexp_conv" {>= "v0.9.0" & < "v0.12"} "stringext" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "magic-mime" "fmt" "logs" diff --git a/packages/cohttp/cohttp.1.0.0/opam b/packages/cohttp/cohttp.1.0.0/opam index 1fc43d2a945..86598ba8a96 100644 --- a/packages/cohttp/cohttp.1.0.0/opam +++ b/packages/cohttp/cohttp.1.0.0/opam @@ -30,7 +30,7 @@ depends: [ "ppx_fields_conv" {>= "v0.9.0" & < "v0.12"} "ppx_sexp_conv" {>= "v0.9.0" & < "v0.12"} "stringext" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "fmt" {with-test} "jsonm" {build} "alcotest" {with-test} diff --git a/packages/cohttp/cohttp.1.0.2/opam b/packages/cohttp/cohttp.1.0.2/opam index 63bf2c1daef..d2ae5b6b6b1 100644 --- a/packages/cohttp/cohttp.1.0.2/opam +++ b/packages/cohttp/cohttp.1.0.2/opam @@ -31,7 +31,7 @@ depends: [ "ppx_fields_conv" {>= "v0.9.0" & < "v0.12"} "ppx_sexp_conv" {>= "v0.9.0" & < "v0.12"} "stringext" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "fmt" {with-test} "jsonm" {build} "alcotest" {with-test} diff --git a/packages/cohttp/cohttp.1.1.0/opam b/packages/cohttp/cohttp.1.1.0/opam index f87c9174fac..b780f82005f 100644 --- a/packages/cohttp/cohttp.1.1.0/opam +++ b/packages/cohttp/cohttp.1.1.0/opam @@ -30,7 +30,7 @@ depends: [ "ppx_fields_conv" {>= "v0.9.0" & < "v0.12"} "ppx_sexp_conv" {>= "v0.9.0" & < "v0.12"} "stringext" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "fmt" {with-test} "jsonm" {build} "alcotest" {with-test} diff --git a/packages/cohttp/cohttp.1.1.1/opam b/packages/cohttp/cohttp.1.1.1/opam index 566ce82f15e..036c27a93f3 100644 --- a/packages/cohttp/cohttp.1.1.1/opam +++ b/packages/cohttp/cohttp.1.1.1/opam @@ -23,7 +23,7 @@ depends: [ "ppx_fields_conv" {>= "v0.9.0" & < "v0.12"} "ppx_sexp_conv" {>= "v0.9.0" & < "v0.12"} "stringext" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "fmt" {with-test} "jsonm" {build} "alcotest" {with-test} diff --git a/packages/cohttp/cohttp.1.2.0/opam b/packages/cohttp/cohttp.1.2.0/opam index 955d05085c0..03c5ea9a778 100644 --- a/packages/cohttp/cohttp.1.2.0/opam +++ b/packages/cohttp/cohttp.1.2.0/opam @@ -50,7 +50,7 @@ depends: [ "ppx_fields_conv" {>= "v0.9.0" & < "v0.12"} "ppx_sexp_conv" {>= "v0.9.0" & < "v0.12"} "stringext" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "fmt" {with-test} "jsonm" {build} "alcotest" {with-test} @@ -65,4 +65,4 @@ url { src: "https://github.com/mirage/ocaml-cohttp/releases/download/v1.2.0/cohttp-v1.2.0.tbz" checksum: "md5=7aa3d4582848afff9a62f866b23173e1" -} \ No newline at end of file +} diff --git a/packages/dns/dns.0.12.0/opam b/packages/dns/dns.0.12.0/opam index 6ec404bc2f3..85a0020edf9 100644 --- a/packages/dns/dns.0.12.0/opam +++ b/packages/dns/dns.0.12.0/opam @@ -37,7 +37,7 @@ depends: [ "re" "cmdliner" "ipaddr" {>= "2.2.0" & < "2.8.0"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "ocamlbuild" {build} ] depopts: [ diff --git a/packages/dns/dns.0.13.0/opam b/packages/dns/dns.0.13.0/opam index 4b56804b086..49388e81a71 100644 --- a/packages/dns/dns.0.13.0/opam +++ b/packages/dns/dns.0.13.0/opam @@ -39,7 +39,7 @@ depends: [ "re" "cmdliner" "ipaddr" {>= "2.2.0" & < "2.8.0"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "ounit" "pcap-format" {with-test} "ocamlbuild" {build} diff --git a/packages/dns/dns.0.14.0/opam b/packages/dns/dns.0.14.0/opam index 8e403700295..221d274802a 100644 --- a/packages/dns/dns.0.14.0/opam +++ b/packages/dns/dns.0.14.0/opam @@ -39,7 +39,7 @@ depends: [ "re" "cmdliner" "ipaddr" {>= "2.2.0" & < "2.8.0"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "ounit" "pcap-format" {with-test} "ocamlbuild" {build} diff --git a/packages/dns/dns.0.14.1/opam b/packages/dns/dns.0.14.1/opam index 054f3ccd832..6015320c5ba 100644 --- a/packages/dns/dns.0.14.1/opam +++ b/packages/dns/dns.0.14.1/opam @@ -34,7 +34,7 @@ depends: [ "re" "cmdliner" "ipaddr" {>= "2.2.0" & < "2.8.0"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "ounit" "pcap-format" {with-test} "ocamlbuild" {build} diff --git a/packages/dns/dns.0.15.0/opam b/packages/dns/dns.0.15.0/opam index b3a96b383c7..a4d935557be 100644 --- a/packages/dns/dns.0.15.0/opam +++ b/packages/dns/dns.0.15.0/opam @@ -37,7 +37,7 @@ depends: [ "cmdliner" "ipaddr" {>= "2.6.0" & < "2.8.0"} "uri" {>= "1.7.0" & < "1.9.4"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "ounit" "pcap-format" {with-test} "mirage-profile" diff --git a/packages/dns/dns.0.15.1/opam b/packages/dns/dns.0.15.1/opam index 262a66747f4..2b5ae601742 100644 --- a/packages/dns/dns.0.15.1/opam +++ b/packages/dns/dns.0.15.1/opam @@ -57,7 +57,7 @@ depends: [ "cmdliner" "ipaddr" {>= "2.6.0" & < "2.8.0"} "uri" {>= "1.7.0" & < "1.9.4"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "ounit" "pcap-format" {with-test} "mirage-profile" diff --git a/packages/dns/dns.0.15.2/opam b/packages/dns/dns.0.15.2/opam index 1597f19bbef..2dbd2a7893a 100644 --- a/packages/dns/dns.0.15.2/opam +++ b/packages/dns/dns.0.15.2/opam @@ -55,7 +55,7 @@ depends: [ "cmdliner" "ipaddr" {>= "2.6.0" & < "2.8.0"} "uri" {>= "1.7.0" & < "1.9.4"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "mirage-profile" "ounit" {with-test} "pcap-format" {with-test} diff --git a/packages/dns/dns.0.15.3/opam b/packages/dns/dns.0.15.3/opam index 73f59df0580..66a16a96d99 100644 --- a/packages/dns/dns.0.15.3/opam +++ b/packages/dns/dns.0.15.3/opam @@ -57,7 +57,7 @@ depends: [ "cmdliner" "ipaddr" {>= "2.6.0" & < "2.8.0"} "uri" {>= "1.7.0" & < "1.9.4"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "mirage-profile" "ounit" {with-test} "pcap-format" {with-test} diff --git a/packages/dns/dns.0.16.0/opam b/packages/dns/dns.0.16.0/opam index f0974d87ecc..4bbf4dc992c 100644 --- a/packages/dns/dns.0.16.0/opam +++ b/packages/dns/dns.0.16.0/opam @@ -55,7 +55,7 @@ depends: [ "cmdliner" "ipaddr" {>= "2.6.0" & < "2.8.0"} "uri" {>= "1.7.0" & < "1.9.4"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "mirage-profile" "ounit" {with-test} "pcap-format" {with-test} diff --git a/packages/dns/dns.0.17.0/opam b/packages/dns/dns.0.17.0/opam index 5ed2f734a54..0c9aa233398 100644 --- a/packages/dns/dns.0.17.0/opam +++ b/packages/dns/dns.0.17.0/opam @@ -56,7 +56,7 @@ depends: [ "cmdliner" "ipaddr" {>= "2.6.0" & < "2.8.0"} "uri" {>= "1.7.0" & < "1.9.4"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "mirage-profile" "hashcons" "ounit" {with-test} diff --git a/packages/dns/dns.0.18.0/opam b/packages/dns/dns.0.18.0/opam index fda1aacd8c1..f5984222178 100644 --- a/packages/dns/dns.0.18.0/opam +++ b/packages/dns/dns.0.18.0/opam @@ -57,7 +57,7 @@ depends: [ "cmdliner" "ipaddr" {>= "2.6.0" & < "2.8.0"} "uri" {>= "1.7.0" & < "1.9.4"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "mirage-profile" "hashcons" "ounit" {with-test} diff --git a/packages/dns/dns.0.18.1/opam b/packages/dns/dns.0.18.1/opam index 9bd55cd6e76..e9d63bfdd3d 100644 --- a/packages/dns/dns.0.18.1/opam +++ b/packages/dns/dns.0.18.1/opam @@ -40,7 +40,7 @@ depends: [ "cmdliner" "ipaddr" {>= "2.6.0" & < "2.8.0"} "uri" {>= "1.7.0" & < "1.9.4"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "mirage-profile" "hashcons" "ounit" {with-test} diff --git a/packages/dns/dns.0.19.0/opam b/packages/dns/dns.0.19.0/opam index c7f37946d65..40014eca9af 100644 --- a/packages/dns/dns.0.19.0/opam +++ b/packages/dns/dns.0.19.0/opam @@ -58,7 +58,7 @@ depends: [ "cmdliner" "ipaddr" {>= "2.6.0" & < "2.8.0"} "uri" {>= "1.7.0" & < "1.9.4"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "mirage-profile" "hashcons" "duration" diff --git a/packages/dns/dns.0.19.1/opam b/packages/dns/dns.0.19.1/opam index 41caec63003..98914379a46 100644 --- a/packages/dns/dns.0.19.1/opam +++ b/packages/dns/dns.0.19.1/opam @@ -64,7 +64,7 @@ depends: [ "re" "ipaddr" {>= "2.6.0" & < "2.8.0"} "uri" {>= "1.7.0" & < "1.9.4"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "hashcons" "result" "lwt" {with-test} diff --git a/packages/dns/dns.0.20.0/opam b/packages/dns/dns.0.20.0/opam index 3fe7fd9ecc0..54e2228adbb 100644 --- a/packages/dns/dns.0.20.0/opam +++ b/packages/dns/dns.0.20.0/opam @@ -64,7 +64,7 @@ depends: [ "re" "ipaddr" {>= "2.6.0" & < "2.8.0"} "uri" {>= "1.7.0" & < "1.9.4"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "hashcons" "result" "lwt" {with-test} diff --git a/packages/dns/dns.0.20.1/opam b/packages/dns/dns.0.20.1/opam index 67f078f1920..9e3aa9cc701 100644 --- a/packages/dns/dns.0.20.1/opam +++ b/packages/dns/dns.0.20.1/opam @@ -66,7 +66,7 @@ depends: [ "re" "ipaddr" {>= "2.6.0" & < "2.8.0"} "uri" {>= "1.7.0" & < "1.9.4"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "hashcons" "result" "lwt" {with-test & < "4.0.0"} diff --git a/packages/dns/dns.1.0.0/opam b/packages/dns/dns.1.0.0/opam index d7982d95346..4c4f406ee67 100644 --- a/packages/dns/dns.1.0.0/opam +++ b/packages/dns/dns.1.0.0/opam @@ -26,7 +26,7 @@ depends: [ "re" "ipaddr" {>= "2.6.0"} "uri" {>= "1.7.0"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "hashcons" "result" ] diff --git a/packages/dns/dns.1.0.1/opam b/packages/dns/dns.1.0.1/opam index b3a99f64718..059266234c8 100644 --- a/packages/dns/dns.1.0.1/opam +++ b/packages/dns/dns.1.0.1/opam @@ -26,7 +26,7 @@ depends: [ "re" "ipaddr" {>= "2.6.0"} "uri" {>= "1.7.0"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "hashcons" "result" ] diff --git a/packages/dns/dns.1.1.0/opam b/packages/dns/dns.1.1.0/opam index c41303b1d43..8eec4bdbbb5 100644 --- a/packages/dns/dns.1.1.0/opam +++ b/packages/dns/dns.1.1.0/opam @@ -34,10 +34,10 @@ depends: [ "dune" {build} "cstruct" {>= "3.0.2"} "ppx_cstruct" - "re" {>="1.7.2"} + "re" {>= "1.7.2"} "ipaddr" {>= "2.6.0"} "uri" {>= "1.7.0"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "hashcons" "result" ] diff --git a/packages/elf2json/elf2json.1.0.0/opam b/packages/elf2json/elf2json.1.0.0/opam index baed27b012a..e23f8d0df33 100644 --- a/packages/elf2json/elf2json.1.0.0/opam +++ b/packages/elf2json/elf2json.1.0.0/opam @@ -16,7 +16,7 @@ install: ["ocaml" "setup.ml" "-install"] remove: ["ocaml" "%{etc}%/elf2json/_oasis_remove_.ml" "%{etc}%/elf2json"] depends: [ "ocaml" - "base64" {build & >= "2.0.0"} + "base64" {build & >= "2.0.0" & < "3.0.0"} "jsonm" {build} "ocamlfind" {build} "rdr" {>= "2.0.0"} diff --git a/packages/frenetic/frenetic.3.3.0/opam b/packages/frenetic/frenetic.3.3.0/opam index 83268353f7e..55ec9f1cc72 100644 --- a/packages/frenetic/frenetic.3.3.0/opam +++ b/packages/frenetic/frenetic.3.3.0/opam @@ -20,7 +20,7 @@ depends: [ "ulex" {>= "1.1"} "ipaddr" {>= "2.5.0"} "yojson" {>= "1.2.0"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "cohttp" {>= "0.10.0"} "quickcheck" "ounit" {with-test} diff --git a/packages/frenetic/frenetic.3.4.0/opam b/packages/frenetic/frenetic.3.4.0/opam index 07214d3af7f..18278fcc4b8 100644 --- a/packages/frenetic/frenetic.3.4.0/opam +++ b/packages/frenetic/frenetic.3.4.0/opam @@ -20,7 +20,7 @@ depends: [ "ulex" {>= "1.1"} "ipaddr" {>= "2.5.0"} "yojson" {>= "1.2.0"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "cohttp" {>= "0.10.0"} "quickcheck" "ounit" {with-test} diff --git a/packages/frenetic/frenetic.3.4.1/opam b/packages/frenetic/frenetic.3.4.1/opam index 82d5abd3635..39b4cffa0d9 100644 --- a/packages/frenetic/frenetic.3.4.1/opam +++ b/packages/frenetic/frenetic.3.4.1/opam @@ -21,7 +21,7 @@ depends: [ "ulex" {>= "1.1"} "ipaddr" {>= "2.5.0"} "yojson" {>= "1.2.0"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "cohttp" {>= "0.10.0"} "quickcheck" "ounit" {with-test} diff --git a/packages/frenetic/frenetic.5.0.0/opam b/packages/frenetic/frenetic.5.0.0/opam index c53684a2f13..e73aa3316c9 100644 --- a/packages/frenetic/frenetic.5.0.0/opam +++ b/packages/frenetic/frenetic.5.0.0/opam @@ -17,7 +17,7 @@ depends: [ "odoc" {build} "async" {>= "0.9.0" & < "v0.10.0"} "async_extended" {>= "v0.9.0" & < "v0.10.0"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "cohttp" "cohttp-async" "core" {>= "v0.9.0" & < "v0.10.0"} diff --git a/packages/frenetic/frenetic.5.0.2/opam b/packages/frenetic/frenetic.5.0.2/opam index b6c8c771387..c156af4f995 100644 --- a/packages/frenetic/frenetic.5.0.2/opam +++ b/packages/frenetic/frenetic.5.0.2/opam @@ -17,7 +17,7 @@ depends: [ "odoc" {with-doc} "async" {>= "v0.10.0" & < "v0.11.0"} "async_extended" {>= "v0.10.0" & < "v0.11.0"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "cohttp" "cohttp-async" "core" {>= "v0.10.0" & < "v0.11.0"} diff --git a/packages/frenetic/frenetic.5.0.3/opam b/packages/frenetic/frenetic.5.0.3/opam index 114da81d0bc..af63479545a 100644 --- a/packages/frenetic/frenetic.5.0.3/opam +++ b/packages/frenetic/frenetic.5.0.3/opam @@ -17,7 +17,7 @@ depends: [ "odoc" {with-doc} "async" {>= "v0.11.0" & < "v0.12.0"} "async_extended" {>= "v0.11.0" & < "v0.12.0"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "cohttp" "cohttp-async" "core" {>= "v0.11.0" & < "v0.12.0"} diff --git a/packages/imap/imap.1.0/opam b/packages/imap/imap.1.0/opam index 5a774933815..993b319db61 100644 --- a/packages/imap/imap.1.0/opam +++ b/packages/imap/imap.1.0/opam @@ -15,7 +15,7 @@ remove: ["ocamlfind" "remove" "imap"] depends: [ "ocaml" {>= "4.01.0"} "uint" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "uutf" {<= "0.9.4"} "ocamlbuild" {build} ] diff --git a/packages/imap/imap.1.1.0/opam b/packages/imap/imap.1.1.0/opam index 1486375ae3b..082995436c9 100644 --- a/packages/imap/imap.1.1.0/opam +++ b/packages/imap/imap.1.1.0/opam @@ -12,7 +12,7 @@ build: [ depends: [ "ocaml" {>= "4.01.0"} "uint" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "uutf" {<= "0.9.4"} "ocamlbuild" {build} ] diff --git a/packages/imap/imap.1.1.1/opam b/packages/imap/imap.1.1.1/opam index afb99b89e08..756a180e64d 100644 --- a/packages/imap/imap.1.1.1/opam +++ b/packages/imap/imap.1.1.1/opam @@ -12,7 +12,7 @@ build: [ depends: [ "ocaml" {>= "4.01.0"} "uint" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "uutf" {<= "0.9.4"} "ocamlbuild" {build} ] diff --git a/packages/irmin-indexeddb/irmin-indexeddb.0.1/opam b/packages/irmin-indexeddb/irmin-indexeddb.0.1/opam index 7f0be168532..19ac266c67d 100644 --- a/packages/irmin-indexeddb/irmin-indexeddb.0.1/opam +++ b/packages/irmin-indexeddb/irmin-indexeddb.0.1/opam @@ -10,7 +10,7 @@ install: [make "install"] remove: ["ocamlfind" "remove" "irmin-indexeddb"] depends: [ "ocaml" - "base64" + "base64" {< "3.0.0"} "irmin" {>= "0.9.5" & <= "0.9.8"} "js_of_ocaml" {< "3.0"} "lwt" diff --git a/packages/irmin-indexeddb/irmin-indexeddb.0.2/opam b/packages/irmin-indexeddb/irmin-indexeddb.0.2/opam index 72dd4850a77..4ef4649b854 100644 --- a/packages/irmin-indexeddb/irmin-indexeddb.0.2/opam +++ b/packages/irmin-indexeddb/irmin-indexeddb.0.2/opam @@ -10,7 +10,7 @@ install: [make "install"] remove: ["ocamlfind" "remove" "irmin-indexeddb"] depends: [ "ocaml" - "base64" + "base64" {< "3.0.0"} "irmin" {>= "0.9.5" & < "0.10.0"} "js_of_ocaml" {< "3.0"} "lwt" diff --git a/packages/irmin-indexeddb/irmin-indexeddb.0.3/opam b/packages/irmin-indexeddb/irmin-indexeddb.0.3/opam index 2fea31e841e..e59a60ec8af 100644 --- a/packages/irmin-indexeddb/irmin-indexeddb.0.3/opam +++ b/packages/irmin-indexeddb/irmin-indexeddb.0.3/opam @@ -10,7 +10,7 @@ install: [make "install"] remove: ["ocamlfind" "remove" "irmin-indexeddb"] depends: [ "ocaml" - "base64" + "base64" {< "3.0.0"} "irmin" {>= "0.10.0" & < "0.11.0"} "cstruct" {>= "1.7.0"} "js_of_ocaml" {< "3.0"} diff --git a/packages/js_of_ocaml/js_of_ocaml.2.6/opam b/packages/js_of_ocaml/js_of_ocaml.2.6/opam index 62009be557b..eb8ac8e7d25 100644 --- a/packages/js_of_ocaml/js_of_ocaml.2.6/opam +++ b/packages/js_of_ocaml/js_of_ocaml.2.6/opam @@ -17,7 +17,7 @@ depends: [ "menhir" "cppo" "camlp4" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "base-no-ppx" | "ppx_tools" "ocamlbuild" ] diff --git a/packages/js_of_ocaml/js_of_ocaml.2.7/opam b/packages/js_of_ocaml/js_of_ocaml.2.7/opam index 64b2c7beeae..ff6b9dd1be1 100644 --- a/packages/js_of_ocaml/js_of_ocaml.2.7/opam +++ b/packages/js_of_ocaml/js_of_ocaml.2.7/opam @@ -17,7 +17,7 @@ depends: [ "menhir" "cppo" "camlp4" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "base-no-ppx" | "ppx_tools" "ocamlbuild" ] diff --git a/packages/js_of_ocaml/js_of_ocaml.2.8.1/opam b/packages/js_of_ocaml/js_of_ocaml.2.8.1/opam index 16840e8cae2..4834153284d 100644 --- a/packages/js_of_ocaml/js_of_ocaml.2.8.1/opam +++ b/packages/js_of_ocaml/js_of_ocaml.2.8.1/opam @@ -17,7 +17,7 @@ depends: [ "menhir" "cppo" {>= "1.1.0"} "camlp4" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "base-no-ppx" | "ppx_tools" "ocamlbuild" ] diff --git a/packages/js_of_ocaml/js_of_ocaml.2.8.2/opam b/packages/js_of_ocaml/js_of_ocaml.2.8.2/opam index fa9d1958d78..dad9144105d 100644 --- a/packages/js_of_ocaml/js_of_ocaml.2.8.2/opam +++ b/packages/js_of_ocaml/js_of_ocaml.2.8.2/opam @@ -16,7 +16,7 @@ depends: [ "menhir" "cppo" {>= "1.1.0"} "camlp4" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "base-no-ppx" | "ppx_tools" "ocamlbuild" "uchar" diff --git a/packages/js_of_ocaml/js_of_ocaml.2.8.3/opam b/packages/js_of_ocaml/js_of_ocaml.2.8.3/opam index c27ec19750b..ba9d6e79624 100644 --- a/packages/js_of_ocaml/js_of_ocaml.2.8.3/opam +++ b/packages/js_of_ocaml/js_of_ocaml.2.8.3/opam @@ -16,7 +16,7 @@ depends: [ "menhir" "cppo" {>= "1.1.0"} "camlp4" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "base-no-ppx" | "ppx_tools" "ocamlbuild" "uchar" diff --git a/packages/js_of_ocaml/js_of_ocaml.2.8.4/opam b/packages/js_of_ocaml/js_of_ocaml.2.8.4/opam index 9dae1519113..421bbda491f 100644 --- a/packages/js_of_ocaml/js_of_ocaml.2.8.4/opam +++ b/packages/js_of_ocaml/js_of_ocaml.2.8.4/opam @@ -16,7 +16,7 @@ depends: [ "menhir" "cppo" {>= "1.1.0"} "camlp4" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "base-no-ppx" | "ppx_tools" "ocamlbuild" "uchar" diff --git a/packages/js_of_ocaml/js_of_ocaml.2.8/opam b/packages/js_of_ocaml/js_of_ocaml.2.8/opam index 44dd1fd0dd3..b85e6b06a48 100644 --- a/packages/js_of_ocaml/js_of_ocaml.2.8/opam +++ b/packages/js_of_ocaml/js_of_ocaml.2.8/opam @@ -17,7 +17,7 @@ depends: [ "menhir" "cppo" {>= "1.1.0"} "camlp4" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "base-no-ppx" | "ppx_tools" "ocamlbuild" ] diff --git a/packages/jupyter/jupyter.0.0.0/opam b/packages/jupyter/jupyter.0.0.0/opam index 76ddffa8b82..34015abe4ba 100644 --- a/packages/jupyter/jupyter.0.0.0/opam +++ b/packages/jupyter/jupyter.0.0.0/opam @@ -30,7 +30,7 @@ depends: [ "base-threads" "base-unix" "uuidm" - "base64" + "base64" {< "3.0.0"} "lwt" {< "4.0.0"} "zmq" {>= "4.0-8" & < "5.0.0"} "lwt-zmq" {>= "2.1.0"} diff --git a/packages/jupyter/jupyter.0.1.0/opam b/packages/jupyter/jupyter.0.1.0/opam index 038a4c0f966..88ee23fa3b0 100644 --- a/packages/jupyter/jupyter.0.1.0/opam +++ b/packages/jupyter/jupyter.0.1.0/opam @@ -28,7 +28,7 @@ depends: [ "base-threads" "base-unix" "uuidm" - "base64" + "base64" {< "3.0.0"} "lwt" {< "4.0.0"} "zmq" {>= "4.0-8" & < "5.0.0"} "lwt-zmq" {>= "2.1.0"} diff --git a/packages/jupyter/jupyter.1.0.0/opam b/packages/jupyter/jupyter.1.0.0/opam index c6b37a96d8c..135678ff7e4 100644 --- a/packages/jupyter/jupyter.1.0.0/opam +++ b/packages/jupyter/jupyter.1.0.0/opam @@ -28,7 +28,7 @@ depends: [ "base-threads" "base-unix" "uuidm" - "base64" + "base64" {< "3.0.0"} "lwt" {< "4.0.0"} "stdint" {< "0.4.0"} "zmq" {>= "4.0-8" & < "5.0.0"} diff --git a/packages/jupyter/jupyter.1.0.1/opam b/packages/jupyter/jupyter.1.0.1/opam index bfb794b834b..b0bdeaa2c95 100644 --- a/packages/jupyter/jupyter.1.0.1/opam +++ b/packages/jupyter/jupyter.1.0.1/opam @@ -28,7 +28,7 @@ depends: [ "base-threads" "base-unix" "uuidm" - "base64" + "base64" {< "3.0.0"} "lwt" {< "4.0.0"} "stdint" {< "0.4.0"} "zmq" {>= "4.0-8" & < "5.0.0"} diff --git a/packages/jupyter/jupyter.1.0.2/opam b/packages/jupyter/jupyter.1.0.2/opam index 2702940d4e2..62f0c68203f 100644 --- a/packages/jupyter/jupyter.1.0.2/opam +++ b/packages/jupyter/jupyter.1.0.2/opam @@ -28,7 +28,7 @@ depends: [ "base-threads" "base-unix" "uuidm" {>= "0.9.6"} - "base64" {>= "2.1.2"} + "base64" {>= "2.1.2" & < "3.0.0"} "lwt" {>= "3.0.0" & < "4.0.0"} "stdint" {>= "0.4.2"} "zmq" {>= "4.0-8" & < "5.0.0"} diff --git a/packages/jupyter/jupyter.1.1.0/opam b/packages/jupyter/jupyter.1.1.0/opam index 8176226727a..7e985529d76 100644 --- a/packages/jupyter/jupyter.1.1.0/opam +++ b/packages/jupyter/jupyter.1.1.0/opam @@ -28,7 +28,7 @@ depends: [ "base-threads" "base-unix" "uuidm" {>= "0.9.6"} - "base64" {>= "2.1.2"} + "base64" {>= "2.1.2" & < "3.0.0"} "lwt" {>= "3.0.0" & < "4.0.0"} "stdint" {>= "0.4.2"} "zmq" {>= "4.0-8" & < "5.0.0"} diff --git a/packages/jupyter/jupyter.2.0.0/opam b/packages/jupyter/jupyter.2.0.0/opam index ac56beab6c5..b0c4c6d0863 100644 --- a/packages/jupyter/jupyter.2.0.0/opam +++ b/packages/jupyter/jupyter.2.0.0/opam @@ -25,7 +25,7 @@ depends: [ "base-threads" "base-unix" "uuidm" {>= "0.9.6"} - "base64" {>= "2.1.2"} + "base64" {>= "2.1.2" & < "3.0.0"} "lwt" {>= "3.0.0" & < "4.0.0"} "stdint" {>= "0.4.2"} "zmq" {>= "4.0-8" & < "5.0.0"} diff --git a/packages/jupyter/jupyter.2.1.0/opam b/packages/jupyter/jupyter.2.1.0/opam index 141313a0992..1c17ce27351 100644 --- a/packages/jupyter/jupyter.2.1.0/opam +++ b/packages/jupyter/jupyter.2.1.0/opam @@ -19,7 +19,7 @@ depends: [ "base-threads" "base-unix" "uuidm" {>= "0.9.6"} - "base64" {>= "2.1.2"} + "base64" {>= "2.1.2" & < "3.0.0"} "lwt" {>= "3.0.0" & < "4.0.0"} "stdint" {>= "0.4.2"} "zmq" {>= "4.0-8" & < "5.0.0"} diff --git a/packages/jupyter/jupyter.2.2.0/opam b/packages/jupyter/jupyter.2.2.0/opam index bd61756bac7..991ce42f166 100644 --- a/packages/jupyter/jupyter.2.2.0/opam +++ b/packages/jupyter/jupyter.2.2.0/opam @@ -19,7 +19,7 @@ depends: [ "base-threads" "base-unix" "uuidm" {>= "0.9.6"} - "base64" {>= "2.1.2"} + "base64" {>= "2.1.2" & < "3.0.0"} "lwt" {>= "3.0.0" & < "4.0.0"} "stdint" {>= "0.4.2"} "zmq" {>= "4.0-8" & < "5.0.0"} diff --git a/packages/jupyter/jupyter.2.2.1/opam b/packages/jupyter/jupyter.2.2.1/opam index de27de59c64..62dfa4ae8fe 100644 --- a/packages/jupyter/jupyter.2.2.1/opam +++ b/packages/jupyter/jupyter.2.2.1/opam @@ -19,7 +19,7 @@ depends: [ "base-threads" "base-unix" "uuidm" {>= "0.9.6"} - "base64" {>= "2.1.2"} + "base64" {>= "2.1.2" & < "3.0.0"} "lwt" {>= "3.0.0" & < "4.0.0"} "stdint" {>= "0.4.2"} "zmq" {>= "4.0-8" & < "5.0.0"} diff --git a/packages/jupyter/jupyter.2.2.2/opam b/packages/jupyter/jupyter.2.2.2/opam index 4eef3dd8efd..0374b6e2914 100644 --- a/packages/jupyter/jupyter.2.2.2/opam +++ b/packages/jupyter/jupyter.2.2.2/opam @@ -19,7 +19,7 @@ depends: [ "base-threads" "base-unix" "uuidm" {>= "0.9.6"} - "base64" {>= "2.1.2"} + "base64" {>= "2.1.2" & < "3.0.0"} "lwt" {>= "3.0.0" & < "4.0.0"} "stdint" {>= "0.4.2"} "zmq" {>= "4.0-8" & < "5.0.0"} diff --git a/packages/jupyter/jupyter.2.3.0/opam b/packages/jupyter/jupyter.2.3.0/opam index 0282bfc6df8..c9dc3c3fd64 100644 --- a/packages/jupyter/jupyter.2.3.0/opam +++ b/packages/jupyter/jupyter.2.3.0/opam @@ -18,7 +18,7 @@ depends: [ "base-threads" "base-unix" "uuidm" {>= "0.9.6"} - "base64" {>= "2.1.2"} + "base64" {>= "2.1.2" & < "3.0.0"} "lwt" {>= "4.0.0"} "lwt_ppx" {>= "1.0.0"} "logs" {>= "0.6.0"} diff --git a/packages/jupyter/jupyter.2.3.1/opam b/packages/jupyter/jupyter.2.3.1/opam index b5b728afe35..8888f8853a0 100644 --- a/packages/jupyter/jupyter.2.3.1/opam +++ b/packages/jupyter/jupyter.2.3.1/opam @@ -18,7 +18,7 @@ depends: [ "base-threads" "base-unix" "uuidm" {>= "0.9.6"} - "base64" {>= "2.1.2"} + "base64" {>= "2.1.2" & < "3.0.0"} "lwt" {>= "4.0.0"} "lwt_ppx" {>= "1.0.0"} "logs" {>= "0.6.0"} diff --git a/packages/jupyter/jupyter.2.3.2/opam b/packages/jupyter/jupyter.2.3.2/opam index c6c25d94255..db27910b907 100644 --- a/packages/jupyter/jupyter.2.3.2/opam +++ b/packages/jupyter/jupyter.2.3.2/opam @@ -18,7 +18,7 @@ depends: [ "base-threads" "base-unix" "uuidm" {>= "0.9.6"} - "base64" {>= "2.1.2"} + "base64" {>= "2.1.2" & < "3.0.0"} "lwt" {>= "4.0.0"} "lwt_ppx" {>= "1.0.0"} "logs" {>= "0.6.0"} diff --git a/packages/jupyter/jupyter.2.3.3/opam b/packages/jupyter/jupyter.2.3.3/opam index ae3bfd2cf3e..46d00964caa 100644 --- a/packages/jupyter/jupyter.2.3.3/opam +++ b/packages/jupyter/jupyter.2.3.3/opam @@ -18,7 +18,7 @@ depends: [ "base-threads" "base-unix" "uuidm" {>= "0.9.6"} - "base64" {>= "2.1.2"} + "base64" {>= "2.1.2" & < "3.0.0"} "lwt" {>= "4.0.0"} "lwt_ppx" {>= "1.0.0"} "logs" {>= "0.6.0"} diff --git a/packages/jupyter/jupyter.2.3.4/opam b/packages/jupyter/jupyter.2.3.4/opam index e206e560f76..32cec637bb1 100644 --- a/packages/jupyter/jupyter.2.3.4/opam +++ b/packages/jupyter/jupyter.2.3.4/opam @@ -19,7 +19,7 @@ depends: [ "base-threads" "base-unix" "uuidm" {>= "0.9.6"} - "base64" {>= "2.1.2"} + "base64" {>= "2.1.2" & < "3.0.0"} "lwt" {>= "4.0.0"} "lwt_ppx" {>= "1.0.0"} "logs" {>= "0.6.0"} diff --git a/packages/jupyter/jupyter.2.3.5/opam b/packages/jupyter/jupyter.2.3.5/opam index ad006b4f500..8aa986c27a3 100644 --- a/packages/jupyter/jupyter.2.3.5/opam +++ b/packages/jupyter/jupyter.2.3.5/opam @@ -19,7 +19,7 @@ depends: [ "base-threads" "base-unix" "uuidm" {>= "0.9.6"} - "base64" {>= "2.1.2"} + "base64" {>= "2.1.2" & < "3.0.0"} "lwt" {>= "4.0.0"} "lwt_ppx" {>= "1.0.0"} "logs" {>= "0.6.0"} diff --git a/packages/jupyter/jupyter.2.4.0/opam b/packages/jupyter/jupyter.2.4.0/opam index ad742e26ed6..583095c6111 100644 --- a/packages/jupyter/jupyter.2.4.0/opam +++ b/packages/jupyter/jupyter.2.4.0/opam @@ -19,7 +19,7 @@ depends: [ "base-threads" "base-unix" "uuidm" {>= "0.9.6"} - "base64" {>= "2.1.2"} + "base64" {>= "2.1.2" & < "3.0.0"} "lwt" {>= "4.0.0"} "lwt_ppx" {>= "1.0.0"} "logs" {>= "0.6.0"} diff --git a/packages/jwt/jwt.0.1/opam b/packages/jwt/jwt.0.1/opam index 398d82be23f..01e174122e2 100644 --- a/packages/jwt/jwt.0.1/opam +++ b/packages/jwt/jwt.0.1/opam @@ -10,7 +10,7 @@ install: [make "install"] remove: [make "remove"] depends: [ "ocaml" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "yojson" "cryptokit" "re" diff --git a/packages/jwto/jwto.0.1.4/opam b/packages/jwto/jwto.0.1.4/opam index d06f767be9d..502f50e7d2c 100644 --- a/packages/jwto/jwto.0.1.4/opam +++ b/packages/jwto/jwto.0.1.4/opam @@ -18,7 +18,7 @@ depends: [ "alcotest" {with-test} "cryptokit" "yojson" - "base64" + "base64" {< "3.0.0"} "re" "ppx_deriving" ] diff --git a/packages/links/links.0.6.1/opam b/packages/links/links.0.6.1/opam index 6c48f00ca4c..692daeadd84 100644 --- a/packages/links/links.0.6.1/opam +++ b/packages/links/links.0.6.1/opam @@ -46,7 +46,7 @@ depends: [ "deriving" {build} "lwt" "cgi" - "base64" + "base64" {< "3.0.0"} "cohttp" {< "0.99.0"} ] depopts: ["mysql" "postgresql" "sqlite3"] diff --git a/packages/links/links.0.6/opam b/packages/links/links.0.6/opam index 82bcb69720a..5a786e886be 100644 --- a/packages/links/links.0.6/opam +++ b/packages/links/links.0.6/opam @@ -22,7 +22,7 @@ depends: [ "deriving" {build} "lwt" "cgi" - "base64" + "base64" {< "3.0.0"} "cohttp" {< "0.99.0"} ] depopts: ["mysql" "postgresql" "sqlite3"] diff --git a/packages/links/links.0.7.1/opam b/packages/links/links.0.7.1/opam index cced6a4d0b4..918c016c22d 100644 --- a/packages/links/links.0.7.1/opam +++ b/packages/links/links.0.7.1/opam @@ -48,7 +48,7 @@ depends: [ "ocamlfind" {build} "deriving" {build} "cgi" - "base64" + "base64" {< "3.0.0"} "linenoise" "ANSITerminal" "lwt" diff --git a/packages/links/links.0.7.2/opam b/packages/links/links.0.7.2/opam index 5a9a1b7924d..cbc7ce69b1b 100644 --- a/packages/links/links.0.7.2/opam +++ b/packages/links/links.0.7.2/opam @@ -54,7 +54,7 @@ depends: [ "jbuilder" {build} "deriving" {build} "cgi" - "base64" + "base64" {< "3.0.0"} "linenoise" "ANSITerminal" "lwt" diff --git a/packages/links/links.0.7.3/opam b/packages/links/links.0.7.3/opam index edc7a085f13..ae5272d1133 100644 --- a/packages/links/links.0.7.3/opam +++ b/packages/links/links.0.7.3/opam @@ -54,7 +54,7 @@ depends: [ "jbuilder" {build} "ppx_deriving" "ppx_deriving_yojson" - "base64" + "base64" {< "3.0.0"} "linenoise" "ANSITerminal" "lwt" {>= "3.1.0"} diff --git a/packages/links/links.0.7/opam b/packages/links/links.0.7/opam index d18593bc79a..a36b1aab2b4 100644 --- a/packages/links/links.0.7/opam +++ b/packages/links/links.0.7/opam @@ -47,7 +47,7 @@ depends: [ "ocamlfind" {build} "deriving" {build} "cgi" - "base64" + "base64" {< "3.0.0"} "linenoise" "ANSITerminal" "lwt" diff --git a/packages/links/links.0.8/opam b/packages/links/links.0.8/opam index 89ec6368ae7..44f80464bc9 100644 --- a/packages/links/links.0.8/opam +++ b/packages/links/links.0.8/opam @@ -54,7 +54,7 @@ depends: [ "dune" {build} "ppx_deriving" "ppx_deriving_yojson" - "base64" + "base64" {< "3.0.0"} "linenoise" "ANSITerminal" "lwt" {>= "3.1.0"} diff --git a/packages/macaroons/macaroons.0.1.0/opam b/packages/macaroons/macaroons.0.1.0/opam index c46845cc81f..4b9d1695210 100644 --- a/packages/macaroons/macaroons.0.1.0/opam +++ b/packages/macaroons/macaroons.0.1.0/opam @@ -18,7 +18,7 @@ remove: ["ocamlfind" "remove" "macaroons"] depends: [ "ocaml" {>= "4.01.0"} "hex" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "ocamlfind" {build} "ocamlbuild" {build} ] diff --git a/packages/macaroons/macaroons.0.1.1/opam b/packages/macaroons/macaroons.0.1.1/opam index 48599312c98..22f7ac3b489 100644 --- a/packages/macaroons/macaroons.0.1.1/opam +++ b/packages/macaroons/macaroons.0.1.1/opam @@ -15,7 +15,7 @@ install: [ remove: ["ocamlfind" "remove" "macaroons"] depends: [ "ocaml" {>= "4.01.0" & < "4.06.0"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "ocamlfind" {build} "ocamlbuild" {build} ] diff --git a/packages/ocamltter/ocamltter.4.1.0/opam b/packages/ocamltter/ocamltter.4.1.0/opam index 82a287eea45..37a918f6d74 100644 --- a/packages/ocamltter/ocamltter.4.1.0/opam +++ b/packages/ocamltter/ocamltter.4.1.0/opam @@ -20,7 +20,7 @@ remove: [ ] depends: [ "ocaml" {>= "4.03.0"} - "base64" + "base64" {< "3.0.0"} "ocamlfind" {build} "omake" {build} "cryptokit" diff --git a/packages/ocamltter/ocamltter.4.1.1/opam b/packages/ocamltter/ocamltter.4.1.1/opam index e13ef6720b4..6fc0300ef94 100644 --- a/packages/ocamltter/ocamltter.4.1.1/opam +++ b/packages/ocamltter/ocamltter.4.1.1/opam @@ -20,7 +20,7 @@ remove: [ ] depends: [ "ocaml" {>= "4.03.0"} - "base64" + "base64" {< "3.0.0"} "ocamlfind" {build} "omake" {build} "cryptokit" diff --git a/packages/ojs-base/ojs-base.0.3.0/opam b/packages/ojs-base/ojs-base.0.3.0/opam index 6c992994e3b..a304a78faae 100644 --- a/packages/ojs-base/ojs-base.0.3.0/opam +++ b/packages/ojs-base/ojs-base.0.3.0/opam @@ -27,7 +27,7 @@ depends: [ "ppx_deriving_yojson" {>= "2.3"} "xtmpl" {>= "0.12" & < "0.13.0"} "magic-mime" {>= "1.0"} - "base64" {>= "2.0"} + "base64" {>= "2.0" & < "3.0.0"} ] synopsis: "Components to create web applications using js_of_ocaml and websockets." diff --git a/packages/ojs-base/ojs-base.0.4.0/opam b/packages/ojs-base/ojs-base.0.4.0/opam index c00f90b5063..2c937ac2273 100644 --- a/packages/ojs-base/ojs-base.0.4.0/opam +++ b/packages/ojs-base/ojs-base.0.4.0/opam @@ -27,7 +27,7 @@ depends: [ "ppx_deriving_yojson" {>= "2.3"} "xtmpl" {>= "0.13.0"} "magic-mime" {>= "1.0"} - "base64" {>= "2.0"} + "base64" {>= "2.0" & < "3.0.0"} ] synopsis: "Components to create web applications using js_of_ocaml and websockets." diff --git a/packages/ojs-base/ojs-base.0.5.0/opam b/packages/ojs-base/ojs-base.0.5.0/opam index 867b7c1700b..cdbff5f664d 100644 --- a/packages/ojs-base/ojs-base.0.5.0/opam +++ b/packages/ojs-base/ojs-base.0.5.0/opam @@ -24,7 +24,7 @@ depends: [ "ppx_deriving_yojson" {>= "3.0"} "xtmpl" {>= "0.15.0"} "magic-mime" {>= "1.0"} - "base64" {>= "2.0"} + "base64" {>= "2.0" & < "3.0.0"} ] synopsis: "Components to create web applications using js_of_ocaml and websockets." diff --git a/packages/opium/opium.0.12.0/opam b/packages/opium/opium.0.12.0/opam index aca303e407a..d08fd8b4245 100644 --- a/packages/opium/opium.0.12.0/opam +++ b/packages/opium/opium.0.12.0/opam @@ -29,7 +29,7 @@ depends: [ "oasis" {build} "cohttp" {>= "0.15.0" & < "0.99"} "ezjsonm" {>= "0.4.0"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "lwt" "core_kernel" {< "v0.12"} "cmdliner" diff --git a/packages/opium/opium.0.13.0/opam b/packages/opium/opium.0.13.0/opam index ca1a7aa8be1..7198ac2f7b5 100644 --- a/packages/opium/opium.0.13.0/opam +++ b/packages/opium/opium.0.13.0/opam @@ -29,7 +29,7 @@ depends: [ "oasis" {build} "cohttp" {>= "0.15.0" & < "0.99"} "ezjsonm" {>= "0.4.0"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "lwt" "core_kernel" {< "v0.12"} "cmdliner" diff --git a/packages/opium/opium.0.13.1/opam b/packages/opium/opium.0.13.1/opam index eff11821377..5af6ad371a4 100644 --- a/packages/opium/opium.0.13.1/opam +++ b/packages/opium/opium.0.13.1/opam @@ -29,7 +29,7 @@ depends: [ "oasis" {build} "cohttp" {>= "0.15.0" & < "0.99"} "ezjsonm" {>= "0.4.0"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "lwt" "core_kernel" {< "v0.12"} "cmdliner" diff --git a/packages/opium/opium.0.13.2/opam b/packages/opium/opium.0.13.2/opam index 42b7db9151f..2458bf957f1 100644 --- a/packages/opium/opium.0.13.2/opam +++ b/packages/opium/opium.0.13.2/opam @@ -29,7 +29,7 @@ depends: [ "oasis" {build} "cohttp" {>= "0.15.0" & < "0.99"} "ezjsonm" {>= "0.4.0"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "lwt" "core_kernel" {< "v0.12"} "cmdliner" diff --git a/packages/opium/opium.0.13.3/opam b/packages/opium/opium.0.13.3/opam index 8fa2e3b36d8..fd4637b05b3 100644 --- a/packages/opium/opium.0.13.3/opam +++ b/packages/opium/opium.0.13.3/opam @@ -29,7 +29,7 @@ depends: [ "oasis" {build} "cohttp" {>= "0.15.0"} "ezjsonm" {>= "0.4.0"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "lwt" "core_kernel" {< "v0.12"} "cmdliner" diff --git a/packages/opium/opium.0.14.0/opam b/packages/opium/opium.0.14.0/opam index 0c16464adf2..7481f93c584 100644 --- a/packages/opium/opium.0.14.0/opam +++ b/packages/opium/opium.0.14.0/opam @@ -24,7 +24,7 @@ depends: [ "cppo" {build} "cohttp" {>= "0.15.0" & < "0.99"} "ezjsonm" {>= "0.4.0"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "lwt" "core_kernel" {< "v0.12"} "cmdliner" diff --git a/packages/opium/opium.0.15.0/opam b/packages/opium/opium.0.15.0/opam index 7916f14d1c9..bf513f7a9c3 100644 --- a/packages/opium/opium.0.15.0/opam +++ b/packages/opium/opium.0.15.0/opam @@ -24,7 +24,7 @@ depends: [ "hmap" "cohttp" {>= "0.15.0" & < "0.99"} "ezjsonm" {>= "0.4.0"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "lwt" "cmdliner" "fieldslib" {< "v0.12"} diff --git a/packages/opium/opium.0.15.1/opam b/packages/opium/opium.0.15.1/opam index 63242cc3132..8c9fe889c06 100644 --- a/packages/opium/opium.0.15.1/opam +++ b/packages/opium/opium.0.15.1/opam @@ -24,7 +24,7 @@ depends: [ "hmap" "cohttp" {>= "0.15.0" & < "0.99"} "ezjsonm" {>= "0.4.0"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "lwt" "cmdliner" "fieldslib" {< "v0.12"} diff --git a/packages/opium_kernel/opium_kernel.0.16.0/opam b/packages/opium_kernel/opium_kernel.0.16.0/opam index 48702527c26..6bfc4abe506 100644 --- a/packages/opium_kernel/opium_kernel.0.16.0/opam +++ b/packages/opium_kernel/opium_kernel.0.16.0/opam @@ -18,7 +18,7 @@ depends: [ "cohttp" {>= "0.99.0"} "cohttp-lwt" {>= "0.99.0"} "ezjsonm" {>= "0.4.0"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "lwt" "fieldslib" {>= "v0.9.0" & < "v0.12"} "sexplib" {>= "v0.9.0" & < "v0.12"} diff --git a/packages/opium_kernel/opium_kernel.0.17.0/opam b/packages/opium_kernel/opium_kernel.0.17.0/opam index 17bab9c4748..0fe6003c357 100644 --- a/packages/opium_kernel/opium_kernel.0.17.0/opam +++ b/packages/opium_kernel/opium_kernel.0.17.0/opam @@ -24,7 +24,7 @@ depends: [ "cohttp" {>= "0.99.0"} "cohttp-lwt" {>= "0.99.0"} "ezjsonm" {>= "0.4.0"} - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "lwt" "fieldslib" {>= "v0.9.0"} "sexplib" {>= "v0.9.0"} diff --git a/packages/pgx/pgx.0.1/opam b/packages/pgx/pgx.0.1/opam index 7491f4f351f..75194207b9d 100644 --- a/packages/pgx/pgx.0.1/opam +++ b/packages/pgx/pgx.0.1/opam @@ -18,7 +18,7 @@ depends: [ "sexplib" {>= "v0.10" & < "v0.12"} "bisect_ppx" {build & >= "1.3.1"} "jbuilder" {build & >= "1.0+beta14"} - "base64" {with-test} + "base64" {with-test & < "3.0.0"} "ounit" {with-test} ] synopsis: "Pgx - Pure-OCaml PostgreSQL client library" diff --git a/packages/pgx_async/pgx_async.0.1/opam b/packages/pgx_async/pgx_async.0.1/opam index 106795a9520..5e8c8d3c1a4 100644 --- a/packages/pgx_async/pgx_async.0.1/opam +++ b/packages/pgx_async/pgx_async.0.1/opam @@ -15,7 +15,7 @@ depends: [ "async" {>= "v0.10.0" & < "v0.12"} "pgx" "ppx_jane" {< "v0.12"} - "base64" {with-test} + "base64" {with-test & < "3.0.0"} "ounit" {with-test} ] synopsis: "Pgx_async - Pgx using Async for IO" diff --git a/packages/pgx_lwt/pgx_lwt.0.1/opam b/packages/pgx_lwt/pgx_lwt.0.1/opam index 818c1b76d0c..dfca6764453 100644 --- a/packages/pgx_lwt/pgx_lwt.0.1/opam +++ b/packages/pgx_lwt/pgx_lwt.0.1/opam @@ -15,7 +15,7 @@ depends: [ "pgx" "ppx_jane" {< "v0.12"} "lwt" - "base64" {with-test} + "base64" {with-test & < "3.0.0"} "ounit" {with-test} ] synopsis: "Pgx_lwt - Pgx using Lwt for IO" diff --git a/packages/pgx_unix/pgx_unix.0.1/opam b/packages/pgx_unix/pgx_unix.0.1/opam index a3386384ae2..6332520a2b6 100644 --- a/packages/pgx_unix/pgx_unix.0.1/opam +++ b/packages/pgx_unix/pgx_unix.0.1/opam @@ -14,7 +14,7 @@ depends: [ "ocaml" {>= "4.04.2"} "pgx" "ppx_jane" {< "v0.12"} - "base64" {with-test} + "base64" {with-test & < "3.0.0"} "ounit" {with-test} ] synopsis: diff --git a/packages/piqilib/piqilib.0.6.12/opam b/packages/piqilib/piqilib.0.6.12/opam index 703a5e2b39e..95c646d764c 100644 --- a/packages/piqilib/piqilib.0.6.12/opam +++ b/packages/piqilib/piqilib.0.6.12/opam @@ -16,7 +16,7 @@ depends: [ "ulex" "xmlm" "optcomp" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "base-bytes" ] dev-repo: "git://github.com/alavrik/piqi" diff --git a/packages/piqilib/piqilib.0.6.13/opam b/packages/piqilib/piqilib.0.6.13/opam index 9395c2545cd..d08aa708d82 100644 --- a/packages/piqilib/piqilib.0.6.13/opam +++ b/packages/piqilib/piqilib.0.6.13/opam @@ -23,7 +23,7 @@ depends: [ "ulex" "xmlm" "optcomp" - "base64" {>= "2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} "base-bytes" ] dev-repo: "git://github.com/alavrik/piqi" diff --git a/packages/piqilib/piqilib.0.6.14/opam b/packages/piqilib/piqilib.0.6.14/opam index ee9370c7998..43bc81f0fba 100644 --- a/packages/piqilib/piqilib.0.6.14/opam +++ b/packages/piqilib/piqilib.0.6.14/opam @@ -29,7 +29,7 @@ depends: [ "easy-format" "ulex" "xmlm" - "base64" {>="2.0.0"} + "base64" {>= "2.0.0" & < "3.0.0"} ] dev-repo: "git://github.com/alavrik/piqi" url { diff --git a/packages/plotkicadsch/plotkicadsch.0.1.4/opam b/packages/plotkicadsch/plotkicadsch.0.1.4/opam index cfea4e4a250..7b263d13462 100644 --- a/packages/plotkicadsch/plotkicadsch.0.1.4/opam +++ b/packages/plotkicadsch/plotkicadsch.0.1.4/opam @@ -15,7 +15,7 @@ depends: [ "pcre" "tyxml" {>= "4.0.0"} "lwt" {< "4.0.0"} - "base64" + "base64" {< "3.0.0"} "sha" "git" {< "1.12.0"} "git-unix" {< "2.0.0"} diff --git a/packages/plotkicadsch/plotkicadsch.0.2.0/opam b/packages/plotkicadsch/plotkicadsch.0.2.0/opam index 5d19c3514c1..4a178a4fc31 100644 --- a/packages/plotkicadsch/plotkicadsch.0.2.0/opam +++ b/packages/plotkicadsch/plotkicadsch.0.2.0/opam @@ -18,7 +18,7 @@ depends: [ "sha" "git" {< "1.12.0"} "git-unix" {< "2.0.0"} - "base64" + "base64" {< "3.0.0"} "patience_diff" {>= "v0.10.0" & < "v0.12"} "core_kernel" {< "v0.12"} "cmdliner" diff --git a/packages/plotkicadsch/plotkicadsch.0.3.0/opam b/packages/plotkicadsch/plotkicadsch.0.3.0/opam index 0a3f845c344..a1c92d2b2c4 100644 --- a/packages/plotkicadsch/plotkicadsch.0.3.0/opam +++ b/packages/plotkicadsch/plotkicadsch.0.3.0/opam @@ -18,7 +18,7 @@ depends: [ "sha" "git" {< "2.0.0"} "git-unix" {< "2.0.0"} - "base64" + "base64" {< "3.0.0"} "patience_diff" {>= "v0.10.0" & < "v0.12"} "core_kernel" {< "v0.12"} "cmdliner" diff --git a/packages/plotkicadsch/plotkicadsch.0.4.0/opam b/packages/plotkicadsch/plotkicadsch.0.4.0/opam index 8b5efaedbf6..020a4cbb968 100644 --- a/packages/plotkicadsch/plotkicadsch.0.4.0/opam +++ b/packages/plotkicadsch/plotkicadsch.0.4.0/opam @@ -25,7 +25,7 @@ depends: [ "sha" "git" {< "2.0.0"} "git-unix" - "base64" + "base64" {< "3.0.0"} "patience_diff" {>= "v0.10.0" & < "v0.12"} "core_kernel" {< "v0.12"} "cmdliner" diff --git a/packages/ppx_relit/ppx_relit.0.1/opam b/packages/ppx_relit/ppx_relit.0.1/opam index 98484f0a406..19c9104421f 100644 --- a/packages/ppx_relit/ppx_relit.0.1/opam +++ b/packages/ppx_relit/ppx_relit.0.1/opam @@ -18,7 +18,7 @@ depends: [ "ocamlfind" "ocaml-migrate-parsetree" {= "1.0.11"} "relit-reason" - "base64" + "base64" {< "3.0.0"} "ppxlib" {= "0.3.0"} "base-unix" "ocamlbuild" {with-test} diff --git a/packages/ppx_relit/ppx_relit.0.2.0/opam b/packages/ppx_relit/ppx_relit.0.2.0/opam index be0aa5feb02..d5c7c3a1602 100644 --- a/packages/ppx_relit/ppx_relit.0.2.0/opam +++ b/packages/ppx_relit/ppx_relit.0.2.0/opam @@ -16,7 +16,7 @@ depends: [ "ocamlfind" "ocaml-migrate-parsetree" "relit-reason" - "base64" + "base64" {< "3.0.0"} "extlib" "ppxlib" {>= "0.3.1"} "base-unix" diff --git a/packages/relit_helper/relit_helper.0.1/opam b/packages/relit_helper/relit_helper.0.1/opam index 49caf26d97a..a37b9f9d4b3 100644 --- a/packages/relit_helper/relit_helper.0.1/opam +++ b/packages/relit_helper/relit_helper.0.1/opam @@ -18,7 +18,7 @@ depends: [ "extlib" "ppxlib" {= "0.3.0"} "ocaml-migrate-parsetree" {= "1.0.11"} - "base64" + "base64" {< "3.0.0"} "relit-reason" "ocaml" {>= "4.06.0" & < "4.07.0"} ] diff --git a/packages/relit_helper/relit_helper.0.2.0/opam b/packages/relit_helper/relit_helper.0.2.0/opam index dee3d7a2d37..848a4fe7fe4 100644 --- a/packages/relit_helper/relit_helper.0.2.0/opam +++ b/packages/relit_helper/relit_helper.0.2.0/opam @@ -16,7 +16,7 @@ depends: [ "extlib" "ppxlib" {>= "0.3.1"} "ocaml-migrate-parsetree" - "base64" + "base64" {< "3.0.0"} "relit-reason" "ocaml" {>= "4.07.0" & < "4.08.0"} ] diff --git a/packages/websocket/websocket.2.10/opam b/packages/websocket/websocket.2.10/opam index ae943c1712a..52e15893af8 100644 --- a/packages/websocket/websocket.2.10/opam +++ b/packages/websocket/websocket.2.10/opam @@ -15,7 +15,7 @@ build: [ "jbuilder" "build" "-j" jobs "-p" name "@install" ] depends: [ "ocaml" {>= "4.02.0"} "jbuilder" {build & >= "1.0+beta11"} - "base64" {>= "2.2.0"} + "base64" {>= "2.2.0" & < "3.0.0"} "cohttp" {>= "0.99.0"} "ocplib-endian" {>= "1.0"} "astring" diff --git a/packages/websocket/websocket.2.12/opam b/packages/websocket/websocket.2.12/opam index 1a022956419..12b58295f99 100644 --- a/packages/websocket/websocket.2.12/opam +++ b/packages/websocket/websocket.2.12/opam @@ -14,7 +14,7 @@ tags: [ build: [ "dune" "build" "-j" jobs "-p" name "@install" ] depends: [ "dune" {build & >= "1.3.0"} - "base64" {>= "2.2.0"} + "base64" {>= "2.2.0" & < "3.0.0"} "cohttp" {>= "1.1.0"} "ocplib-endian" {>= "1.0"} "astring" {>= "0.8.3"} diff --git a/packages/ws/ws.0.1/opam b/packages/ws/ws.0.1/opam index 247fb51f8a1..ad3d003d153 100644 --- a/packages/ws/ws.0.1/opam +++ b/packages/ws/ws.0.1/opam @@ -18,7 +18,7 @@ tags: [ depends: [ "ocaml" {>= "4.05"} "dune" {build & >= "1.6.2"} - "base64" {>= "2.3.0"} + "base64" {>= "2.3.0" & < "3.0.0"} "bitstring" {>= "3.1.0"} "containers" {>= "2.4"} "ppx_deriving" {>= "4.2.1"} From 120c11868eaba5d39402d01d101bed74e6c3d59c Mon Sep 17 00:00:00 2001 From: Calascibetta Romain Date: Mon, 21 Jan 2019 21:14:51 +0100 Subject: [PATCH 3/3] Constraint base64.3.0.0 to use >= ocaml.4.3.0 --- packages/base64/base64.3.0.0/opam | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/base64/base64.3.0.0/opam b/packages/base64/base64.3.0.0/opam index edac9c5e745..8d0a0bcd9f1 100644 --- a/packages/base64/base64.3.0.0/opam +++ b/packages/base64/base64.3.0.0/opam @@ -15,6 +15,7 @@ binary data in an ASCII string format by translating it into a radix-64 representation. It is specified in RFC 4648. """ depends: [ + "ocaml" {>= "4.03.0"} "base-bytes" "dune" {build & >= "1.0.1"} "bos" {with-test}