diff options
author | Alexis Ballier <aballier@gentoo.org> | 2016-03-22 10:34:34 +0100 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2016-03-22 11:06:56 +0100 |
commit | 8afa2de7374a27d14a807892a62ee798195f3e9e (patch) | |
tree | ea6be6c0c435ed9ddc57322fcaebd62772e425b1 /dev-ml/ppx_enumerate | |
parent | dev-ml/ppx_expect: bump to 113.33.00 (diff) | |
download | gentoo-8afa2de7374a27d14a807892a62ee798195f3e9e.tar.gz gentoo-8afa2de7374a27d14a807892a62ee798195f3e9e.tar.bz2 gentoo-8afa2de7374a27d14a807892a62ee798195f3e9e.zip |
dev-ml/ppx_enumerate: bump to 113.33.00
Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier <aballier@gentoo.org>
Diffstat (limited to 'dev-ml/ppx_enumerate')
-rw-r--r-- | dev-ml/ppx_enumerate/Manifest | 1 | ||||
-rw-r--r-- | dev-ml/ppx_enumerate/ppx_enumerate-113.33.00.ebuild | 41 |
2 files changed, 42 insertions, 0 deletions
diff --git a/dev-ml/ppx_enumerate/Manifest b/dev-ml/ppx_enumerate/Manifest index c21171c9c56d..96361eccdef7 100644 --- a/dev-ml/ppx_enumerate/Manifest +++ b/dev-ml/ppx_enumerate/Manifest @@ -1 +1,2 @@ DIST ppx_enumerate-113.24.00.tar.gz 56326 SHA256 cdfb71ec06935a325551896ed49e4b87d39eca63a182089fa757504f2159b505 SHA512 66d484510e59a910c80c556b458c953f636b1439597237a178629c6d3928a8697eb343b59bc78872ce1416b0f9ce701d758f507a3ac24df01cf232bc8aa64db3 WHIRLPOOL 99cfbe08f6df46068bf0c05bda45850777e1dff917be65b1ce4904e76390cd54501687f68f5d5f5c6eab7b65ccfa92fe6271a4cb759c9081979f17f961635edb +DIST ppx_enumerate-113.33.00.tar.gz 56173 SHA256 9eaa3804b1553594d3422bc86aecd13b91a69b879b8e2a826a2862beb4e91973 SHA512 9792f991a570a7a636ca528e4ff400cde147a8a034e54dda853b9df677aa3a7e8d2c570045c11d4beb3ce6ef827116a65f8ac0ceda969b53fb99dbba8ce99bf9 WHIRLPOOL 416690f9f7153bacbb086fe1ab3394585b4be878f4be1e706df11bdcfba6471ee6d724b89ba9b2880c1c74a9e3486ff8b5e59d8608e1d445c1b082dd60fbd244 diff --git a/dev-ml/ppx_enumerate/ppx_enumerate-113.33.00.ebuild b/dev-ml/ppx_enumerate/ppx_enumerate-113.33.00.ebuild new file mode 100644 index 000000000000..1f0f3773c892 --- /dev/null +++ b/dev-ml/ppx_enumerate/ppx_enumerate-113.33.00.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +inherit oasis + +DESCRIPTION="Generate a list containing all values of a finite type" +HOMEPAGE="http://www.janestreet.com/ocaml" +SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0/${PV}" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="dev-ml/ppx_tools:= + dev-ml/ppx_core:= + dev-ml/ppx_type_conv:= +" +RDEPEND="${DEPEND}" +DEPEND="${DEPEND} dev-ml/opam" + +src_configure() { + emake setup.exe + OASIS_SETUP_COMMAND="./setup.exe" oasis_src_configure +} + +src_compile() { + emake +} + +src_install() { + opam-installer -i \ + --prefix="${ED}/usr" \ + --libdir="${D}/$(ocamlc -where)" \ + --docdir="${ED}/usr/share/doc/${PF}" \ + ${PN}.install || die + dodoc CHANGES.md +} |