diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2019-10-16 09:24:27 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2019-10-16 09:24:39 +0100 |
commit | 8d0127eebc78c40a53504ed1e4c409250831a11c (patch) | |
tree | ae8dff5a951a3250c838e9ab0f36aa78d426d411 /sci-mathematics/gmp-ecm | |
parent | app-text/gnopaster: Remove last-rited pkg (diff) | |
download | gentoo-8d0127eebc78c40a53504ed1e4c409250831a11c.tar.gz gentoo-8d0127eebc78c40a53504ed1e4c409250831a11c.tar.bz2 gentoo-8d0127eebc78c40a53504ed1e4c409250831a11c.zip |
sci-mathematics/gmp-ecm: drop old
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'sci-mathematics/gmp-ecm')
-rw-r--r-- | sci-mathematics/gmp-ecm/Manifest | 1 | ||||
-rw-r--r-- | sci-mathematics/gmp-ecm/gmp-ecm-6.4.3-r5.ebuild | 50 |
2 files changed, 0 insertions, 51 deletions
diff --git a/sci-mathematics/gmp-ecm/Manifest b/sci-mathematics/gmp-ecm/Manifest index 5306618db192..1459ba432246 100644 --- a/sci-mathematics/gmp-ecm/Manifest +++ b/sci-mathematics/gmp-ecm/Manifest @@ -1,3 +1,2 @@ -DIST gmp-ecm-6.4.3.tar.gz 944719 BLAKE2B aa07f0b6c4a4b0d3bb36b596ddbaefd259b2387fa0295a829c8e239b0edde0e1f3887bff19a6b0b67083cbec7706fa41214a21eeca8b83eb4b3f7e3cc372c113 SHA512 71ccdf3b48e96b0acad45302c87a7b17a20ad289efde212a34fb11491531b96848f1824606fdab7604874ca7d8165baba4bbfbc8424e27e8844444ad0d4f56a6 DIST gmp-ecm-6.4.4.tar.gz 941058 BLAKE2B e83f02592a8bb86285f258fefc3e302cc5168888109e7f87835b25412baf526df58e5ea38347acfd926b90fac15b4103981a14aa7b853dba0cb0168467a223e0 SHA512 039009de2d1a22de7abed2e2b843fa2bc684ddcfc45892891a24b93ad4b3640a97d2e7612ebcbdbca8db032534c226ad77c67199772b21a6139e5fa205687097 DIST gmp-ecm-7.0.4.tar.gz 1101899 BLAKE2B 6d52364d9c752aee66510a7f6b273559bf1b7de0032fbbeff74e229ed68fd0cd1c236b480f8fc25bcad6435740e3e22b3099c8f018912918ab8f4b33dc7b8b3c SHA512 b863b9bfd26df26c3c4243686036a69110e69ca3eec5b31d4550fe713e2fac4ce70cd1d80f0614899793aa44710531aa4a21abc0fa1b99eb17f62bd92b971350 diff --git a/sci-mathematics/gmp-ecm/gmp-ecm-6.4.3-r5.ebuild b/sci-mathematics/gmp-ecm/gmp-ecm-6.4.3-r5.ebuild deleted file mode 100644 index 0a752d428d6e..000000000000 --- a/sci-mathematics/gmp-ecm/gmp-ecm-6.4.3-r5.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 -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" - -inherit eutils - -LICENSE="GPL-3 LGPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+blas +custom-tune -openmp test" - -# gmp 5.1 breaks a few things with this version -DEPEND="<dev-libs/gmp-5.1.0 - blas? ( sci-libs/gsl ) - openmp? ( sys-devel/gcc[openmp] )" -RDEPEND="${DEPEND}" - -S=${WORKDIR}/ecm-${PV} - -src_configure() { - # --enable-shellcmd is broken - econf $(use_enable openmp) $myconf -} - -src_compile() { - if use custom-tune; then - use amd64 && cd x86_64 - use x86 && cd pentium4 - emake -j1 || die # build libecm/libmulredc.la - cd .. && make bench_mulredc || die - sed -i -e 's:#define TUNE_MULREDC_TABLE://#define TUNE_MULREDC_TABLE:g' `readlink ecm-params.h` || die - sed -i -e 's:#define TUNE_SQRREDC_TABLE://#define TUNE_SQRREDC_TABLE:g' `readlink ecm-params.h` || die - ./bench_mulredc | tail -n 4 >> `readlink ecm-params.h` || die - fi - emake -j1 || die -} - -src_install() { - emake DESTDIR="${D}" install || die - mkdir -p "${D}/usr/include/${PN}/" - cp "${S}"/*.h "${D}/usr/include/${PN}" || die "Failed to copy headers" # needed by other apps like YAFU -} - -src_test() { - make check || die -} |