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/ppx_assert: bump to 113.33.00
Package-Manager: portage-2.2.28 Signed-off-by: Alexis Ballier <[email protected]>
- Loading branch information
Showing
2 changed files
with
47 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 ppx_assert-113.24.00.tar.gz 54859 SHA256 2a282e277a85fd6f7b0140da42081a053d22cc266c5819ed23affd64f0040da3 SHA512 83c6085d0badef7881fdfffa3a53e9e73fec9b1ecf160fd6312bee73d0bb8d77db89526a420809b4bac32074c24e0c545d700edde9dabc10e1c3b01e0cca4e06 WHIRLPOOL 5b8e441bff129f3016696630854b256edf8131279fd4c7a05c5d4c10cb708d0cbbb1f810d2cd81230f7f76edd76af9e065d81d6e6c0d5b72d03448949cfeff38 | ||
DIST ppx_assert-113.33.00.tar.gz 54623 SHA256 e89d01aa175ce4e08a45749ea5b840adc3341a4314d46b8ea207506377e55ef2 SHA512 f84ac876df2a8bda9a65efa9ca89832d1260d7a3b5186a09b4f885ab1cd1f98b68d3bafcfc6bee8f03689083de8961578308171c498ef0ddcc351ae69657c2ee WHIRLPOOL 974282e4811b7a8a7d407092fe429218a0695b79a4dee3900b09ca8886a04367920a4b4cd5c832325225371852e0fb760624aaa19ec53e03f271a893706bf4cb |
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,46 @@ | ||
# Copyright 1999-2015 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI="5" | ||
|
||
inherit oasis | ||
|
||
DESCRIPTION="Assert-like extension nodes that raise useful errors on failure" | ||
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_compare:= | ||
dev-ml/ppx_driver:= | ||
dev-ml/ppx_here:= | ||
dev-ml/ppx_sexp_conv:= | ||
dev-ml/ppx_type_conv | ||
dev-ml/sexplib:= | ||
dev-ml/ppx_core:=" | ||
|
||
RDEPEND="${DEPEND}" | ||
DEPEND="${RDEPEND} dev-ml/oasis" | ||
|
||
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 | ||
} |