Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/parmap/
Date: Tue, 24 Jan 2017 11:32:34
Message-Id: 1485257268.017f9b2661977a4e4e978dc70bc8076c7cdd695a.aballier@gentoo
1 commit: 017f9b2661977a4e4e978dc70bc8076c7cdd695a
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 24 11:27:48 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 24 11:27:48 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=017f9b26
7
8 dev-ml/parmap: remove old
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-ml/parmap/Manifest | 1 -
13 dev-ml/parmap/parmap-1.0_rc7.ebuild | 47 -------------------------------------
14 2 files changed, 48 deletions(-)
15
16 diff --git a/dev-ml/parmap/Manifest b/dev-ml/parmap/Manifest
17 index 3cc71ee..172297b 100644
18 --- a/dev-ml/parmap/Manifest
19 +++ b/dev-ml/parmap/Manifest
20 @@ -1,2 +1 @@
21 DIST parmap-1.0_rc7-ocaml-4.03.tar.gz 98262 SHA256 78f3baa7f9b9c7b5e2a3571624b844fce2b0b9f8744ebf5309ad880e74940fbb SHA512 c8b7678fede76d35b299ef0548ef3819f9ec056cde4d5498e11f2400b96149b17ce58c35d197d10dba5fd4a702b94fe78090e1f330791b0f470891f0bbf7a544 WHIRLPOOL 1e21a0676458222938afab3feec4f23048537870b10fa62a4c213368642eed642d3c4cf0e167d3267a7d0237be7ea0e1c13e8c164a8020a5f32acb7b1f4e568b
22 -DIST parmap-1.0_rc7.tar.gz 97799 SHA256 b993d47b8b8e5342839b851b46aba52264b4f8c527db08f3124ed7a7de7e1912 SHA512 50ac96f0f8b835298958f1a8ca65a2e488eab9c86f5fd57b43d5cd8145c71594a537add568dbe8f471d41157701769e35d0e992b07b430252623b72d7488d562 WHIRLPOOL 54842d45a7495316f42ae63de08db88512adddc1ee743a70de5a899d4c35e7a2e062bfc6f9456c65a32d2279784eb291f0299fd9b785e59e3607dec193f7f01d
23
24 diff --git a/dev-ml/parmap/parmap-1.0_rc7.ebuild b/dev-ml/parmap/parmap-1.0_rc7.ebuild
25 deleted file mode 100644
26 index 1ef31c2..00000000
27 --- a/dev-ml/parmap/parmap-1.0_rc7.ebuild
28 +++ /dev/null
29 @@ -1,47 +0,0 @@
30 -# Copyright 1999-2015 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Id$
33 -
34 -EAPI=5
35 -
36 -inherit multilib
37 -
38 -MY_PV="${PV/_/-}"
39 -DESCRIPTION="Library allowing to exploit multicore architectures for OCaml programs with minimal modifications"
40 -HOMEPAGE="http://www.dicosmo.org/code/parmap/"
41 -SRC_URI="https://github.com/rdicosmo/parmap/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="LGPL-2-with-linking-exception"
44 -SLOT="0/${PV}"
45 -KEYWORDS="~amd64 ~x86"
46 -IUSE="+ocamlopt"
47 -
48 -RDEPEND=">=dev-lang/ocaml-3.12:=[ocamlopt?]"
49 -DEPEND="${RDEPEND}
50 - dev-ml/findlib
51 - dev-ml/ocamlbuild
52 - dev-ml/ocaml-autoconf"
53 -S="${WORKDIR}/${PN}-${MY_PV}"
54 -
55 -src_test() {
56 - mkdir "${WORKDIR}/tmpinstall" || die
57 - emake \
58 - OCAMLLIBDIR="ocaml" \
59 - DESTDIR="${WORKDIR}/tmpinstall" \
60 - install
61 - export OCAMLPATH="${WORKDIR}/tmpinstall/ocaml"
62 - emake tests
63 - cd _build/tests || die
64 - for i in $(find . -type f -executable) ; do
65 - ${i} || die
66 - done
67 -}
68 -
69 -src_install() {
70 - emake \
71 - OCAMLLIBDIR="$(get_libdir)/ocaml" \
72 - MANDIR="${ED}/usr/share/man/man3o" \
73 - DESTDIR="${ED}/usr" \
74 - install
75 - dodoc AUTHORS ChangeLog README
76 -}