summaryrefslogtreecommitdiff
path: root/sci-mathematics/nestedsums
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-02-05 18:44:56 +0000
committerV3n3RiX <venerix@redcorelinux.org>2020-02-05 18:44:56 +0000
commit29aabba0ea759c6a2864ff5631735b67ee38e5e0 (patch)
treeab466b4dfa7abecb401b2f8039d08af4689306bb /sci-mathematics/nestedsums
parentd42200bec37eef2a7478d88988ff00addd0a9202 (diff)
gentoo resync : 05.02.2020
Diffstat (limited to 'sci-mathematics/nestedsums')
-rw-r--r--sci-mathematics/nestedsums/Manifest4
-rw-r--r--sci-mathematics/nestedsums/nestedsums-1.5.2.ebuild (renamed from sci-mathematics/nestedsums/nestedsums-1.5.1.ebuild)18
2 files changed, 9 insertions, 13 deletions
diff --git a/sci-mathematics/nestedsums/Manifest b/sci-mathematics/nestedsums/Manifest
index a42e08907609..5596c5111021 100644
--- a/sci-mathematics/nestedsums/Manifest
+++ b/sci-mathematics/nestedsums/Manifest
@@ -1,3 +1,3 @@
-DIST nestedsums-1.5.1.tar.gz 511814 BLAKE2B 99f9a6e9bd0ccbf94f88058b3169631b982101eb84f4f7b02b73e2b597a96b9140d8447ba4ab3748972c4a019b9778eba8424a24509e7f5486a0c85bf4cd925d SHA512 e68e6b58125c5049aebe8d3769b92b7af7c40ea1bcf2caac5091a4c79015c51793d0c78dae20e01d05bdaac9106d54c8a59f6b2157ea6d497cfd117008127aa2
-EBUILD nestedsums-1.5.1.ebuild 865 BLAKE2B f3a63ee769c4e4ebb89702434679c90cdea5921bef448769e6ba8dbc1cc3c492f1b7598d1b9d9933eff14e678a70318f501ffb9ed1eaf28235f02ac95868a29d SHA512 b0de9f595f5f994574fc2daf5170b3c7b8d1bf73cf3bf7af0d346efa106a36f1db28154bd99fc87e3c887aaca068cf729b23c10221d7b6ff004a67b6205eb23a
+DIST nestedsums-1.5.2.tar.gz 511806 BLAKE2B 9c40f4b3405134ea058aad356e131b29f7f0a058b68ed3081bbcc51d451e850bccd8ec26448a8ac391524913da7eccbce4fae1b9e4119c8692b8fca59a17d885 SHA512 2b7dd54e02695a741bbe8cc0b45a3804dc7c1cb6d0b46ad7c152489e952718b438b84d60b844ff0ed92b32c78186dac2d4ee8e705ad82f965bbec923c1970d33
+EBUILD nestedsums-1.5.2.ebuild 827 BLAKE2B 2a8fa6a9d64e94d08ca0fa3756b211aac0c3af1eddb14af56e7f1fec6f9c518358ba03922f53842ca9e3ad0e5ede5f74d90b96587bf88776450799590c3c8e54 SHA512 55a253f7fbb5b2bd579eefbc88cf5f86cbddb5fda9fc396a119f9ddd360dcb0cc1ca4bd5ab653494d66ee367d1e0287f00d52de3a0269712b68bc4538c1db099
MISC metadata.xml 501 BLAKE2B dd148f912baaaece32f3d6ebc779762b01496f1384f88a54e83c98e9f6a913d52e1dd6da962ae64a3a223846d83d4597cba0ced20c6ea6c7fc35775f7376d1f2 SHA512 5869e4268ec16289d392ec2911f1297e19e06cff94b8dac6f4cf57adaeb9fba1dba8853433bed1154a3bd2048cf5b762d6560a70a30fb5de230b5ce6ce1b775c
diff --git a/sci-mathematics/nestedsums/nestedsums-1.5.1.ebuild b/sci-mathematics/nestedsums/nestedsums-1.5.2.ebuild
index dda14ea4f26f..3f4b9497fb6b 100644
--- a/sci-mathematics/nestedsums/nestedsums-1.5.1.ebuild
+++ b/sci-mathematics/nestedsums/nestedsums-1.5.2.ebuild
@@ -1,14 +1,14 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
+EAPI=7
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/"
+HOMEPAGE="https://particlephysics.uni-mainz.de/weinzierl/nestedsums/"
IUSE="doc"
-SRC_URI="http://wwwthep.physik.uni-mainz.de/~stefanw/download/${P}.tar.gz"
+SRC_URI="http://particlephysics.uni-mainz.de/weinzierl/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
@@ -16,11 +16,6 @@ RDEPEND=">=sci-mathematics/ginac-1.7"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )"
-src_configure() {
- append-cxxflags -std=c++11
- default
-}
-
src_compile() {
default
@@ -35,10 +30,11 @@ src_test() {
src_install() {
emake DESTDIR="${D}" install
- rm -f "${D}"usr/lib/*.la
+ rm -f "${D}"/usr/lib/*.la
dodoc AUTHORS ChangeLog
if use doc; then
- dohtml reference/html/*
+ docinto html
+ dodoc -r reference/html/.
fi
}