Gentoo Archives: gentoo-commits

From: Aisha Tammy <gentoo@×××××.cc>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-mathematics/dsfmt/
Date: Wed, 30 Dec 2020 23:02:48
Message-Id: 1609369356.1248988e3117b63420013857b08f9d641a889e89.epsilon-0@gentoo
1 commit: 1248988e3117b63420013857b08f9d641a889e89
2 Author: Jeffrey Lin <jeffrey <AT> icurse <DOT> nl>
3 AuthorDate: Wed Dec 30 22:30:11 2020 +0000
4 Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
5 CommitDate: Wed Dec 30 23:02:36 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=1248988e
7
8 sci-mathematics/dsfmt: version bump to 2.2.4
9
10 Package-Manager: Portage-3.0.12, Repoman-3.0.2
11 Signed-off-by: Jeffrey Lin <jeffrey <AT> icurse.nl>
12 Closes: https://github.com/gentoo/sci/pull/1010
13 Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
14
15 sci-mathematics/dsfmt/dsfmt-2.2.4.ebuild | 26 ++++++++++++++++++++++++++
16 1 file changed, 26 insertions(+)
17
18 diff --git a/sci-mathematics/dsfmt/dsfmt-2.2.4.ebuild b/sci-mathematics/dsfmt/dsfmt-2.2.4.ebuild
19 new file mode 100644
20 index 000000000..14a3f62d3
21 --- /dev/null
22 +++ b/sci-mathematics/dsfmt/dsfmt-2.2.4.ebuild
23 @@ -0,0 +1,26 @@
24 +# Copyright 1999-2020 Gentoo Authors
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=7
28 +
29 +MYP=dSFMT-${PV}
30 +
31 +DESCRIPTION="Double precision SIMD-oriented Fast Mersenne Twister library"
32 +HOMEPAGE="http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/SFMT"
33 +SRC_URI="https://github.com/MersenneTwister-Lab/dSFMT/archive/v${PV}.tar.gz -> ${P}.tar.gz"
34 +
35 +LICENSE="BSD"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
38 +IUSE=""
39 +
40 +S="${WORKDIR}/${MYP}"
41 +
42 +src_test() {
43 + emake std-check
44 +}
45 +
46 +src_install() {
47 + doheader dSFMT.c d*.h
48 + dodoc README*txt CHANGE*
49 +}