Skip to content

Commit 0865455

Browse files
c-cubenberth
authored andcommitted
[new release] ezcurl (2 packages) (0.2.4)
CHANGES: - fix: global initialization logic is now hidden behind a mutex * depend on `thread`
1 parent 94ed1bf commit 0865455

File tree

2 files changed

+63
-0
lines changed
  • packages
    • ezcurl/ezcurl.0.2.4
    • ezcurl-lwt/ezcurl-lwt.0.2.4

2 files changed

+63
-0
lines changed
+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
opam-version: "2.0"
2+
authors: ["Simon Cruanes"]
3+
maintainer: "[email protected]"
4+
license: "MIT"
5+
synopsis: "Friendly wrapper around OCurl, Lwt version"
6+
build: [
7+
["dune" "build" "@install" "-p" name "-j" jobs]
8+
["dune" "build" "@doc" "-p" name] {with-doc}
9+
#["dune" "runtest" "-p" name] {with-test}
10+
]
11+
depends: [
12+
"ocurl" {>= "0.8.0"}
13+
"ezcurl" { = version }
14+
"lwt"
15+
"dune" { >= "1.0" }
16+
"odoc" {with-doc}
17+
"mdx" {with-test}
18+
"ocaml" { >= "4.03.0" }
19+
]
20+
tags: [ "curl" "web" "http" "client" "lwt" ]
21+
homepage: "https://github.com/c-cube/ezcurl/"
22+
doc: "https://c-cube.github.io/ezcurl/doc/1.2"
23+
bug-reports: "https://github.com/c-cube/ezcurl/issues"
24+
dev-repo: "git+https://github.com/c-cube/ezcurl.git"
25+
url {
26+
src:
27+
"https://github.com/c-cube/ezcurl/releases/download/v0.2.4/ezcurl-0.2.4.tbz"
28+
checksum: [
29+
"sha256=26eda208be72d746eafbfe47f264850ae619e811b8c3165e7684d7a9295541a1"
30+
"sha512=841d88cd4e7e6449cf17dc4626533856a13c81f96e81305be4773a0d2e5eba524950cd5280da6ff6390c386823c1bdbe671d946f643d26c2ea600b4b1cd66531"
31+
]
32+
}
33+
x-commit-hash: "ddf181fe83973a95b92399b3753583dea03ba32a"

packages/ezcurl/ezcurl.0.2.4/opam

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
opam-version: "2.0"
2+
authors: ["Simon Cruanes"]
3+
maintainer: "[email protected]"
4+
license: "MIT"
5+
synopsis: "Friendly wrapper around OCurl"
6+
build: [
7+
["dune" "build" "@install" "-p" name "-j" jobs]
8+
["dune" "build" "@doc" "-p" name] {with-doc}
9+
#["dune" "runtest" "-p" name] {with-test}
10+
]
11+
depends: [
12+
"ocurl" {>= "0.8.0"}
13+
"dune" { >= "1.0" }
14+
"odoc" {with-doc}
15+
"ocaml" { >= "4.03.0" }
16+
]
17+
tags: [ "curl" "web" "http" "client" ]
18+
homepage: "https://github.com/c-cube/ezcurl/"
19+
doc: "https://c-cube.github.io/ezcurl/doc/1.2"
20+
bug-reports: "https://github.com/c-cube/ezcurl/issues"
21+
dev-repo: "git+https://github.com/c-cube/ezcurl.git"
22+
url {
23+
src:
24+
"https://github.com/c-cube/ezcurl/releases/download/v0.2.4/ezcurl-0.2.4.tbz"
25+
checksum: [
26+
"sha256=26eda208be72d746eafbfe47f264850ae619e811b8c3165e7684d7a9295541a1"
27+
"sha512=841d88cd4e7e6449cf17dc4626533856a13c81f96e81305be4773a0d2e5eba524950cd5280da6ff6390c386823c1bdbe671d946f643d26c2ea600b4b1cd66531"
28+
]
29+
}
30+
x-commit-hash: "ddf181fe83973a95b92399b3753583dea03ba32a"

0 commit comments

Comments
 (0)