diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2021-11-03 08:40:44 -0400 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2021-11-03 08:40:44 -0400 |
commit | 2956c4cf3e6d18020732a848dca84ede61e40b32 (patch) | |
tree | 0224cbe1c40e1208b54000df155475134e04d898 /sci-mathematics | |
parent | app-dicts/prime-dict: update SRC_URI (diff) | |
download | gentoo-2956c4cf3e6d18020732a848dca84ede61e40b32.tar.gz gentoo-2956c4cf3e6d18020732a848dca84ede61e40b32.tar.bz2 gentoo-2956c4cf3e6d18020732a848dca84ede61e40b32.zip |
sci-mathematics/eclib: remove old "unused" eclib-20190909.ebuild.
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
Diffstat (limited to 'sci-mathematics')
-rw-r--r-- | sci-mathematics/eclib/Manifest | 1 | ||||
-rw-r--r-- | sci-mathematics/eclib/eclib-20190909.ebuild | 37 |
2 files changed, 0 insertions, 38 deletions
diff --git a/sci-mathematics/eclib/Manifest b/sci-mathematics/eclib/Manifest index 7b03d25752e6..5663658de8fd 100644 --- a/sci-mathematics/eclib/Manifest +++ b/sci-mathematics/eclib/Manifest @@ -1,2 +1 @@ -DIST eclib-20190909.tar.bz2 914900 BLAKE2B df57972792f96e65b25db5a2ab1063d5a8f1ad05edbed77d9ca2632ddfb4af2cb8586e572155beec09cc0c03472300d1e6fcbdda3527c36e9106006239f50600 SHA512 df829b10c353f528f2040b55d6198e3a48eba179b9a80e71794e4c6d46ee9bb13b3eccec15c7d286ec5d8252e6ba91157c2a08ac4e2da86969a4158450a41960 DIST eclib-20210625.tar.bz2 921173 BLAKE2B 8ecfde35fd6e557601c0a4e5f877ec49e355dbd5bb4248256c89b1160406992f59568db1060a835bad482d6ba4f1f0cc7719af5f03ecdc79abbe2ca0c9ed713e SHA512 a1319e91790decbc5219e02edbad5b86a6d3e5400bec3a9a9f2c60b89d340a0b915458f93c86f63d21c4b72995aa5fe65e0b5346241f297fe54ba2d3fc183ae3 diff --git a/sci-mathematics/eclib/eclib-20190909.ebuild b/sci-mathematics/eclib/eclib-20190909.ebuild deleted file mode 100644 index e43120cdeb45..000000000000 --- a/sci-mathematics/eclib/eclib-20190909.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Programs for elliptic curves defined over the rational numbers" -HOMEPAGE="https://www.warwick.ac.uk/~masgaj/mwrank/index.html" - -# We use the SageMath tarball instead of the one from github because -# the github releases don't contain the "make dist" stuff and we would -# need autotools.eclass to generate it. -SRC_URI="http://files.sagemath.org/spkg/upstream/${PN}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0/6" -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" -IUSE="boost flint minimal static-libs test" -RESTRICT="!test? ( test )" - -RDEPEND="sci-mathematics/pari:= - dev-libs/ntl:= - boost? ( dev-libs/boost:= ) - flint? ( sci-mathematics/flint:= )" -DEPEND="${RDEPEND}" - -src_configure() { - econf \ - $(usex minimal --disable-allprogs "" "" "") \ - $(use_with boost) \ - $(use_with flint) \ - $(use_enable static-libs static) -} - -src_install() { - default - find "${ED}" -name '*.la' -delete || die -} |