Skip to content

Commit 7719096

Browse files
authored
Merge pull request #24798 from dinosaure/release-yocaml-v1.0.0
[new release] yocaml (9 packages) (1.0.0)
2 parents 2dcd868 + bdb148b commit 7719096

File tree

9 files changed

+346
-0
lines changed
  • packages
    • yocaml_cmark/yocaml_cmark.1.0.0
    • yocaml_git/yocaml_git.1.0.0
    • yocaml_jingoo/yocaml_jingoo.1.0.0
    • yocaml_markdown/yocaml_markdown.1.0.0
    • yocaml_mustache/yocaml_mustache.1.0.0
    • yocaml_syndication/yocaml_syndication.1.0.0
    • yocaml_unix/yocaml_unix.1.0.0
    • yocaml_yaml/yocaml_yaml.1.0.0
    • yocaml/yocaml.1.0.0

9 files changed

+346
-0
lines changed

packages/yocaml/yocaml.1.0.0/opam

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
opam-version: "2.0"
2+
synopsis: "YOCaml It is a static site generator, mostly written in OCaml"
3+
maintainer: "[email protected]"
4+
authors: [ "The XHTMLBoy <[email protected]>" ]
5+
6+
build: [
7+
[ "dune" "subst" ] {dev}
8+
[ "dune" "build" "-p" name "-j" jobs ]
9+
[ "dune" "runtest" "-p" name ] {with-test}
10+
[ "dune" "build" "@doc" "-p" name ] {with-doc}
11+
]
12+
13+
license: "GPL-3.0-or-later"
14+
tags: [ "shell" "bin" "make" "static" "blog" "generator" ]
15+
homepage: "https://github.com/xhtmlboi/yocaml"
16+
dev-repo: "git+https://github.com/xhtmlboi/yocaml.git"
17+
bug-reports: "https://github.com/xhtmlboi/yocaml/issues"
18+
19+
depends: [
20+
"ocaml" { >= "4.11.1" }
21+
"dune" { >= "2.8" }
22+
"odoc" {with-doc}
23+
"alcotest" {with-test}
24+
"preface" { >= "1.0.0"}
25+
]
26+
url {
27+
src:
28+
"https://github.com/xhtmlboi/yocaml/releases/download/v1.0.0/yocaml-1.0.0.tbz"
29+
checksum: [
30+
"sha256=cfd4291358e4bd9a90c5926bbb770b898c30ce7c25ce02bb9548803392d16d72"
31+
"sha512=57ae20ea44c7ff456c647e883eb9649c77f8786b895cd5318e617e836340f0a0631cba2234a5e5e2b7565e862a0085efba98b001e5ddb7ba51b2f557e47a4224"
32+
]
33+
}
34+
x-commit-hash: "ec0fa3efa1537f90f24f07b77e4d2aaec23ae9d1"
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: "YOCaml Common Mark processor"
3+
maintainer: "[email protected]"
4+
authors: [
5+
"The XHTMLBoy <[email protected]>"
6+
"Pierre Ruyter <[email protected]>"
7+
]
8+
9+
build: [
10+
[ "dune" "subst" ] {dev}
11+
[ "dune" "build" "-p" name "-j" jobs ]
12+
[ "dune" "runtest" "-p" name ] {with-test}
13+
[ "dune" "build" "@doc" "-p" name ] {with-doc}
14+
]
15+
16+
license: "GPL-3.0-or-later"
17+
tags: [ "shell" "bin" "make" "static" "blog" "generator" ]
18+
homepage: "https://github.com/xhtmlboi/yocaml"
19+
dev-repo: "git+https://github.com/xhtmlboi/yocaml.git"
20+
bug-reports: "https://github.com/xhtmlboi/yocaml/issues"
21+
22+
depends: [
23+
"ocaml" { >= "4.14.0" }
24+
"dune" { >= "2.8" }
25+
"odoc" {with-doc}
26+
"preface" { >= "1.0.0" }
27+
"cmarkit"
28+
"yocaml" {= version}
29+
]
30+
url {
31+
src:
32+
"https://github.com/xhtmlboi/yocaml/releases/download/v1.0.0/yocaml-1.0.0.tbz"
33+
checksum: [
34+
"sha256=cfd4291358e4bd9a90c5926bbb770b898c30ce7c25ce02bb9548803392d16d72"
35+
"sha512=57ae20ea44c7ff456c647e883eb9649c77f8786b895cd5318e617e836340f0a0631cba2234a5e5e2b7565e862a0085efba98b001e5ddb7ba51b2f557e47a4224"
36+
]
37+
}
38+
x-commit-hash: "ec0fa3efa1537f90f24f07b77e4d2aaec23ae9d1"
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: "YOCaml Runtime using Git as target"
3+
maintainer: "[email protected]"
4+
authors: [
5+
"The XHTMLBoy <[email protected]>"
6+
"Xavier Van de Woestyne <[email protected]>"
7+
]
8+
9+
build: [
10+
[ "dune" "subst" ] {dev}
11+
[ "dune" "build" "-p" name "-j" jobs ]
12+
[ "dune" "runtest" "-p" name ] {with-test}
13+
[ "dune" "build" "@doc" "-p" name ] {with-doc}
14+
]
15+
16+
license: "GPL-3.0-or-later"
17+
tags: [ "shell" "bin" "make" "static" "blog" "generator" ]
18+
homepage: "https://github.com/xhtmlboi/yocaml"
19+
dev-repo: "git+https://github.com/xhtmlboi/yocaml.git"
20+
bug-reports: "https://github.com/xhtmlboi/yocaml/issues"
21+
22+
depends: [
23+
"ocaml" { >= "4.11.1" }
24+
"dune" { >= "2.8" }
25+
"odoc" {with-doc}
26+
"preface" { >= "1.0.0" }
27+
"lwt" { >= "5.4.2" }
28+
"git-kv" { >= "0.0.3" }
29+
"git-unix"
30+
"mirage-clock"
31+
"yocaml" {= version}
32+
]
33+
url {
34+
src:
35+
"https://github.com/xhtmlboi/yocaml/releases/download/v1.0.0/yocaml-1.0.0.tbz"
36+
checksum: [
37+
"sha256=cfd4291358e4bd9a90c5926bbb770b898c30ce7c25ce02bb9548803392d16d72"
38+
"sha512=57ae20ea44c7ff456c647e883eb9649c77f8786b895cd5318e617e836340f0a0631cba2234a5e5e2b7565e862a0085efba98b001e5ddb7ba51b2f557e47a4224"
39+
]
40+
}
41+
x-commit-hash: "ec0fa3efa1537f90f24f07b77e4d2aaec23ae9d1"
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: "Deal with Jingoo in YOCaml"
3+
maintainer: "[email protected]"
4+
authors: [
5+
"The XHTMLBoy <[email protected]>"
6+
"Pierre Ruyter <[email protected]>"
7+
]
8+
9+
build: [
10+
[ "dune" "subst" ] {dev}
11+
[ "dune" "build" "-p" name "-j" jobs ]
12+
[ "dune" "runtest" "-p" name ] {with-test}
13+
[ "dune" "build" "@doc" "-p" name ] {with-doc}
14+
]
15+
16+
license: "GPL-3.0-or-later"
17+
tags: [ "shell" "bin" "make" "static" "blog" "generator" ]
18+
homepage: "https://github.com/xhtmlboi/yocaml"
19+
dev-repo: "git+https://github.com/xhtmlboi/yocaml.git"
20+
bug-reports: "https://github.com/xhtmlboi/yocaml/issues"
21+
22+
depends: [
23+
"ocaml" { >= "4.11.1" }
24+
"dune" { >= "2.8" }
25+
"odoc" {with-doc}
26+
"preface" { >= "1.0.0"}
27+
"jingoo" { >= "1.4.3" }
28+
"yocaml" {= version}
29+
]
30+
url {
31+
src:
32+
"https://github.com/xhtmlboi/yocaml/releases/download/v1.0.0/yocaml-1.0.0.tbz"
33+
checksum: [
34+
"sha256=cfd4291358e4bd9a90c5926bbb770b898c30ce7c25ce02bb9548803392d16d72"
35+
"sha512=57ae20ea44c7ff456c647e883eb9649c77f8786b895cd5318e617e836340f0a0631cba2234a5e5e2b7565e862a0085efba98b001e5ddb7ba51b2f557e47a4224"
36+
]
37+
}
38+
x-commit-hash: "ec0fa3efa1537f90f24f07b77e4d2aaec23ae9d1"
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: "YOCaml Markdown processor"
3+
maintainer: "[email protected]"
4+
authors: [
5+
"The XHTMLBoy <[email protected]>"
6+
"Pierre Ruyter <[email protected]>"
7+
]
8+
9+
build: [
10+
[ "dune" "subst" ] {dev}
11+
[ "dune" "build" "-p" name "-j" jobs ]
12+
[ "dune" "runtest" "-p" name ] {with-test}
13+
[ "dune" "build" "@doc" "-p" name ] {with-doc}
14+
]
15+
16+
license: "GPL-3.0-or-later"
17+
tags: [ "shell" "bin" "make" "static" "blog" "generator" ]
18+
homepage: "https://github.com/xhtmlboi/yocaml"
19+
dev-repo: "git+https://github.com/xhtmlboi/yocaml.git"
20+
bug-reports: "https://github.com/xhtmlboi/yocaml/issues"
21+
22+
depends: [
23+
"ocaml" { >= "4.11.1" }
24+
"dune" { >= "2.8" }
25+
"odoc" {with-doc}
26+
"preface" { >= "1.0.0" }
27+
"omd" { >= "1.3.1" }
28+
"yocaml" {= version}
29+
]
30+
url {
31+
src:
32+
"https://github.com/xhtmlboi/yocaml/releases/download/v1.0.0/yocaml-1.0.0.tbz"
33+
checksum: [
34+
"sha256=cfd4291358e4bd9a90c5926bbb770b898c30ce7c25ce02bb9548803392d16d72"
35+
"sha512=57ae20ea44c7ff456c647e883eb9649c77f8786b895cd5318e617e836340f0a0631cba2234a5e5e2b7565e862a0085efba98b001e5ddb7ba51b2f557e47a4224"
36+
]
37+
}
38+
x-commit-hash: "ec0fa3efa1537f90f24f07b77e4d2aaec23ae9d1"
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: "Deal with Mustache in YOCaml"
3+
maintainer: "[email protected]"
4+
authors: [
5+
"The XHTMLBoy <[email protected]>"
6+
"Pierre Ruyter <[email protected]>"
7+
]
8+
9+
build: [
10+
[ "dune" "subst" ] {dev}
11+
[ "dune" "build" "-p" name "-j" jobs ]
12+
[ "dune" "runtest" "-p" name ] {with-test}
13+
[ "dune" "build" "@doc" "-p" name ] {with-doc}
14+
]
15+
16+
license: "GPL-3.0-or-later"
17+
tags: [ "shell" "bin" "make" "static" "blog" "generator" ]
18+
homepage: "https://github.com/xhtmlboi/yocaml"
19+
dev-repo: "git+https://github.com/xhtmlboi/yocaml.git"
20+
bug-reports: "https://github.com/xhtmlboi/yocaml/issues"
21+
22+
depends: [
23+
"ocaml" { >= "4.11.1" }
24+
"dune" { >= "2.8" }
25+
"odoc" {with-doc}
26+
"preface" { >= "1.0.0" }
27+
"mustache" { >= "3.1.0" }
28+
"yocaml" {= version}
29+
]
30+
url {
31+
src:
32+
"https://github.com/xhtmlboi/yocaml/releases/download/v1.0.0/yocaml-1.0.0.tbz"
33+
checksum: [
34+
"sha256=cfd4291358e4bd9a90c5926bbb770b898c30ce7c25ce02bb9548803392d16d72"
35+
"sha512=57ae20ea44c7ff456c647e883eb9649c77f8786b895cd5318e617e836340f0a0631cba2234a5e5e2b7565e862a0085efba98b001e5ddb7ba51b2f557e47a4224"
36+
]
37+
}
38+
x-commit-hash: "ec0fa3efa1537f90f24f07b77e4d2aaec23ae9d1"
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: "YOCaml Syndication"
3+
maintainer: "[email protected]"
4+
authors: [
5+
"The XHTMLBoy <[email protected]>"
6+
"Xavier Van de Woestyne <[email protected]>"
7+
]
8+
9+
build: [
10+
[ "dune" "subst" ] {dev}
11+
[ "dune" "build" "-p" name "-j" jobs ]
12+
[ "dune" "runtest" "-p" name ] {with-test}
13+
[ "dune" "build" "@doc" "-p" name ] {with-doc}
14+
]
15+
16+
license: "GPL-3.0-or-later"
17+
tags: [ "shell" "bin" "make" "static" "blog" "generator" ]
18+
homepage: "https://github.com/xhtmlboi/yocaml"
19+
dev-repo: "git+https://github.com/xhtmlboi/yocaml.git"
20+
bug-reports: "https://github.com/xhtmlboi/yocaml/issues"
21+
22+
depends: [
23+
"ocaml" { >= "4.11.1" }
24+
"dune" { >= "2.8" }
25+
"odoc" {with-doc}
26+
"syndic" { >= "1.6.1"}
27+
"yocaml" {= version}
28+
]
29+
url {
30+
src:
31+
"https://github.com/xhtmlboi/yocaml/releases/download/v1.0.0/yocaml-1.0.0.tbz"
32+
checksum: [
33+
"sha256=cfd4291358e4bd9a90c5926bbb770b898c30ce7c25ce02bb9548803392d16d72"
34+
"sha512=57ae20ea44c7ff456c647e883eb9649c77f8786b895cd5318e617e836340f0a0631cba2234a5e5e2b7565e862a0085efba98b001e5ddb7ba51b2f557e47a4224"
35+
]
36+
}
37+
x-commit-hash: "ec0fa3efa1537f90f24f07b77e4d2aaec23ae9d1"
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: "YOCaml Unix runtime"
3+
maintainer: "[email protected]"
4+
authors: [
5+
"The XHTMLBoy <[email protected]>"
6+
"Pierre Ruyter <[email protected]>"
7+
]
8+
9+
build: [
10+
[ "dune" "subst" ] {dev}
11+
[ "dune" "build" "-p" name "-j" jobs ]
12+
[ "dune" "runtest" "-p" name ] {with-test}
13+
[ "dune" "build" "@doc" "-p" name ] {with-doc}
14+
]
15+
16+
license: "GPL-3.0-or-later"
17+
tags: [ "shell" "bin" "make" "static" "blog" "generator" ]
18+
homepage: "https://github.com/xhtmlboi/yocaml"
19+
dev-repo: "git+https://github.com/xhtmlboi/yocaml.git"
20+
bug-reports: "https://github.com/xhtmlboi/yocaml/issues"
21+
22+
depends: [
23+
"ocaml" { >= "4.11.1" }
24+
"dune" { >= "2.8" }
25+
"odoc" {with-doc}
26+
"preface" { >= "1.0.0" }
27+
"cryptokit" { >= "1.16.1" }
28+
"logs" {>= "0.7.0" }
29+
"conduit-lwt" { >= "4.0.0" }
30+
"cohttp-lwt-unix" { >= "4.0.0" }
31+
"lwt" {>="5.3.0"}
32+
"yocaml" {= version}
33+
]
34+
url {
35+
src:
36+
"https://github.com/xhtmlboi/yocaml/releases/download/v1.0.0/yocaml-1.0.0.tbz"
37+
checksum: [
38+
"sha256=cfd4291358e4bd9a90c5926bbb770b898c30ce7c25ce02bb9548803392d16d72"
39+
"sha512=57ae20ea44c7ff456c647e883eb9649c77f8786b895cd5318e617e836340f0a0631cba2234a5e5e2b7565e862a0085efba98b001e5ddb7ba51b2f557e47a4224"
40+
]
41+
}
42+
x-commit-hash: "ec0fa3efa1537f90f24f07b77e4d2aaec23ae9d1"
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: "Deal with Yaml in YOCaml"
3+
maintainer: "[email protected]"
4+
authors: [
5+
"The XHTMLBoy <[email protected]>"
6+
"Pierre Ruyter <[email protected]>"
7+
]
8+
9+
build: [
10+
[ "dune" "subst" ] {dev}
11+
[ "dune" "build" "-p" name "-j" jobs ]
12+
[ "dune" "runtest" "-p" name ] {with-test}
13+
[ "dune" "build" "@doc" "-p" name ] {with-doc}
14+
]
15+
16+
license: "GPL-3.0-or-later"
17+
tags: [ "shell" "bin" "make" "static" "blog" "generator" ]
18+
homepage: "https://github.com/xhtmlboi/yocaml"
19+
dev-repo: "git+https://github.com/xhtmlboi/yocaml.git"
20+
bug-reports: "https://github.com/xhtmlboi/yocaml/issues"
21+
22+
depends: [
23+
"ocaml" { >= "4.11.1" }
24+
"dune" { >= "2.8" }
25+
"odoc" {with-doc}
26+
"preface" { >= "1.0.0" }
27+
"yaml" { >= "2.1.0" }
28+
"yocaml" {= version}
29+
"alcotest" {with-test}
30+
]
31+
conflicts: [ "result" {< "1.5"} ]
32+
url {
33+
src:
34+
"https://github.com/xhtmlboi/yocaml/releases/download/v1.0.0/yocaml-1.0.0.tbz"
35+
checksum: [
36+
"sha256=cfd4291358e4bd9a90c5926bbb770b898c30ce7c25ce02bb9548803392d16d72"
37+
"sha512=57ae20ea44c7ff456c647e883eb9649c77f8786b895cd5318e617e836340f0a0631cba2234a5e5e2b7565e862a0085efba98b001e5ddb7ba51b2f557e47a4224"
38+
]
39+
}
40+
x-commit-hash: "ec0fa3efa1537f90f24f07b77e4d2aaec23ae9d1"

0 commit comments

Comments
 (0)