From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E11E8138359 for ; Fri, 21 Aug 2020 08:54:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 27DAEE0BFE; Fri, 21 Aug 2020 08:54:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0F220E0BFE for ; Fri, 21 Aug 2020 08:54:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B849C340C44 for ; Fri, 21 Aug 2020 08:54:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 672CF2D1 for ; Fri, 21 Aug 2020 08:54:10 +0000 (UTC) From: "Andrey Grozin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrey Grozin" Message-ID: <1598000041.23bf6d4a41ccf50489ef0b11794efac0aef79c41.grozin@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/nestedsums/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/nestedsums/nestedsums-1.5.2.ebuild X-VCS-Directories: sci-mathematics/nestedsums/ X-VCS-Committer: grozin X-VCS-Committer-Name: Andrey Grozin X-VCS-Revision: 23bf6d4a41ccf50489ef0b11794efac0aef79c41 X-VCS-Branch: master Date: Fri, 21 Aug 2020 08:54:10 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2e80c0ee-40de-43d2-8584-5c9b8797e7a5 X-Archives-Hash: bf34291f5e9c8a1ec3cf6d18950e2c79 commit: 23bf6d4a41ccf50489ef0b11794efac0aef79c41 Author: Andrey Grozin gentoo org> AuthorDate: Fri Aug 21 08:54:01 2020 +0000 Commit: Andrey Grozin gentoo org> CommitDate: Fri Aug 21 08:54:01 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23bf6d4a sci-mathematics/nestedsums: clean old Package-Manager: Portage-3.0.3, Repoman-3.0.0 Signed-off-by: Andrey Grozin gentoo.org> sci-mathematics/nestedsums/nestedsums-1.5.2.ebuild | 40 ---------------------- 1 file changed, 40 deletions(-) diff --git a/sci-mathematics/nestedsums/nestedsums-1.5.2.ebuild b/sci-mathematics/nestedsums/nestedsums-1.5.2.ebuild deleted file mode 100644 index 3f4b9497fb6..00000000000 --- a/sci-mathematics/nestedsums/nestedsums-1.5.2.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit flag-o-matic - -DESCRIPTION="A GiNaC-based library for symbolic expansion of certain transcendental functions" -HOMEPAGE="https://particlephysics.uni-mainz.de/weinzierl/nestedsums/" -IUSE="doc" -SRC_URI="http://particlephysics.uni-mainz.de/weinzierl/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_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 - docinto html - dodoc -r reference/html/. - fi -}