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 F03B71382C5 for ; Sun, 18 Apr 2021 12:11:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5B488E0788; Sun, 18 Apr 2021 12:11:11 +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 10345E0788 for ; Sun, 18 Apr 2021 12:11:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 0A714335C9A for ; Sun, 18 Apr 2021 12:11:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 20AF1702 for ; Sun, 18 Apr 2021 12:11:07 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1618747542.54d055e9ebdb2ff79557ae136685701c085f425f.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/gmp-ecm/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/gmp-ecm/gmp-ecm-9999.ebuild X-VCS-Directories: sci-mathematics/gmp-ecm/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 54d055e9ebdb2ff79557ae136685701c085f425f X-VCS-Branch: master Date: Sun, 18 Apr 2021 12:11:07 +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: 76e5e48c-76e0-4d00-9eaf-0e88a4ead369 X-Archives-Hash: ac200e33acc629f14a9797508a9b7a0a commit: 54d055e9ebdb2ff79557ae136685701c085f425f Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Apr 18 12:05:42 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Apr 18 12:05:42 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54d055e9 sci-mathematics/gmp-ecm: Drop unmaintained live ebuild Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> sci-mathematics/gmp-ecm/gmp-ecm-9999.ebuild | 48 ----------------------------- 1 file changed, 48 deletions(-) diff --git a/sci-mathematics/gmp-ecm/gmp-ecm-9999.ebuild b/sci-mathematics/gmp-ecm/gmp-ecm-9999.ebuild deleted file mode 100644 index 2a431acc63f..00000000000 --- a/sci-mathematics/gmp-ecm/gmp-ecm-9999.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -DESCRIPTION="Elliptic Curve Method for Integer Factorization" -HOMEPAGE="http://ecm.gforge.inria.fr/" -#SRC_URI="https://gforge.inria.fr/frs/download.php/30965/${P}.tar.gz" -ESVN_REPO_URI="svn://scm.gforge.inria.fr/svnroot/ecm/trunk" - -inherit autotools flag-o-matic subversion - -LICENSE="GPL-3 LGPL-3" -SLOT="0" -KEYWORDS="" -IUSE="blas -openmp test" -RESTRICT="!test? ( test )" - -DEPEND=" - dev-libs/gmp:0= - blas? ( sci-libs/gsl ) - openmp? ( sys-devel/gcc:*[openmp] )" -RDEPEND="${DEPEND}" - -S=${WORKDIR}/ecm-${PV} - -MAKEOPTS+=" -j1" - -src_prepare() { - eautoreconf -} - -src_configure() { - # --enable-shellcmd is broken - econf $(use_enable openmp) $myconf -} - -src_compile() { - append-ldflags "-Wl,-z,noexecstack" - # the custom-tune bits are obsoleted with sane defaults - default -} - -src_install() { - default - mkdir -p "${D}/usr/include/${PN}/" - cp "${S}"/*.h "${D}/usr/include/${PN}" || die "Failed to copy headers" # needed by other apps like YAFU -}