-
Notifications
You must be signed in to change notification settings - Fork 84
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 #445 from smorimoto/setup-ocaml-v3
Prepare for Better Windows Support
- Loading branch information
Showing
15 changed files
with
328 additions
and
151 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,19 +1,12 @@ | ||
# See editorconfig.org for details | ||
|
||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
charset = utf-8 | ||
|
||
[*.{ml,mli,mll,mly}] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.{saty,satyh}] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[Makefile] | ||
indent_style = tab |
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 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: github-actions | ||
directory: / | ||
schedule: | ||
interval: weekly |
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
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,3 +1,78 @@ | ||
(lang dune 1.0) | ||
(lang dune 3.16) | ||
|
||
(using menhir 2.1) | ||
|
||
(name satysfi) | ||
(using menhir 1.0) | ||
|
||
(version 0.0.11) | ||
|
||
(license LGPL-3.0-only) | ||
|
||
(authors "Takashi Suwa") | ||
|
||
(maintainers "Takashi Suwa") | ||
|
||
(source | ||
(github gfngfn/SATySFi)) | ||
|
||
(generate_opam_files true) | ||
|
||
(package | ||
(name satysfi) | ||
(synopsis "A statically-typed, functional typesetting system") | ||
(description | ||
"SATySFi is a typesetting system equipped with a statically-typed, functional programming language. It consists mainly of two “layers” ― the text layer and the program layer. The former is for writing documents in LaTeX-like syntax. The latter, which has OCaml-like syntax, is for defining functions and commands. SATySFi enables you to write documents markuped with flexible commands of your own making. In addition, its informative type error reporting will be a good help to your writing.") | ||
(depends | ||
(ocaml | ||
(and | ||
(>= 4.12.0) | ||
(< 5.0.0))) | ||
(batteries | ||
(and | ||
(>= 3.6.0) | ||
(< 4.0))) | ||
(camlimages | ||
(and | ||
(>= 5.0.1) | ||
(< 5.0.5))) | ||
(camlpdf | ||
(= 2.3.1+satysfi)) | ||
(core_kernel | ||
(and | ||
(>= v0.15) | ||
(< v0.17))) | ||
(cppo | ||
(and | ||
:build | ||
(>= 1.6.4) | ||
(< 1.7.0))) | ||
(menhir | ||
(and | ||
:build | ||
(>= 20231231))) | ||
(menhirLib | ||
(>= 20231231)) | ||
(ocamlfind :build) | ||
(omd | ||
(and | ||
(>= 1.3.2) | ||
(< 2.0))) | ||
(otfed | ||
(and | ||
(>= 0.3.1) | ||
(< 0.4))) | ||
(ppx_deriving | ||
(and | ||
(>= 5.2.1) | ||
(< 6.0))) | ||
(re | ||
(and | ||
:build | ||
(>= 1.10.4) | ||
(< 2.0))) | ||
(uutf | ||
(and | ||
(>= 1.0.3) | ||
(< 2.0))) | ||
(yojson-with-position | ||
(= 1.4.2+satysfi)))) |
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,10 @@ | ||
build: [ | ||
["mkdir" "-p" "temp"] | ||
[make "-f" "Makefile" "PREFIX=%{prefix}%"] | ||
] | ||
install: [ | ||
[make "-f" "Makefile" "install" "PREFIX=%{prefix}%"] | ||
] | ||
remove: [ | ||
[make "-f" "Makefile" "uninstall" "PREFIX=%{prefix}%"] | ||
] |
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
Oops, something went wrong.