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, 21 Aug 2020 08:54:13
Message-Id: 1598000041.23bf6d4a41ccf50489ef0b11794efac0aef79c41.grozin@gentoo
1 commit: 23bf6d4a41ccf50489ef0b11794efac0aef79c41
2 Author: Andrey Grozin <grozin <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 21 08:54:01 2020 +0000
4 Commit: Andrey Grozin <grozin <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 21 08:54:01 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23bf6d4a
7
8 sci-mathematics/nestedsums: clean old
9
10 Package-Manager: Portage-3.0.3, Repoman-3.0.0
11 Signed-off-by: Andrey Grozin <grozin <AT> gentoo.org>
12
13 sci-mathematics/nestedsums/nestedsums-1.5.2.ebuild | 40 ----------------------
14 1 file changed, 40 deletions(-)
15
16 diff --git a/sci-mathematics/nestedsums/nestedsums-1.5.2.ebuild b/sci-mathematics/nestedsums/nestedsums-1.5.2.ebuild
17 deleted file mode 100644
18 index 3f4b9497fb6..00000000000
19 --- a/sci-mathematics/nestedsums/nestedsums-1.5.2.ebuild
20 +++ /dev/null
21 @@ -1,40 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -inherit flag-o-matic
28 -
29 -DESCRIPTION="A GiNaC-based library for symbolic expansion of certain transcendental functions"
30 -HOMEPAGE="https://particlephysics.uni-mainz.de/weinzierl/nestedsums/"
31 -IUSE="doc"
32 -SRC_URI="http://particlephysics.uni-mainz.de/weinzierl/download/${P}.tar.gz"
33 -LICENSE="GPL-2"
34 -SLOT="0"
35 -KEYWORDS="~amd64 ~x86"
36 -RDEPEND=">=sci-mathematics/ginac-1.7"
37 -DEPEND="${RDEPEND}
38 - doc? ( app-doc/doxygen )"
39 -
40 -src_compile() {
41 - default
42 -
43 - if use doc; then
44 - doxygen Doxyfile || die "generating documentation failed"
45 - fi
46 -}
47 -
48 -src_test() {
49 - emake check
50 -}
51 -
52 -src_install() {
53 - emake DESTDIR="${D}" install
54 - rm -f "${D}"/usr/lib/*.la
55 - dodoc AUTHORS ChangeLog
56 -
57 - if use doc; then
58 - docinto html
59 - dodoc -r reference/html/.
60 - fi
61 -}