diff options
author | Alexis Ballier <aballier@gentoo.org> | 2014-10-29 09:48:19 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2014-10-29 09:48:19 +0000 |
commit | 86c2a65d13b0bdb75d158e99e434ad0c6fbec2ec (patch) | |
tree | b5e365dc55bd77c9365f87495f44fa170909b1b1 /dev-ml/res | |
parent | version bump (diff) | |
download | gentoo-2-86c2a65d13b0bdb75d158e99e434ad0c6fbec2ec.tar.gz gentoo-2-86c2a65d13b0bdb75d158e99e434ad0c6fbec2ec.tar.bz2 gentoo-2-86c2a65d13b0bdb75d158e99e434ad0c6fbec2ec.zip |
version bump
Signed-off-by: aballier@gentoo.org
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'dev-ml/res')
-rw-r--r-- | dev-ml/res/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ml/res/res-4.0.6.ebuild | 31 |
2 files changed, 37 insertions, 1 deletions
diff --git a/dev-ml/res/ChangeLog b/dev-ml/res/ChangeLog index 395316e8f035..974b46453a6d 100644 --- a/dev-ml/res/ChangeLog +++ b/dev-ml/res/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ml/res # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/res/ChangeLog,v 1.28 2014/04/13 16:21:19 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/res/ChangeLog,v 1.29 2014/10/29 09:48:19 aballier Exp $ + +*res-4.0.6 (29 Oct 2014) + + 29 Oct 2014; Alexis Ballier <aballier@gentoo.org> +res-4.0.6.ebuild: + version bump 13 Apr 2014; Agostino Sarubbo <ago@gentoo.org> res-4.0.4.ebuild: Stable for ppc, wrt bug #502736 diff --git a/dev-ml/res/res-4.0.6.ebuild b/dev-ml/res/res-4.0.6.ebuild new file mode 100644 index 000000000000..663d29c3157c --- /dev/null +++ b/dev-ml/res/res-4.0.6.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/res/res-4.0.6.ebuild,v 1.1 2014/10/29 09:48:19 aballier Exp $ + +EAPI=5 + +OASIS_BUILD_DOCS=1 + +inherit oasis + +DESCRIPTION="Resizable Array and Buffer modules for O'Caml" +HOMEPAGE="http://mmottl.github.io/res/" +SRC_URI="https://github.com/mmottl/res/releases/download/v${PV}/${P}.tar.gz" +LICENSE="LGPL-2.1-with-linking-exception" + +RDEPEND="" +DEPEND="${RDEPEND} + >=dev-ml/findlib-1.5" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="examples" + +DOCS=( "AUTHORS.txt" "CHANGES.txt" "README.md" ) + +src_install() { + oasis_src_install + if use examples ; then + insinto /usr/share/doc/${PF} + doins -r examples + fi +} |