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