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 2901B15808E for ; Tue, 26 Apr 2022 19:30:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2BD8DE0821; Tue, 26 Apr 2022 19:30:14 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 69C05E081B for ; Tue, 26 Apr 2022 19:30:13 +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 2112B34128A for ; Tue, 26 Apr 2022 19:30:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 887543BE for ; Tue, 26 Apr 2022 19:30:09 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1651001399.e004a29792f678dc94ac3966bf9fc877a08be328.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/sexp_pretty/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/sexp_pretty/Manifest dev-ml/sexp_pretty/metadata.xml dev-ml/sexp_pretty/sexp_pretty-0.15.0.ebuild X-VCS-Directories: dev-ml/sexp_pretty/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: e004a29792f678dc94ac3966bf9fc877a08be328 X-VCS-Branch: master Date: Tue, 26 Apr 2022 19:30:09 +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: 2f72ff62-c1bf-4773-92e3-92da7e780406 X-Archives-Hash: 2fa8eefee9c945ee4ef03412e04478ef commit: e004a29792f678dc94ac3966bf9fc877a08be328 Author: Alfredo Tupone gentoo org> AuthorDate: Tue Apr 26 19:29:35 2022 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Tue Apr 26 19:29:59 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e004a297 dev-ml/sexp_pretty: add to tree Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Alfredo Tupone gentoo.org> dev-ml/sexp_pretty/Manifest | 1 + dev-ml/sexp_pretty/metadata.xml | 11 +++++++++++ dev-ml/sexp_pretty/sexp_pretty-0.15.0.ebuild | 24 ++++++++++++++++++++++++ 3 files changed, 36 insertions(+) diff --git a/dev-ml/sexp_pretty/Manifest b/dev-ml/sexp_pretty/Manifest new file mode 100644 index 000000000000..0b56b3b8d0ac --- /dev/null +++ b/dev-ml/sexp_pretty/Manifest @@ -0,0 +1 @@ +DIST sexp_pretty-0.15.0.tar.gz 22407 BLAKE2B df8d246ebe1164f0d2d3ae78074c8249d2aa255a089e02eb9fcc0c21b808dc172da2da264d3b21b92dcc7bf9e51a2921ea8631eb45b45a46035447ead7abe02d SHA512 bc2a7aecfc3ae379a56e8940b9cc80ece686009c9f67233e7993e25ebbe251d62559601923db718a0f967cf42fc84024597c069659842760bb2ac5ce0eab8df2 diff --git a/dev-ml/sexp_pretty/metadata.xml b/dev-ml/sexp_pretty/metadata.xml new file mode 100644 index 000000000000..7b8d25489544 --- /dev/null +++ b/dev-ml/sexp_pretty/metadata.xml @@ -0,0 +1,11 @@ + + + + + ml@gentoo.org + ML + + + janestreet/sexp_pretty + + diff --git a/dev-ml/sexp_pretty/sexp_pretty-0.15.0.ebuild b/dev-ml/sexp_pretty/sexp_pretty-0.15.0.ebuild new file mode 100644 index 000000000000..a7320a57b1d9 --- /dev/null +++ b/dev-ml/sexp_pretty/sexp_pretty-0.15.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit dune + +DESCRIPTION="S-expression pretty-printer" +HOMEPAGE="https://github.com/janestreet/sexp_pretty" +SRC_URI="https://github.com/janestreet/${PN}/archive/refs/tags/v${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0/$(ver_cut 1-2)" +KEYWORDS="~amd64" +IUSE="+ocamlopt" + +DEPEND=" + dev-ml/ppx_base:${SLOT} + dev-ml/sexplib:${SLOT} + dev-ml/re:= +" +RDEPEND="${DEPEND}" +BDEPEND=""