-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
finish conversion to dune, upgraded to opam 2.0
- Loading branch information
Showing
7 changed files
with
36 additions
and
33 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 |
---|---|---|
|
@@ -3,3 +3,4 @@ _build/ | |
*.native | ||
*.byte | ||
*.install | ||
*.swp |
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
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,2 @@ | ||
(lang dune 1.0) | ||
(name ppx_gen_rec) |
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,14 +1,19 @@ | ||
opam-version: "1.2" | ||
opam-version: "2.0" | ||
maintainer: "Marshall Roch <[email protected]>" | ||
authors: ["Marshall Roch <[email protected]>"] | ||
homepage: "https://github.com/flowtype/ocaml-ppx_gen_rec" | ||
doc: "https://github.com/flowtype/ocaml-ppx_gen_rec" | ||
license: "MIT" | ||
dev-repo: "https://github.com/flowtype/ocaml-ppx_gen_rec.git" | ||
homepage: "https://github.com/flowtype/ocaml-ppx_gen_rec" | ||
bug-reports: "https://github.com/flowtype/ocaml-ppx_gen_rec/issues" | ||
depends: | ||
[ | ||
depends: [ | ||
"ocaml" | ||
"dune" {build} | ||
"ocaml-migrate-parsetree" { >= "1.1.0" } | ||
"ocaml-migrate-parsetree" {>= "1.1.0"} | ||
] | ||
build: [["dune" "build" "-p" name "-j" jobs]] | ||
build: ["dune" "build" "-p" name "-j" jobs] | ||
dev-repo: "git+https://github.com/flowtype/ocaml-ppx_gen_rec.git" | ||
synopsis: "A ppx rewriter that transforms a recursive module expression into a `struct`" | ||
description: """ | ||
In a recursive module expression, the struct can be derived from the signature automatically | ||
by the compiler. This package does the same thing, but doing it this way allows ppx_deriving | ||
to transform the signature and struct separately. | ||
""" |
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,6 @@ | ||
(library | ||
(name ppx_gen_rec) | ||
(public_name ppx_gen_rec) | ||
(kind ppx_rewriter) | ||
(libraries compiler-libs.common ocaml-migrate-parsetree) | ||
(preprocess no_preprocessing)) |
This file was deleted.
Oops, something went wrong.