Skip to content

Commit 3d34944

Browse files
authored
Merge pull request #24522 from dinosaure/release-uri-v4.4.0
[new release] uri, uri-sexp, uri-re and uri-bench (4.4.0)
2 parents 2b09dd1 + ab0297a commit 3d34944

File tree

4 files changed

+144
-0
lines changed
  • packages
    • uri-bench/uri-bench.4.4.0
    • uri-re/uri-re.4.4.0
    • uri-sexp/uri-sexp.4.4.0
    • uri/uri.4.4.0

4 files changed

+144
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
opam-version: "2.0"
2+
maintainer: "[email protected]"
3+
authors: ["Anil Madhavapeddy" "David Sheets" "Rudi Grinberg"]
4+
license: "ISC"
5+
tags: ["url" "uri" "org:mirage" "org:xapi-project"]
6+
homepage: "https://github.com/mirage/ocaml-uri"
7+
bug-reports: "https://github.com/mirage/ocaml-uri/issues"
8+
dev-repo: "git+https://github.com/mirage/ocaml-uri.git"
9+
doc: "https://mirage.github.io/ocaml-uri/"
10+
synopsis: "Benchmarking package for ocaml-uri"
11+
description: """
12+
This is a benchmarking package for the OCaml implementation of the [RFC3986](http://tools.ietf.org/html/rfc3986) specification for parsing URI or URLs.
13+
"""
14+
depends: [
15+
"ocaml" {>= "4.08.0"}
16+
"dune" {>= "1.2.0"}
17+
"uri" {= version}
18+
"core_bench" {>= "v0.14.0"}
19+
"core_unix" {>= "v0.14.0"}
20+
]
21+
build: [
22+
["dune" "subst"] {dev}
23+
["dune" "build" "-p" name "-j" jobs]
24+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
25+
]
26+
url {
27+
src:
28+
"https://github.com/mirage/ocaml-uri/releases/download/v4.4.0/uri-4.4.0.tbz"
29+
checksum: [
30+
"sha256=cdabaf6ef5cd2161e59cc7b74c6e4a68ecb80a9f4e96002e338e1b6bf17adec4"
31+
"sha512=88374143e0d8aaf6d40aa3cbd7593f9832e9c9727738c6e651498125150c83d5646e13b5737d5c3e81484dd041127f67f8acea13fdc0300ac4e46107559f8ae2"
32+
]
33+
}
34+
x-commit-hash: "c336c796f4deb8979a4c7ceea3bef34b46240623"

packages/uri-re/uri-re.4.4.0/opam

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
opam-version: "2.0"
2+
maintainer: "[email protected]"
3+
authors: ["Anil Madhavapeddy" "David Sheets" "Rudi Grinberg"]
4+
license: "ISC"
5+
tags: ["url" "uri" "org:mirage" "org:xapi-project"]
6+
homepage: "https://github.com/mirage/ocaml-uri"
7+
bug-reports: "https://github.com/mirage/ocaml-uri/issues"
8+
dev-repo: "git+https://github.com/mirage/ocaml-uri.git"
9+
doc: "https://mirage.github.io/ocaml-uri/"
10+
synopsis: "An RFC3986 URI/URL parsing library"
11+
description: """
12+
This is an OCaml implementation of the [RFC3986](http://tools.ietf.org/html/rfc3986) specification
13+
for parsing URI or URLs.
14+
"""
15+
depends: [
16+
"ocaml" {>= "4.08.0"}
17+
"dune" {>= "1.2.0"}
18+
"ounit2" {with-test & >= "1.0.2"}
19+
"ppx_sexp_conv" {with-test & >= "v0.9.0"}
20+
"re" {>= "1.9.0"}
21+
"stringext" {>= "1.4.0"}
22+
"uri" {= version}
23+
"crowbar" {with-test}
24+
]
25+
build: [
26+
["dune" "subst"] {dev}
27+
["dune" "build" "-p" name "-j" jobs]
28+
["dune" "runtest" "-p" name "-j" jobs] {with-test & os != "macos"}
29+
]
30+
messages: [ "Deprecated. This package is outdated, you should consider using uri instead" ]
31+
url {
32+
src:
33+
"https://github.com/mirage/ocaml-uri/releases/download/v4.4.0/uri-4.4.0.tbz"
34+
checksum: [
35+
"sha256=cdabaf6ef5cd2161e59cc7b74c6e4a68ecb80a9f4e96002e338e1b6bf17adec4"
36+
"sha512=88374143e0d8aaf6d40aa3cbd7593f9832e9c9727738c6e651498125150c83d5646e13b5737d5c3e81484dd041127f67f8acea13fdc0300ac4e46107559f8ae2"
37+
]
38+
}
39+
x-commit-hash: "c336c796f4deb8979a4c7ceea3bef34b46240623"
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
opam-version: "2.0"
2+
maintainer: "[email protected]"
3+
authors: ["Anil Madhavapeddy" "David Sheets" "Rudi Grinberg"]
4+
license: "ISC"
5+
tags: ["url" "uri" "org:mirage" "org:xapi-project"]
6+
homepage: "https://github.com/mirage/ocaml-uri"
7+
bug-reports: "https://github.com/mirage/ocaml-uri/issues"
8+
dev-repo: "git+https://github.com/mirage/ocaml-uri.git"
9+
doc: "https://mirage.github.io/ocaml-uri/"
10+
synopsis: "An RFC3986 URI/URL parsing library"
11+
description: """
12+
ocaml-uri with sexp support
13+
"""
14+
depends: [
15+
"uri" {= version}
16+
"dune" {>= "1.2.0"}
17+
"ppx_sexp_conv" {>= "v0.13.0"}
18+
"sexplib0"
19+
"ounit2" {with-test}
20+
]
21+
build: [
22+
["dune" "subst"] {dev}
23+
["dune" "build" "-p" name "-j" jobs]
24+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
25+
]
26+
url {
27+
src:
28+
"https://github.com/mirage/ocaml-uri/releases/download/v4.4.0/uri-4.4.0.tbz"
29+
checksum: [
30+
"sha256=cdabaf6ef5cd2161e59cc7b74c6e4a68ecb80a9f4e96002e338e1b6bf17adec4"
31+
"sha512=88374143e0d8aaf6d40aa3cbd7593f9832e9c9727738c6e651498125150c83d5646e13b5737d5c3e81484dd041127f67f8acea13fdc0300ac4e46107559f8ae2"
32+
]
33+
}
34+
x-commit-hash: "c336c796f4deb8979a4c7ceea3bef34b46240623"

packages/uri/uri.4.4.0/opam

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
opam-version: "2.0"
2+
maintainer: "[email protected]"
3+
authors: ["Anil Madhavapeddy" "David Sheets" "Rudi Grinberg"]
4+
license: "ISC"
5+
tags: ["url" "uri" "org:mirage" "org:xapi-project"]
6+
homepage: "https://github.com/mirage/ocaml-uri"
7+
bug-reports: "https://github.com/mirage/ocaml-uri/issues"
8+
dev-repo: "git+https://github.com/mirage/ocaml-uri.git"
9+
doc: "https://mirage.github.io/ocaml-uri/"
10+
synopsis: "An RFC3986 URI/URL parsing library"
11+
description: """
12+
This is an OCaml implementation of the [RFC3986](http://tools.ietf.org/html/rfc3986) specification
13+
for parsing URI or URLs.
14+
"""
15+
depends: [
16+
"ocaml" {>= "4.08.0"}
17+
"dune" {>= "1.2.0"}
18+
"ounit2" {with-test & >= "1.0.2"}
19+
"ppx_sexp_conv" {with-test & >= "v0.9.0"}
20+
"crowbar" {with-test & >= "0.2"}
21+
"stringext" {>= "1.4.0"}
22+
"angstrom" {>= "0.14.0"}
23+
]
24+
build: [
25+
["dune" "subst"] {dev}
26+
["dune" "build" "-p" name "-j" jobs]
27+
["dune" "runtest" "-p" name "-j" jobs] {with-test & os != "macos"}
28+
]
29+
url {
30+
src:
31+
"https://github.com/mirage/ocaml-uri/releases/download/v4.4.0/uri-4.4.0.tbz"
32+
checksum: [
33+
"sha256=cdabaf6ef5cd2161e59cc7b74c6e4a68ecb80a9f4e96002e338e1b6bf17adec4"
34+
"sha512=88374143e0d8aaf6d40aa3cbd7593f9832e9c9727738c6e651498125150c83d5646e13b5737d5c3e81484dd041127f67f8acea13fdc0300ac4e46107559f8ae2"
35+
]
36+
}
37+
x-commit-hash: "c336c796f4deb8979a4c7ceea3bef34b46240623"

0 commit comments

Comments
 (0)