Skip to content

Commit fa28b60

Browse files
committed
[new release] utop (2.16.0)
CHANGES: * Add support for OCaml 5.4 (ocaml-community/utop#500, @Octachron, @anmonteiro) * restore backtrace (ocaml-community/utop#503, fixes ocaml-community/utop#501, @ysalmon) * support camlp$n preprocessor (ocaml-community/utop#486, fixes ocaml-community/utop#485, @aqjune) * utop configuration and state files (utoprc, utop-history) are now always in the relevant utop subdirectory (ocaml-community/utop#484, fixes ocaml-community/utop#478, ocaml-community/utop#481 and ocaml-community/utop#499, @tuohy). * fix emacs completion for qualified paths (Module.M.some_name) (ocaml-community/utop#497, fix ocaml-community/utop#455, @juergenhoetzel, @bbatsov) * implicit bindings for emacs mode (ocaml-community/utop#465, fix ocaml-community/utop#412, @bencef)
1 parent 4f8a855 commit fa28b60

File tree

1 file changed

+51
-0
lines changed
  • packages/utop/utop.2.16.0

1 file changed

+51
-0
lines changed

packages/utop/utop.2.16.0/opam

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
opam-version: "2.0"
2+
synopsis: "Universal toplevel for OCaml"
3+
description:
4+
"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."
5+
maintainer: ["[email protected]"]
6+
authors: ["Jérémie Dimino"]
7+
license: "BSD-3-Clause"
8+
homepage: "https://github.com/ocaml-community/utop"
9+
doc: "https://ocaml-community.github.io/utop/"
10+
bug-reports: "https://github.com/ocaml-community/utop/issues"
11+
depends: [
12+
"dune" {>= "2.7"}
13+
"ocaml" {>= "4.11.0"}
14+
"base-unix"
15+
"base-threads"
16+
"ocamlfind" {>= "1.7.2"}
17+
"lambda-term" {>= "3.1.0" & < "4.0"}
18+
"logs"
19+
"lwt"
20+
"lwt_react"
21+
"zed" {>= "3.2.0"}
22+
"react" {>= "1.0.0"}
23+
"cppo" {>= "1.1.2"}
24+
"alcotest" {with-test}
25+
"xdg" {>= "3.9.0"}
26+
"odoc" {with-doc}
27+
]
28+
build: [
29+
["dune" "subst"] {dev}
30+
[
31+
"dune"
32+
"build"
33+
"-p"
34+
name
35+
"-j"
36+
jobs
37+
"@install"
38+
"@runtest" {with-test}
39+
"@doc" {with-doc}
40+
]
41+
]
42+
dev-repo: "git+https://github.com/ocaml-community/utop.git"
43+
url {
44+
src:
45+
"https://github.com/ocaml-community/utop/releases/download/2.16.0/utop-2.16.0.tbz"
46+
checksum: [
47+
"sha256=0b9f79135d2132fb211cbe889941cfd0d54cc7bb8062b8a0443e38c540b8c763"
48+
"sha512=073d67d898ac1b579aac050e8c88a229d67a13e9c85f1d835023a46750cdf4b2f2180d1ea70005e9e0366721503d0ba2b9c326deddfb43426d87481e461cd45e"
49+
]
50+
}
51+
x-commit-hash: "bd6a1546e5c73c7a626e456fac5e81027106e4d6"

0 commit comments

Comments
 (0)