diff options
author | 2017-04-01 18:26:03 +0200 | |
---|---|---|
committer | 2017-04-02 10:37:54 +0200 | |
commit | f1047b47aa4601a0173e1139d1d4a259e06db618 (patch) | |
tree | 975bd59037502c97cafe4aa06711925b92d29deb /dev-ml/ppx_hash | |
parent | dev-ml/ppx_js_style: initial import (diff) | |
download | gentoo-f1047b47aa4601a0173e1139d1d4a259e06db618.tar.gz gentoo-f1047b47aa4601a0173e1139d1d4a259e06db618.tar.bz2 gentoo-f1047b47aa4601a0173e1139d1d4a259e06db618.zip |
dev-ml/ppx_hash: initial import
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'dev-ml/ppx_hash')
-rw-r--r-- | dev-ml/ppx_hash/Manifest | 1 | ||||
-rw-r--r-- | dev-ml/ppx_hash/metadata.xml | 8 | ||||
-rw-r--r-- | dev-ml/ppx_hash/ppx_hash-0.9.0.ebuild | 35 |
3 files changed, 44 insertions, 0 deletions
diff --git a/dev-ml/ppx_hash/Manifest b/dev-ml/ppx_hash/Manifest new file mode 100644 index 000000000000..84767f540cbe --- /dev/null +++ b/dev-ml/ppx_hash/Manifest @@ -0,0 +1 @@ +DIST ppx_hash-0.9.0.tar.gz 26942 SHA256 85900477fb06a1f52f67ab6a059bcc55e9bb8a6c9225f2d0efa9454b478d047a SHA512 401a87f5cc357ad50fc23f2450b84d6113cd79c1d2506f6e95476795fde0f3240ca252fc3bfe083f9ee1d0511ea3909481387ecf597edef6f90f9756a5a97096 WHIRLPOOL 8a07e6ea6ba51a6f634254cdc976468d76b9d08f2685b4226396660ea266c76874b22244b97f5eb19b13c14d456b1010f0ea1a852f21ca83b405e999b1b038d6 diff --git a/dev-ml/ppx_hash/metadata.xml b/dev-ml/ppx_hash/metadata.xml new file mode 100644 index 000000000000..ffac4d7ebc01 --- /dev/null +++ b/dev-ml/ppx_hash/metadata.xml @@ -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_hash/ppx_hash-0.9.0.ebuild b/dev-ml/ppx_hash/ppx_hash-0.9.0.ebuild new file mode 100644 index 000000000000..8efaec8c338f --- /dev/null +++ b/dev-ml/ppx_hash/ppx_hash-0.9.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="PPX rewriter that generates hash functions from type expressions and definitions" +HOMEPAGE="https://github.com/janestreet/ppx_hash" +SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0/${PV}" +KEYWORDS="~amd64" +IUSE="" + +DEPEND=" + dev-lang/ocaml:= + dev-ml/base:= + dev-ml/ppx_compare:= + dev-ml/ppx_core:= + dev-ml/ppx_driver:= + dev-ml/ppx_metaquot:= + dev-ml/ppx_sexp_conv:= + dev-ml/ppx_type_conv:= + dev-ml/ocaml-migrate-parsetree:= + " +RDEPEND="${DEPEND}" +DEPEND="${DEPEND} dev-ml/opam dev-ml/jbuilder" + +src_install() { + opam-installer -i \ + --prefix="${ED}/usr" \ + --libdir="${D}/$(ocamlc -where)" \ + --docdir="${ED}/usr/share/doc/${PF}" \ + ${PN}.install || die +} |