diff options
author | Alexis Ballier <aballier@gentoo.org> | 2013-07-22 13:17:45 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2013-07-22 13:17:45 +0000 |
commit | 0affb6b5ca5a1578bd31d1c368466ddf2fda21dc (patch) | |
tree | 43cc7f78b2ede89e121501901320a72dbd7783dc /dev-ml/res | |
parent | Stable for ppc64, wrt bug #476568 (diff) | |
download | gentoo-2-0affb6b5ca5a1578bd31d1c368466ddf2fda21dc.tar.gz gentoo-2-0affb6b5ca5a1578bd31d1c368466ddf2fda21dc.tar.bz2 gentoo-2-0affb6b5ca5a1578bd31d1c368466ddf2fda21dc.zip |
version bump
(Portage version: 2.2.0_alpha188/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.3.ebuild | 30 |
2 files changed, 36 insertions, 1 deletions
diff --git a/dev-ml/res/ChangeLog b/dev-ml/res/ChangeLog index fee4ca16877f..1c7651b28408 100644 --- a/dev-ml/res/ChangeLog +++ b/dev-ml/res/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ml/res # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/res/ChangeLog,v 1.19 2013/03/10 10:25:49 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/res/ChangeLog,v 1.20 2013/07/22 13:17:45 aballier Exp $ + +*res-4.0.3 (22 Jul 2013) + + 22 Jul 2013; Alexis Ballier <aballier@gentoo.org> +res-4.0.3.ebuild: + version bump 10 Mar 2013; Alexis Ballier <aballier@gentoo.org> -files/res-3.2.0-noocamlopt.patch, -res-3.2.0.ebuild: diff --git a/dev-ml/res/res-4.0.3.ebuild b/dev-ml/res/res-4.0.3.ebuild new file mode 100644 index 000000000000..b97421f1f86d --- /dev/null +++ b/dev-ml/res/res-4.0.3.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/res/res-4.0.3.ebuild,v 1.1 2013/07/22 13:17:45 aballier Exp $ + +EAPI=5 + +OASIS_BUILD_DOCS=1 + +inherit oasis + +DESCRIPTION="Resizable Array and Buffer modules for O'Caml" +HOMEPAGE="http://bitbucket.org/mmottl/res" +SRC_URI="https://bitbucket.org/mmottl/res/downloads/${P}.tar.gz" +LICENSE="LGPL-2.1-with-linking-exception" + +DEPEND="" +RDEPEND="${DEPEND}" +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 +} |