Skip to content

Commit 4eba549

Browse files
authored
Merge pull request ocaml#27874 from MisterDA/release-curl-0.10.0
[new release] curl (3 packages) (0.10.0)
2 parents e638a97 + 280cba5 commit 4eba549

File tree

3 files changed

+121
-0
lines changed
  • packages
    • curl_lwt/curl_lwt.0.10.0
    • curl/curl.0.10.0
    • ocurl/ocurl.transition

3 files changed

+121
-0
lines changed

packages/curl/curl.0.10.0/opam

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
opam-version: "2.0"
2+
synopsis: "Bindings to libcurl"
3+
description:
4+
"libcurl is a client-side URL transfer library, supporting HTTP and a multitude of other network protocols (FTP/SMTP/RTSP/etc). This library wrap easy synchronous API (Curl) and synchronous parallel and generic asynchronous API (Curl.Multi). For the Lwt-enabled asynchronous interface (Curl_lwt) see curl_lwt package."
5+
maintainer: ["[email protected]" "Antonin Décimo <[email protected]>"]
6+
authors: ["Lars Nilsson" "ygrek"]
7+
license: "MIT"
8+
tags: ["org:ygrek" "clib:curl"]
9+
homepage: "https://ygrek.org/p/ocurl"
10+
doc: "https://ygrek.org/p/ocurl/api/index.html"
11+
bug-reports: "https://github.com/ygrek/ocurl/issues"
12+
depends: [
13+
"dune" {>= "3.0"}
14+
"ocaml" {>= "4.11"}
15+
"dune-configurator" {>= "3.18.1"}
16+
"base-bigarray"
17+
"base-unix"
18+
"conf-libcurl"
19+
"odoc" {with-doc}
20+
]
21+
conflicts: [
22+
"ocurl" {!= "transition"}
23+
]
24+
build: [
25+
["dune" "subst"] {dev}
26+
[
27+
"dune"
28+
"build"
29+
"-p"
30+
name
31+
"-j"
32+
jobs
33+
"@install"
34+
"@runtest" {with-test}
35+
"@doc" {with-doc}
36+
]
37+
]
38+
dev-repo: "git+https://github.com/ygrek/ocurl.git"
39+
url {
40+
src:
41+
"https://github.com/ygrek/ocurl/releases/download/0.10.0/curl-0.10.0.tbz"
42+
checksum: [
43+
"sha256=c14e215fda7f94292a758d9ae90f7bcbc21564c919190064011fccdcf7a12914"
44+
"sha512=10e089942a496c739f9468155c992f194b315abe6c63d7f72551ff4bf052e96e5dd25b85254e3ab144d330f33ed83864b185389ffe35c2bfeeb2cbf505b47600"
45+
]
46+
}
47+
x-commit-hash: "c961aab97cfe64670bcd80278e393bcff7219792"
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
opam-version: "2.0"
2+
synopsis: "Bindings to libcurl (lwt variant)"
3+
description:
4+
"libcurl is a client-side URL transfer library, supporting HTTP and a multitude of other network protocols (FTP/SMTP/RTSP/etc). This library provides an Lwt-enabled asynchronous interface (Curl_lwt)."
5+
maintainer: ["[email protected]" "Antonin Décimo <[email protected]>"]
6+
authors: ["Lars Nilsson" "ygrek"]
7+
license: "MIT"
8+
tags: ["org:ygrek" "clib:curl"]
9+
homepage: "https://ygrek.org/p/ocurl"
10+
doc: "https://ygrek.org/p/ocurl/api/index.html"
11+
bug-reports: "https://github.com/ygrek/ocurl/issues"
12+
depends: [
13+
"dune" {>= "3.0"}
14+
"ocaml" {>= "4.11"}
15+
"base-unix"
16+
"curl" {= version}
17+
"lwt"
18+
"lwt_ppx" {with-dev-setup}
19+
"odoc" {with-doc}
20+
]
21+
build: [
22+
["dune" "subst"] {dev}
23+
[
24+
"dune"
25+
"build"
26+
"-p"
27+
name
28+
"-j"
29+
jobs
30+
"@install"
31+
"@runtest" {with-test}
32+
"@doc" {with-doc}
33+
]
34+
]
35+
dev-repo: "git+https://github.com/ygrek/ocurl.git"
36+
url {
37+
src:
38+
"https://github.com/ygrek/ocurl/releases/download/0.10.0/curl-0.10.0.tbz"
39+
checksum: [
40+
"sha256=c14e215fda7f94292a758d9ae90f7bcbc21564c919190064011fccdcf7a12914"
41+
"sha512=10e089942a496c739f9468155c992f194b315abe6c63d7f72551ff4bf052e96e5dd25b85254e3ab144d330f33ed83864b185389ffe35c2bfeeb2cbf505b47600"
42+
]
43+
}
44+
x-commit-hash: "c961aab97cfe64670bcd80278e393bcff7219792"
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
opam-version: "2.0"
2+
synopsis:
3+
"This is a transition package, ocurl is now named curl. Use the curl package instead"
4+
description:
5+
"This is a transition package, ocurl is now named curl. Use the curl package instead."
6+
maintainer: ["[email protected]" "Antonin Décimo <[email protected]>"]
7+
authors: ["Lars Nilsson" "ygrek"]
8+
license: "MIT"
9+
homepage: "https://ygrek.org/p/ocurl"
10+
doc: "https://ygrek.org/p/ocurl/api/index.html"
11+
bug-reports: "https://github.com/ygrek/ocurl/issues"
12+
dev-repo: "git+https://github.com/ygrek/ocurl.git"
13+
depends: [
14+
"curl"
15+
"curl_lwt"
16+
]
17+
flags: deprecated
18+
post-messages: [
19+
"ocurl has been renamed and the ocurl package is now a transition \
20+
package. Use the curl package instead."
21+
]
22+
url {
23+
src:
24+
"https://github.com/ygrek/ocurl/releases/download/0.10.0/curl-0.10.0.tbz"
25+
checksum: [
26+
"sha256=c14e215fda7f94292a758d9ae90f7bcbc21564c919190064011fccdcf7a12914"
27+
"sha512=10e089942a496c739f9468155c992f194b315abe6c63d7f72551ff4bf052e96e5dd25b85254e3ab144d330f33ed83864b185389ffe35c2bfeeb2cbf505b47600"
28+
]
29+
}
30+
x-commit-hash: "c961aab97cfe64670bcd80278e393bcff7219792"

0 commit comments

Comments
 (0)