diff options
author | Alexis Ballier <aballier@gentoo.org> | 2016-03-22 11:58:17 +0100 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2016-03-22 12:02:55 +0100 |
commit | 903b3c27f20893031d77e3bb9c9d4d2b2d4dd29e (patch) | |
tree | 393739b08f1569fa63d753ef4d43af886188016c /dev-ml/bignum | |
parent | dev-ml/bin-prot: bump to 113.33.00 (diff) | |
download | gentoo-903b3c27f20893031d77e3bb9c9d4d2b2d4dd29e.tar.gz gentoo-903b3c27f20893031d77e3bb9c9d4d2b2d4dd29e.tar.bz2 gentoo-903b3c27f20893031d77e3bb9c9d4d2b2d4dd29e.zip |
dev-ml/bignum: bump to 113.33.00
Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier <aballier@gentoo.org>
Diffstat (limited to 'dev-ml/bignum')
-rw-r--r-- | dev-ml/bignum/Manifest | 1 | ||||
-rw-r--r-- | dev-ml/bignum/bignum-113.33.00.ebuild | 51 |
2 files changed, 52 insertions, 0 deletions
diff --git a/dev-ml/bignum/Manifest b/dev-ml/bignum/Manifest index 214ee8eab6fc..fba7b98c5040 100644 --- a/dev-ml/bignum/Manifest +++ b/dev-ml/bignum/Manifest @@ -1 +1,2 @@ DIST bignum-113.24.00.tar.gz 74888 SHA256 a156393144090418e2192fa5659b9479aac463678d704bae2c67cae1a727fa78 SHA512 81ff037bbbcdc5a225f6814fa62e9667ec514313bcb95d42419a66740f8572b4d9da8181ff5c0e5991fe3f2fc19c9132a43edc077313e33473acb05a82430947 WHIRLPOOL fd562c2df460794eed1660b81309b621421870711667eae97899295e6035bc917b30d99320f1d895d90bfe728b313ed93b254527c714a28d07c954d388ba68f4 +DIST bignum-113.33.00.tar.gz 75498 SHA256 7d214fe9f4cc233d8070915a750978d68ca24393cfe280f7d88c9793878829ab SHA512 eb5a8e5230177209a882a8c3dfed58952598bc2586ae41bb191bdcb00cab67034ea26b8a146a58b5d05f50db2ba0cd39706445dd09510126384c8d2884cfb1f0 WHIRLPOOL 4e4217010eaf64e0e3e6c121d8ba86d193a7ed1dbf1b0591926b5abb0015b2a79bdf4f91b65bf129f5f238731dfdd28e432489444053d6c78759406dbd5ac6f6 diff --git a/dev-ml/bignum/bignum-113.33.00.ebuild b/dev-ml/bignum/bignum-113.33.00.ebuild new file mode 100644 index 000000000000..9032ee90e5ea --- /dev/null +++ b/dev-ml/bignum/bignum-113.33.00.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +inherit oasis + +DESCRIPTION="Core-flavoured wrapper around zarith's arbitrary-precision rationals" +HOMEPAGE="http://janestreet.github.io/" +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-ml/bin-prot:= + dev-ml/core_kernel:= + dev-ml/fieldslib:= + 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:= + dev-ml/typerep:= + dev-ml/variantslib:= + dev-ml/zarith:= +" +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 +} |