Skip to content

Commit cccb570

Browse files
committed
6 packages from framagit.org/zoggy/ocaml-rdf/-/archive/0.15.0/ocaml-rdf-0.15.0.tar.gz
1 parent 3a76bef commit cccb570

File tree

6 files changed

+255
-0
lines changed
  • packages
    • rdf_json_ld/rdf_json_ld.0.15.0
    • rdf_lwt/rdf_lwt.0.15.0
    • rdf_mysql/rdf_mysql.0.15.0
    • rdf_postgresql/rdf_postgresql.0.15.0
    • rdf_ppx/rdf_ppx.0.15.0
    • rdf/rdf.0.15.0

6 files changed

+255
-0
lines changed

packages/rdf/rdf.0.15.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.7.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.15.0/ocaml-rdf-0.15.0.tar.gz"
51+
checksum: [
52+
"md5=5a4584aeef27f92598fe1cbafed9923f"
53+
"sha512=f14c2577f89a1c80aa3594ed4e91ed4e6f13dfc4bc5e41b6d7ceb84f9c4e587ca2cda0b5e201aa388561f37d43de0a84b6b795db62c3972b640cea88bab7304b"
54+
]
55+
}
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
opam-version: "2.0"
2+
synopsis: "Json-ld"
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+
"jsonm" {>= "1.0.2"}
14+
"lwt" {>= "5.4.0"}
15+
"lwt_ppx" {>= "2.0.2"}
16+
"odoc" {with-doc}
17+
]
18+
build: [
19+
["dune" "subst"] {dev}
20+
[
21+
"dune"
22+
"build"
23+
"-p"
24+
name
25+
"-j"
26+
jobs
27+
"--promote-install-files=false"
28+
"@install"
29+
"@runtest" {with-test}
30+
"@doc" {with-doc}
31+
]
32+
["dune" "install" "-p" name "--create-install-files" name]
33+
]
34+
dev-repo: "git+https://framagit.org/zoggy/ocaml-rdf.git"
35+
url {
36+
src:
37+
"https://framagit.org/zoggy/ocaml-rdf/-/archive/0.15.0/ocaml-rdf-0.15.0.tar.gz"
38+
checksum: [
39+
"md5=5a4584aeef27f92598fe1cbafed9923f"
40+
"sha512=f14c2577f89a1c80aa3594ed4e91ed4e6f13dfc4bc5e41b6d7ceb84f9c4e587ca2cda0b5e201aa388561f37d43de0a84b6b795db62c3972b640cea88bab7304b"
41+
]
42+
}
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.15.0/ocaml-rdf-0.15.0.tar.gz"
37+
checksum: [
38+
"md5=5a4584aeef27f92598fe1cbafed9923f"
39+
"sha512=f14c2577f89a1c80aa3594ed4e91ed4e6f13dfc4bc5e41b6d7ceb84f9c4e587ca2cda0b5e201aa388561f37d43de0a84b6b795db62c3972b640cea88bab7304b"
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.15.0/ocaml-rdf-0.15.0.tar.gz"
35+
checksum: [
36+
"md5=5a4584aeef27f92598fe1cbafed9923f"
37+
"sha512=f14c2577f89a1c80aa3594ed4e91ed4e6f13dfc4bc5e41b6d7ceb84f9c4e587ca2cda0b5e201aa388561f37d43de0a84b6b795db62c3972b640cea88bab7304b"
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.15.0/ocaml-rdf-0.15.0.tar.gz"
35+
checksum: [
36+
"md5=5a4584aeef27f92598fe1cbafed9923f"
37+
"sha512=f14c2577f89a1c80aa3594ed4e91ed4e6f13dfc4bc5e41b6d7ceb84f9c4e587ca2cda0b5e201aa388561f37d43de0a84b6b795db62c3972b640cea88bab7304b"
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.15.0/ocaml-rdf-0.15.0.tar.gz"
35+
checksum: [
36+
"md5=5a4584aeef27f92598fe1cbafed9923f"
37+
"sha512=f14c2577f89a1c80aa3594ed4e91ed4e6f13dfc4bc5e41b6d7ceb84f9c4e587ca2cda0b5e201aa388561f37d43de0a84b6b795db62c3972b640cea88bab7304b"
38+
]
39+
}

0 commit comments

Comments
 (0)