From bb27079649831775a18227267025c165d8752d15 Mon Sep 17 00:00:00 2001 From: Matthew Brewer Date: Sat, 17 Oct 2015 18:23:53 +0200 Subject: dev-ml/zarith: revbump changed SLOT="0" to SLOT="0/${PV}" to make := actually useful --- dev-ml/zarith/zarith-1.3-r1.ebuild | 46 ++++++++++++++++++++++++++++++++++++++ dev-ml/zarith/zarith-1.3.ebuild | 46 -------------------------------------- 2 files changed, 46 insertions(+), 46 deletions(-) create mode 100644 dev-ml/zarith/zarith-1.3-r1.ebuild delete mode 100644 dev-ml/zarith/zarith-1.3.ebuild diff --git a/dev-ml/zarith/zarith-1.3-r1.ebuild b/dev-ml/zarith/zarith-1.3-r1.ebuild new file mode 100644 index 000000000000..91bc43d104fd --- /dev/null +++ b/dev-ml/zarith/zarith-1.3-r1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit findlib eutils + +DESCRIPTION="Arithmetic and logic operations over arbitrary-precision integers" +HOMEPAGE="https://forge.ocamlcore.org/projects/zarith/" +SRC_URI="https://forge.ocamlcore.org/frs/download.php/1471/${P}.tgz" + +LICENSE="LGPL-2.1-with-linking-exception" +SLOT="0/${PV}" +KEYWORDS="~amd64" +IUSE="doc mpir +ocamlopt" + +RDEPEND=" + >=dev-lang/ocaml-4:=[ocamlopt?] + !mpir? ( dev-libs/gmp:0= ) + mpir? ( sci-libs/mpir )" + +DEPEND="${RDEPEND} dev-lang/perl" + +src_configure() { + ./configure -host "${CHOST}" \ + -ocamllibdir "/usr/$(get_libdir)" \ + -installdir "${ED}/usr/$(get_libdir)/ocaml" \ + $(usex mpir "-mpir" "-gmp") || die +} + +src_compile() { + emake HASOCAMLOPT=$(usex ocamlopt yes no) HASDYNLINK=$(usex ocamlopt yes no) all + use doc && emake doc +} + +src_test() { + emake HASOCAMLOPT=$(usex ocamlopt yes no) HASDYNLINK=$(usex ocamlopt yes no) tests +} + +src_install() { + findlib_src_preinst + emake HASOCAMLOPT=$(usex ocamlopt yes no) HASDYNLINK=$(usex ocamlopt yes no) install + dodoc Changes README + use doc && dohtml html/* +} diff --git a/dev-ml/zarith/zarith-1.3.ebuild b/dev-ml/zarith/zarith-1.3.ebuild deleted file mode 100644 index a0355294faf6..000000000000 --- a/dev-ml/zarith/zarith-1.3.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit findlib eutils - -DESCRIPTION="Arithmetic and logic operations over arbitrary-precision integers" -HOMEPAGE="https://forge.ocamlcore.org/projects/zarith/" -SRC_URI="https://forge.ocamlcore.org/frs/download.php/1471/${P}.tgz" - -LICENSE="LGPL-2.1-with-linking-exception" -SLOT="0" -KEYWORDS="~amd64" -IUSE="doc mpir +ocamlopt" - -RDEPEND=" - >=dev-lang/ocaml-4:=[ocamlopt?] - !mpir? ( dev-libs/gmp:0= ) - mpir? ( sci-libs/mpir )" - -DEPEND="${RDEPEND} dev-lang/perl" - -src_configure() { - ./configure -host "${CHOST}" \ - -ocamllibdir "/usr/$(get_libdir)" \ - -installdir "${ED}/usr/$(get_libdir)/ocaml" \ - $(usex mpir "-mpir" "-gmp") || die -} - -src_compile() { - emake HASOCAMLOPT=$(usex ocamlopt yes no) HASDYNLINK=$(usex ocamlopt yes no) all - use doc && emake doc -} - -src_test() { - emake HASOCAMLOPT=$(usex ocamlopt yes no) HASDYNLINK=$(usex ocamlopt yes no) tests -} - -src_install() { - findlib_src_preinst - emake HASOCAMLOPT=$(usex ocamlopt yes no) HASDYNLINK=$(usex ocamlopt yes no) install - dodoc Changes README - use doc && dohtml html/* -} -- cgit v1.2.3-65-gdbad