-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
93408e5
commit 5f3eb31
Showing
3 changed files
with
21 additions
and
19 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
This file was deleted.
Oops, something went wrong.
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,25 +1,32 @@ | ||
opam-version: "1.2" | ||
opam-version: "2.0" | ||
maintainer: "[email protected]" | ||
authors: ["Jérémie Dimino"] | ||
authors: "Jérémie Dimino" | ||
license: "BSD3" | ||
homepage: "https://github.com/ocaml-community/utop" | ||
bug-reports: "https://github.com/ocaml-community/utop/issues" | ||
dev-repo: "https://github.com/ocaml-community/utop.git" | ||
build: [ | ||
["dune" "subst"] {pinned} | ||
["dune" "build" "-p" name "-j" jobs] | ||
] | ||
depends: [ | ||
"ocaml" {>= "4.03.0"} | ||
"base-unix" | ||
"base-threads" | ||
"ocamlfind" {>= "1.7.2"} | ||
"lambda-term" {>= "1.13"} | ||
"ocamlfind" {>= "1.7.2"} | ||
"lambda-term" {>= "1.13"} | ||
"lwt" | ||
"lwt_react" | ||
"camomile" | ||
"react" {>= "1.0.0"} | ||
"cppo" {build & >= "1.1.2"} | ||
"react" {>= "1.0.0"} | ||
"cppo" {build & >= "1.1.2"} | ||
"dune" {build} | ||
] | ||
build-test: [["dune" "runtest" "-p" name "-j" jobs]] | ||
available: [ocaml-version >= "4.03.0"] | ||
build: [ | ||
["dune" "subst"] {pinned} | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j" jobs] {with-test} | ||
] | ||
dev-repo: "git+https://github.com/ocaml-community/utop.git" | ||
synopsis: "Universal toplevel for OCaml" | ||
description: """ | ||
utop is an improved toplevel (i.e., Read-Eval-Print Loop or REPL) for | ||
OCaml. It can run in a terminal or in Emacs. It supports line | ||
edition, history, real-time and context sensitive completion, colors, | ||
and more. It integrates with the Tuareg mode in Emacs. | ||
""" |