summaryrefslogtreecommitdiff
path: root/sci-libs/fplll
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-06-05 15:37:05 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-06-05 15:37:05 +0100
commit53623081143d09702d8f3d7224e9da8c5f681c3b (patch)
treeaac973d826d9b3dd5281652ca48bce35e5d9c86f /sci-libs/fplll
parent77f1c17f5328e59f3991203c579fbc85df6898a0 (diff)
gentoo auto-resync : 05:06:2023 - 15:37:05
Diffstat (limited to 'sci-libs/fplll')
-rw-r--r--sci-libs/fplll/Manifest3
-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, 69 deletions
diff --git a/sci-libs/fplll/Manifest b/sci-libs/fplll/Manifest
index efe960a81308..94e3beaf7748 100644
--- a/sci-libs/fplll/Manifest
+++ b/sci-libs/fplll/Manifest
@@ -1,6 +1,3 @@
-AUX fplll-5.4.2-with-qd-fix.patch 942 BLAKE2B 3335262a47db7cc8fe48d79f2638882a8522ea026f55bbcd9b612457ef6186b84e673e0d9b0b9a022f4a3915dff830ab28ab47a5093fc3364fa4d4fc1317ef8f SHA512 4fcfb3aea3fe72d8072996c2bc6e5f626b4972448871578a29119cd10325d0451186d410f6732d58f96eb18ae040ed8410213228b63aa3012dba63a1916e68bd
-DIST fplll-5.4.2.tar.gz 2618377 BLAKE2B e730c8646b9afb68515a23e533ea8ef833439d69f2130157bd6e38b1efab9116817535c261721c98b23410185271ffc323c687630e3ba262adb97fa5f69be787 SHA512 45324d89d0efeb269c1d1400332a51432e5d09f7bf0a6d651650e0941bb718493cbb66d65056b98691691236eaf348b2cae686ee06761f64380df98b6206c004
DIST fplll-5.4.4.tar.gz 2630101 BLAKE2B b990c9346acd2c506b4697f27ff21d8453bb97473b2e988beb2ab9da34b3edd8a64d7558bca5f66a888fb4397c1e5340cf50f543ec580f0ec6980bc8c73a9390 SHA512 32a6515a3ab2677739a60a4ef0938e4284b5d3119a396104a7af22a6291ef669b42a4fb6e59f5c6daf97ff2402e7d035ea84fd1c76bfe7c0e17402bd03ae7166
-EBUILD fplll-5.4.2.ebuild 766 BLAKE2B d7862862614674ee233c8e9dc336d85098699c6743e8b1e0b8363bb11130b2e246972301373cb50dec1c3b0b373bb02fec90616c2619e9572e35a7a1e83d0668 SHA512 a115045f6e5ceeb501714775db7a08b15928096100b23b89a597eef41cc61768a9add4dfd53b16974794ab7cd47a5296824dc02a5341a55115f478b827a4e127
EBUILD fplll-5.4.4.ebuild 607 BLAKE2B 05aa0814aa12a6c93042ff5e6069c25c8cf1e8774e5abdb9153865653feb94211e35feb0fcca0f3c4afcdd078d42aba0b6654c1676849df05a298cf5fc5028ec SHA512 ce3d8709a0f9c4c51dc5ddac41771b6f5d6c3ba6039181985233fa23429190adf07205548ad0af93ca72af1a8f036d6a18185e3ee78069af6fe71b04b71e85f1
MISC metadata.xml 858 BLAKE2B e27b47f6a8d0bb3c17eb023c24f95472c5f791e8a9bf86c1805d1c832b0973a665fe2231f82a289c37afd5318deb89717029ae6694005ade8e112a2769a56170 SHA512 49b6fd4968670fb0da92a883b81420e4739a893a6866ae500106181df5182324e616ccee8e0f290a7cda20f3f4d850fbf9a9462d03f0057da9ced4ba1d835ba7
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
-}