summaryrefslogtreecommitdiff
path: root/dev-ml
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2015-07-14 08:31:01 +0000
committerAlexis Ballier <aballier@gentoo.org>2015-07-14 08:31:01 +0000
commitcef7626e31c35e00ca0fd14e70ee4ebc4c2301d1 (patch)
tree15b845f6a4160bc30bc18c294b279d6e3f16aa44 /dev-ml
parentUpdate to EAPI=5 and use subslots on readline. (diff)
downloadgentoo-2-cef7626e31c35e00ca0fd14e70ee4ebc4c2301d1.tar.gz
gentoo-2-cef7626e31c35e00ca0fd14e70ee4ebc4c2301d1.tar.bz2
gentoo-2-cef7626e31c35e00ca0fd14e70ee4ebc4c2301d1.zip
remove old
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'dev-ml')
-rw-r--r--dev-ml/parmap/ChangeLog5
-rw-r--r--dev-ml/parmap/parmap-1.0_rc5.ebuild45
2 files changed, 4 insertions, 46 deletions
diff --git a/dev-ml/parmap/ChangeLog b/dev-ml/parmap/ChangeLog
index ede90113b865..76a7c11d2be9 100644
--- a/dev-ml/parmap/ChangeLog
+++ b/dev-ml/parmap/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ml/parmap
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/parmap/ChangeLog,v 1.5 2015/07/08 05:49:29 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/parmap/ChangeLog,v 1.6 2015/07/14 08:31:01 aballier Exp $
+
+ 14 Jul 2015; Alexis Ballier <aballier@gentoo.org> -parmap-1.0_rc5.ebuild:
+ remove old
08 Jul 2015; Patrick Lauer <patrick@gentoo.org> parmap-1.0_rc6.ebuild:
Keyword for ~x86
diff --git a/dev-ml/parmap/parmap-1.0_rc5.ebuild b/dev-ml/parmap/parmap-1.0_rc5.ebuild
deleted file mode 100644
index 15e5d66352e5..000000000000
--- a/dev-ml/parmap/parmap-1.0_rc5.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/parmap/parmap-1.0_rc5.ebuild,v 1.2 2014/10/30 15:09:45 aballier Exp $
-
-EAPI=5
-
-inherit multilib
-
-MY_PV="${PV/_/-}"
-DESCRIPTION="Library allowing to exploit multicore architectures for OCaml programs with minimal modifications"
-HOMEPAGE="http://www.dicosmo.org/code/parmap/"
-SRC_URI="https://github.com/rdicosmo/parmap/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-2-with-linking-exception"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="+ocamlopt"
-
-RDEPEND=">=dev-lang/ocaml-3.12:=[ocamlopt?]"
-DEPEND="${RDEPEND}
- dev-ml/findlib"
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-src_test() {
- mkdir "${WORKDIR}/tmpinstall" || die
- emake \
- OCAMLLIBDIR="ocaml" \
- DESTDIR="${WORKDIR}/tmpinstall" \
- install
- export OCAMLPATH="${WORKDIR}/tmpinstall/ocaml"
- emake tests
- cd _build/tests || die
- for i in $(find . -type f -executable) ; do
- ${i} || die
- done
-}
-
-src_install() {
- emake \
- OCAMLLIBDIR="$(get_libdir)/ocaml" \
- MANDIR="${ED}/usr/share/man/man3o" \
- DESTDIR="${ED}/usr" \
- install
- dodoc AUTHORS ChangeLog README
-}