this repo has no description
1opam-version: "2.0" 2synopsis: "PPX Rewriters for Ocaml, written using Camlp5" 3description: """ 4This is a collection of PPX rewriters, re-implementing those based on ppxlib 5and other libraries, but instead based on Camlp5. Included is also a collection 6of support libraries for writing new PPX rewriters. Included are: 7 8pa_assert: ppx_assert 9pa_ppx.deriving, pa_ppx.deriving_plugins (enum, eq, fold, iter, make, map, ord, sexp, show, yojson): 10 ppx_deriving, plugins, ppx_sexp_conv, ppx_deriving_yojson 11pa_ppx.expect_test: ppx_expect_test 12pa_ppx.here: ppx_here 13pa_ppx.import: ppx_import 14pa_ppx.inline_test: ppx_inline_test 15 16pa_ppx.undo_deriving: pa_ppx.deriving expands [@@deriving ...] into code; this rewriter undoes that. 17pa_ppx.unmatched_vala: expands to match-cases (support library for camlp5-based PPX rewriters) 18pa_ppx.hashrecons: support for writing AST rewriters that automatically fills in hash-consing boilerplate 19pa_dock: implements doc-comment extraction for camlp5 preprocessors 20 21Many of the reimplementations in fact offer significant enhanced 22function, described in the pa_ppx documentation. In addition, there 23is an extensive test-suite, much of it slightly modified versions of 24the tests for the respective PPX rewriters.""" 25maintainer: "Chet Murthy <chetsky@gmail.com>" 26authors: ["Chet Murthy"] 27license: "BSD-3-Clause" 28homepage: "https://github.com/chetmurthy/pa_ppx" 29doc: "https://github.com/chetmurthy/pa_ppx/doc" 30bug-reports: "https://github.com/chetmurthy/pa_ppx/issues" 31depends: [ 32 "ocaml" {>= "4.10.0" & < "4.12.0"} 33 "camlp5" {= "8.00~alpha02"} 34 "not-ocamlfind" {>= "0.01"} 35 "pcre" {>= "7.4.3"} 36 "yojson" {>= "1.7.0"} 37 "bos" {>= "0.2.0"} 38 "ppx_deriving_protobuf" {>= "2.7"} 39 "uint" {>= "2.0.1"} 40 "ounit2" {>= "2.2.3"} 41 "ppx_import" {>= "1.7.1" & < "2.0"} 42 "ppx_deriving_yojson" {>= "3.5.2"} 43 "ppx_here" {>= "v0.13.0"} 44 "ppx_sexp_conv" {>= "v0.13.0"} 45 "expect_test_helpers" {>= "v0.13.0"} 46] 47build: [make "all"] 48install: [make "install"] 49depexts: [ 50 [ 51 "libstring-shellquote-perl" 52 "libipc-system-simple-perl" 53 ] {os-family = "debian"} 54 [ 55 "perl-string-shellquote" 56 "perl-ipc-system-simple" 57 ] {os-distribution = "alpine"} 58 [ 59 "perl-String-ShellQuote" 60 "perl-IPC-System-Simple" 61 ] {os-distribution = "centos"} 62 [ 63 "perl-String-ShellQuote" 64 "perl-IPC-System-Simple" 65 ] {os-family = "suse" | os-family = "opensuse"} 66 [ 67 "perl-String-ShellQuote" 68 "perl-IPC-System-Simple" 69 ] {os-family = "fedora"} 70] 71 72dev-repo: "git+https://github.com/chetmurthy/pa_ppx.git" 73url { 74 src: "https://github.com/chetmurthy/pa_ppx/archive/0.02.tar.gz" 75 checksum: [ 76 "md5=7a51da8db0b779a2d9ab435b29c67dbe" 77 "sha512=dd51aa98ab894b4f1512beb1511c7b6ef5e401481a75966321e88683bd374346d01d89302b04e95430b1ee69c65b60142d96847022ae9ed5977e3295f0fe7218" 78 ] 79}