From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id A10F8138BED for ; Sun, 18 Oct 2015 09:41:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3EB4A21C014; Sun, 18 Oct 2015 09:41:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D334321C014 for ; Sun, 18 Oct 2015 09:41:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DE4CC340554 for ; Sun, 18 Oct 2015 09:41:19 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 61AA8127D for ; Sun, 18 Oct 2015 09:41:17 +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: <1445121588.8138ac114b7215359bbf929744748d96a231f2ef.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/mirage-profile/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/mirage-profile/Manifest dev-ml/mirage-profile/metadata.xml dev-ml/mirage-profile/mirage-profile-0.5.ebuild X-VCS-Directories: dev-ml/mirage-profile/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: 8138ac114b7215359bbf929744748d96a231f2ef X-VCS-Branch: master Date: Sun, 18 Oct 2015 09:41:17 +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: 1c928d4b-b29d-47f7-a1e3-100ebc9b6b68 X-Archives-Hash: 18c76f57a8ab86c96f80ba1e10c3e3c2 commit: 8138ac114b7215359bbf929744748d96a231f2ef Author: Matthew Brewer sina cn> AuthorDate: Fri Oct 16 12:32:15 2015 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Sat Oct 17 22:39:48 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8138ac11 dev-ml/mirage-profile: new ebuild - needed as a transitive dependency of Libre S3 1.1 (net-misc/libres3) - explicit support for MirageOS is not enabled known issue: dev-ml/mirage-profile-0.5 fails FEATURES=test ( https://github.com/mirage/mirage-profile/issues/11 ) dev-ml/mirage-profile/Manifest | 1 + dev-ml/mirage-profile/metadata.xml | 9 +++++++ dev-ml/mirage-profile/mirage-profile-0.5.ebuild | 31 +++++++++++++++++++++++++ 3 files changed, 41 insertions(+) diff --git a/dev-ml/mirage-profile/Manifest b/dev-ml/mirage-profile/Manifest new file mode 100644 index 0000000..0488c32 --- /dev/null +++ b/dev-ml/mirage-profile/Manifest @@ -0,0 +1 @@ +DIST mirage-profile-0.5.tar.gz 55122 SHA256 ae8a6dc953f4eddd4ce61aef36552036c1814732dd3d50e02ea2994d137b8c85 SHA512 a82c4f2c42a1b950726069ce6d64f403438847bb4f5023b022b20bd42dde29d679fed358c67c3eec3ad6e5c8253453b6d1008e5e52b37a373a62263a99aa35c2 WHIRLPOOL b054c5c19102f73f9b47d796b10f4bb3e83e3de336b936ced23623d9f1cb03899cf5434ce9bd91ebe68226f3707cbbcfcfb7bfce7585af51fcdcfe383e04eecc diff --git a/dev-ml/mirage-profile/metadata.xml b/dev-ml/mirage-profile/metadata.xml new file mode 100644 index 0000000..a33970c --- /dev/null +++ b/dev-ml/mirage-profile/metadata.xml @@ -0,0 +1,9 @@ + + + + ml + proxy-maintainers + + tomboy64@sina.cn + + diff --git a/dev-ml/mirage-profile/mirage-profile-0.5.ebuild b/dev-ml/mirage-profile/mirage-profile-0.5.ebuild new file mode 100644 index 0000000..a4fe4a8 --- /dev/null +++ b/dev-ml/mirage-profile/mirage-profile-0.5.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +OASIS_BUILD_TESTS=1 + +inherit oasis + +DESCRIPTION="Collect profiling information" +HOMEPAGE="https://github.com/mirage/mirage-profile https://mirage.io" +SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0/${PV}" +KEYWORDS="~amd64" +IUSE="" +RESTRICT="test" + +RDEPEND=" + >=dev-lang/ocaml-4:= + dev-ml/io-page:= + dev-ml/lwt:= + dev-ml/ocaml-cstruct:=[camlp4(-)] + dev-ml/ocplib-endian:= +" +DEPEND=" + ${RDEPEND} +" + +DOCS=( README.md )