summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Orlitzky <mjo@gentoo.org>2023-06-05 08:05:44 -0400
committerMichael Orlitzky <mjo@gentoo.org>2023-06-05 08:26:02 -0400
commit5456626ce218bf062e245c2be20ae7c6a3a3ef31 (patch)
treebf3bba84f197507e27e30b14c0b7d3e39e221973 /sci-libs/fplll
parentdev-lang/ruby: update example rubys in postinst message (diff)
downloadgentoo-5456626ce218bf062e245c2be20ae7c6a3a3ef31.tar.gz
gentoo-5456626ce218bf062e245c2be20ae7c6a3a3ef31.tar.bz2
gentoo-5456626ce218bf062e245c2be20ae7c6a3a3ef31.zip
sci-libs/fplll: drop 5.4.2
Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
Diffstat (limited to 'sci-libs/fplll')
-rw-r--r--sci-libs/fplll/Manifest1
-rw-r--r--sci-libs/fplll/files/fplll-5.4.2-with-qd-fix.patch27
-rw-r--r--sci-libs/fplll/fplll-5.4.2.ebuild39
3 files changed, 0 insertions, 67 deletions
diff --git a/sci-libs/fplll/Manifest b/sci-libs/fplll/Manifest
index 60af53390414..6cb16cd50382 100644
--- a/sci-libs/fplll/Manifest
+++ b/sci-libs/fplll/Manifest
@@ -1,2 +1 @@
-DIST fplll-5.4.2.tar.gz 2618377 BLAKE2B e730c8646b9afb68515a23e533ea8ef833439d69f2130157bd6e38b1efab9116817535c261721c98b23410185271ffc323c687630e3ba262adb97fa5f69be787 SHA512 45324d89d0efeb269c1d1400332a51432e5d09f7bf0a6d651650e0941bb718493cbb66d65056b98691691236eaf348b2cae686ee06761f64380df98b6206c004
DIST fplll-5.4.4.tar.gz 2630101 BLAKE2B b990c9346acd2c506b4697f27ff21d8453bb97473b2e988beb2ab9da34b3edd8a64d7558bca5f66a888fb4397c1e5340cf50f543ec580f0ec6980bc8c73a9390 SHA512 32a6515a3ab2677739a60a4ef0938e4284b5d3119a396104a7af22a6291ef669b42a4fb6e59f5c6daf97ff2402e7d035ea84fd1c76bfe7c0e17402bd03ae7166
diff --git a/sci-libs/fplll/files/fplll-5.4.2-with-qd-fix.patch b/sci-libs/fplll/files/fplll-5.4.2-with-qd-fix.patch
deleted file mode 100644
index 73c9b4386fd1..000000000000
--- a/sci-libs/fplll/files/fplll-5.4.2-with-qd-fix.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 94010a8c4c93c6ba9520b7c26bb6cb36344a4bf9 Mon Sep 17 00:00:00 2001
-From: Michael Orlitzky <michael@orlitzky.com>
-Date: Wed, 1 Jun 2022 22:11:48 -0400
-Subject: [PATCH 1/1] configure.ac: fix bashism in --with-qd test.
-
-There's a double-equals test here that doesn't work properly when
-/bin/sh is not bash. We simply change it to single-equals.
----
- configure.ac | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/configure.ac b/configure.ac
-index 0ccc4c4..ed0cd59 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -104,7 +104,7 @@ AS_IF([test -z "$with_qd"], [with_qd=yes])
- # and libraries if that didn't work for some reason.
- #
- # We only show a warning if we cannot find libqd, it is optional but recommended
--AS_IF([test "x$with_qd" == "xyes"], [
-+AS_IF([test "x$with_qd" = "xyes"], [
- PKG_CHECK_MODULES([LIBQD], [qd], [have_libqd="yes"], [
- # fall back to manual search.
- AC_SEARCH_LIBS(c_dd_add,
---
-2.35.1
-
diff --git a/sci-libs/fplll/fplll-5.4.2.ebuild b/sci-libs/fplll/fplll-5.4.2.ebuild
deleted file mode 100644
index 302e525a4055..000000000000
--- a/sci-libs/fplll/fplll-5.4.2.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="Implementations of the floating-point LLL reduction algorithm"
-HOMEPAGE="https://github.com/fplll/fplll"
-SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1+"
-SLOT="0/7"
-KEYWORDS="amd64 x86"
-IUSE="static-libs qd"
-
-BDEPEND="virtual/pkgconfig"
-DEPEND="dev-libs/gmp:0
- dev-libs/mpfr:0
- qd? ( sci-libs/qd )"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}/${P}-with-qd-fix.patch" )
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- econf \
- $(use_with qd) \
- $(use_enable static-libs static)
-}
-
-src_install() {
- default
- find "${ED}" -type f -name '*.la' -delete || die
-}