diff options
author | Alexis Ballier <aballier@gentoo.org> | 2017-01-30 23:36:54 +0100 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2017-01-30 23:36:54 +0100 |
commit | 3e4d18593ffbf8857345bba53987953b2b41718f (patch) | |
tree | ba8863d6be89a60951febe989d778cd0fc51d2af /dev-ml/async_extra | |
parent | dev-ml/async_kernel: bump to 113.33.03 (diff) | |
download | gentoo-3e4d18593ffbf8857345bba53987953b2b41718f.tar.gz gentoo-3e4d18593ffbf8857345bba53987953b2b41718f.tar.bz2 gentoo-3e4d18593ffbf8857345bba53987953b2b41718f.zip |
dev-ml/async_extra: bump to 113.33.03
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'dev-ml/async_extra')
-rw-r--r-- | dev-ml/async_extra/Manifest | 1 | ||||
-rw-r--r-- | dev-ml/async_extra/async_extra-113.33.03.ebuild | 55 |
2 files changed, 56 insertions, 0 deletions
diff --git a/dev-ml/async_extra/Manifest b/dev-ml/async_extra/Manifest index 3d04ad3b1832..82d97e3555d3 100644 --- a/dev-ml/async_extra/Manifest +++ b/dev-ml/async_extra/Manifest @@ -1 +1,2 @@ DIST async_extra-113.33.00.tar.gz 163049 SHA256 2f26ce010384d0562422cf765905dfeb52c06de3818e6ce2e8193cf3d70a7073 SHA512 35f7a69639c6c53fc862342a6445c2a693624785a3f0ca92d5bccdb7e38c9326be454496f65614d33125cfc7ada14f10ce565a596ed094d13c25e20c80de765b WHIRLPOOL 691d4d50d43c60b8d91bf9022d544cfedfb8f267d33d5cdcdc47166f5430ab87a6ad5118126879d8cedbd701b2fa06953fd5b9c1b3348311944d709387b9ff60 +DIST async_extra-113.33.03.tar.gz 161678 SHA256 8e3cdcefe92272df99e8a79477032cfd9f7bc24dee2ce112d505f682e39328ea SHA512 4305d99e36e97545394ce3562b46aa285b1f1e69465bb075de20304150d856622a6c37606f4ce9db7f2828e5befc1356d4c3711ec9fc2afe1c1f865b92899ad6 WHIRLPOOL 9c8455aed548dfe95c292920489489e3ded0694f707d3fe3bfc9cd920938bd568c7636a5a395a15d775bc56fb39c614439452f85b070d7b7f9ca84dc1c6fde34 diff --git a/dev-ml/async_extra/async_extra-113.33.03.ebuild b/dev-ml/async_extra/async_extra-113.33.03.ebuild new file mode 100644 index 000000000000..dcdfbf12e76d --- /dev/null +++ b/dev-ml/async_extra/async_extra-113.33.03.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +OASIS_BUILD_DOCS=1 + +inherit oasis + +DESCRIPTION="Jane Street Capital's asynchronous execution library (extra)" +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="" + +RDEPEND=">=dev-lang/ocaml-4.02.0:= + >=dev-ml/async_kernel-113.33:= + >=dev-ml/async_rpc_kernel-113.33:= + >=dev-ml/async_unix-113.33:= + >=dev-ml/bin-prot-109.15.00:= + >=dev-ml/core-113.33:= + >=dev-ml/fieldslib-109.20.00:= + dev-ml/ppx_assert:= + dev-ml/ppx_bench:= + dev-ml/ppx_driver:= + dev-ml/ppx_expect:= + dev-ml/ppx_inline_test:= + dev-ml/ppx_jane:= + >=dev-ml/sexplib-109.20.00:= + dev-ml/typerep:= + dev-ml/variantslib:= +" +DEPEND="${RDEPEND} 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 +} |