summaryrefslogtreecommitdiff
path: root/sci-mathematics/eclib
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-07-18 00:58:25 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-07-18 00:58:25 +0100
commit5e0a5ca921524f8859808527a57655eec16efa52 (patch)
tree7c58411b1e81478df4e20082a6adec2553c24c5c /sci-mathematics/eclib
parent4c16e0a214824f15f09396e359db4f1f5c086fec (diff)
gentoo auto-resync : 18:07:2023 - 00:58:24
Diffstat (limited to 'sci-mathematics/eclib')
-rw-r--r--sci-mathematics/eclib/Manifest2
-rw-r--r--sci-mathematics/eclib/eclib-20221012.ebuild40
2 files changed, 0 insertions, 42 deletions
diff --git a/sci-mathematics/eclib/Manifest b/sci-mathematics/eclib/Manifest
index d4e5c08af036..8d0aa62bfd38 100644
--- a/sci-mathematics/eclib/Manifest
+++ b/sci-mathematics/eclib/Manifest
@@ -1,5 +1,3 @@
-DIST eclib-20221012.tar.bz2 922112 BLAKE2B 2a6e5dccdef7c3c3b8bb1a121706bbfbcaafa9fb50882e4e88f8fa826c3b1bcbec11dc55462cbd51da3ab263991ae357b151ff3bdbf453abfc30e82d2abdeac8 SHA512 9d04aefe9e35fbc1b18dd92b5ba872cf71f5ce1c94c9a0f1ff326c763bf144112d7d950ac80e2bd8d3780a303edeeac903754b4eb5fb241e87be7ef3f2738c19
DIST eclib-20230424.tar.bz2 923074 BLAKE2B 00c314e54ff2ce37f3aa83b757c0f880aef563093ab33db5241dfeb1e78cfd21be4f6a5097965697d5b87aa1987da17bd47007a599717ebf39456717efa6ad2c SHA512 4c248c48fa563e53b9354f3822c4e95308320a809f2dcc3e116cba8a6f903b333e27b527da9a10dc8252052201c4fcf50d9747a75cf8438a98b9d3828eb3d9d9
-EBUILD eclib-20221012.ebuild 1028 BLAKE2B ca4175b062e00cc11004c69745e4ff08a0fc5e9643398c41f286e4267ac790032b309d3db2ddcdc7579ff44b56e339c59857f9df860365163fcf44545db72945 SHA512 db5459d2422aff4cde08387a65a33b616f1a1938f713ad8b1429b980f5aa089e0c845597df4cf60b419f3b64331dc762385140b155413ec7ec32667904160251
EBUILD eclib-20230424.ebuild 1113 BLAKE2B d73b572faa8b76bea3db6740e120af14996a6043e743be1c851ac0473d9eda1e004839980a220f093747a7709a756bafb7a63103c93919983b2e967871849e8b SHA512 cc8a6de8a614e9adb7580997a50907753b763a7fc8547c1b2307e7876e9825eef35a64c7d3049103be8eae4a14c14673f923ed657007f31fe8dbe757f738f033
MISC metadata.xml 1089 BLAKE2B d10f9af5634478f0f13595abd10d9eefc437c27955cd3f504165beb4219e55c3997f16271148c1c2fbb5c9ae71e08665000836658bb954b83db06aeffa2b4098 SHA512 7111f3231464624d356611372934d0604fdd7a05c3531342a372979292a068dfa2edf49c4de5840cbf07b6f4819c22b8d87d54d7cacefb28ce0f53576d4620fd
diff --git a/sci-mathematics/eclib/eclib-20221012.ebuild b/sci-mathematics/eclib/eclib-20221012.ebuild
deleted file mode 100644
index 654058540279..000000000000
--- a/sci-mathematics/eclib/eclib-20221012.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-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
-# It *should* be at 11 in v20221012, as this commit shows,
-#
-# https://github.com/JohnCremona/eclib/commit/b63b8bb
-#
-# but it's actually still at 10, probably due to a forgotten autoreconf
-# or something.
-SLOT="0/11"
-KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="boost flint minimal 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)
-}
-
-src_install() {
- default
- find "${ED}" -name '*.la' -delete || die
-}