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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3C757139694 for ; Mon, 24 Jul 2017 11:18:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 717A21FC002; Mon, 24 Jul 2017 11:18:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3CFDD1FC002 for ; Mon, 24 Jul 2017 11:18:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BB7F13417DE for ; Mon, 24 Jul 2017 11:18:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 63AC574C1 for ; Mon, 24 Jul 2017 11:18:00 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1500895071.766c844bb407f0fbc1acfd8dbf1af131cc9a01bc.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/angstrom-async/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/angstrom-async/Manifest dev-ml/angstrom-async/angstrom-async-0.6.0.ebuild dev-ml/angstrom-async/metadata.xml X-VCS-Directories: dev-ml/angstrom-async/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: 766c844bb407f0fbc1acfd8dbf1af131cc9a01bc X-VCS-Branch: master Date: Mon, 24 Jul 2017 11:18:00 +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-Archives-Salt: b2de9706-388d-4ad1-b59b-66a33c2f05a2 X-Archives-Hash: f3164005df315ec637e9c19b99959501 commit: 766c844bb407f0fbc1acfd8dbf1af131cc9a01bc Author: Alexis Ballier gentoo org> AuthorDate: Mon Jul 24 11:16:12 2017 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Mon Jul 24 11:17:51 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=766c844b dev-ml/angstrom-async: import split 0.6 package Package-Manager: Portage-2.3.6, Repoman-2.3.3 dev-ml/angstrom-async/Manifest | 1 + dev-ml/angstrom-async/angstrom-async-0.6.0.ebuild | 43 +++++++++++++++++++++++ dev-ml/angstrom-async/metadata.xml | 11 ++++++ 3 files changed, 55 insertions(+) diff --git a/dev-ml/angstrom-async/Manifest b/dev-ml/angstrom-async/Manifest new file mode 100644 index 00000000000..693923160ef --- /dev/null +++ b/dev-ml/angstrom-async/Manifest @@ -0,0 +1 @@ +DIST angstrom-0.6.0.tar.gz 80393 SHA256 9080c6ad32ee5c31ae5b754370328daa5febb219ae2a1e8390fb469622dca7ee SHA512 4b03022f3e8147075653a9740473ce23fc42ba8c559f1b86311132fa1a09cfac0f044cb3a8c9fc2d97f4acef35806b4742606b0af22d6b07058e8a78c6672618 WHIRLPOOL a79f7e522e645b605eabb155c604cf6e2e435e9325551a22efbe5c1b12f57726c8ccdad510ef618cc510b409acc6cb86204630ecb4cf1af6d1adc628bb19dd33 diff --git a/dev-ml/angstrom-async/angstrom-async-0.6.0.ebuild b/dev-ml/angstrom-async/angstrom-async-0.6.0.ebuild new file mode 100644 index 00000000000..71eba82e158 --- /dev/null +++ b/dev-ml/angstrom-async/angstrom-async-0.6.0.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit findlib + +DESCRIPTION="Parser combinators built for speed and memory efficiency" +HOMEPAGE="https://github.com/inhabitedtype/angstrom" +SRC_URI="https://github.com/inhabitedtype/angstrom/archive/${PV}.tar.gz -> angstrom-${PV}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND=" + dev-lang/ocaml:= + dev-ml/angstrom:= + dev-ml/async:= +" +DEPEND="${RDEPEND} + dev-ml/jbuilder + dev-ml/opam" + +S="${WORKDIR}/angstrom-${PV}" + +src_compile() { + jbuilder build -p ${PN} || die +} + +src_test() { + jbuilder runtest -p ${PN} +} + +src_install() { + opam-installer -i \ + --prefix="${ED}/usr" \ + --libdir="${D}/$(ocamlc -where)" \ + --docdir="${ED}/usr/share/doc/${PF}" \ + --mandir="${ED}/usr/share/man" \ + ${PN}.install || die +} diff --git a/dev-ml/angstrom-async/metadata.xml b/dev-ml/angstrom-async/metadata.xml new file mode 100644 index 00000000000..6a85d809eb3 --- /dev/null +++ b/dev-ml/angstrom-async/metadata.xml @@ -0,0 +1,11 @@ + + + + + ml@gentoo.org + Gentoo ML Project + + + inhabitedtype/angstrom + +