Gentoo Archives: gentoo-commits

From: Andrey Grozin <grozin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/nestedsums/
Date: Fri, 31 Jan 2020 16:30:34
Message-Id: 1580488219.a00fbe6f10c9737ee8944de9df9d8c46931fc19e.grozin@gentoo
1 commit: a00fbe6f10c9737ee8944de9df9d8c46931fc19e
2 Author: Andrey Grozin <grozin <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 31 16:30:19 2020 +0000
4 Commit: Andrey Grozin <grozin <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 31 16:30:19 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a00fbe6f
7
8 sci-mathematics/nestedsums: bump to 1.5.2
9
10 Package-Manager: Portage-2.3.86, Repoman-2.3.20
11 Signed-off-by: Andrey Grozin <grozin <AT> gentoo.org>
12
13 sci-mathematics/nestedsums/Manifest | 1 +
14 sci-mathematics/nestedsums/nestedsums-1.5.2.ebuild | 39 ++++++++++++++++++++++
15 2 files changed, 40 insertions(+)
16
17 diff --git a/sci-mathematics/nestedsums/Manifest b/sci-mathematics/nestedsums/Manifest
18 index ab939c130bd..fb32c4e7e53 100644
19 --- a/sci-mathematics/nestedsums/Manifest
20 +++ b/sci-mathematics/nestedsums/Manifest
21 @@ -1 +1,2 @@
22 DIST nestedsums-1.5.1.tar.gz 511814 BLAKE2B 99f9a6e9bd0ccbf94f88058b3169631b982101eb84f4f7b02b73e2b597a96b9140d8447ba4ab3748972c4a019b9778eba8424a24509e7f5486a0c85bf4cd925d SHA512 e68e6b58125c5049aebe8d3769b92b7af7c40ea1bcf2caac5091a4c79015c51793d0c78dae20e01d05bdaac9106d54c8a59f6b2157ea6d497cfd117008127aa2
23 +DIST nestedsums-1.5.2.tar.gz 511806 BLAKE2B 9c40f4b3405134ea058aad356e131b29f7f0a058b68ed3081bbcc51d451e850bccd8ec26448a8ac391524913da7eccbce4fae1b9e4119c8692b8fca59a17d885 SHA512 2b7dd54e02695a741bbe8cc0b45a3804dc7c1cb6d0b46ad7c152489e952718b438b84d60b844ff0ed92b32c78186dac2d4ee8e705ad82f965bbec923c1970d33
24
25 diff --git a/sci-mathematics/nestedsums/nestedsums-1.5.2.ebuild b/sci-mathematics/nestedsums/nestedsums-1.5.2.ebuild
26 new file mode 100644
27 index 00000000000..e0eff2517d5
28 --- /dev/null
29 +++ b/sci-mathematics/nestedsums/nestedsums-1.5.2.ebuild
30 @@ -0,0 +1,39 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit flag-o-matic
37 +
38 +DESCRIPTION="A GiNaC-based library for symbolic expansion of certain transcendental functions"
39 +HOMEPAGE="https://particlephysics.uni-mainz.de/weinzierl/nestedsums/"
40 +IUSE="doc"
41 +SRC_URI="http://particlephysics.uni-mainz.de/weinzierl/download/${P}.tar.gz"
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +RDEPEND=">=sci-mathematics/ginac-1.7"
46 +DEPEND="${RDEPEND}
47 + doc? ( app-doc/doxygen )"
48 +
49 +src_compile() {
50 + default
51 +
52 + if use doc; then
53 + doxygen Doxyfile || die "generating documentation failed"
54 + fi
55 +}
56 +
57 +src_test() {
58 + emake check
59 +}
60 +
61 +src_install() {
62 + emake DESTDIR="${D}" install
63 + rm -f "${D}"usr/lib/*.la
64 + dodoc AUTHORS ChangeLog
65 +
66 + if use doc; then
67 + dohtml reference/html/*
68 + fi
69 +}