this repo has no description
1synopsis: "PPX Rewriters for Ocaml, written using Camlp5"
2description:
3"""
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.
25
26"""
27opam-version: "2.0"
28maintainer: "Chet Murthy <chetsky@gmail.com>"
29authors: ["Chet Murthy"]
30homepage: "https://github.com/chetmurthy/pa_ppx"
31license: "BSD-3-Clause"
32bug-reports: "https://github.com/chetmurthy/pa_ppx/issues"
33dev-repo: "git+https://github.com/chetmurthy/pa_ppx.git"
34doc: "https://github.com/chetmurthy/pa_ppx/doc"
35
36depends: [
37 "ocaml" { >= "4.10.0" & < "4.11.0" }
38 "camlp5" { = "8.00~alpha01" }
39 "not-ocamlfind" { >= "0.01" }
40 "pcre" { >= "7.4.3" }
41 "yojson" { >= "1.7.0" }
42 "bos" { >= "0.2.0" }
43 "ppx_deriving_protobuf" { >= "2.7" }
44 "uint" { >= "2.0.1" }
45 "ounit2" { >= "2.2.3" }
46 "ppx_import" {>= "1.7.1" & < "2.0"}
47 "ppx_deriving_yojson" { >= "3.5.2" }
48 "ppx_here" { >= "v0.13.0" }
49 "ppx_sexp_conv" { >= "v0.13.0" }
50 "expect_test_helpers" { >= "v0.13.0" }
51]
52depexts: [
53 [
54 "libstring-shellquote-perl"
55 "libipc-system-simple-perl"
56 ] {os-family = "debian"}
57 [
58 "perl-string-shellquote"
59 "perl-ipc-system-simple"
60 ] {os-distribution = "alpine"}
61 [
62 "perl-String-ShellQuote"
63 "perl-IPC-System-Simple"
64 ] {os-distribution = "centos"}
65 [
66 "perl-String-ShellQuote"
67 "perl-IPC-System-Simple"
68 ] {os-family = "suse" | os-family = "opensuse"}
69 [
70 "perl-String-ShellQuote"
71 "perl-IPC-System-Simple"
72 ] {os-family = "fedora"}
73]
74
75build: [
76 [make "all"]
77]
78install: [make "install"]
79url {
80 src:
81 "https://github.com/ocaml/opam-source-archives/raw/main/pa_ppx-0.01.tar.gz"
82 checksum: [
83 "md5=7212c459eff3ea17974b2d47998f2038"
84 "sha512=f6e344a9ac8352c823d629e1c0cef9cf9aaf3bfa7800446f4087ed682c9e8ba3fbb834c83bc8276cdb5294951db559c0b19f364f2a7adf22bbd70313b7d0bd08"
85 ]
86}