diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2022-10-20 17:57:54 -0400 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2022-10-20 17:57:54 -0400 |
commit | 936ba259f4e98e655267eeafc5d5db1b53d09e8c (patch) | |
tree | 459fa2bf6e7ce6c65367338db48bb2843db06bb6 /sci-mathematics | |
parent | www-apps/element: add 1.11.10 (diff) | |
download | gentoo-936ba259f4e98e655267eeafc5d5db1b53d09e8c.tar.gz gentoo-936ba259f4e98e655267eeafc5d5db1b53d09e8c.tar.bz2 gentoo-936ba259f4e98e655267eeafc5d5db1b53d09e8c.zip |
sci-mathematics/eclib: drop 20210625
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-20210625.ebuild | 35 |
2 files changed, 0 insertions, 36 deletions
diff --git a/sci-mathematics/eclib/Manifest b/sci-mathematics/eclib/Manifest index 89abce864842..9c87eddbdb05 100644 --- a/sci-mathematics/eclib/Manifest +++ b/sci-mathematics/eclib/Manifest @@ -1,2 +1 @@ -DIST eclib-20210625.tar.bz2 921173 BLAKE2B 8ecfde35fd6e557601c0a4e5f877ec49e355dbd5bb4248256c89b1160406992f59568db1060a835bad482d6ba4f1f0cc7719af5f03ecdc79abbe2ca0c9ed713e SHA512 a1319e91790decbc5219e02edbad5b86a6d3e5400bec3a9a9f2c60b89d340a0b915458f93c86f63d21c4b72995aa5fe65e0b5346241f297fe54ba2d3fc183ae3 DIST eclib-20220621.tar.bz2 921610 BLAKE2B f53f0648f09e427ae9b208a17c93f9808c2ab859cc41db6b5acb3b1382e9aaee93b17cd9d94c14e7f4941f140749d91b2ad94ad684f8a2c0f6033ac042cc89e7 SHA512 45cc47256f6ccbf2a00711d14533cffe8a3fc0dfea3d94d9823ac43af8a56cfe95485f0559c9141203910e85b1d3fa3284ee12ca5e53d083b74cbb2907afca42 diff --git a/sci-mathematics/eclib/eclib-20210625.ebuild b/sci-mathematics/eclib/eclib-20210625.ebuild deleted file mode 100644 index 61f650e4b51d..000000000000 --- a/sci-mathematics/eclib/eclib-20210625.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 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://github.com/JohnCremona/eclib" -SRC_URI="https://github.com/JohnCremona/${PN}/releases/download/${PV}/${P}.tar.bz2" - -LICENSE="GPL-2" - -# Major version of /usr/lib64/libec.so -SLOT="0/8" -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 -} |