this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #19225 from chetmurthy/opam-publish-pa_ppx-packages-0.08

0.08 release of pa_ppx add-on packages (for ocaml 4.13.0 compat)

authored by

Kate and committed by
GitHub
b379545f 331e739e

+212
+43
packages/pa_ppx_ag/pa_ppx_ag.0.08/opam
··· 1 + synopsis: "A PPX Rewriter that Generates Attribute Grammar Evaulators" 2 + description: 3 + """ 4 + This is a PPX Rewriter that generates Attribute Grammar evaulators. 5 + Initially only ordered ones, but eventually other strategies too. 6 + """ 7 + opam-version: "2.0" 8 + maintainer: "Chet Murthy <chetsky@gmail.com>" 9 + authors: ["Chet Murthy"] 10 + homepage: "https://github.com/camlp5/pa_ppx_ag" 11 + license: "BSD-3-Clause" 12 + bug-reports: "https://github.com/camlp5/pa_ppx_ag/issues" 13 + dev-repo: "git+https://github.com/camlp5/pa_ppx_ag.git" 14 + doc: "https://github.com/camlp5/pa_ppx_ag/doc" 15 + 16 + depends: [ 17 + "ocaml" { >= "4.10.0" & < "4.14.0" } 18 + "conf-perl" 19 + "conf-perl-ipc-system-simple" 20 + "conf-perl-string-shellquote" 21 + "camlp5" { >= "8.00" } 22 + "pa_ppx" { >= "0.08" } 23 + "pa_ppx_migrate" { >= "0.08" } 24 + "pa_ppx_hashcons" { >= "0.08" } 25 + "pa_ppx_unique" { >= "0.08" } 26 + "not-ocamlfind" { >= "0.01" } 27 + "ocamlgraph" { >= "2.0.0" } 28 + "pcre" { >= "7.4.3" } 29 + "ounit" {with-test} 30 + "vec" 31 + "bos" { >= "0.2.0" } 32 + ] 33 + build: [ 34 + [make "sys"] 35 + # [make "test"] {with-test} 36 + ] 37 + install: [make "install"] 38 + url { 39 + src: "https://github.com/camlp5/pa_ppx_ag/archive/0.08.tar.gz" 40 + checksum: [ 41 + "sha512=786910ca5e1c7654b8c6d2af1e8db85150d9953f969051cf8f4487e0893d8eaf145c6bc5195761172ff17a2426073ce87facf65d31abc2401e83b7e999f47d7e" 42 + ] 43 + }
+42
packages/pa_ppx_hashcons/pa_ppx_hashcons.0.08/opam
··· 1 + synopsis: "A PPX Rewriter for Hashconsing" 2 + description: 3 + """ 4 + This is a PPX Rewriter for generating hashconsing implementations 5 + of ASTs, mechanizing the ideas and code of Jean-Christophe Filliatre 6 + and Sylvain Conchon. 7 + 8 + """ 9 + opam-version: "2.0" 10 + maintainer: "Chet Murthy <chetsky@gmail.com>" 11 + authors: ["Chet Murthy"] 12 + homepage: "https://github.com/camlp5/pa_ppx_hashcons" 13 + license: "BSD-3-Clause" 14 + bug-reports: "https://github.com/camlp5/pa_ppx_hashcons/issues" 15 + dev-repo: "git+https://github.com/camlp5/pa_ppx_hashcons.git" 16 + doc: "https://github.com/camlp5/pa_ppx_hashcons/doc" 17 + 18 + depends: [ 19 + "ocaml" { >= "4.10.0" & < "4.14.0" } 20 + "conf-perl" 21 + "conf-perl-ipc-system-simple" 22 + "conf-perl-string-shellquote" 23 + "camlp5" { >= "8.00" } 24 + "pa_ppx" { >= "0.08" } 25 + "pa_ppx_migrate" { with-test & >= "0.08" } 26 + "not-ocamlfind" { >= "0.01" } 27 + "pcre" { >= "7.4.3" } 28 + "ounit" {with-test} 29 + "bos" { >= "0.2.0" } 30 + "hashcons" 31 + ] 32 + build: [ 33 + [make "sys"] 34 + [make "test"] {with-test} 35 + ] 36 + install: [make "install"] 37 + url { 38 + src: "https://github.com/camlp5/pa_ppx_hashcons/archive/0.08.tar.gz" 39 + checksum: [ 40 + "sha512=2f6306a7794bcad347aed6915c44349681463102426e3f741564ec439eee6eb6b12d7f65219d63d35a578a7fb374f6298f98a7730b7e290a6af11cc9b111b320" 41 + ] 42 + }
+45
packages/pa_ppx_migrate/pa_ppx_migrate.0.08/opam
··· 1 + synopsis: "A PPX Rewriter for Migrating AST types (written using Camlp5)" 2 + description: 3 + """ 4 + This is a PPX Rewriter for generating "migrations" like those written 5 + by-hand (with some automated support) in "ocaml-migrate-parsetree". 6 + The goal here is that the input to the automated tool is the minimum 7 + possible, with no need for human massaging of output from the tool. 8 + 9 + There are two examples: a small one (in a unit-test) and a full set of 10 + migrations from Ocaml's AST 4.02 all the way up to 4.11, with all the 11 + intermediate ASTs, and migrations forward as well as backward. 12 + 13 + """ 14 + opam-version: "2.0" 15 + maintainer: "Chet Murthy <chetsky@gmail.com>" 16 + authors: ["Chet Murthy"] 17 + homepage: "https://github.com/camlp5/pa_ppx_migrate" 18 + license: "BSD-3-Clause" 19 + bug-reports: "https://github.com/camlp5/pa_ppx_migrate/issues" 20 + dev-repo: "git+https://github.com/camlp5/pa_ppx_migrate.git" 21 + doc: "https://github.com/camlp5/pa_ppx_migrate/doc" 22 + 23 + depends: [ 24 + "ocaml" { >= "4.10.0" & < "4.14.0" } 25 + "conf-perl" 26 + "conf-perl-ipc-system-simple" 27 + "conf-perl-string-shellquote" 28 + "camlp5" { >= "8.00" } 29 + "pa_ppx" { >= "0.08" } 30 + "not-ocamlfind" { >= "0.01" } 31 + "pcre" { >= "7.4.3" } 32 + "ounit" {with-test} 33 + "bos" { >= "0.2.0" } 34 + ] 35 + build: [ 36 + [make "sys"] 37 + [make "test"] {with-test} 38 + ] 39 + install: [make "install"] 40 + url { 41 + src: "https://github.com/camlp5/pa_ppx_migrate/archive/0.08.tar.gz" 42 + checksum: [ 43 + "sha512=ade97571b1c6160579b9b9d29fcc85d1739bfaf6ca20b962780bac0fbd06b6c151f9abc4e0ebc08dc338e981e4718275f08169d0d4256fa27773d1a748eb3341" 44 + ] 45 + }
+43
packages/pa_ppx_q_ast/pa_ppx_q_ast.0.08/opam
··· 1 + synopsis: "A PPX Rewriter for automating generation of data-conversion code for use with Camlp5's Q_ast" 2 + description: 3 + """ 4 + This is a PPX Rewriter for generating data-conversion code that is otherwise 5 + hand-written, when using Camlp5's Q_ast. 6 + 7 + """ 8 + opam-version: "2.0" 9 + maintainer: "Chet Murthy <chetsky@gmail.com>" 10 + authors: ["Chet Murthy"] 11 + homepage: "https://github.com/camlp5/pa_ppx_q_ast" 12 + license: "BSD-3-Clause" 13 + bug-reports: "https://github.com/camlp5/pa_ppx_q_ast/issues" 14 + dev-repo: "git+https://github.com/camlp5/pa_ppx_q_ast.git" 15 + doc: "https://github.com/camlp5/pa_ppx_q_ast/doc" 16 + 17 + depends: [ 18 + "ocaml" { >= "4.10.0" & < "4.14.0" } 19 + "conf-diffutils" { with-test } 20 + "conf-perl" 21 + "conf-perl-ipc-system-simple" 22 + "conf-perl-string-shellquote" 23 + "camlp5" { >= "8.00" } 24 + "pa_ppx" { >= "0.08" } 25 + "pa_ppx_migrate" { with-test & >= "0.08" } 26 + "pa_ppx_hashcons" { >= "0.08" } 27 + "pa_ppx_unique" { >= "0.08" } 28 + "not-ocamlfind" { >= "0.01" } 29 + "pcre" { >= "7.4.3" } 30 + "ounit" {with-test} 31 + "bos" { >= "0.2.0" } 32 + ] 33 + build: [ 34 + [make "sys"] 35 + [make "test"] {with-test} 36 + ] 37 + install: [make "install"] 38 + url { 39 + src: "https://github.com/camlp5/pa_ppx_q_ast/archive/0.08.tar.gz" 40 + checksum: [ 41 + "sha512=80942d8287a9d48a84fbe1d3903d56d5d85fba3b9dcea102020dfa322de8937760e147572b9121c4d16be9693db7cecf3981c2e82a84cd841815c484fe40c399" 42 + ] 43 + }
+39
packages/pa_ppx_unique/pa_ppx_unique.0.08/opam
··· 1 + synopsis: "A PPX Rewriter for Uniqifying ASTs" 2 + description: 3 + """ 4 + This is a PPX Rewriter for uniqifying ASTs: inserting unique IDs 5 + systematically throughout an AST. 6 + """ 7 + opam-version: "2.0" 8 + maintainer: "Chet Murthy <chetsky@gmail.com>" 9 + authors: ["Chet Murthy"] 10 + homepage: "https://github.com/camlp5/pa_ppx_unique" 11 + license: "BSD-3-Clause" 12 + bug-reports: "https://github.com/camlp5/pa_ppx_unique/issues" 13 + dev-repo: "git+https://github.com/camlp5/pa_ppx_unique.git" 14 + doc: "https://github.com/camlp5/pa_ppx_unique/doc" 15 + 16 + depends: [ 17 + "ocaml" { >= "4.10.0" & < "4.14.0" } 18 + "conf-perl" 19 + "conf-perl-ipc-system-simple" 20 + "conf-perl-string-shellquote" 21 + "camlp5" { >= "8.00" } 22 + "pa_ppx" { >= "0.08" } 23 + "pa_ppx_migrate" { with-test & >= "0.08" } 24 + "not-ocamlfind" { >= "0.01" } 25 + "pcre" { >= "7.4.3" } 26 + "ounit" {with-test} 27 + "bos" { >= "0.2.0" } 28 + ] 29 + build: [ 30 + [make "sys"] 31 + [make "test"] {with-test} 32 + ] 33 + install: [make "install"] 34 + url { 35 + src: "https://github.com/camlp5/pa_ppx_unique/archive/0.08.tar.gz" 36 + checksum: [ 37 + "sha512=1d74f235b061a744a5ffb962eeb0c8b6d90d31c9782f6ff4ba9c441eedf023de0948fc89fd3a370e36649d4d4c63bf83d27e8a31b9c341783534ceb02f473170" 38 + ] 39 + }