Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/fplll/
Date: Thu, 02 Jun 2022 11:54:10
Message-Id: 1654170826.88e4cecaa5ebd391e52c21035a2f44ddda61cca3.mjo@gentoo
1 commit: 88e4cecaa5ebd391e52c21035a2f44ddda61cca3
2 Author: François Bissey <frp.bissey <AT> gmail <DOT> com>
3 AuthorDate: Tue May 31 22:04:04 2022 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 2 11:53:46 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88e4ceca
7
8 sci-libs/fplll: upstream bump
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Closes: https://github.com/gentoo/gentoo/pull/25710
12 Closes: https://bugs.gentoo.org/848867
13 Signed-off-by: François René Pierre Bissey <frp.bissey <AT> gmail.com>
14 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
15
16 sci-libs/fplll/Manifest | 1 +
17 sci-libs/fplll/fplll-5.4.2.ebuild | 30 ++++++++++++++++++++++++++++++
18 2 files changed, 31 insertions(+)
19
20 diff --git a/sci-libs/fplll/Manifest b/sci-libs/fplll/Manifest
21 index 2dc55c1776fe..8a8d858c9be9 100644
22 --- a/sci-libs/fplll/Manifest
23 +++ b/sci-libs/fplll/Manifest
24 @@ -1 +1,2 @@
25 DIST fplll-5.4.0.tar.gz 2612340 BLAKE2B 723230856461ac6418dad00e82fc7505dbbb7bfbbf68fa7f4f3240402d62f3e1ded3049c436a0f6aad9f020727d10acb3fe15dfb8b8a907f5b3c7b191e55e9a9 SHA512 a583aac73e4618ba240c28d3e8485cef6b9c184c11b33799404e96ab99502023073ed1c6fc0d3fbc4e6737415e9ea1a273f3f1e59ccba69d1546f56903567ebe
26 +DIST fplll-5.4.2.tar.gz 2618377 BLAKE2B e730c8646b9afb68515a23e533ea8ef833439d69f2130157bd6e38b1efab9116817535c261721c98b23410185271ffc323c687630e3ba262adb97fa5f69be787 SHA512 45324d89d0efeb269c1d1400332a51432e5d09f7bf0a6d651650e0941bb718493cbb66d65056b98691691236eaf348b2cae686ee06761f64380df98b6206c004
27
28 diff --git a/sci-libs/fplll/fplll-5.4.2.ebuild b/sci-libs/fplll/fplll-5.4.2.ebuild
29 new file mode 100644
30 index 000000000000..01b12f0488b4
31 --- /dev/null
32 +++ b/sci-libs/fplll/fplll-5.4.2.ebuild
33 @@ -0,0 +1,30 @@
34 +# Copyright 1999-2022 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=8
38 +
39 +DESCRIPTION="Implementations of the floating-point LLL reduction algorithm"
40 +HOMEPAGE="https://github.com/fplll/fplll"
41 +SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tar.gz"
42 +
43 +LICENSE="LGPL-2.1+"
44 +SLOT="0/7"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE="static-libs qd"
47 +
48 +BDEPEND="qd? ( virtual/pkgconfig )"
49 +DEPEND="dev-libs/gmp:0
50 + dev-libs/mpfr:0
51 + qd? ( sci-libs/qd )"
52 +RDEPEND="${DEPEND}"
53 +
54 +src_configure() {
55 + econf \
56 + $(use_with qd) \
57 + $(use_enable static-libs static)
58 +}
59 +
60 +src_install() {
61 + default
62 + find "${ED}" -name '*.la' -delete || die
63 +}