diff options
author | Alexis Ballier <aballier@gentoo.org> | 2016-03-22 10:03:57 +0100 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2016-03-22 10:20:09 +0100 |
commit | 4a7cfc7a648d5d3345bb3bcbcf2def81a7318e57 (patch) | |
tree | 3a1baf475217564d36db375abede2b89dab3e531 /dev-ml | |
parent | dev-ml/ppx_optcomp: bump to 113.33.00 (diff) | |
download | gentoo-4a7cfc7a648d5d3345bb3bcbcf2def81a7318e57.tar.gz gentoo-4a7cfc7a648d5d3345bb3bcbcf2def81a7318e57.tar.bz2 gentoo-4a7cfc7a648d5d3345bb3bcbcf2def81a7318e57.zip |
dev-ml/ppx_let: bump to 113.33.00
Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier <aballier@gentoo.org>
Diffstat (limited to 'dev-ml')
-rw-r--r-- | dev-ml/ppx_let/Manifest | 1 | ||||
-rw-r--r-- | dev-ml/ppx_let/ppx_let-113.33.00.ebuild | 41 |
2 files changed, 42 insertions, 0 deletions
diff --git a/dev-ml/ppx_let/Manifest b/dev-ml/ppx_let/Manifest index 6b01759b0046..0d7a05d82e32 100644 --- a/dev-ml/ppx_let/Manifest +++ b/dev-ml/ppx_let/Manifest @@ -1 +1,2 @@ DIST ppx_let-113.24.00.tar.gz 54720 SHA256 3339a1e08e4ed7043d839ab8d3976898c40928c8d9bfb4a741cd2eb548db9bd9 SHA512 489a947fbe36053dd745bf5ffe20e58f24c692653398667b2262d1f111705f935eac54f23fb731fa872a5e83f04b610657388df70441c4b34697a2b60082728e WHIRLPOOL 12ce5e25652c22d54313a78f3b41dbed7d19db4731dd3b893c612f20564d49d2f21930c36dc48d5427040cd517926a97600241ded9453513619ad1d8fda3e73e +DIST ppx_let-113.33.00.tar.gz 54785 SHA256 217dfd47a18cfbbae44945a70d8bcba61197a6b54555a516bd16beeb05b8b3f6 SHA512 3b15c1f7f08b681b71da06d91f2d59c93dfc4194319a64bc4a0a3b6e9cf85a5a40a7348de39e309e378214d7022cd1eec4a2315c8a7a3124a0aedebc211020c3 WHIRLPOOL 62966789539d71c5dea930b44f784c469b355a0c7a5efcc96d3363ea4bd510684e69d1bd9bb0adb462fa509a05e0e78d2407437e61d6859a48ff93445c8d44b7 diff --git a/dev-ml/ppx_let/ppx_let-113.33.00.ebuild b/dev-ml/ppx_let/ppx_let-113.33.00.ebuild new file mode 100644 index 000000000000..b451b5325ed8 --- /dev/null +++ b/dev-ml/ppx_let/ppx_let-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="Monadic let-bindings" +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_driver:= +" +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 README.md +} |