Skip to content

Commit 48d760b

Browse files
committed
1 parent 9b213cf commit 48d760b

File tree

3 files changed

+116
-0
lines changed
  • packages
    • xtmpl_js/xtmpl_js.1.1.0
    • xtmpl_ppx/xtmpl_ppx.1.1.0
    • xtmpl/xtmpl.1.1.0

3 files changed

+116
-0
lines changed

packages/xtmpl/xtmpl.1.1.0/opam

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: "Xml templating library"
3+
maintainer: "[email protected]"
4+
authors: "Zoggy <[email protected]>"
5+
license: "GPL-3.0-only"
6+
homepage: "https://www.good-eris.net/xtmpl/"
7+
doc: "https://www.good-eris.net/xtmpl/doc.html"
8+
bug-reports: "https://framagit.org/zoggy/xtmpl/issues"
9+
depends: [
10+
"dune" {>= "3.19"}
11+
"ocaml" {>= "4.12.0"}
12+
"logs" {>= "0.7.0"}
13+
"sedlex" {>= "2.3"}
14+
"uutf" {>= "1.0.0"}
15+
"re" {>= "1.10.3"}
16+
"iri" {>= "1.0.0"}
17+
"odoc" {with-doc}
18+
]
19+
build: [
20+
["dune" "subst"] {dev}
21+
[
22+
"dune"
23+
"build"
24+
"-p"
25+
name
26+
"-j"
27+
jobs
28+
"@install"
29+
"@runtest" {with-test}
30+
"@doc" {with-doc}
31+
]
32+
]
33+
dev-repo: "git+https://framagit.org/zoggy/xtmpl.git"
34+
url {
35+
src: "https://www.good-eris.net/xtmpl/releases/xtmpl-1.1.0.tar.bz2"
36+
checksum: [
37+
"md5=565dc6f208bb0c0097b8702c285b04e9"
38+
"sha512=98ac72cadb89b401403ea9cbbdfcbe8dc8909015d45864e8dc2b921e99507ef22e59a94672620f57020e8a118fb4088f48a8847c2630a926984ff1ddaf258f49"
39+
]
40+
}
41+
x-maintenance-intent: ["(latest)"]
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
opam-version: "2.0"
2+
synopsis: "Xml templating library, javascript library"
3+
maintainer: "[email protected]"
4+
authors: "Zoggy <[email protected]>"
5+
license: "GPL-3.0-only"
6+
homepage: "https://www.good-eris.net/xtmpl/"
7+
doc: "https://www.good-eris.net/xtmpl/doc.html"
8+
bug-reports: "https://framagit.org/zoggy/xtmpl/issues"
9+
depends: [
10+
"dune" {>= "3.19"}
11+
"xtmpl" {= version}
12+
"js_of_ocaml" {>= "6.0.1"}
13+
"js_of_ocaml-ppx" {>= "6.0.1"}
14+
"odoc" {with-doc}
15+
]
16+
build: [
17+
["dune" "subst"] {dev}
18+
[
19+
"dune"
20+
"build"
21+
"-p"
22+
name
23+
"-j"
24+
jobs
25+
"@install"
26+
"@runtest" {with-test}
27+
"@doc" {with-doc}
28+
]
29+
]
30+
dev-repo: "git+https://framagit.org/zoggy/xtmpl.git"
31+
url {
32+
src: "https://www.good-eris.net/xtmpl/releases/xtmpl-1.1.0.tar.bz2"
33+
checksum: [
34+
"md5=565dc6f208bb0c0097b8702c285b04e9"
35+
"sha512=98ac72cadb89b401403ea9cbbdfcbe8dc8909015d45864e8dc2b921e99507ef22e59a94672620f57020e8a118fb4088f48a8847c2630a926984ff1ddaf258f49"
36+
]
37+
}
38+
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: "Xml templating library, ppx extension"
3+
maintainer: "[email protected]"
4+
authors: "Zoggy <[email protected]>"
5+
license: "GPL-3.0-only"
6+
homepage: "https://www.good-eris.net/xtmpl/"
7+
doc: "https://www.good-eris.net/xtmpl/doc.html"
8+
bug-reports: "https://framagit.org/zoggy/xtmpl/issues"
9+
depends: [
10+
"dune" {>= "3.19"}
11+
"xtmpl" {= 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+
"@install"
25+
"@runtest" {with-test}
26+
"@doc" {with-doc}
27+
]
28+
]
29+
dev-repo: "git+https://framagit.org/zoggy/xtmpl.git"
30+
url {
31+
src: "https://www.good-eris.net/xtmpl/releases/xtmpl-1.1.0.tar.bz2"
32+
checksum: [
33+
"md5=565dc6f208bb0c0097b8702c285b04e9"
34+
"sha512=98ac72cadb89b401403ea9cbbdfcbe8dc8909015d45864e8dc2b921e99507ef22e59a94672620f57020e8a118fb4088f48a8847c2630a926984ff1ddaf258f49"
35+
]
36+
}
37+
x-maintenance-intent: ["(latest)"]

0 commit comments

Comments
 (0)