forked from ocaml/opam-repository
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ocaml#19740 from anuragsoni/release-shuttle-0.3.1
[new release] shuttle_ssl, shuttle_http and shuttle (0.3.1)
- Loading branch information
Showing
3 changed files
with
125 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
opam-version: "2.0" | ||
synopsis: "Reasonably performant non-blocking channels for async" | ||
maintainer: ["Anurag Soni <anurag@sonianurag.com>"] | ||
authors: ["Anurag Soni"] | ||
license: "MIT" | ||
tags: ["async" "reader" "writer"] | ||
homepage: "https://github.com/anuragsoni/shuttle" | ||
bug-reports: "https://github.com/anuragsoni/shuttle/issues" | ||
depends: [ | ||
"dune" {>= "2.8"} | ||
"ocaml" {>= "4.11.0"} | ||
"async" {>= "v0.14" & < "v0.15"} | ||
"core" {>= "v0.14" & < "v0.15"} | ||
"ppx_jane" {>= "v0.14" & < "v0.15"} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/anuragsoni/shuttle.git" | ||
url { | ||
src: | ||
"https://github.com/anuragsoni/shuttle/releases/download/0.3.1/shuttle-0.3.1.tbz" | ||
checksum: [ | ||
"sha256=fadea3010bb0008ffa6533abefeda865162c7f66601c84256d6a459fe7317cb2" | ||
"sha512=1c4813878d75638694a53eb4c241116301dfd10e7320a8c5185fd2099a3d22babc5f27e6776850220bed0b2b80e91e034700285282fe17125139c92dee2c6348" | ||
] | ||
} | ||
x-commit-hash: "b1369c87b7a1c695c880bd5df78471123ecdb951" | ||
available: [ arch != "s390x" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
opam-version: "2.0" | ||
synopsis: "HTTP codec for shuttle" | ||
maintainer: ["Anurag Soni <anurag@sonianurag.com>"] | ||
authors: ["Anurag Soni"] | ||
license: "MIT" | ||
tags: ["async" "http"] | ||
homepage: "https://github.com/anuragsoni/shuttle" | ||
bug-reports: "https://github.com/anuragsoni/shuttle/issues" | ||
depends: [ | ||
"dune" {>= "2.8"} | ||
"ocaml" {>= "4.11.0"} | ||
"async" {>= "v0.14" & < "v0.15"} | ||
"core" {>= "v0.14" & < "v0.15"} | ||
"httpaf" {>= "0.6.6"} | ||
"ppx_jane" {>= "v0.14" & < "v0.15"} | ||
"shuttle" {= version} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/anuragsoni/shuttle.git" | ||
url { | ||
src: | ||
"https://github.com/anuragsoni/shuttle/releases/download/0.3.1/shuttle-0.3.1.tbz" | ||
checksum: [ | ||
"sha256=fadea3010bb0008ffa6533abefeda865162c7f66601c84256d6a459fe7317cb2" | ||
"sha512=1c4813878d75638694a53eb4c241116301dfd10e7320a8c5185fd2099a3d22babc5f27e6776850220bed0b2b80e91e034700285282fe17125139c92dee2c6348" | ||
] | ||
} | ||
x-commit-hash: "b1369c87b7a1c695c880bd5df78471123ecdb951" | ||
available: [ arch != "s390x" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
opam-version: "2.0" | ||
synopsis: "Async_ssl support for shuttle" | ||
maintainer: ["Anurag Soni <anurag@sonianurag.com>"] | ||
authors: ["Anurag Soni"] | ||
license: "MIT" | ||
tags: ["async" "reader" "writer" "ssl"] | ||
homepage: "https://github.com/anuragsoni/shuttle" | ||
bug-reports: "https://github.com/anuragsoni/shuttle/issues" | ||
depends: [ | ||
"dune" {>= "2.8"} | ||
"ocaml" {>= "4.11.0"} | ||
"shuttle" {= version} | ||
"ppx_jane" {>= "v0.14" & < "v0.15"} | ||
"async_ssl" {>= "v0.14" & < "v0.15"} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/anuragsoni/shuttle.git" | ||
url { | ||
src: | ||
"https://github.com/anuragsoni/shuttle/releases/download/0.3.1/shuttle-0.3.1.tbz" | ||
checksum: [ | ||
"sha256=fadea3010bb0008ffa6533abefeda865162c7f66601c84256d6a459fe7317cb2" | ||
"sha512=1c4813878d75638694a53eb4c241116301dfd10e7320a8c5185fd2099a3d22babc5f27e6776850220bed0b2b80e91e034700285282fe17125139c92dee2c6348" | ||
] | ||
} | ||
x-commit-hash: "b1369c87b7a1c695c880bd5df78471123ecdb951" | ||
available: [ arch != "s390x" ] |