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/ocaml-containers: bump to 1.4
Package-Manager: Portage-2.3.11, Repoman-2.3.3
- Loading branch information
Showing
2 changed files
with
33 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 ocaml-containers-1.3.tar.gz 299928 SHA256 839495aaca4f7bf681b8af931a5de7d51a5076e5c30a5fbf83f4b1de8216aa57 SHA512 d4402be1d11fee883bdf2b4fcc339df6ef175ac2d6532ee865c36656473c4882290e45f2efd9b90af7298fc3ffa0ce27fb83d8c7166edeafff798ceccad929e8 WHIRLPOOL 7292527f99eb92832b7e4b495cfbd6e2fe179d8c1496256f2016489f6f5e8ec0c1509cc5aa05c7af49999b73a0f2eaf77fa6d2bf4310cf68a4762a3ab9a0994e | ||
DIST ocaml-containers-1.4.tar.gz 302136 SHA256 fe89419bc502af431e8e9ec2e2dc3929bb115a0bd18c57e2a1a0c90179151f4b SHA512 f96c83a139cc277bb60f572966965eb3b669afe6dadd926f9baf42e8effb5f47fb4ba7628ee91ce3896a270f12e5828bc4dd9364cc6f187e800b07305fadce75 WHIRLPOOL 44eb73c2cefd4c0f9facc5655f4876880f422eafc301c69b19a764f9986d808c1e3921430d50d05d41035b8f9ce5342da310cc810e8eb4e3e7d8063dc4b9d466 |
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,32 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=5 | ||
|
||
OASIS_BUILD_TESTS=1 | ||
OASIS_BUILD_DOCS=1 | ||
|
||
inherit oasis | ||
|
||
DESCRIPTION="A modular standard library focused on data structures" | ||
HOMEPAGE="https://github.com/c-cube/ocaml-containers" | ||
SRC_URI="https://github.com/c-cube/ocaml-containers/archive/${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="BSD-2" | ||
SLOT="0/${PV}" | ||
KEYWORDS="~amd64" | ||
IUSE="test" | ||
|
||
RDEPEND=" | ||
dev-ml/result:= | ||
>=dev-ml/sequence-0.9:= | ||
" | ||
DEPEND="${RDEPEND} dev-ml/cppo | ||
test? ( dev-ml/iTeML dev-ml/ounit dev-ml/gen )" | ||
|
||
src_configure() { | ||
oasis_configure_opts=" | ||
--enable-unix | ||
--disable-bench | ||
" oasis_src_configure | ||
} |