diff options
author | Alexis Ballier <aballier@gentoo.org> | 2012-06-30 17:16:34 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2012-06-30 17:16:34 +0000 |
commit | 6f6e257103a0b48deaae112ca30bb60965fe4dba (patch) | |
tree | a7a118d6a90da354e282143634d2da3934a78a56 /dev-ml | |
parent | dev-db/xbsql: Add fixes for newer xbase library, use autotools-utils and auto... (diff) | |
download | gentoo-2-6f6e257103a0b48deaae112ca30bb60965fe4dba.tar.gz gentoo-2-6f6e257103a0b48deaae112ca30bb60965fe4dba.tar.bz2 gentoo-2-6f6e257103a0b48deaae112ca30bb60965fe4dba.zip |
version bump
(Portage version: 2.2.0_alpha114/cvs/Linux x86_64)
Diffstat (limited to 'dev-ml')
-rw-r--r-- | dev-ml/core/ChangeLog | 8 | ||||
-rw-r--r-- | dev-ml/core/core-108.00.01.ebuild | 38 | ||||
-rw-r--r-- | dev-ml/core/files/core-108.00.01-nocust.patch | 13 | ||||
-rw-r--r-- | dev-ml/core/files/core-108.00.01-noinl.patch | 12 |
4 files changed, 70 insertions, 1 deletions
diff --git a/dev-ml/core/ChangeLog b/dev-ml/core/ChangeLog index bb4627942240..e6f7f3eee998 100644 --- a/dev-ml/core/ChangeLog +++ b/dev-ml/core/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-ml/core # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/core/ChangeLog,v 1.9 2012/05/04 12:43:07 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/core/ChangeLog,v 1.10 2012/06/30 17:16:34 aballier Exp $ + +*core-108.00.01 (30 Jun 2012) + + 30 Jun 2012; Alexis Ballier <aballier@gentoo.org> +core-108.00.01.ebuild, + +files/core-108.00.01-nocust.patch, +files/core-108.00.01-noinl.patch: + version bump 04 May 2012; Alexis Ballier <aballier@gentoo.org> core-107.01.ebuild: add doc useflag, by Alexandru Scvortov, bug #413925 diff --git a/dev-ml/core/core-108.00.01.ebuild b/dev-ml/core/core-108.00.01.ebuild new file mode 100644 index 000000000000..57712673c886 --- /dev/null +++ b/dev-ml/core/core-108.00.01.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/core/core-108.00.01.ebuild,v 1.1 2012/06/30 17:16:34 aballier Exp $ + +EAPI="3" + +OASIS_BUILD_DOCS=1 +OASIS_BUILD_TESTS=1 + +inherit oasis base + +MY_P=${P/_/\~} +DESCRIPTION="Jane Street's alternative to the standard library" +HOMEPAGE="http://www.janestreet.com/ocaml" +SRC_URI="http://bitbucket.org/yminsky/ocaml-core/downloads/${P}.tar.gz" + +LICENSE="LGPL-2.1-linking-exception" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +RDEPEND="dev-ml/res + >=dev-ml/sexplib-108.00.01 + >=dev-ml/bin-prot-108.00.01 + >=dev-ml/fieldslib-108.00.01 + >=dev-ml/pa_ounit-108.00.01 + >=dev-ml/variantslib-108.00.01 + >=dev-ml/pipebang-108.00.01" +DEPEND="${RDEPEND} + >=dev-ml/oasis-0.3 + test? ( >=dev-ml/ounit-1.0.2 )" + +PATCHES=( "${FILESDIR}/${P}-nocust.patch" "${FILESDIR}/${P}-noinl.patch" ) + +src_prepare() { + base_src_prepare + oasis setup || die +} diff --git a/dev-ml/core/files/core-108.00.01-nocust.patch b/dev-ml/core/files/core-108.00.01-nocust.patch new file mode 100644 index 000000000000..5181b032b9c3 --- /dev/null +++ b/dev-ml/core/files/core-108.00.01-nocust.patch @@ -0,0 +1,13 @@ +Index: core-108.00.01/_oasis +=================================================================== +--- core-108.00.01.orig/_oasis ++++ core-108.00.01/_oasis +@@ -63,7 +63,7 @@ Executable test_runner + Path: lib_test + MainIs: test_runner.ml + Build$: flag(tests) +- Custom: true ++# Custom: true + # CompiledObject: best + Install: false + BuildDepends: core,oUnit (>= 1.0.2) diff --git a/dev-ml/core/files/core-108.00.01-noinl.patch b/dev-ml/core/files/core-108.00.01-noinl.patch new file mode 100644 index 000000000000..1e413c48fac9 --- /dev/null +++ b/dev-ml/core/files/core-108.00.01-noinl.patch @@ -0,0 +1,12 @@ +Index: core-108.00.01/lib_test/test.ml +=================================================================== +--- core-108.00.01.orig/lib_test/test.ml ++++ core-108.00.01/lib_test/test.ml +@@ -21,7 +21,6 @@ let all () = + flatten + (TestList + [ +- Core.Inline_tests.tests (); + Avltree_test.test; + Bag_test.test; + Bigbuffer_test.test; |