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 D8B82139694 for ; Tue, 20 Jun 2017 21:33:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 16801E0E33; Tue, 20 Jun 2017 21:33:45 +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-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D5407E0E33 for ; Tue, 20 Jun 2017 21:33:44 +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 9AAD73417BA for ; Tue, 20 Jun 2017 21:33:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A7450748F for ; Tue, 20 Jun 2017 21:33:41 +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: <1497994268.b90ef0cb96667e97cc7f02d0581825b8ef12b5f6.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/bos/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/bos/Manifest dev-ml/bos/bos-0.1.6.ebuild dev-ml/bos/metadata.xml X-VCS-Directories: dev-ml/bos/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: b90ef0cb96667e97cc7f02d0581825b8ef12b5f6 X-VCS-Branch: master Date: Tue, 20 Jun 2017 21:33:41 +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: 11d51fba-0be3-450c-a052-0f7f9e782bdf X-Archives-Hash: 6f2cf5061658b79824a7fdac0979649d commit: b90ef0cb96667e97cc7f02d0581825b8ef12b5f6 Author: Alexis Ballier gentoo org> AuthorDate: Tue Jun 20 21:31:08 2017 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Tue Jun 20 21:31:08 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b90ef0cb dev-ml/bos: initial import Package-Manager: Portage-2.3.6, Repoman-2.3.2 dev-ml/bos/Manifest | 1 + dev-ml/bos/bos-0.1.6.ebuild | 44 ++++++++++++++++++++++++++++++++++++++++++++ dev-ml/bos/metadata.xml | 11 +++++++++++ 3 files changed, 56 insertions(+) diff --git a/dev-ml/bos/Manifest b/dev-ml/bos/Manifest new file mode 100644 index 00000000000..16b9abcf806 --- /dev/null +++ b/dev-ml/bos/Manifest @@ -0,0 +1 @@ +DIST bos-0.1.6.tbz 39822 SHA256 9abe76e0d94d1d912f0057dc3976c88d87ab9d5ba05d923c38c7b586e35f3afd SHA512 f1f10a97a32da936a7d5a0c70632e723723ee523c79f9dfd23bc42c039a194e8d69658483e6e856c7911332b799a92bf8cabfe96cc387522d7450b8f3f8f8343 WHIRLPOOL 0f2fca003dde8aebee99c5ab590e4f9e527eaa17464bd34b4c31a37c39e4b06c25568d4254028cd11a6328a93ffd96d161d9188deaffb82499943cd69960e9ea diff --git a/dev-ml/bos/bos-0.1.6.ebuild b/dev-ml/bos/bos-0.1.6.ebuild new file mode 100644 index 00000000000..a3b7dc553e2 --- /dev/null +++ b/dev-ml/bos/bos-0.1.6.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="Basic OS interaction for OCaml" +HOMEPAGE="http://erratique.ch/software/bos https://github.com/dbuenzli/bos" +SRC_URI="http://erratique.ch/software/bos/releases/${P}.tbz" + +LICENSE="ISC" +SLOT="0/${PV}" +KEYWORDS="~amd64" +IUSE="test" + +RDEPEND=" + dev-lang/ocaml:= + dev-ml/rresult:= + dev-ml/astring:= + dev-ml/fpath:= + dev-ml/fmt:= + dev-ml/logs:= +" +DEPEND="${RDEPEND} + dev-ml/findlib + dev-ml/ocamlbuild + dev-ml/topkg + test? ( dev-ml/mtime ) +" + +src_compile() { + ocaml pkg/pkg.ml build --tests $(usex test true false) || die +} + +src_test() { + ocaml pkg/pkg.ml test || die +} + +src_install() { + opam-installer -i \ + --prefix="${ED}/usr" \ + --libdir="${D}/$(ocamlc -where)" \ + --docdir="${ED}/usr/share/doc/${PF}" \ + ${PN}.install || die +} diff --git a/dev-ml/bos/metadata.xml b/dev-ml/bos/metadata.xml new file mode 100644 index 00000000000..9b594d778b1 --- /dev/null +++ b/dev-ml/bos/metadata.xml @@ -0,0 +1,11 @@ + + + + + ml@gentoo.org + Gentoo ML Project + + + dbuenzli/bos + +