dev-ml/ppx_deriving_yojson: initial import; ebuild by me
authorAlexis Ballier <aballier@gentoo.org>
Thu, 8 Sep 2016 08:48:02 +0000 (10:48 +0200)
committerAlexis Ballier <aballier@gentoo.org>
Thu, 8 Sep 2016 14:56:53 +0000 (16:56 +0200)
Package-Manager: portage-2.3.0

dev-ml/ppx_deriving_yojson/Manifest [new file with mode: 0644]
dev-ml/ppx_deriving_yojson/metadata.xml [new file with mode: 0644]
dev-ml/ppx_deriving_yojson/ppx_deriving_yojson-3.0.ebuild [new file with mode: 0644]

diff --git a/dev-ml/ppx_deriving_yojson/Manifest b/dev-ml/ppx_deriving_yojson/Manifest
new file mode 100644 (file)
index 0000000..58b2ce4
--- /dev/null
@@ -0,0 +1 @@
+DIST ppx_deriving_yojson-3.0.tar.gz 18111 SHA256 28264562fa87fe0ae3484fa434126c02a7770f0324fa6a64ba8132ab10ae5143 SHA512 70c690d880ff652f9f92e95af047e87726bab48100e9325406eef7a9ed80f439df7292324de56cd17a93c6ad6bc9c1e7ce6edcd7c3b336352f0df4bfa7c7b81c WHIRLPOOL 7fac84e8faa78a9c362453098a2e73d1902ec9272f45ee32c9710bea527faeae55274ecfa257ad1eadbe4aa24d623e33b5ca73c122548efc0fe951061b1dc268
diff --git a/dev-ml/ppx_deriving_yojson/metadata.xml b/dev-ml/ppx_deriving_yojson/metadata.xml
new file mode 100644 (file)
index 0000000..ffac4d7
--- /dev/null
@@ -0,0 +1,8 @@
+<?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>
+</pkgmetadata>
diff --git a/dev-ml/ppx_deriving_yojson/ppx_deriving_yojson-3.0.ebuild b/dev-ml/ppx_deriving_yojson/ppx_deriving_yojson-3.0.ebuild
new file mode 100644 (file)
index 0000000..8b0dcc2
--- /dev/null
@@ -0,0 +1,48 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+DESCRIPTION="A Yojson codec generator for OCaml"
+HOMEPAGE="A Yojson codec generator for OCaml"
+SRC_URI="https://github.com/whitequark/ppx_deriving_yojson/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="+ocamlopt test"
+
+DEPEND="
+       dev-lang/ocaml:=[ocamlopt?]
+       dev-ml/yojson:=
+       dev-ml/result:=
+       >=dev-ml/ppx_deriving-4:=
+       dev-ml/cppo:=
+"
+RDEPEND="${DEPEND}"
+DEPEND="${DEPEND}
+       dev-ml/findlib
+       dev-ml/ocamlbuild
+       test? ( dev-ml/ounit dev-ml/ppx_import )"
+
+src_compile() {
+       cp pkg/META.in pkg/META
+       ocaml pkg/build.ml \
+               native=$(usex ocamlopt true false) \
+               native-dynlink=$(usex ocamlopt true false) \
+               || die
+}
+
+src_test() {
+       ocamlbuild -j 0 -use-ocamlfind -classic-display src_test/test_ppx_yojson.byte -- || die
+}
+
+src_install() {
+       opam-installer -i \
+               --prefix="${ED}/usr" \
+               --libdir="${D}/$(ocamlc -where)" \
+               --docdir="${T}/dontinstallit" \
+               ${PN}.install || die
+       dodoc CHANGELOG.md README.md
+}