sci-libs/fplll: new version 5.3.2.

This new version is based on François's v5.3.1 ebuild in the
sage-on-gentoo overlay. I investigated adding support for the
sci-libs/qd package, but the build system is a bit weird about it at
the moment, so ultimately there's only one important change: I've
bumped the subslot to match the first component (6) of the soname.
The EAPI was also updated to 7 uneventfully.

Closes: https://bugs.gentoo.org/708198
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
This commit is contained in:
Michael Orlitzky
2020-02-04 13:46:57 -05:00
parent 814d8de5c0
commit 2e97b8deb6
2 changed files with 30 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST fplll-5.3.2.tar.gz 1284989 BLAKE2B 66d022c1a6acb3f029c871bebf4925ec5f9447af71829c6d52f2065155bf75f075965a41918722d095546ca18e8e87a85f181a76f5e42abd20c8de8165210bab SHA512 eacd990c468b1d919e1d6cc04f99656d982d5a3807970e0a1dd910a2703eb5b8eff913bc5c0e45790a547bb7aa71189fb9022024186bb84ee04d8602c9980ac2
DIST libfplll-4.0.4.tar.gz 413519 BLAKE2B afeea5a813d3d5b1b7fe3e81d5a8e9bce66ee4f8a3d265dacaa0ba7ff2f632f0f533182027322e2fd17645f5bc5816b266b167da0e36a00a38f73e794e22a522 SHA512 81cf61118f0dadca8fd82cc58df2fb5f0dc3ddd15a9b5de95a7777e0ece77d8f6a6d50d14ba7fdd6be6697cf375fac2e60792c94cc65f5a181c427dea84d552d

View File

@@ -0,0 +1,29 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
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/6"
KEYWORDS="~amd64 ~x86"
IUSE="static-libs"
BDEPEND=""
DEPEND="dev-libs/gmp:0
dev-libs/mpfr:0"
RDEPEND="${DEPEND}"
src_configure() {
# Support for --with-qd is problematic at the moment.
# https://github.com/fplll/fplll/issues/405
econf $(use_enable static-libs static)
}
src_install(){
default
find "${ED}" -name '*.la' -delete || die
}