-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move ppxlib-pp-ast to a separate ppxlib-tools package
Signed-off-by: Nathan Rebours <[email protected]>
- Loading branch information
Showing
3 changed files
with
46 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
(executable | ||
(name pp_ast) | ||
(public_name ppxlib-pp-ast) | ||
(package ppxlib) | ||
(libraries ppxlib ppxlib_ast astlib stdppx stdlib-shims)) | ||
(package ppxlib-tools) | ||
(libraries ppxlib ppxlib.ast ppxlib.astlib ppxlib.stdppx stdlib-shims)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
synopsis: "Tools for PPX users and authors" | ||
description: """ | ||
Set of helper tools for PPX users and authors. | ||
|
||
ppxlib-pp-ast: Command line tool to pretty print OCaml ASTs in a human readable | ||
format.""" | ||
maintainer: ["[email protected]"] | ||
authors: ["Jane Street Group, LLC <[email protected]>"] | ||
license: "MIT" | ||
homepage: "https://github.com/ocaml-ppx/ppxlib" | ||
doc: "https://ocaml-ppx.github.io/ppxlib/" | ||
bug-reports: "https://github.com/ocaml-ppx/ppxlib/issues" | ||
depends: [ | ||
"dune" {>= "2.7"} | ||
"ppxlib" {= version} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/ocaml-ppx/ppxlib.git" |