Skip to content

Commit

Permalink
Merge pull request #710 from psafont/plusplus
Browse files Browse the repository at this point in the history
  • Loading branch information
psafont authored Oct 18, 2024
2 parents ab7d4f0 + 9828d88 commit fe359ef
Show file tree
Hide file tree
Showing 76 changed files with 477 additions and 396 deletions.
5 changes: 3 additions & 2 deletions .github/known-licenses.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ BSD-3-Clause
curl
GPL-1.0-or-later
GPL-2.0-only
GPL-2.0-or-later
GPL-3.0-only
GPL-2.0-only AND LGPL-3.0-only
GPL-3.0-or-later
ISC
MIT
MPL-2.0
Expand All @@ -20,8 +23,6 @@ LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception AND BSD-3-Clause
LGPL-3.0-only
LGPL-3.0-only WITH OCaml-LGPL-linking-exception
LGPL-2.1-or-later WITH OpenSSL-linking-exception
GPL-2.0-or-later
GPL-2.0-only AND LGPL-3.0-only
MIT AND LGPL-2.1-only WITH OCaml-LGPL-linking-exception
Ruby
Unlicense
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
opam-version: "2.0"
name: "alcotest-lwt"
version: "1.7.0"
version: "1.8.0"
synopsis: "Lwt-based helpers for Alcotest"
description: "Lwt-based helpers for Alcotest"
maintainer: "thomas@gazagnaire.org"
Expand All @@ -12,9 +12,9 @@ bug-reports: "https://github.com/mirage/alcotest/issues"
depends: [
"dune" {>= "3.0"}
"re" {with-test}
"cmdliner" {with-test & >= "1.1.0"}
"cmdliner" {with-test & >= "1.2.0"}
"fmt"
"ocaml" {>= "4.05.0"}
"ocaml" {>= "4.08.0"}
"alcotest" {= version}
"lwt"
"logs"
Expand All @@ -37,10 +37,10 @@ build: [
dev-repo: "git+https://github.com/mirage/alcotest.git"
url {
src:
"https://github.com/mirage/alcotest/releases/download/1.7.0/alcotest-1.7.0.tbz"
"https://github.com/mirage/alcotest/releases/download/1.8.0/alcotest-1.8.0.tbz"
checksum: [
"sha256=812bacdb34b45e88995e07d7306bdab2f72479ef1996637f1d5d1f41667902df"
"sha512=4ae1ba318949ec9db8b87bc8072632a02f0e4003a95ab21e474f5c34c3b5bde867b0194a2d0ea7d9fc4580c70a30ca39287d33a8c134acc7611902f79c7b7ce8"
"sha256=cba1bd01707c8c55b4764bb0df8c9c732be321e1f1c1a96a406e56d8dbca1d0e"
"sha512=eebb034c990abd253f526e848a99881686d7bd3c7d1b1d373953d568d062e3d5aaa79b6b4807455aaa9a98710eca4ada30e816a0134717a380619a597575564d"
]
}
x-commit-hash: "927088ffadce153306a36cef4d0fed52609208f6"
x-commit-hash: "6313c95008cc5d87888cdd86ae1c25e50627f466"
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
opam-version: "2.0"
name: "alcotest"
version: "1.7.0"
version: "1.8.0"
synopsis: "Alcotest is a lightweight and colourful test framework"
description: """\
Alcotest exposes simple interface to perform unit tests. It exposes
Expand All @@ -20,10 +20,10 @@ doc: "https://mirage.github.io/alcotest"
bug-reports: "https://github.com/mirage/alcotest/issues"
depends: [
"dune" {>= "3.0"}
"ocaml" {>= "4.05.0"}
"ocaml" {>= "4.08"}
"fmt" {>= "0.8.7"}
"astring"
"cmdliner" {>= "1.1.0"}
"cmdliner" {>= "1.2.0"}
"re" {>= "1.7.2"}
"stdlib-shims"
"uutf" {>= "1.0.1"}
Expand All @@ -32,6 +32,7 @@ depends: [
]
conflicts: [
"result" {< "1.5"}
"js_of_ocaml-compiler" {< "5.8"}
]
build: [
["dune" "subst"] {dev}
Expand All @@ -43,20 +44,17 @@ build: [
"-j"
jobs
"@install"
"@runtest"
{with-test & arch != "arm32" & arch != "x86_32" & arch != "s390x" &
arch != "ppc64" &
ocaml:version < "5.2"}
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/mirage/alcotest.git"
url {
src:
"https://github.com/mirage/alcotest/releases/download/1.7.0/alcotest-1.7.0.tbz"
"https://github.com/mirage/alcotest/releases/download/1.8.0/alcotest-1.8.0.tbz"
checksum: [
"sha256=812bacdb34b45e88995e07d7306bdab2f72479ef1996637f1d5d1f41667902df"
"sha512=4ae1ba318949ec9db8b87bc8072632a02f0e4003a95ab21e474f5c34c3b5bde867b0194a2d0ea7d9fc4580c70a30ca39287d33a8c134acc7611902f79c7b7ce8"
"sha256=cba1bd01707c8c55b4764bb0df8c9c732be321e1f1c1a96a406e56d8dbca1d0e"
"sha512=eebb034c990abd253f526e848a99881686d7bd3c7d1b1d373953d568d062e3d5aaa79b6b4807455aaa9a98710eca4ada30e816a0134717a380619a597575564d"
]
}
x-commit-hash: "927088ffadce153306a36cef4d0fed52609208f6"
x-commit-hash: "6313c95008cc5d87888cdd86ae1c25e50627f466"
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
opam-version: "2.0"
name: "base"
version: "v0.15.1"
version: "v0.16.3"
synopsis: "Full standard library replacement for OCaml"
description: """\
Full standard library replacement for OCaml
Expand All @@ -22,15 +22,18 @@ homepage: "https://github.com/janestreet/base"
doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/base/index.html"
bug-reports: "https://github.com/janestreet/base/issues"
depends: [
"ocaml" {>= "4.10.0"}
"sexplib0" {>= "v0.15" & < "v0.16"}
"ocaml" {>= "4.14.0"}
"sexplib0" {>= "v0.16" & < "v0.17"}
"dune" {>= "2.0.0"}
"dune-configurator"
"conf-bash"
]
build: ["dune" "build" "-p" name "-j" jobs]
dev-repo: "git+https://github.com/janestreet/base.git"
url {
src: "https://github.com/janestreet/base/archive/refs/tags/v0.15.1.tar.gz"
checksum:
"sha256=755e303171ea267e3ba5af7aa8ea27537f3394d97c77d340b10f806d6ef61a14"
src: "https://github.com/janestreet/base/archive/refs/tags/v0.16.3.tar.gz"
checksum: [
"md5=04572fc23a4651604cfcab83f720cb4c"
"sha512=69380ed392faf4495459f97f70a10a6959fce71d2e6ba093472fc272141646307fd7872407de855dfa48ef0435f6587eae5aa50f4a67eac40a9e1946d0c3c070"
]
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
opam-version: "2.0"
name: "bigstringaf"
version: "0.9.1"
version: "0.10.0"
synopsis: "Bigstring intrinsics and fast blits based on memcpy/memmove"
description: """\
Bigstring intrinsics and fast blits based on memcpy/memmove
Expand All @@ -14,7 +14,7 @@ Bigstrings and other string-like types.
So here they are. Go crazy."""
maintainer: "Spiros Eliopoulos <spiros@inhabitedtype.com>"
authors: "Spiros Eliopoulos <spiros@inhabitedtype.com>"
license: "BSD-3-Clause"
license: "BSD-3-clause"
homepage: "https://github.com/inhabitedtype/bigstringaf"
bug-reports: "https://github.com/inhabitedtype/bigstringaf/issues"
depends: [
Expand Down Expand Up @@ -44,9 +44,6 @@ build: [
]
dev-repo: "git+https://github.com/inhabitedtype/bigstringaf.git"
url {
src: "https://github.com/inhabitedtype/bigstringaf/archive/0.9.1.tar.gz"
checksum: [
"sha256=87f99277d614998b6550941c5218dfe1bafeac1ad2821254c987ec281a6a550b"
"md5=909fdc277cf03096a35b565325d5314a"
]
src: "https://github.com/inhabitedtype/bigstringaf/archive/0.10.0.tar.gz"
checksum: "md5=be0a44416840852777651150757a0a3b"
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
opam-version: "2.0"
name: "chrome-trace"
version: "3.15.3"
version: "3.16.0"
synopsis: "Chrome trace event generation library"
description:
"This library offers no backwards compatibility guarantees. Use at your own risk."
Expand All @@ -24,10 +24,10 @@ build: [
dev-repo: "git+https://github.com/ocaml/dune.git"
url {
src:
"https://github.com/ocaml/dune/releases/download/3.15.3/dune-3.15.3.tbz"
"https://github.com/ocaml/dune/releases/download/3.16.0/dune-3.16.0.tbz"
checksum: [
"sha256=3c27c7676414056f0368a71fdc670d2b0a59898090c78a1b68230984e5beb713"
"sha512=c88ac7a6ed9334a4bc6231ecfb0efaa961dda99bc386fd5b92505151ff833dfaf058d75305fbb64c496e570058ec9000ac6add06dda7a395e757e924af1d1a7f"
"sha256=5481dde7918ca3121e02c34d74339f734b32d5883efb8c1b8056471e74f9bda6"
"sha512=529f937c61bc9ea7b135c2425f2d730478b48e6ab6b6455c354138d27b76bd43afce40d4784a6f183d6308d3cf0f5d5cea5bea070f83442949762ed818fb44bc"
]
}
x-commit-hash: "55da8f9248e3f5a06d6234ae35b140d1b37c6f0b"
x-commit-hash: "e4380ffddbdf924b3ec4c56048cd8331e1bf39ed"
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
opam-version: "2.0"
name: "cohttp-lwt-unix"
version: "5.2.0"
version: "5.3.0"
synopsis: "CoHTTP implementation for Unix and Windows using Lwt"
description: """\
An implementation of an HTTP client and server using the Lwt
Expand Down Expand Up @@ -35,7 +35,7 @@ depends: [
"magic-mime"
"logs"
"fmt" {>= "0.8.2"}
"cohttp-lwt" {= version}
"cohttp-lwt" {>= "5.3.0" & <= "5.3.1"}
"ppx_sexp_conv" {>= "v0.13.0"}
"lwt" {>= "3.0.0"}
"base-unix"
Expand All @@ -49,10 +49,10 @@ build: [
dev-repo: "git+https://github.com/mirage/ocaml-cohttp.git"
url {
src:
"https://github.com/mirage/ocaml-cohttp/releases/download/v5.2.0/cohttp-5.2.0.tbz"
"https://github.com/mirage/ocaml-cohttp/releases/download/v5.3.0/cohttp-5.3.0.tbz"
checksum: [
"sha256=5dba8f26185603fb27f2ebfbadf701232ba8d1b2fe69e65e7253f21af7296f9b"
"sha512=84c6609964efa65e1d2e51563a985041d73810b85bc25f8e757b45397903e28b4e91979c49afdc8ff1fd79b202ff15f8ec3516ae6ea5c69a25bfa0a2ae46a7ea"
"sha256=b3bd91c704e5ea510e924b83ab2ede1fc46a2cce448b0f8cef4883b9a16eeddd"
"sha512=529930d9b1f38737d91f47cb94f8bae381df87ea941cb8e75ee798354763bdf5091f4f3be31d0ba14b9944dc68203a3d98e235c38c66e7e176a114be9ff4acf3"
]
}
x-commit-hash: "7f9e25d91b15715caacdea8e02873d20d8dfa2c2"
x-commit-hash: "74a6f8d1c9669397c83c75c130ef5cb4dd62326b"
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
opam-version: "2.0"
name: "cohttp-lwt"
version: "5.2.0"
version: "5.3.0"
synopsis: "CoHTTP implementation using the Lwt concurrency library"
description: """\
This is a portable implementation of HTTP that uses the Lwt
Expand Down Expand Up @@ -29,7 +29,7 @@ bug-reports: "https://github.com/mirage/ocaml-cohttp/issues"
depends: [
"ocaml" {>= "4.08"}
"dune" {>= "2.0"}
"cohttp" {= version}
"cohttp" {>= "5.3.0" & <= "5.3.1"}
"lwt" {>= "2.5.0"}
"sexplib0"
"ppx_sexp_conv" {>= "v0.13.0"}
Expand All @@ -44,10 +44,10 @@ build: [
dev-repo: "git+https://github.com/mirage/ocaml-cohttp.git"
url {
src:
"https://github.com/mirage/ocaml-cohttp/releases/download/v5.2.0/cohttp-5.2.0.tbz"
"https://github.com/mirage/ocaml-cohttp/releases/download/v5.3.0/cohttp-5.3.0.tbz"
checksum: [
"sha256=5dba8f26185603fb27f2ebfbadf701232ba8d1b2fe69e65e7253f21af7296f9b"
"sha512=84c6609964efa65e1d2e51563a985041d73810b85bc25f8e757b45397903e28b4e91979c49afdc8ff1fd79b202ff15f8ec3516ae6ea5c69a25bfa0a2ae46a7ea"
"sha256=b3bd91c704e5ea510e924b83ab2ede1fc46a2cce448b0f8cef4883b9a16eeddd"
"sha512=529930d9b1f38737d91f47cb94f8bae381df87ea941cb8e75ee798354763bdf5091f4f3be31d0ba14b9944dc68203a3d98e235c38c66e7e176a114be9ff4acf3"
]
}
x-commit-hash: "7f9e25d91b15715caacdea8e02873d20d8dfa2c2"
x-commit-hash: "74a6f8d1c9669397c83c75c130ef5cb4dd62326b"
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
opam-version: "2.0"
name: "cohttp"
version: "5.2.0"
version: "5.3.1"
synopsis: "An OCaml library for HTTP clients and servers"
description: """\
Cohttp is an OCaml library for creating HTTP daemons. It has a portable
Expand Down Expand Up @@ -56,10 +56,10 @@ build: [
dev-repo: "git+https://github.com/mirage/ocaml-cohttp.git"
url {
src:
"https://github.com/mirage/ocaml-cohttp/releases/download/v5.2.0/cohttp-5.2.0.tbz"
"https://github.com/mirage/ocaml-cohttp/releases/download/v5.3.1/cohttp-5.3.1.tbz"
checksum: [
"sha256=5dba8f26185603fb27f2ebfbadf701232ba8d1b2fe69e65e7253f21af7296f9b"
"sha512=84c6609964efa65e1d2e51563a985041d73810b85bc25f8e757b45397903e28b4e91979c49afdc8ff1fd79b202ff15f8ec3516ae6ea5c69a25bfa0a2ae46a7ea"
"sha256=f5e273d3c2f29ff47bd7e16db23e1f3d6cd01a40be00208985bc434c88d4576b"
"sha512=26580405fc33cd7e05b2c91732df97da9ba609d7392e5779be601aa65e34f1991d2b0ae2870ac29e57567f583dc0e13e61d3c4a74c7ac21012453acb33a37ae3"
]
}
x-commit-hash: "7f9e25d91b15715caacdea8e02873d20d8dfa2c2"
x-commit-hash: "0bb4e195b7ffbe2e70f5d9cd3a61973ad9593740"
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
opam-version: "2.0"
name: "conduit-lwt-unix"
version: "6.2.3"
version: "7.1.0"
synopsis: "A network connection establishment library for Lwt_unix"
maintainer: "anil@recoil.org"
authors: [
Expand All @@ -11,13 +11,13 @@ tags: "org:mirage"
homepage: "https://github.com/mirage/ocaml-conduit"
bug-reports: "https://github.com/mirage/ocaml-conduit/issues"
depends: [
"ocaml" {>= "4.08.0"}
"ocaml" {>= "4.13.0"}
"dune" {>= "2.0"}
"base-unix"
"logs"
"ppx_sexp_conv" {>= "v0.13.0"}
"conduit-lwt" {= version}
"lwt" {>= "3.0.0"}
"lwt" {>= "5.7.0"}
"uri" {>= "1.9.4"}
"ipaddr" {>= "4.0.0"}
"ipaddr-sexp"
Expand All @@ -28,7 +28,7 @@ depends: [
]
depopts: ["tls-lwt" "lwt_ssl" "launchd"]
conflicts: [
"tls-lwt" {< "0.16.0"}
"tls-lwt" {< "1.0.0"}
"ssl" {< "0.5.12"}
]
build: [
Expand All @@ -38,10 +38,10 @@ build: [
dev-repo: "git+https://github.com/mirage/ocaml-conduit.git"
url {
src:
"https://github.com/mirage/ocaml-conduit/releases/download/v6.2.3/conduit-6.2.3.tbz"
"https://github.com/mirage/ocaml-conduit/releases/download/v7.1.0/conduit-7.1.0.tbz"
checksum: [
"sha256=3a4684bb1485b1f247d6084dd0a356e1027e92c2cd467b35cabd59a764423e79"
"sha512=9fdb07540ae495e820e454a81f333551c18d3207c974adf35719198b93ff3f3d368f6558af8a80b6bd2af720ec6cbd274e7eecb816ac87384bcf8ac0d87357d3"
"sha256=58d2218a07e71706025de38ca0253233e970f35b4cacd37f706941b4cbea57f7"
"sha512=3d52e16202b443c72801828ab4a08ff2ae36ca03f3991793f6b155770d687718f6646fe85b70d7cadf670e4caf99af42bcf492ee70236f6a9a0d8a425deb03a6"
]
}
x-commit-hash: "81fe395407308b01f573b598e85be99fea1cdbef"
x-commit-hash: "0805a919c51c702fcc4ff0b8565930b10d762218"
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
opam-version: "2.0"
name: "conduit-lwt"
version: "6.2.3"
version: "7.1.0"
synopsis: "A portable network connection establishment library using Lwt"
maintainer: "anil@recoil.org"
authors: [
Expand All @@ -11,13 +11,13 @@ tags: "org:mirage"
homepage: "https://github.com/mirage/ocaml-conduit"
bug-reports: "https://github.com/mirage/ocaml-conduit/issues"
depends: [
"ocaml" {>= "4.08.0"}
"ocaml" {>= "4.13.0"}
"dune" {>= "2.0"}
"base-unix"
"ppx_sexp_conv" {>= "v0.13.0"}
"sexplib"
"sexplib0"
"conduit" {= version}
"lwt" {>= "3.0.0"}
"lwt" {>= "5.7.0"}
]
build: [
["dune" "subst"] {dev}
Expand All @@ -26,10 +26,10 @@ build: [
dev-repo: "git+https://github.com/mirage/ocaml-conduit.git"
url {
src:
"https://github.com/mirage/ocaml-conduit/releases/download/v6.2.3/conduit-6.2.3.tbz"
"https://github.com/mirage/ocaml-conduit/releases/download/v7.1.0/conduit-7.1.0.tbz"
checksum: [
"sha256=3a4684bb1485b1f247d6084dd0a356e1027e92c2cd467b35cabd59a764423e79"
"sha512=9fdb07540ae495e820e454a81f333551c18d3207c974adf35719198b93ff3f3d368f6558af8a80b6bd2af720ec6cbd274e7eecb816ac87384bcf8ac0d87357d3"
"sha256=58d2218a07e71706025de38ca0253233e970f35b4cacd37f706941b4cbea57f7"
"sha512=3d52e16202b443c72801828ab4a08ff2ae36ca03f3991793f6b155770d687718f6646fe85b70d7cadf670e4caf99af42bcf492ee70236f6a9a0d8a425deb03a6"
]
}
x-commit-hash: "81fe395407308b01f573b598e85be99fea1cdbef"
x-commit-hash: "0805a919c51c702fcc4ff0b8565930b10d762218"
Loading

0 comments on commit fe359ef

Please # to comment.