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 B8DB1158093 for ; Sat, 2 Jul 2022 21:21:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C23B0E0D1C; Sat, 2 Jul 2022 21:21:52 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9EC70E0D1C for ; Sat, 2 Jul 2022 21:21:52 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B21C5341BC8 for ; Sat, 2 Jul 2022 21:21:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 17736526 for ; Sat, 2 Jul 2022 21:21:49 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1656796895.f37d91964efe3f87ec7cfd474a83f7b6084dbd6c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Math-Pari/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Math-Pari/Math-Pari-2.10.809.0-r1.ebuild X-VCS-Directories: dev-perl/Math-Pari/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f37d91964efe3f87ec7cfd474a83f7b6084dbd6c X-VCS-Branch: master Date: Sat, 2 Jul 2022 21:21:49 +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: 01df2498-b877-4ed8-a9cf-3f5c389b4a28 X-Archives-Hash: c2a9f175afd5c2545faf633b28c7260d commit: f37d91964efe3f87ec7cfd474a83f7b6084dbd6c Author: Sam James gentoo org> AuthorDate: Sat Jul 2 21:19:43 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jul 2 21:21:35 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f37d9196 dev-perl/Math-Pari: drop 2.10.809.0-r1 Bug: https://bugs.gentoo.org/855920 Signed-off-by: Sam James gentoo.org> dev-perl/Math-Pari/Math-Pari-2.10.809.0-r1.ebuild | 66 ----------------------- 1 file changed, 66 deletions(-) diff --git a/dev-perl/Math-Pari/Math-Pari-2.10.809.0-r1.ebuild b/dev-perl/Math-Pari/Math-Pari-2.10.809.0-r1.ebuild deleted file mode 100644 index d6326b4f7a30..000000000000 --- a/dev-perl/Math-Pari/Math-Pari-2.10.809.0-r1.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DIST_AUTHOR=ILYAZ -DIST_SECTION=modules -DIST_VERSION=2.01080900 -DIST_A_EXT=zip -inherit perl-module toolchain-funcs - -PARI_VER=2.3.5 - -DESCRIPTION="Perl interface to PARI" -SRC_URI="${SRC_URI} - http://pari.math.u-bordeaux.fr/pub/pari/unix/pari-${PARI_VER}.tar.gz" - -SLOT="0" -KEYWORDS="~alpha amd64 ~hppa sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" -IUSE="" - -# Math::Pari requires that a copy of the pari source in a parallel -# directory to where you build it. It does not need to compile it, but -# it does need to be the same version as is installed, hence the hard -# DEPEND below -DEPEND="app-arch/unzip" - -S_PARI=${WORKDIR}/pari-${PARI_VER} - -PATCHES=( - "${FILESDIR}/no-flto.patch" - "${FILESDIR}/${P}-no-dot-inc.patch" -) -src_prepare() { - # On 64-bit hardware, these files are needed in both the 64/ and 32/ - # directories for the testsuite to pass. - cd "${S_PARI}"/src/test/ - for t in analyz compat ellglobalred elliptic galois graph intnum kernel \ - linear nfields number objets ploth polyser program qfbsolve rfrac \ - round4 stark sumiter trans ; do - i="in/${t}" - o32="32/${t}" - o64="64/${t}" - [ -f "$i" -a ! -f "$o32" ] && cp -al "$i" "$o32" - [ -f "$i" -a ! -f "$o64" ] && cp -al "$i" "$o64" - done - cd "${S_PARI}" - eapply "${FILESDIR}/pari-${PARI_VER}-no-dot-inc.patch" - cd "${S}" - perl-module_src_prepare -} - -src_configure() { - # Unfortunately the assembly routines math-pari has for SPARC do not appear - # to be working at current. Perl cannot test math-pari or anything that - # pulls in the math-pari module as DynaLoader cannot load the resulting - # .so files math-pari generates. As such, we have to use the generic - # non-machine specific assembly methods here. - use sparc && myconf="${myconf} machine=none" - - perl-module_src_configure -} - -src_compile() { - emake AR="$(tc-getAR)" OTHERLDFLAGS="${LDFLAGS}" -}