diff options
author | Alexis Ballier <aballier@gentoo.org> | 2016-02-12 17:06:42 +0100 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2016-02-12 17:30:12 +0100 |
commit | d59e1ba1ab4bf4d7fddb5ec30ff13d2160f9077d (patch) | |
tree | 817d7d896af846cbbf892277304928279c361b71 /dev-ml/core | |
parent | dev-ml/ppx_bin_prot: bump to 113.24.01 (diff) | |
download | gentoo-d59e1ba1ab4bf4d7fddb5ec30ff13d2160f9077d.tar.gz gentoo-d59e1ba1ab4bf4d7fddb5ec30ff13d2160f9077d.tar.bz2 gentoo-d59e1ba1ab4bf4d7fddb5ec30ff13d2160f9077d.zip |
dev-ml/core: bump to 113.24.01
Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier <aballier@gentoo.org>
Diffstat (limited to 'dev-ml/core')
-rw-r--r-- | dev-ml/core/Manifest | 1 | ||||
-rw-r--r-- | dev-ml/core/core-113.24.01.ebuild | 54 |
2 files changed, 55 insertions, 0 deletions
diff --git a/dev-ml/core/Manifest b/dev-ml/core/Manifest index 6b5c04552fbf..087a7c1b56af 100644 --- a/dev-ml/core/Manifest +++ b/dev-ml/core/Manifest @@ -1 +1,2 @@ DIST core-113.24.00.tar.gz 806394 SHA256 66ab36a4d7b78a4710f992c670777919ae329dcbe107f270239a2215d87dce81 SHA512 ec3682ed9bb15d2bf8f9063930249f3657b34a3edda1a3b69bfcf5d50cd9d59fb6fbbc795d01a695da0897bb2673c80449972de80f4b4f60df9bab831ee1d5d4 WHIRLPOOL c5381a69901d9adc87b9814fa8cd9547ba4898a0536a634f48cee3dbdb0b3bb15c6ef2c834767047a1f8d40a1517771a0d6b79014fc4b2c9d937014c603f97a3 +DIST core-113.24.01.tar.gz 806424 SHA256 16470035f9e21e8accdaa3286c3e353f60c485402323644fd231412fccf6d9c6 SHA512 8bfe45a1d0a1973ae7cd317fd6c71d2bb3a6170e432f735e6504586cd4d51b29dec972588478f4abdc7d20d6967ca58afa3ecb5a18871c807437bf8b73e063ec WHIRLPOOL 3bbc8c54140d6277885c37a525af1467ea1c30c7bc4d9dd55738432eca7e4460fed55c7499aad35a46cff324492b0797c40919f926856d6c9d5cc7fd7728705d diff --git a/dev-ml/core/core-113.24.01.ebuild b/dev-ml/core/core-113.24.01.ebuild new file mode 100644 index 000000000000..2f4f48eadcf4 --- /dev/null +++ b/dev-ml/core/core-113.24.01.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +OASIS_BUILD_DOCS=1 +OASIS_BUILD_TESTS=1 + +inherit eutils oasis + +MY_P=${P/_/\~} +DESCRIPTION="Jane Street's alternative to the standard library" +HOMEPAGE="http://www.janestreet.com/ocaml" +SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${P}.tar.gz" + +LICENSE="LGPL-2.1-with-linking-exception" +SLOT="0/${PV}" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND=" + >=dev-ml/bin-prot-113.24.00:= + >=dev-ml/core_kernel-113.24.00:= + >=dev-ml/fieldslib-113.24.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-113.24.00:= + dev-ml/typerep:= + dev-ml/variantslib:= +" +DEPEND="${RDEPEND}" + +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 README.md +} |