summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Barć <xgqt@gentoo.org>2021-12-08 01:15:20 +0100
committerMaciej Barć <xgqt@gentoo.org>2021-12-08 03:13:07 +0100
commit7f54a890eef40aca225338e6eb8fa71ab881712f (patch)
tree17275da1d445299448820523ab94e6c8d8e7fb8f /dev-ml/utop
parentdev-ml/lambda-term: new package; add version 3.1.0 (diff)
downloadgentoo-7f54a890eef40aca225338e6eb8fa71ab881712f.tar.gz
gentoo-7f54a890eef40aca225338e6eb8fa71ab881712f.tar.bz2
gentoo-7f54a890eef40aca225338e6eb8fa71ab881712f.zip
dev-ml/utop: new package; add version 2.8.0
Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'dev-ml/utop')
-rw-r--r--dev-ml/utop/Manifest1
-rw-r--r--dev-ml/utop/metadata.xml19
-rw-r--r--dev-ml/utop/utop-2.8.0.ebuild27
3 files changed, 47 insertions, 0 deletions
diff --git a/dev-ml/utop/Manifest b/dev-ml/utop/Manifest
new file mode 100644
index 000000000000..0820c2287818
--- /dev/null
+++ b/dev-ml/utop/Manifest
@@ -0,0 +1 @@
+DIST utop-2.8.0.tar.gz 414059 BLAKE2B f94cc9a2e87d5341b1d7231574b1e0d8b179e600640281529ecfd2ce8827b9145d73030ea1ec59b20430d34155087f6d910c698c75d7566145c9db3a3ecbf872 SHA512 cf323249aa9a747081b3e39e8e8b99b69557082beb244dd0a28d64c6d11e3c03427c22da4fd364e9ae7f5d83d12ca3d2d48b9f4b6697ec704d486f3c23163dba
diff --git a/dev-ml/utop/metadata.xml b/dev-ml/utop/metadata.xml
new file mode 100644
index 000000000000..575a666b2394
--- /dev/null
+++ b/dev-ml/utop/metadata.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+
+<pkgmetadata>
+ <maintainer type="project">
+ <email>ml@gentoo.org</email>
+ <name>ML</name>
+ </maintainer>
+ <longdescription>
+ 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.
+ </longdescription>
+ <upstream>
+ <bugs-to>https://github.com/ocaml-community/utop/issues/</bugs-to>
+ <remote-id type="github">ocaml-community/utop</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-ml/utop/utop-2.8.0.ebuild b/dev-ml/utop/utop-2.8.0.ebuild
new file mode 100644
index 000000000000..d5b493a8c2cf
--- /dev/null
+++ b/dev-ml/utop/utop-2.8.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit dune
+
+DESCRIPTION="Universal toplevel for OCaml"
+HOMEPAGE="https://github.com/ocaml-community/utop"
+SRC_URI="https://github.com/ocaml-community/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE="+ocamlopt"
+
+RDEPEND="
+ dev-ml/camomile:=
+ dev-ml/lambda-term:=
+ dev-ml/lwt:=
+ dev-ml/react:=
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ dev-ml/cppo
+ dev-ml/findlib
+"