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.
Package-Manager: Portage-2.3.11, Repoman-2.3.3
Showing
2 changed files
with
34 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,3 +1,4 @@ | ||
DIST jbuilder-1.0-beta11.tar.gz 253922 SHA256 16fdbecfa2eb571daa07fe41f76b853067174cd56edcd58f495736333ad9ecec SHA512 3ec6281d0e9836082b788ec6aa745753705b2f48ebdbe6df9dfe1150c33b97f7aac7a0aea44c2ae2aa278729dca28cb1e4f22844661d79d5020aa2cff1d2ed5b WHIRLPOOL d8d5c5e4219c2bcb89042521541ff9d87b70a9db1610a0fa8d8031f29c25ba04233fcbf1e79782af8385f606b7e046fc7f948cebeafaf321ff9de637b560c012 | ||
DIST jbuilder-1.0-beta12.tar.gz 261625 SHA256 ad79aba8f70c40699122b252168b4b432e46b7a4757d25fd51adf39810c4e33a SHA512 423b34ca4ab3d76b59b52d78600daae755d487c834567b0e3fc5811f59df2cb2ba5a9d6fa2f185a82dd3f8ce5fd22349f24244c6ae6468b25b2293f6843b1983 WHIRLPOOL a2058555ae7cffcab2863e53d5286e152910c558eeb0818326a8f6149d8f0ce6a800bdd879799cd286124e12e795536ca4743ef4592cca12f2251bc6f9339a29 | ||
DIST jbuilder-1.0-beta13.tar.gz 263186 SHA256 a4ea77b4f8f499de02ec9e58d4bb30bfb3397e4ea11208829c52c8fd267789a8 SHA512 8ab619bd2c9c008b01998182c6951cc3e3fc60391290146a3c78eb7d20feecfa6a31d773c637ef5a3194cb8b484b9367bd9ddf5e9b16a8e92911611e266b7b90 WHIRLPOOL 31ed9aeff3a5abceda91d49b8a78f38e8ae2850ab7a09b235dd0dffb170bd5163c224fbfcda1563bd38ce097a81b029464859b6d1c1937a318b6541687135e2d | ||
DIST jbuilder-1.0-beta14.tar.gz 268571 SHA256 e0ebb0c7d781f5f6903803a7f6db9dbd02f9be4ca5b2e43ce6e4d62ac9624d1a SHA512 0258067b0b48dbd22c0d25b65fcb1fe9a7e65f9389031f954fab7cccf4e0791fe2242f85d441f23e284d13a0b1a3f4485546f94008211adef7b58fd14c4091d3 WHIRLPOOL 031bc18c9b760bd3975119ef4495e1e3e283caeaec6eb80adb614d8f546a8621da8d26690b8c2be664a3a267f4c98c9addfcc1c62878d4ff46edc36ca003c423 |
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,33 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=5 | ||
|
||
inherit opam | ||
|
||
MY_PV="${PV/_/+}" | ||
MY_P="${PN}-${PV/_/-}" | ||
|
||
DESCRIPTION="A composable build system for OCaml" | ||
HOMEPAGE="https://github.com/janestreet/jbuilder" | ||
SRC_URI="https://github.com/janestreet/jbuilder/archive/${MY_PV}.tar.gz -> ${MY_P}.tar.gz" | ||
|
||
LICENSE="Apache-2.0" | ||
SLOT="0/${PV}" | ||
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86" | ||
IUSE="test" | ||
|
||
DEPEND="" | ||
RDEPEND="${DEPEND}" | ||
DEPEND="${DEPEND} | ||
test? ( dev-ml/menhir ) | ||
" | ||
OPAMSWITCH="system" | ||
|
||
S="${WORKDIR}/${MY_P}" | ||
OPAMROOT="${D}" | ||
|
||
src_prepare() { | ||
# Disable Werror like behavior, doesnt build with ocaml 4.05 otherwise | ||
sed -i -e 's/--dev//' Makefile || die | ||
} |