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: Sat, 12 Jun 2021 01:19:00
Message-Id: 1623460564.713f84f240073b672f746a1e257175ec2974fd7f.sam@gentoo
1 commit: 713f84f240073b672f746a1e257175ec2974fd7f
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 12 01:16:04 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 12 01:16:04 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=713f84f2
7
8 dev-ml/parmap: add 1.2.3
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 dev-ml/parmap/Manifest | 1 +
13 dev-ml/parmap/parmap-1.2.3.ebuild | 21 +++++++++++++++++++++
14 2 files changed, 22 insertions(+)
15
16 diff --git a/dev-ml/parmap/Manifest b/dev-ml/parmap/Manifest
17 index d06676ac38d..2110ccd4409 100644
18 --- a/dev-ml/parmap/Manifest
19 +++ b/dev-ml/parmap/Manifest
20 @@ -1,2 +1,3 @@
21 DIST parmap-1.2.1.tar.gz 47069 BLAKE2B 85d67aacff70c9d8b70c73e4673486804a0d0a4cc52391cd93bf12ed19206c11cb77066e64757f5a22352580789383e04b7d984aade5e60872be12728a173fb6 SHA512 b5ed86b464f68db625e6442606cb74c7e2b10fd066a20732e60042d32b937c20f83ff4ebf17f47b79ee6725e0de9ca42bbb050c06b47d90a27052b3b0fb07afb
22 +DIST parmap-1.2.3.tar.gz 47481 BLAKE2B 3c65448d244e6079444912ffaaea35982d44123f6259c2d15b7f1618afd10c79972f00f7e2744da270b298f4bca090c34c96e6e36638f2aaabba4ed774af24b5 SHA512 f050492ae1c5fc7c9d0baddaed44ea9920da7d2a5ed6455e93fd427648037a5e00051b6eaaf982174d88ed4de9b0123a1c4eff203f1ba6bef3384b5c7e2952c4
23 DIST parmap-1.2.tar.gz 47083 BLAKE2B e790087273fcf749b000c7ad3a2f5b2cafea91c529e3a4687b1d882d203cb43e4069a42675319c27878d8bca3fa0e19af96ab1dfda8df3967dc48d28ec542b91 SHA512 69431e146e8aa01823ae1583c6a5e7753436cecee37c3da3064a836c20cf8c6b9033248412203406d03bd4efdd957b2e118ea5c5866e3bd1f668d8c4fd48777f
24
25 diff --git a/dev-ml/parmap/parmap-1.2.3.ebuild b/dev-ml/parmap/parmap-1.2.3.ebuild
26 new file mode 100644
27 index 00000000000..44ada0a2777
28 --- /dev/null
29 +++ b/dev-ml/parmap/parmap-1.2.3.ebuild
30 @@ -0,0 +1,21 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit dune
37 +
38 +MY_PV="${PV/_/-}"
39 +DESCRIPTION="Library to exploit multicore architectures for OCaml programs"
40 +HOMEPAGE="https://www.dicosmo.org/code/parmap/"
41 +SRC_URI="https://github.com/rdicosmo/parmap/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
42 +S="${WORKDIR}/${PN}-${MY_PV/+/-}"
43 +
44 +LICENSE="LGPL-2-with-linking-exception"
45 +SLOT="0/${PV}"
46 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
47 +IUSE="+ocamlopt"
48 +
49 +BDEPEND="dev-ml/dune-configurator"
50 +RDEPEND=">=dev-lang/ocaml-4.03:=[ocamlopt?]"
51 +DEPEND="${RDEPEND}"