Skip to content

Commit 9596dec

Browse files
authored
Merge pull request ocaml#23565 from zoggy/opam-publish-rdf.0.14.0
5 packages from framagit.org/zoggy/ocaml-rdf/-/archive/0.14.0/ocaml-rdf-0.14.0.tar.gz
2 parents 5811dd2 + beebde1 commit 9596dec

File tree

5 files changed

+213
-0
lines changed
  • packages
    • rdf_lwt/rdf_lwt.0.14.0
    • rdf_mysql/rdf_mysql.0.14.0
    • rdf_postgresql/rdf_postgresql.0.14.0
    • rdf_ppx/rdf_ppx.0.14.0
    • rdf/rdf.0.14.0

5 files changed

+213
-0
lines changed

packages/rdf/rdf.0.14.0/opam

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
opam-version: "2.0"
2+
synopsis: "OCaml library to manipulate RDF graphs; implements SPARQL"
3+
maintainer: "[email protected]"
4+
authors: "Zoggy <[email protected]>"
5+
license: "LGPL-3.0-only"
6+
homepage: "https://www.good-eris.net/ocaml-rdf/"
7+
doc: "https://www.good-eris.net/ocaml-rdf/doc.html"
8+
bug-reports: "https://framagit.org/zoggy/ocaml-rdf/issues"
9+
depends: [
10+
"dune" {>= "2.9"}
11+
"dune-build-info" {>= "2.9.1"}
12+
"logs" {>= "0.7.0"}
13+
"fmt" {>= "0.8.9"}
14+
"ptime" {>= "0.8.5"}
15+
"re" {>= "1.10.3"}
16+
"uri" {>= "4.2.0"}
17+
"uuidm" {>= "0.9.7"}
18+
"uutf" {>= "1.0.0"}
19+
"xmlm" {>= "1.3.0"}
20+
"sedlex" {>= "2.3"}
21+
"menhir" {>= "20210419"}
22+
"cryptokit" {>= "1.7"}
23+
"pcre" {>= "7.4.6"}
24+
"iri" {>= "0.6.0"}
25+
"jsonm" {>= "1.0.0"}
26+
"uucp" {>= "14.0.0"}
27+
"uutf" {>= "1.0.0"}
28+
"yojson" {>= "1.7.0"}
29+
"odoc" {with-doc}
30+
]
31+
build: [
32+
["dune" "subst"] {dev}
33+
[
34+
"dune"
35+
"build"
36+
"-p"
37+
name
38+
"-j"
39+
jobs
40+
"--promote-install-files=false"
41+
"@install"
42+
"@runtest" {with-test}
43+
"@doc" {with-doc}
44+
]
45+
["dune" "install" "-p" name "--create-install-files" name]
46+
]
47+
dev-repo: "git+https://framagit.org/zoggy/ocaml-rdf.git"
48+
url {
49+
src:
50+
"https://framagit.org/zoggy/ocaml-rdf/-/archive/0.14.0/ocaml-rdf-0.14.0.tar.gz"
51+
checksum: [
52+
"md5=430a2d24537cac2d48b0c5f5a51794b8"
53+
"sha512=8f6d0416477890716bf7e9179fca971fc55b0f0cb75972d0d485cb8700361f4fba627a512f123615ef722bdaa5e694ccf84d58497d238067b94269ab99c48264"
54+
]
55+
}
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
opam-version: "2.0"
2+
synopsis: "Sparql HTTP with Lwt"
3+
maintainer: "[email protected]"
4+
authors: "Zoggy <[email protected]>"
5+
license: "LGPL-3.0-only"
6+
homepage: "https://www.good-eris.net/ocaml-rdf/"
7+
doc: "https://www.good-eris.net/ocaml-rdf/doc.html"
8+
bug-reports: "https://framagit.org/zoggy/ocaml-rdf/issues"
9+
depends: [
10+
"dune" {>= "2.9"}
11+
"rdf" {= version}
12+
"cohttp-lwt-unix" {>= "4.0.0"}
13+
"lwt" {>= "5.4.0"}
14+
"lwt_ppx" {>= "2.0.2"}
15+
"odoc" {with-doc}
16+
]
17+
build: [
18+
["dune" "subst"] {dev}
19+
[
20+
"dune"
21+
"build"
22+
"-p"
23+
name
24+
"-j"
25+
jobs
26+
"--promote-install-files=false"
27+
"@install"
28+
"@runtest" {with-test}
29+
"@doc" {with-doc}
30+
]
31+
["dune" "install" "-p" name "--create-install-files" name]
32+
]
33+
dev-repo: "git+https://framagit.org/zoggy/ocaml-rdf.git"
34+
url {
35+
src:
36+
"https://framagit.org/zoggy/ocaml-rdf/-/archive/0.14.0/ocaml-rdf-0.14.0.tar.gz"
37+
checksum: [
38+
"md5=430a2d24537cac2d48b0c5f5a51794b8"
39+
"sha512=8f6d0416477890716bf7e9179fca971fc55b0f0cb75972d0d485cb8700361f4fba627a512f123615ef722bdaa5e694ccf84d58497d238067b94269ab99c48264"
40+
]
41+
}
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
opam-version: "2.0"
2+
synopsis: "Mysql backend for rdf"
3+
maintainer: "[email protected]"
4+
authors: "Zoggy <[email protected]>"
5+
license: "LGPL-3.0-only"
6+
homepage: "https://www.good-eris.net/ocaml-rdf/"
7+
doc: "https://www.good-eris.net/ocaml-rdf/doc.html"
8+
bug-reports: "https://framagit.org/zoggy/ocaml-rdf/issues"
9+
depends: [
10+
"dune" {>= "2.9"}
11+
"rdf" {= version}
12+
"mysql" {>= "1.1.1"}
13+
"odoc" {with-doc}
14+
]
15+
build: [
16+
["dune" "subst"] {dev}
17+
[
18+
"dune"
19+
"build"
20+
"-p"
21+
name
22+
"-j"
23+
jobs
24+
"--promote-install-files=false"
25+
"@install"
26+
"@runtest" {with-test}
27+
"@doc" {with-doc}
28+
]
29+
["dune" "install" "-p" name "--create-install-files" name]
30+
]
31+
dev-repo: "git+https://framagit.org/zoggy/ocaml-rdf.git"
32+
url {
33+
src:
34+
"https://framagit.org/zoggy/ocaml-rdf/-/archive/0.14.0/ocaml-rdf-0.14.0.tar.gz"
35+
checksum: [
36+
"md5=430a2d24537cac2d48b0c5f5a51794b8"
37+
"sha512=8f6d0416477890716bf7e9179fca971fc55b0f0cb75972d0d485cb8700361f4fba627a512f123615ef722bdaa5e694ccf84d58497d238067b94269ab99c48264"
38+
]
39+
}
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
opam-version: "2.0"
2+
synopsis: "Postgresql backend for rdf"
3+
maintainer: "[email protected]"
4+
authors: "Zoggy <[email protected]>"
5+
license: "LGPL-3.0-only"
6+
homepage: "https://www.good-eris.net/ocaml-rdf/"
7+
doc: "https://www.good-eris.net/ocaml-rdf/doc.html"
8+
bug-reports: "https://framagit.org/zoggy/ocaml-rdf/issues"
9+
depends: [
10+
"dune" {>= "2.9"}
11+
"rdf" {= version}
12+
"postgresql" {>= "5.0.0"}
13+
"odoc" {with-doc}
14+
]
15+
build: [
16+
["dune" "subst"] {dev}
17+
[
18+
"dune"
19+
"build"
20+
"-p"
21+
name
22+
"-j"
23+
jobs
24+
"--promote-install-files=false"
25+
"@install"
26+
"@runtest" {with-test}
27+
"@doc" {with-doc}
28+
]
29+
["dune" "install" "-p" name "--create-install-files" name]
30+
]
31+
dev-repo: "git+https://framagit.org/zoggy/ocaml-rdf.git"
32+
url {
33+
src:
34+
"https://framagit.org/zoggy/ocaml-rdf/-/archive/0.14.0/ocaml-rdf-0.14.0.tar.gz"
35+
checksum: [
36+
"md5=430a2d24537cac2d48b0c5f5a51794b8"
37+
"sha512=8f6d0416477890716bf7e9179fca971fc55b0f0cb75972d0d485cb8700361f4fba627a512f123615ef722bdaa5e694ccf84d58497d238067b94269ab99c48264"
38+
]
39+
}
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
opam-version: "2.0"
2+
synopsis: "Syntax extension for rdf"
3+
maintainer: "[email protected]"
4+
authors: "Zoggy <[email protected]>"
5+
license: "LGPL-3.0-only"
6+
homepage: "https://www.good-eris.net/ocaml-rdf/"
7+
doc: "https://www.good-eris.net/ocaml-rdf/doc.html"
8+
bug-reports: "https://framagit.org/zoggy/ocaml-rdf/issues"
9+
depends: [
10+
"dune" {>= "2.9"}
11+
"rdf" {= version}
12+
"ppxlib" {>= "0.23.0"}
13+
"odoc" {with-doc}
14+
]
15+
build: [
16+
["dune" "subst"] {dev}
17+
[
18+
"dune"
19+
"build"
20+
"-p"
21+
name
22+
"-j"
23+
jobs
24+
"--promote-install-files=false"
25+
"@install"
26+
"@runtest" {with-test}
27+
"@doc" {with-doc}
28+
]
29+
["dune" "install" "-p" name "--create-install-files" name]
30+
]
31+
dev-repo: "git+https://framagit.org/zoggy/ocaml-rdf.git"
32+
url {
33+
src:
34+
"https://framagit.org/zoggy/ocaml-rdf/-/archive/0.14.0/ocaml-rdf-0.14.0.tar.gz"
35+
checksum: [
36+
"md5=430a2d24537cac2d48b0c5f5a51794b8"
37+
"sha512=8f6d0416477890716bf7e9179fca971fc55b0f0cb75972d0d485cb8700361f4fba627a512f123615ef722bdaa5e694ccf84d58497d238067b94269ab99c48264"
38+
]
39+
}

0 commit comments

Comments
 (0)