Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/parmap/
Date: Wed, 28 Oct 2020 03:56:13
Message-Id: 1603857354.d86e199467d972f57c9db660bd9ebeca6fa8164d.sam@gentoo
1 commit: d86e199467d972f57c9db660bd9ebeca6fa8164d
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 28 03:55:54 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 28 03:55:54 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d86e1994
7
8 dev-ml/parmap: cleanup old
9
10 Package-Manager: Portage-3.0.8, Repoman-3.0.2
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 dev-ml/parmap/Manifest | 1 -
14 dev-ml/parmap/parmap-1.0_rc7-r1.ebuild | 46 ----------------------------------
15 2 files changed, 47 deletions(-)
16
17 diff --git a/dev-ml/parmap/Manifest b/dev-ml/parmap/Manifest
18 index 284ce2a3234..5714ec1af55 100644
19 --- a/dev-ml/parmap/Manifest
20 +++ b/dev-ml/parmap/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST parmap-1.0_rc7-ocaml-4.03.tar.gz 98262 BLAKE2B 829553c5a8a16776588b7fc74304e189945367ddc4988e529b08857fe307b8e05db58fb73819554e88afa2405d8818d2c95fc4dc96e0a47ff782bfd78b912e90 SHA512 c8b7678fede76d35b299ef0548ef3819f9ec056cde4d5498e11f2400b96149b17ce58c35d197d10dba5fd4a702b94fe78090e1f330791b0f470891f0bbf7a544
23 DIST parmap-1.0_rc8.tar.gz 98699 BLAKE2B 755208d0b380c200c5fb2a38334bcd422ea3e3c86bd8a52db37e256dd45c22c05e8577a5f13ae14d4ad553d16c212ae2a1b299e0870ac71a52e0bf11ddf2ecc4 SHA512 96bbe49f06dc3611577e87d9e6f5ca32e10271d6a14a0970bd4548fcaf268f833b3143258e14328237a60578e2355687e4bff031a021903f3e2280ef1713cc65
24 DIST parmap-1.1.1.tar.gz 44311 BLAKE2B db80056b2207d0e6723486b930bd0636171e0f2d710706b5348f2f098eb866fe9ab5dc516754e70bc81641484d4403868950ed6b35abd926d3212402f91ca41f SHA512 8333337b4f58496dad7c3417449ad6ba319c84d5cdb8434772479c9bde5708af95c230c9e1a9a31e4276d88cce3d827b1655c42a110ccd889d1735fcfecf0c20
25
26 diff --git a/dev-ml/parmap/parmap-1.0_rc7-r1.ebuild b/dev-ml/parmap/parmap-1.0_rc7-r1.ebuild
27 deleted file mode 100644
28 index 442a609b95e..00000000000
29 --- a/dev-ml/parmap/parmap-1.0_rc7-r1.ebuild
30 +++ /dev/null
31 @@ -1,46 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=5
36 -
37 -inherit multilib
38 -
39 -MY_PV="${PV/_/-}-fix-for4.03+3"
40 -DESCRIPTION="Library to exploit multicore architectures for OCaml programs"
41 -HOMEPAGE="https://www.dicosmo.org/code/parmap/"
42 -SRC_URI="https://github.com/rdicosmo/parmap/archive/${MY_PV}.tar.gz -> ${P}-ocaml-4.03.tar.gz"
43 -
44 -LICENSE="LGPL-2-with-linking-exception"
45 -SLOT="0/${PV}"
46 -KEYWORDS="~amd64 ~ppc ~x86"
47 -IUSE="+ocamlopt"
48 -
49 -RDEPEND=">=dev-lang/ocaml-4.03:=[ocamlopt?]"
50 -DEPEND="${RDEPEND}
51 - dev-ml/findlib
52 - dev-ml/ocamlbuild
53 - dev-ml/ocaml-autoconf"
54 -S="${WORKDIR}/${PN}-${MY_PV/+/-}"
55 -
56 -src_test() {
57 - mkdir "${WORKDIR}/tmpinstall" || die
58 - emake \
59 - OCAMLLIBDIR="ocaml" \
60 - DESTDIR="${WORKDIR}/tmpinstall" \
61 - install
62 - export OCAMLPATH="${WORKDIR}/tmpinstall/ocaml"
63 - emake tests
64 - cd _build/tests || die
65 - for i in $(find . -type f -executable) ; do
66 - ${i} || die
67 - done
68 -}
69 -
70 -src_install() {
71 - emake \
72 - OCAMLLIBDIR="$(get_libdir)/ocaml" \
73 - MANDIR="${ED}/usr/share/man/man3o" \
74 - DESTDIR="${ED}/usr" \
75 - install
76 - dodoc AUTHORS Changelog README
77 -}