summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Grozin <grozin@gentoo.org>2020-01-31 23:31:39 +0700
committerAndrey Grozin <grozin@gentoo.org>2020-01-31 23:31:39 +0700
commit3b8cb28c251180e29eb72d32ed56cdf239d06876 (patch)
tree81fac1b0abd3e6ca30c64ec4855dc125ef90d873
parentsci-mathematics/nestedsums: bump to 1.5.2 (diff)
downloadgentoo-3b8cb28c251180e29eb72d32ed56cdf239d06876.tar.gz
gentoo-3b8cb28c251180e29eb72d32ed56cdf239d06876.tar.bz2
gentoo-3b8cb28c251180e29eb72d32ed56cdf239d06876.zip
sci-mathematics/nestedsums: cleaning old
Package-Manager: Portage-2.3.86, Repoman-2.3.20 Signed-off-by: Andrey Grozin <grozin@gentoo.org>
-rw-r--r--sci-mathematics/nestedsums/Manifest1
-rw-r--r--sci-mathematics/nestedsums/nestedsums-1.5.1.ebuild44
2 files changed, 0 insertions, 45 deletions
diff --git a/sci-mathematics/nestedsums/Manifest b/sci-mathematics/nestedsums/Manifest
index fb32c4e7e533..f20b5649eaaa 100644
--- a/sci-mathematics/nestedsums/Manifest
+++ b/sci-mathematics/nestedsums/Manifest
@@ -1,2 +1 @@
-DIST nestedsums-1.5.1.tar.gz 511814 BLAKE2B 99f9a6e9bd0ccbf94f88058b3169631b982101eb84f4f7b02b73e2b597a96b9140d8447ba4ab3748972c4a019b9778eba8424a24509e7f5486a0c85bf4cd925d SHA512 e68e6b58125c5049aebe8d3769b92b7af7c40ea1bcf2caac5091a4c79015c51793d0c78dae20e01d05bdaac9106d54c8a59f6b2157ea6d497cfd117008127aa2
DIST nestedsums-1.5.2.tar.gz 511806 BLAKE2B 9c40f4b3405134ea058aad356e131b29f7f0a058b68ed3081bbcc51d451e850bccd8ec26448a8ac391524913da7eccbce4fae1b9e4119c8692b8fca59a17d885 SHA512 2b7dd54e02695a741bbe8cc0b45a3804dc7c1cb6d0b46ad7c152489e952718b438b84d60b844ff0ed92b32c78186dac2d4ee8e705ad82f965bbec923c1970d33
diff --git a/sci-mathematics/nestedsums/nestedsums-1.5.1.ebuild b/sci-mathematics/nestedsums/nestedsums-1.5.1.ebuild
deleted file mode 100644
index dda14ea4f26f..000000000000
--- a/sci-mathematics/nestedsums/nestedsums-1.5.1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit flag-o-matic
-
-DESCRIPTION="A GiNaC-based library for symbolic expansion of certain transcendental functions"
-HOMEPAGE="http://wwwthep.physik.uni-mainz.de/~stefanw/nestedsums/"
-IUSE="doc"
-SRC_URI="http://wwwthep.physik.uni-mainz.de/~stefanw/download/${P}.tar.gz"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-RDEPEND=">=sci-mathematics/ginac-1.7"
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )"
-
-src_configure() {
- append-cxxflags -std=c++11
- default
-}
-
-src_compile() {
- default
-
- if use doc; then
- doxygen Doxyfile || die "generating documentation failed"
- fi
-}
-
-src_test() {
- emake check
-}
-
-src_install() {
- emake DESTDIR="${D}" install
- rm -f "${D}"usr/lib/*.la
- dodoc AUTHORS ChangeLog
-
- if use doc; then
- dohtml reference/html/*
- fi
-}