-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to Dune 3.16 and generate opam file
- Loading branch information
Showing
4 changed files
with
78 additions
and
32 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,2 +1,41 @@ | ||
(lang dune 1.0) | ||
(lang dune 3.16) | ||
(name extlib) | ||
|
||
(generate_opam_files true) | ||
(formatting (enabled_for dune)) | ||
|
||
(source (github ygrek/ocaml-extlib)) | ||
(documentation "https://ygrek.org/p/extlib/doc/") | ||
(maintainers "ygrek@autistici.org") | ||
(license "LGPL-2.1-only WITH OCaml-LGPL-linking-exception") | ||
|
||
(package | ||
(name extlib) | ||
(synopsis "A complete yet small extension for OCaml standard library") | ||
(description | ||
"The purpose of this library is to add new functions to OCaml standard library | ||
modules, to modify some functions in order to get better performances or | ||
safety (tail-recursive) and also to provide new modules which should be useful | ||
for day to day programming. | ||
Current goal is to maintain compatibility, new software is encouraged to not use extlib since stdlib | ||
is now seeing many additions and improvements which make many parts of extlib obsolete. | ||
For tail-recursion safety consider using other libraries e.g. containers. | ||
") | ||
(authors | ||
"Nicolas Cannasse" | ||
"Brian Hurt" | ||
"Yamagata Yoriyuki" | ||
"Markus Mottl" | ||
"Jesse Guardiani" | ||
"John Skaller" | ||
"Bardur Arantsson" | ||
"Janne Hellsten" | ||
"Richard W.M. Jones" | ||
"ygrek" | ||
"Gabriel Scherer" | ||
"Pietro Abate") | ||
(depends | ||
(ocaml (>= "4.02")) | ||
(cppo (and :build (>= "1.0.1"))))) | ||
|
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 |
---|---|---|
@@ -1,9 +1,5 @@ | ||
(executable | ||
(name runner) | ||
(flags :standard -w -3-6-35-27) | ||
(modules :standard \ test_Unzip test_UTF8 test_Base64) | ||
(libraries extlib)) | ||
|
||
(alias | ||
(name runtest) | ||
(action (run ./runner.exe))) | ||
(test | ||
(name runner) | ||
(flags :standard -w -3-6-35-27) | ||
(modules :standard \ test_Unzip test_UTF8 test_Base64) | ||
(libraries extlib)) |