From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 06484158086 for ; Wed, 8 Dec 2021 02:13:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B6C3A2BC006; Wed, 8 Dec 2021 02:13:19 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 809602BC01D for ; Wed, 8 Dec 2021 02:13:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7B4B43436A8 for ; Wed, 8 Dec 2021 02:13:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B298F21D for ; Wed, 8 Dec 2021 02:13:10 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1638929587.7f54a890eef40aca225338e6eb8fa71ab881712f.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/utop/Manifest dev-ml/utop/metadata.xml dev-ml/utop/utop-2.8.0.ebuild X-VCS-Directories: dev-ml/utop/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 7f54a890eef40aca225338e6eb8fa71ab881712f X-VCS-Branch: master Date: Wed, 8 Dec 2021 02:13:10 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: bc3f377f-ccf2-4092-b2df-8728062fd552 X-Archives-Hash: a53b5eacf02d9f71175c73abd657bcd6 commit: 7f54a890eef40aca225338e6eb8fa71ab881712f Author: Maciej Barć gentoo org> AuthorDate: Wed Dec 8 00:15:20 2021 +0000 Commit: Maciej Barć gentoo org> CommitDate: Wed Dec 8 02:13:07 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f54a890 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ć gentoo.org> dev-ml/utop/Manifest | 1 + dev-ml/utop/metadata.xml | 19 +++++++++++++++++++ dev-ml/utop/utop-2.8.0.ebuild | 27 +++++++++++++++++++++++++++ 3 files changed, 47 insertions(+) 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 @@ + + + + + + ml@gentoo.org + ML + + + 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. + + + https://github.com/ocaml-community/utop/issues/ + ocaml-community/utop + + 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 +"