forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-ml/async_extra: bump to 113.33.03
Package-Manager: Portage-2.3.3, Repoman-2.3.1
- Loading branch information
Showing
2 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
} |