Skip to content

Commit 8cac63f

Browse files
authored
Merge pull request #25497 from andersfugmann/release-aws-s3-4.8.1
[new release] aws-s3 (3 packages) (4.8.1)
2 parents 6899104 + ed0e4c2 commit 8cac63f

File tree

3 files changed

+136
-0
lines changed
  • packages
    • aws-s3-async/aws-s3-async.4.8.1
    • aws-s3-lwt/aws-s3-lwt.4.8.1
    • aws-s3/aws-s3.4.8.1

3 files changed

+136
-0
lines changed
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
opam-version: "2.0"
2+
maintainer: "Anders Fugmann <[email protected]>"
3+
authors: "Anders Fugmann"
4+
license: "BSD-3-Clause"
5+
homepage: "https://github.com/andersfugmann/aws-s3"
6+
dev-repo: "git+https://github.com/andersfugmann/aws-s3"
7+
bug-reports: "https://github.com/andersfugmann/aws-s3/issues"
8+
doc: "https://andersfugmann.github.io/aws-s3/"
9+
build: [
10+
["dune" "subst"] {dev}
11+
["dune" "build" "-p" name "-j" jobs]
12+
]
13+
depends: [
14+
"ocaml" {>= "4.08.0"}
15+
"dune" {>= "2.0.0"}
16+
"aws-s3" {= version}
17+
"async_kernel" {>= "v0.9.0"}
18+
"async_unix" {>= "v0.9.0"}
19+
"conduit-async" {>= "4.0.0"}
20+
"core" {>= "v0.16.0"}
21+
"core_unix" {>= "v0.15.0"}
22+
]
23+
synopsis: "Ocaml library for accessing Amazon S3 - Async version"
24+
description: """
25+
This library provides access to Amazon Simple Storage Solution (S3).
26+
The library supports:
27+
* Copying file to and from s3
28+
* List files in S3 (from root)
29+
* Delete single/multi object in S3
30+
* HEAD operation on single objects
31+
* Streaming transfer to and from aws.
32+
* Multi part upload (including s3 -> s3 copy)
33+
* Fetching machine role/credentials (though IAM)
34+
35+
This library uses async for concurrency"""
36+
url {
37+
src:
38+
"https://github.com/andersfugmann/aws-s3/releases/download/4.8.1/aws-s3-4.8.1.tbz"
39+
checksum: [
40+
"sha256=2658ea176ba9fec42f885d9a8f0d2e652ec945945cf9dc5c40807ebafed09464"
41+
"sha512=7e646905202e9f0569bdd95b0e14e89636a69b6c43f9c14ef2268d6f8d565b89bcfe303e1a56b27d6c5ca39ebceb4bb543315f34432eb2096b304e18a7221b83"
42+
]
43+
}
44+
x-commit-hash: "ca8e909947c45161efceb53b67b55afbf59da3ef"
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
opam-version: "2.0"
2+
maintainer: "Anders Fugmann <[email protected]>"
3+
authors: "Anders Fugmann"
4+
license: "BSD-3-Clause"
5+
homepage: "https://github.com/andersfugmann/aws-s3"
6+
dev-repo: "git+https://github.com/andersfugmann/aws-s3"
7+
bug-reports: "https://github.com/andersfugmann/aws-s3/issues"
8+
build: [
9+
["dune" "subst"] {dev}
10+
["dune" "build" "-p" name "-j" jobs]
11+
]
12+
depends: [
13+
"ocaml" {>= "4.08.0"}
14+
"dune" {>= "2.0.0"}
15+
"aws-s3" {= version}
16+
"lwt"
17+
"conduit-lwt-unix" {>= "5.0.0"}
18+
]
19+
synopsis: "Ocaml library for accessing Amazon S3 - Lwt version"
20+
description: """
21+
This library provides access to Amazon Simple Storage Solution (S3).
22+
The library supports:
23+
* Copying file to and from s3
24+
* List files in S3 (from root)
25+
* Delete single/multi object in S3
26+
* HEAD operation on single objects
27+
* Streaming transfer to and from aws.
28+
* Multi part upload (including s3 -> s3 copy)
29+
* Fetching machine role/credentials (though IAM)
30+
31+
This library uses lwt for concurrency"""
32+
url {
33+
src:
34+
"https://github.com/andersfugmann/aws-s3/releases/download/4.8.1/aws-s3-4.8.1.tbz"
35+
checksum: [
36+
"sha256=2658ea176ba9fec42f885d9a8f0d2e652ec945945cf9dc5c40807ebafed09464"
37+
"sha512=7e646905202e9f0569bdd95b0e14e89636a69b6c43f9c14ef2268d6f8d565b89bcfe303e1a56b27d6c5ca39ebceb4bb543315f34432eb2096b304e18a7221b83"
38+
]
39+
}
40+
x-commit-hash: "ca8e909947c45161efceb53b67b55afbf59da3ef"

packages/aws-s3/aws-s3.4.8.1/opam

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
opam-version: "2.0"
2+
maintainer: "Anders Fugmann <[email protected]>"
3+
authors: "Anders Fugmann"
4+
license: "BSD-3-Clause"
5+
homepage: "https://github.com/andersfugmann/aws-s3"
6+
dev-repo: "git+https://github.com/andersfugmann/aws-s3"
7+
bug-reports: "https://github.com/andersfugmann/aws-s3/issues"
8+
doc: "https://andersfugmann.github.io/aws-s3/"
9+
build: [
10+
["dune" "subst"] {dev}
11+
["dune" "build" "-p" name "-j" jobs]
12+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
13+
]
14+
depends: [
15+
"ocaml" {>= "4.08.0"}
16+
"dune" {>= "2.0.0"}
17+
"ocaml-inifiles"
18+
"digestif" {>= "0.7"}
19+
"ptime"
20+
"uri"
21+
"ezxmlm" {>= "1.1.0"}
22+
"ppx_protocol_conv_xmlm" {>= "5.0.0"}
23+
"ppx_protocol_conv_json" {>= "5.0.0"}
24+
"yojson"
25+
"cmdliner" {>= "1.1.0"}
26+
"ppx_inline_test" {with-test}
27+
"base64" {>= "3.1.0"}
28+
]
29+
synopsis: "Ocaml library for accessing Amazon S3"
30+
description: """
31+
This library provides access to Amazon Simple Storage Solution (S3).
32+
The library supports:
33+
* Copying file to and from s3
34+
* List files in S3 (from root)
35+
* Delete single/multi object in S3
36+
* HEAD operation on single objects
37+
* Streaming transfer to and from aws.
38+
* Multi part upload (including s3 -> s3 copy)
39+
* Fetching machine role/credentials (though IAM)
40+
41+
The library supports both lwt and async concurrency models.
42+
* For lwt, please install `aws-s3-lwt` package
43+
* For Async, please install `aws-s3-async` package"""
44+
url {
45+
src:
46+
"https://github.com/andersfugmann/aws-s3/releases/download/4.8.1/aws-s3-4.8.1.tbz"
47+
checksum: [
48+
"sha256=2658ea176ba9fec42f885d9a8f0d2e652ec945945cf9dc5c40807ebafed09464"
49+
"sha512=7e646905202e9f0569bdd95b0e14e89636a69b6c43f9c14ef2268d6f8d565b89bcfe303e1a56b27d6c5ca39ebceb4bb543315f34432eb2096b304e18a7221b83"
50+
]
51+
}
52+
x-commit-hash: "ca8e909947c45161efceb53b67b55afbf59da3ef"

0 commit comments

Comments
 (0)