this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #21132 from andersfugmann/opam-publish-aws-s3-aws-s3-async-aws-s3-lwt.4.6.0

3 packages from andersfugmann/aws-s3 at 4.6.0

authored by

Kate and committed by
GitHub
bdcc026e 66439f55

+129
+42
packages/aws-s3-async/aws-s3-async.4.6.0/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "Anders Fugmann <anders@fugmann.net>" 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.15.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: "https://github.com/andersfugmann/aws-s3/archive/4.6.0.tar.gz" 38 + checksum: [ 39 + "md5=dd96d98ca52d378881e3bf7a1179bb45" 40 + "sha512=a8f5ed6e605be62e074d85c125315c41c4481a1cea850f26d8fb62f3d0f601925d782ff31fab87c59d7a853e777755689bca61c4892a8832a13cb2359cc36bc8" 41 + ] 42 + }
+38
packages/aws-s3-lwt/aws-s3-lwt.4.6.0/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "Anders Fugmann <anders@fugmann.net>" 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.05.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: "https://github.com/andersfugmann/aws-s3/archive/4.6.0.tar.gz" 34 + checksum: [ 35 + "md5=dd96d98ca52d378881e3bf7a1179bb45" 36 + "sha512=a8f5ed6e605be62e074d85c125315c41c4481a1cea850f26d8fb62f3d0f601925d782ff31fab87c59d7a853e777755689bca61c4892a8832a13cb2359cc36bc8" 37 + ] 38 + }
+49
packages/aws-s3/aws-s3.4.6.0/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "Anders Fugmann <anders@fugmann.net>" 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" & < "6.0.0"} 23 + "ppx_protocol_conv_json" {>= "5.0.0" & < "6.0.0"} 24 + "cmdliner" {>= "1.1.0"} 25 + "ppx_inline_test" {with-test} 26 + "base64" {>= "3.1.0"} 27 + ] 28 + synopsis: "Ocaml library for accessing Amazon S3" 29 + description: """ 30 + This library provides access to Amazon Simple Storage Solution (S3). 31 + The library supports: 32 + * Copying file to and from s3 33 + * List files in S3 (from root) 34 + * Delete single/multi object in S3 35 + * HEAD operation on single objects 36 + * Streaming transfer to and from aws. 37 + * Multi part upload (including s3 -> s3 copy) 38 + * Fetching machine role/credentials (though IAM) 39 + 40 + The library supports both lwt and async concurrency models. 41 + * For lwt, please install `aws-s3-lwt` package 42 + * For Async, please install `aws-s3-async` package""" 43 + url { 44 + src: "https://github.com/andersfugmann/aws-s3/archive/4.6.0.tar.gz" 45 + checksum: [ 46 + "md5=dd96d98ca52d378881e3bf7a1179bb45" 47 + "sha512=a8f5ed6e605be62e074d85c125315c41c4481a1cea850f26d8fb62f3d0f601925d782ff31fab87c59d7a853e777755689bca61c4892a8832a13cb2359cc36bc8" 48 + ] 49 + }