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 3101313835A for ; Wed, 31 Mar 2021 10:17:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7027AE0857; Wed, 31 Mar 2021 10:17:51 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 5A732E0857 for ; Wed, 31 Mar 2021 10:17:51 +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 3250D335DC8 for ; Wed, 31 Mar 2021 10:17:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C4689638 for ; Wed, 31 Mar 2021 10:17:48 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1617185840.81f08ed7814eb869dda2851efca433df263ed87e.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/msieve/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/msieve/msieve-9999.ebuild X-VCS-Directories: sci-mathematics/msieve/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 81f08ed7814eb869dda2851efca433df263ed87e X-VCS-Branch: master Date: Wed, 31 Mar 2021 10:17:48 +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: ed256203-33ff-4c23-8bac-8f0a641a3479 X-Archives-Hash: 2057d8dd68e7f41399e3dbe5b574ac26 commit: 81f08ed7814eb869dda2851efca433df263ed87e Author: David Seifert gentoo org> AuthorDate: Wed Mar 31 10:17:20 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Wed Mar 31 10:17:20 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81f08ed7 sci-mathematics/msieve: Remove broken live ebuild Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: David Seifert gentoo.org> sci-mathematics/msieve/msieve-9999.ebuild | 50 ------------------------------- 1 file changed, 50 deletions(-) diff --git a/sci-mathematics/msieve/msieve-9999.ebuild b/sci-mathematics/msieve/msieve-9999.ebuild deleted file mode 100644 index 72fa0aaf997..00000000000 --- a/sci-mathematics/msieve/msieve-9999.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils subversion toolchain-funcs - -DESCRIPTION="A C library implementing a suite of algorithms to factor large integers" -HOMEPAGE="https://sourceforge.net/projects/msieve/" -#SRC_URI="mirror://sourceforge/${PN}/${PN}/Msieve%20v${PV}/${PN}${PV/./}src.tar.gz" -ESVN_REPO_URI="https://svn.code.sf.net/p/msieve/code/trunk" - -LICENSE="public-domain" -SLOT="0" -KEYWORDS="" -IUSE="zlib +ecm mpi" - -DEPEND=" - ecm? ( sci-mathematics/gmp-ecm ) - mpi? ( virtual/mpi ) - zlib? ( sys-libs/zlib )" -RDEPEND="${DEPEND}" - -src_prepare() { - # TODO: Integrate ggnfs properly - sed -i -e 's/-march=k8//' Makefile || die - sed -i -e 's/CC =/#CC =/' Makefile || die - sed -i -e 's/CFLAGS =/CFLAGS +=/' Makefile || die -} - -src_compile() { - use ecm && export "ECM=1" - use mpi && export "MPI=1" - use zlib && export "ZLIB=1" - emake \ - CC=$(tc-getCC) \ - AR=$(tc-getAR) \ - OPT_FLAGS="${CFLAGS}" \ - all -} - -src_install() { - mkdir -p "${D}/usr/include/msieve" - mkdir -p "${D}/usr/lib/" - mkdir -p "${D}/usr/share/doc/${P}/" - cp include/* "${D}/usr/include/msieve" || die "Failed to install" - cp libmsieve.a "${D}/usr/lib/" || die "Failed to install" - dobin msieve - cp Readme* "${D}/usr/share/doc/${P}/" || die "Failed to install" -}