dev-ml/ppx_tools: initial import; ebuild by me
authorAlexis Ballier <aballier@gentoo.org>
Sat, 30 Jan 2016 16:14:26 +0000 (17:14 +0100)
committerAlexis Ballier <aballier@gentoo.org>
Sat, 30 Jan 2016 16:30:40 +0000 (17:30 +0100)
Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier <aballier@gentoo.org>
dev-ml/ppx_tools/Manifest [new file with mode: 0644]
dev-ml/ppx_tools/metadata.xml [new file with mode: 0644]
dev-ml/ppx_tools/ppx_tools-0.99.2.ebuild [new file with mode: 0644]

diff --git a/dev-ml/ppx_tools/Manifest b/dev-ml/ppx_tools/Manifest
new file mode 100644 (file)
index 0000000..0181b80
--- /dev/null
@@ -0,0 +1 @@
+DIST ppx_tools_0.99.2.tar.gz 15877 SHA256 98128022ea0574d769a263eb9b73be06200eec4bac9adb8dc44df289a77c4dec SHA512 1ed8b3a670e233e77988d10c777003384c86c124b8b7e4cec41c0a3e0de280f818b7cbbddc59c49644517899ce0ef022407db6d4aaf29c559abc0788dce11594 WHIRLPOOL f04ecf57ab457ce2ea58b93a50215f49f257597ce4176a4cd3fe8ffb230ab1a898a479d2bbab3df2675b71f7123c556d3a7cd84e8b2263389ea02f3990585924
diff --git a/dev-ml/ppx_tools/metadata.xml b/dev-ml/ppx_tools/metadata.xml
new file mode 100644 (file)
index 0000000..e9fc8c8
--- /dev/null
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="project">
+    <email>ml@gentoo.org</email>
+    <name>Gentoo ML Project</name>
+  </maintainer>
+  <upstream>
+    <remote-id type="github">ocsigen/tyxml</remote-id>
+  </upstream>
+</pkgmetadata>
diff --git a/dev-ml/ppx_tools/ppx_tools-0.99.2.ebuild b/dev-ml/ppx_tools/ppx_tools-0.99.2.ebuild
new file mode 100644 (file)
index 0000000..3a85d10
--- /dev/null
@@ -0,0 +1,30 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit findlib
+
+DESCRIPTION="Tools for authors of ppx rewriters"
+HOMEPAGE="https://github.com/alainfrisch/ppx_tools"
+SRC_URI="https://github.com/alainfrisch/ppx_tools/archive/${PN}_${PV}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND=">=dev-lang/ocaml-4.02:="
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${PN}-${PN}_${PV}"
+
+src_compile() {
+       emake -j1
+}
+
+src_install() {
+       findlib_src_install
+       dodoc README.md
+}