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 5F9F6158086 for ; Thu, 9 Dec 2021 03:55:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3A4EA2BC0A7; Thu, 9 Dec 2021 03:53:09 +0000 (UTC) Received: from smtp.gentoo.org (mail.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D9E762BC0A3 for ; Thu, 9 Dec 2021 03:53:08 +0000 (UTC) From: Vadim Misbakh-Soloviov To: gentoo-dev@lists.gentoo.org Cc: sarnex@gentoo.org, matt@offtopica.uk, Vadim Misbakh-Soloviov Subject: [gentoo-dev] [PATCH 08/15] dev-libs/tree-sitter-ocaml: new package Date: Thu, 9 Dec 2021 10:52:31 +0700 Message-Id: <20211209035238.900431-8-mva@gentoo.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20211209035238.900431-2-mva@gentoo.org> References: <20211209035238.900431-2-mva@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Archives-Salt: 82ec654b-d1c0-4c93-8328-ee1d3fb010ff X-Archives-Hash: c6c932926060804411082cb6617f4143 --- dev-libs/tree-sitter-ocaml/Manifest | 1 + dev-libs/tree-sitter-ocaml/metadata.xml | 19 +++++++++++++++++++ .../tree-sitter-ocaml-0.19.0.ebuild | 15 +++++++++++++++ 3 files changed, 35 insertions(+) create mode 100644 dev-libs/tree-sitter-ocaml/Manifest create mode 100644 dev-libs/tree-sitter-ocaml/metadata.xml create mode 100644 dev-libs/tree-sitter-ocaml/tree-sitter-ocaml-0.19.0.ebuild diff --git a/dev-libs/tree-sitter-ocaml/Manifest b/dev-libs/tree-sitter-ocaml/Manifest new file mode 100644 index 00000000000..a291d938583 --- /dev/null +++ b/dev-libs/tree-sitter-ocaml/Manifest @@ -0,0 +1 @@ +DIST tree-sitter-ocaml-0.19.0.tar.gz 1314747 BLAKE2B 8bceac43a40b11b27395a52a450ab734312fbb43cd4b711ca27e629f16599a04cbb55b13a05540ad20f7aa00f068ef57752b7ba42c45bbc75fc87c344133a743 SHA512 897ce5fcb58241c8ec123536ce52eba64698cb5da08403801f4d1760fab1addaced0b3cda5c24460cf2b4531215becf3a6b29c34ba871370b02b467a13b171ba diff --git a/dev-libs/tree-sitter-ocaml/metadata.xml b/dev-libs/tree-sitter-ocaml/metadata.xml new file mode 100644 index 00000000000..38ac08cf86e --- /dev/null +++ b/dev-libs/tree-sitter-ocaml/metadata.xml @@ -0,0 +1,19 @@ + + + + + matt@offtopica.uk + Matthew Smith + + + sarnex@gentoo.org + Nick Sarnie + + + mva@gentoo.org + Vadim Misbakh-Soloviov + + + tree-sitter/tree-sitter-ocaml + + diff --git a/dev-libs/tree-sitter-ocaml/tree-sitter-ocaml-0.19.0.ebuild b/dev-libs/tree-sitter-ocaml/tree-sitter-ocaml-0.19.0.ebuild new file mode 100644 index 00000000000..adc64bb944d --- /dev/null +++ b/dev-libs/tree-sitter-ocaml/tree-sitter-ocaml-0.19.0.ebuild @@ -0,0 +1,15 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit tree-sitter-grammar + +DESCRIPTION="OCaml grammar for Tree-sitter" +HOMEPAGE="https://github.com/tree-sitter/tree-sitter-ocaml" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +S="${WORKDIR}/${P}/ocaml/src" -- 2.34.1