Skip to content

Commit 33432a4

Browse files
committed
[new release] dypgen (2 packages) (0.2.1)
CHANGES: Transition to dune build system.
1 parent dcac0aa commit 33432a4

File tree

2 files changed

+84
-0
lines changed
  • packages
    • dypgen/dypgen.0.2.1
    • grain_dypgen/grain_dypgen.0.2.1

2 files changed

+84
-0
lines changed

packages/dypgen/dypgen.0.2.1/opam

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: "Self-extensible parsers and lexers for OCaml"
3+
description: """
4+
5+
dypgen is a GLR parser generator for OCaml, it is able to
6+
generate self-extensible parsers (also called adaptive parsers) as
7+
well as extensible lexers for the parsers it produces.
8+
(fork of pre-4.06 dypgen: http://dypgen.free.fr/)"""
9+
maintainer: ["Frédéric Recoules"]
10+
authors: ["Emmanuel Onzo" "Philip Blair"]
11+
license: "CeCILL-B"
12+
homepage: "http://dypgen.free.fr/"
13+
bug-reports: "https://github.com/recoules/dypgen/issues"
14+
depends: [
15+
"dune" {>= "2.8"}
16+
"ocaml" {>= "4.07"}
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://github.com/recoules/dypgen.git"
34+
url {
35+
src:
36+
"https://github.com/recoules/dypgen/releases/download/0.2.1/dypgen-0.2.1.tbz"
37+
checksum: [
38+
"sha256=16436fbb322e59c9b0148e7c36c0a83ac6186a6ef78eb894efed6b543600bcbd"
39+
"sha512=bd0d6144c66f4b42ea90bba4b87e1a24cf1ff9b50271ebb4fc701dc43733387a5c382da13a8a64e1f2b92562ed276c834a5d69a17a8d55c444397784f1113592"
40+
]
41+
}
42+
x-commit-hash: "ee4503fbd592a649b0c433ac79e1eb81cc3b1770"
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: "Self-extensible parsers and lexers for OCaml"
3+
description: """
4+
5+
dypgen is a GLR parser generator for OCaml, it is able to
6+
generate self-extensible parsers (also called adaptive parsers) as
7+
well as extensible lexers for the parsers it produces.
8+
(fork of pre-4.06 dypgen: http://dypgen.free.fr/)"""
9+
maintainer: ["Frédéric Recoules"]
10+
authors: ["Emmanuel Onzo" "Philip Blair"]
11+
license: "CeCILL-B"
12+
homepage: "http://dypgen.free.fr/"
13+
bug-reports: "https://github.com/recoules/dypgen/issues"
14+
depends: [
15+
"dune" {>= "2.8"}
16+
"dypgen"
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://github.com/recoules/dypgen.git"
34+
url {
35+
src:
36+
"https://github.com/recoules/dypgen/releases/download/0.2.1/dypgen-0.2.1.tbz"
37+
checksum: [
38+
"sha256=16436fbb322e59c9b0148e7c36c0a83ac6186a6ef78eb894efed6b543600bcbd"
39+
"sha512=bd0d6144c66f4b42ea90bba4b87e1a24cf1ff9b50271ebb4fc701dc43733387a5c382da13a8a64e1f2b92562ed276c834a5d69a17a8d55c444397784f1113592"
40+
]
41+
}
42+
x-commit-hash: "ee4503fbd592a649b0c433ac79e1eb81cc3b1770"

0 commit comments

Comments
 (0)