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 04F5615808B for ; Fri, 15 Apr 2022 20:34:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 33A5BE0928; Fri, 15 Apr 2022 20:34:31 +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 E98ECE0929 for ; Fri, 15 Apr 2022 20:34:30 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 37D763420EA for ; Fri, 15 Apr 2022 20:34:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0A2A03B1 for ; Fri, 15 Apr 2022 20:34:26 +0000 (UTC) From: "Alessandro Barbieri" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alessandro Barbieri" Message-ID: <1650054859.a39a21963858a0727028f90bb9c1dac1c9ae98d6.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-ml/mustache/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-ml/mustache/Manifest dev-ml/mustache/metadata.xml dev-ml/mustache/mustache-3.1.0.ebuild X-VCS-Directories: dev-ml/mustache/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: a39a21963858a0727028f90bb9c1dac1c9ae98d6 X-VCS-Branch: dev Date: Fri, 15 Apr 2022 20:34:26 +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: 4e215c70-08c9-4c47-98ae-37eac859d750 X-Archives-Hash: 4ed7fd9c8db47dd6145c4c7400455f33 commit: a39a21963858a0727028f90bb9c1dac1c9ae98d6 Author: Alessandro Barbieri gmail com> AuthorDate: Sat Apr 9 10:29:13 2022 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Fri Apr 15 20:34:19 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a39a2196 dev-ml/mustache: initial import Signed-off-by: Alessandro Barbieri gmail.com> dev-ml/mustache/Manifest | 1 + dev-ml/mustache/metadata.xml | 11 +++++++++++ dev-ml/mustache/mustache-3.1.0.ebuild | 33 +++++++++++++++++++++++++++++++++ 3 files changed, 45 insertions(+) diff --git a/dev-ml/mustache/Manifest b/dev-ml/mustache/Manifest new file mode 100644 index 000000000..c2b5418f0 --- /dev/null +++ b/dev-ml/mustache/Manifest @@ -0,0 +1 @@ +DIST mustache-3.1.0.tar.gz 21162 BLAKE2B 6a0d54414ac0154d85023a02e9f2e6f256edb528392a89024566a8903b3d80beaa1ccf0d78af523a3c186f0ca09175848579564fcbc7c847ed7491fc527a46bf SHA512 00657c9a5a5bd07ffc2922e4e35b66e07d2da111c6a9f2d2410dda933d99c436ff93a051d1ce8b76257ae6c8d45589a223f76521ab9d3621353f696f13188503 diff --git a/dev-ml/mustache/metadata.xml b/dev-ml/mustache/metadata.xml new file mode 100644 index 000000000..97dc89242 --- /dev/null +++ b/dev-ml/mustache/metadata.xml @@ -0,0 +1,11 @@ + + + + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + rgrinberg/ocaml-mustache + + diff --git a/dev-ml/mustache/mustache-3.1.0.ebuild b/dev-ml/mustache/mustache-3.1.0.ebuild new file mode 100644 index 000000000..afd8eea78 --- /dev/null +++ b/dev-ml/mustache/mustache-3.1.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit dune + +MYPN="ocaml-${PN}" + +DESCRIPTION="mustache.js logic-less templates in OCaml" +HOMEPAGE="https://github.com/rgrinberg/ocaml-mustache" +SRC_URI="https://github.com/rgrinberg/${MYPN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MYPN}-${PV}" + +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="~amd64" +IUSE="ocamlopt test" + +DEPEND=" + dev-ml/jsonm + dev-ml/menhir + dev-ml/cmdliner +" +RDEPEND=" + ${DEPEND} + test? ( + dev-ml/ounit + dev-ml/ezjsonm + ) +" + +RESTRICT="!test? ( test )"