Skip to content

Commit cbc47e2

Browse files
committed
1 parent e87127a commit cbc47e2

File tree

7 files changed

+280
-0
lines changed
  • packages
    • rdf_impls/rdf_impls.1.1.0
    • rdf_json_ld/rdf_json_ld.1.1.0
    • rdf_lwt/rdf_lwt.1.1.0
    • rdf_mysql/rdf_mysql.1.1.0
    • rdf_postgresql/rdf_postgresql.1.1.0
    • rdf_ppx/rdf_ppx.1.1.0
    • rdf/rdf.1.1.0

7 files changed

+280
-0
lines changed

packages/rdf/rdf.1.1.0/opam

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
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" {>= "3.19"}
11+
"dune-build-info" {>= "2.9.1"}
12+
"fmt" {>= "0.9.0"}
13+
"iri" {>= "1.0.0"}
14+
"jsonm" {>= "1.0.2"}
15+
"logs" {>= "0.7.0"}
16+
"menhir" {>= "20231231"}
17+
"pcre" {>= "7.5.0"}
18+
"ptime" {>= "1.1.0"}
19+
"re" {>= "1.11.0"}
20+
"sedlex" {>= "3.2"}
21+
"uri" {>= "4.4.0"}
22+
"uucp" {>= "15.1.0"}
23+
"uuidm" {>= "0.9.9"}
24+
"uutf" {>= "1.0.3"}
25+
"xmlm" {>= "1.4.0"}
26+
"yojson" {>= "2.1.2"}
27+
"odoc" {with-doc}
28+
]
29+
build: [
30+
["dune" "subst"] {dev}
31+
[
32+
"dune"
33+
"build"
34+
"-p"
35+
name
36+
"-j"
37+
jobs
38+
"@install"
39+
"@runtest" {with-test}
40+
"@doc" {with-doc}
41+
]
42+
]
43+
dev-repo: "git+https://framagit.org/zoggy/ocaml-rdf.git"
44+
url {
45+
src: "https://www.good-eris.net/ocaml-rdf/archives/ocaml-rdf-1.1.0.tar.bz2"
46+
checksum: [
47+
"md5=fdca8ab06da34d9d76fe273f654ec6a1"
48+
"sha512=fff3ad6cb5978e43ac3c509cc25a01d16be6e21b04df607e0595ec0e7226ba7b6e4e2ec86bbeae4aa3d6a181fa399c7c00a4b1c788ddc98486f5c8badf8867f7"
49+
]
50+
}
51+
x-maintenance-intent: ["(latest)"]
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:
3+
"C implementations (using Cyrptokit and Pcre) of functions used by Rdf"
4+
maintainer: "[email protected]"
5+
authors: "Zoggy <[email protected]>"
6+
license: "LGPL-3.0-only"
7+
homepage: "https://www.good-eris.net/ocaml-rdf/"
8+
doc: "https://www.good-eris.net/ocaml-rdf/doc.html"
9+
bug-reports: "https://framagit.org/zoggy/ocaml-rdf/issues"
10+
depends: [
11+
"dune" {>= "3.19"}
12+
"rdf" {= version}
13+
"cryptokit" {>= "1.19"}
14+
"pcre" {>= "7.5.0"}
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+
"@install"
27+
"@runtest" {with-test}
28+
"@doc" {with-doc}
29+
]
30+
]
31+
dev-repo: "git+https://framagit.org/zoggy/ocaml-rdf.git"
32+
url {
33+
src: "https://www.good-eris.net/ocaml-rdf/archives/ocaml-rdf-1.1.0.tar.bz2"
34+
checksum: [
35+
"md5=fdca8ab06da34d9d76fe273f654ec6a1"
36+
"sha512=fff3ad6cb5978e43ac3c509cc25a01d16be6e21b04df607e0595ec0e7226ba7b6e4e2ec86bbeae4aa3d6a181fa399c7c00a4b1c788ddc98486f5c8badf8867f7"
37+
]
38+
}
39+
x-maintenance-intent: ["(latest)"]
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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" {>= "3.19"}
11+
"rdf" {= version}
12+
"cohttp-lwt-unix" {>= "5.3.0"}
13+
"jsonm" {>= "1.0.2"}
14+
"lwt" {>= "5.7.0"}
15+
"lwt_ppx" {>= "2.1.0"}
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+
"@install"
28+
"@runtest" {with-test}
29+
"@doc" {with-doc}
30+
]
31+
]
32+
dev-repo: "git+https://framagit.org/zoggy/ocaml-rdf.git"
33+
url {
34+
src: "https://www.good-eris.net/ocaml-rdf/archives/ocaml-rdf-1.1.0.tar.bz2"
35+
checksum: [
36+
"md5=fdca8ab06da34d9d76fe273f654ec6a1"
37+
"sha512=fff3ad6cb5978e43ac3c509cc25a01d16be6e21b04df607e0595ec0e7226ba7b6e4e2ec86bbeae4aa3d6a181fa399c7c00a4b1c788ddc98486f5c8badf8867f7"
38+
]
39+
}
40+
x-maintenance-intent: ["(latest)"]
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: "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" {>= "3.19"}
11+
"rdf" {= version}
12+
"cohttp-lwt-unix" {>= "5.3.0"}
13+
"lwt" {>= "5.7.0"}
14+
"lwt_ppx" {>= "2.1.0"}
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+
"@install"
27+
"@runtest" {with-test}
28+
"@doc" {with-doc}
29+
]
30+
]
31+
dev-repo: "git+https://framagit.org/zoggy/ocaml-rdf.git"
32+
url {
33+
src: "https://www.good-eris.net/ocaml-rdf/archives/ocaml-rdf-1.1.0.tar.bz2"
34+
checksum: [
35+
"md5=fdca8ab06da34d9d76fe273f654ec6a1"
36+
"sha512=fff3ad6cb5978e43ac3c509cc25a01d16be6e21b04df607e0595ec0e7226ba7b6e4e2ec86bbeae4aa3d6a181fa399c7c00a4b1c788ddc98486f5c8badf8867f7"
37+
]
38+
}
39+
x-maintenance-intent: ["(latest)"]
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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" {>= "3.19"}
11+
"rdf" {= version}
12+
"mysql" {>= "1.2.4"}
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+
"@install"
25+
"@runtest" {with-test}
26+
"@doc" {with-doc}
27+
]
28+
]
29+
dev-repo: "git+https://framagit.org/zoggy/ocaml-rdf.git"
30+
url {
31+
src: "https://www.good-eris.net/ocaml-rdf/archives/ocaml-rdf-1.1.0.tar.bz2"
32+
checksum: [
33+
"md5=fdca8ab06da34d9d76fe273f654ec6a1"
34+
"sha512=fff3ad6cb5978e43ac3c509cc25a01d16be6e21b04df607e0595ec0e7226ba7b6e4e2ec86bbeae4aa3d6a181fa399c7c00a4b1c788ddc98486f5c8badf8867f7"
35+
]
36+
}
37+
x-maintenance-intent: ["(latest)"]
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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" {>= "3.19"}
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+
"@install"
25+
"@runtest" {with-test}
26+
"@doc" {with-doc}
27+
]
28+
]
29+
dev-repo: "git+https://framagit.org/zoggy/ocaml-rdf.git"
30+
url {
31+
src: "https://www.good-eris.net/ocaml-rdf/archives/ocaml-rdf-1.1.0.tar.bz2"
32+
checksum: [
33+
"md5=fdca8ab06da34d9d76fe273f654ec6a1"
34+
"sha512=fff3ad6cb5978e43ac3c509cc25a01d16be6e21b04df607e0595ec0e7226ba7b6e4e2ec86bbeae4aa3d6a181fa399c7c00a4b1c788ddc98486f5c8badf8867f7"
35+
]
36+
}
37+
x-maintenance-intent: ["(latest)"]
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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" {>= "3.19"}
11+
"rdf" {= version}
12+
"ppxlib" {>= "0.32.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+
"@install"
25+
"@runtest" {with-test}
26+
"@doc" {with-doc}
27+
]
28+
]
29+
dev-repo: "git+https://framagit.org/zoggy/ocaml-rdf.git"
30+
url {
31+
src: "https://www.good-eris.net/ocaml-rdf/archives/ocaml-rdf-1.1.0.tar.bz2"
32+
checksum: [
33+
"md5=fdca8ab06da34d9d76fe273f654ec6a1"
34+
"sha512=fff3ad6cb5978e43ac3c509cc25a01d16be6e21b04df607e0595ec0e7226ba7b6e4e2ec86bbeae4aa3d6a181fa399c7c00a4b1c788ddc98486f5c8badf8867f7"
35+
]
36+
}
37+
x-maintenance-intent: ["(latest)"]

0 commit comments

Comments
 (0)