-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
disable automatic generation of opam files
- Loading branch information
Showing
3 changed files
with
32 additions
and
36 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 |
---|---|---|
|
@@ -4,37 +4,35 @@ | |
|
||
(version 2.0.0) | ||
|
||
(generate_opam_files true) | ||
|
||
(source | ||
(github lemaetech/reparse)) | ||
|
||
(license MPL-2.0) | ||
|
||
(authors "Bikal Lem <[email protected]>") | ||
|
||
(maintainers "Bikal Lem") | ||
|
||
(package | ||
(name reparse) | ||
(synopsis "Recursive descent parsing library for ocaml") | ||
(description | ||
"Monadic, recursive descent based, parser construction library for ocaml. Comprehensively documented and tested.") | ||
(depends | ||
(ocaml | ||
(>= 4.10.0)) | ||
(alcotest :with-test))) | ||
|
||
(package | ||
(name reparse-unix) | ||
(synopsis | ||
"Provides support for parsing files as source of input for reparse library ") | ||
(description | ||
"Provides support for parsing files as source of input for reparse library ") | ||
(depends | ||
(ocaml | ||
(>= 4.10.0)) | ||
(reparse | ||
(= 2.0.0)) | ||
base-unix | ||
(alcotest :with-test))) | ||
; (source | ||
; (github lemaetech/reparse)) | ||
|
||
; (license MPL-2.0) | ||
|
||
; (authors "Bikal Lem <[email protected]>") | ||
|
||
; (maintainers "Bikal Lem") | ||
|
||
; (package | ||
; (name reparse) | ||
; (synopsis "Recursive descent parsing library for ocaml") | ||
; (description | ||
; "Monadic, recursive descent based, parser construction library for ocaml. Comprehensively documented and tested.") | ||
; (depends | ||
; (ocaml | ||
; (>= 4.10.0)) | ||
; (alcotest :with-test))) | ||
|
||
; (package | ||
; (name reparse-unix) | ||
; (synopsis | ||
; "Provides support for parsing files as source of input for reparse library ") | ||
; (description | ||
; "Provides support for parsing files as source of input for reparse library ") | ||
; (depends | ||
; (ocaml | ||
; (>= 4.10.0)) | ||
; (reparse | ||
; (= 2.0.0)) | ||
; base-unix | ||
; (alcotest :with-test))) |
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,4 +1,3 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
version: "2.0.0" | ||
synopsis: | ||
|
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