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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 110ED158094 for ; Sat, 16 Jul 2022 12:30:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B053EE0EDC; Sat, 16 Jul 2022 12:30:21 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1F363E0EDC for ; Sat, 16 Jul 2022 12:30:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EFE6E340CCE for ; Sat, 16 Jul 2022 12:30:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 56F5853A for ; Sat, 16 Jul 2022 12:30:18 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1657974537.45cbfc0f641d44a86b0f7a4198cf9416c8a555f3.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/lcalc/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/lcalc/lcalc-2.0.5-r1.ebuild X-VCS-Directories: sci-mathematics/lcalc/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 45cbfc0f641d44a86b0f7a4198cf9416c8a555f3 X-VCS-Branch: master Date: Sat, 16 Jul 2022 12:30:18 +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: 67a30f7e-90ed-4a1f-addb-4e5c6c06d7e2 X-Archives-Hash: 66ee8a4d480c7a8644b5571564422009 commit: 45cbfc0f641d44a86b0f7a4198cf9416c8a555f3 Author: Michael Orlitzky gentoo org> AuthorDate: Sat Jul 16 12:28:49 2022 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Sat Jul 16 12:28:57 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45cbfc0f sci-mathematics/lcalc: remove "unused" lcalc-2.0.5-r1.ebuild. Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Michael Orlitzky gentoo.org> sci-mathematics/lcalc/lcalc-2.0.5-r1.ebuild | 31 ----------------------------- 1 file changed, 31 deletions(-) diff --git a/sci-mathematics/lcalc/lcalc-2.0.5-r1.ebuild b/sci-mathematics/lcalc/lcalc-2.0.5-r1.ebuild deleted file mode 100644 index 7e0b02e50370..000000000000 --- a/sci-mathematics/lcalc/lcalc-2.0.5-r1.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Command-line utility and library for L-function computations" -HOMEPAGE="https://gitlab.com/sagemath/lcalc" -SRC_URI="https://gitlab.com/sagemath/lcalc/uploads/25f029f3c02fcb6c3174972e0ac0e192/${P}.tar.xz" - -LICENSE="GPL-2+" -# The subslot is the libLfunction soname major version -SLOT="0/1" -KEYWORDS="amd64" - -# Omit USE=mpfr for now because it's broken upstream: -# -# https://gitlab.com/sagemath/lcalc/-/issues/7 -# -IUSE="+double double-double quad-double pari" -REQUIRED_USE="^^ ( double double-double quad-double )" - -BDEPEND="dev-util/gengetopt" -DEPEND="double-double? ( sci-libs/qd:= ) - quad-double? ( sci-libs/qd:= ) - pari? ( sci-mathematics/pari:= )" -RDEPEND="${DEPEND}" - -src_configure() { - econf $(use_with pari) \ - --enable-precision="$(usev double)$(usev double-double)$(usev quad-double)" -}