-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27121 from chetmurthy/release-pa_ppx_migrate_ocam…
…l_parsetree-0.01 first release of pa_ppx_migrate_ocaml_parsetree, 0.01
- Loading branch information
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
40 changes: 40 additions & 0 deletions
40
packages/pa_ppx_migrate_ocaml_parsetree/pa_ppx_migrate_ocaml_parsetree.0.01/opam
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,40 @@ | ||
|
||
synopsis: "Migrations from one version of the OCaml AST to another" | ||
description: | ||
""" | ||
This package provides migrations from one version of the OCaml AST to another, | ||
using Camlp5-based pa_ppx_migrate to do the actual heavy lifting. | ||
|
||
""" | ||
opam-version: "2.0" | ||
x-maintenance-intent: [ "(latest)" ] | ||
maintainer: "Chet Murthy <[email protected]>" | ||
authors: ["Chet Murthy"] | ||
homepage: "https://github.com/camlp5/pa_ppx_migrate_ocaml_parsetree" | ||
license: "BSD-3-Clause" | ||
bug-reports: "https://github.com/camlp5/pa_ppx_migrate_ocaml_parsetree/issues" | ||
dev-repo: "git+https://github.com/camlp5/pa_ppx_migrate_ocaml_parsetree.git" | ||
doc: "https://github.com/camlp5/pa_ppx_migrate_ocaml_parsetree/doc" | ||
|
||
depends: [ | ||
"ocaml" { >= "4.10.0" } | ||
"cppo" { >= "1.6.9" } | ||
"camlp5-buildscripts" { >= "0.02" } | ||
"camlp5" { >= "8.03.00" } | ||
"pa_ppx_migrate" { >= "0.12" } | ||
"not-ocamlfind" { >= "0.10" } | ||
"ounit" { >= "2.2.7" & with-test} | ||
"fmt" | ||
"bos" { >= "0.2.0" } | ||
] | ||
build: [ | ||
[make "-j%{jobs}%" "sys"] | ||
[make "test"] {with-test} | ||
] | ||
install: [make "install"] | ||
url { | ||
src: "https://github.com/camlp5/pa_ppx_migrate_ocaml_parsetree/archive/refs/tags/0.01.tar.gz" | ||
checksum: [ | ||
"sha512=0f9313842c6eb07ae6719f49c27858e3a2a94f8cc1dd6d00a4aec27d85b1c44c0a664a9eae511d0edd37c638754ca8a47b1ee5d2ee1cd9b2b38d0cd9e5f03381" | ||
] | ||
} |