Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/gmp-ecm/
Date: Tue, 12 Oct 2021 08:18:19
Message-Id: 1634026690.849d4da0d05fde9eb8382abb4251055b92ce38d7.mjo@gentoo
1 commit: 849d4da0d05fde9eb8382abb4251055b92ce38d7
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 12 08:14:14 2021 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 12 08:18:10 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=849d4da0
7
8 sci-mathematics/gmp-ecm: remove old "unused" gmp-ecm-7.0.4-r2.ebuild.
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
12
13 sci-mathematics/gmp-ecm/Manifest | 1 -
14 sci-mathematics/gmp-ecm/gmp-ecm-7.0.4-r2.ebuild | 44 -------------------------
15 2 files changed, 45 deletions(-)
16
17 diff --git a/sci-mathematics/gmp-ecm/Manifest b/sci-mathematics/gmp-ecm/Manifest
18 index f0a304c3ece..fce77a75e92 100644
19 --- a/sci-mathematics/gmp-ecm/Manifest
20 +++ b/sci-mathematics/gmp-ecm/Manifest
21 @@ -1,2 +1 @@
22 DIST ecm-7.0.4.tar.gz 1101899 BLAKE2B 6d52364d9c752aee66510a7f6b273559bf1b7de0032fbbeff74e229ed68fd0cd1c236b480f8fc25bcad6435740e3e22b3099c8f018912918ab8f4b33dc7b8b3c SHA512 b863b9bfd26df26c3c4243686036a69110e69ca3eec5b31d4550fe713e2fac4ce70cd1d80f0614899793aa44710531aa4a21abc0fa1b99eb17f62bd92b971350
23 -DIST gmp-ecm-7.0.4.tar.gz 1101899 BLAKE2B 6d52364d9c752aee66510a7f6b273559bf1b7de0032fbbeff74e229ed68fd0cd1c236b480f8fc25bcad6435740e3e22b3099c8f018912918ab8f4b33dc7b8b3c SHA512 b863b9bfd26df26c3c4243686036a69110e69ca3eec5b31d4550fe713e2fac4ce70cd1d80f0614899793aa44710531aa4a21abc0fa1b99eb17f62bd92b971350
24
25 diff --git a/sci-mathematics/gmp-ecm/gmp-ecm-7.0.4-r2.ebuild b/sci-mathematics/gmp-ecm/gmp-ecm-7.0.4-r2.ebuild
26 deleted file mode 100644
27 index ee5812002cc..00000000000
28 --- a/sci-mathematics/gmp-ecm/gmp-ecm-7.0.4-r2.ebuild
29 +++ /dev/null
30 @@ -1,44 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit flag-o-matic toolchain-funcs
37 -
38 -DESCRIPTION="Elliptic Curve Method for Integer Factorization"
39 -HOMEPAGE="http://ecm.gforge.inria.fr/"
40 -SRC_URI="https://gforge.inria.fr/frs/download.php/file/36224/${P}.tar.gz"
41 -
42 -LICENSE="GPL-3 LGPL-3"
43 -SLOT="0"
44 -KEYWORDS="amd64 ~arm ~arm64 x86 ~ppc-macos ~x64-macos"
45 -IUSE="+custom-tune openmp static-libs cpu_flags_x86_sse2"
46 -
47 -DEPEND="dev-libs/gmp:="
48 -RDEPEND="${DEPEND}"
49 -
50 -S="${WORKDIR}/ecm-${PV}"
51 -
52 -pkg_pretend() {
53 - use openmp && tc-check-openmp
54 -}
55 -
56 -src_compile() {
57 - default
58 - if use custom-tune; then
59 - # One "emake" was needed to build the library. Now we can find
60 - # the best set of parameters, and then run "emake" one more time
61 - # to rebuild the library with the custom parameters. See the
62 - # project's README or INSTALL-ecm. The build targets don't depend
63 - # on ecm-params.h, so we need to "make clean" to force a rebuild.
64 - emake ecm-params && emake clean && emake
65 - fi
66 -}
67 -src_configure() {
68 - econf \
69 - --enable-shared \
70 - $(use_enable static-libs static) \
71 - $(use_enable openmp) \
72 - $(use_enable cpu_flags_x86_sse2 sse2) \
73 - $(use_enable custom-tune asm-redc)
74 -}