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/brial/
Date: Wed, 03 Aug 2022 20:23:16
Message-Id: 1659558115.6160b92370642d2651838022251ef6b2f27e7aed.mjo@gentoo
1 commit: 6160b92370642d2651838022251ef6b2f27e7aed
2 Author: François Bissey <frp.bissey <AT> gmail <DOT> com>
3 AuthorDate: Sat Jul 30 09:30:09 2022 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 3 20:21:55 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6160b923
7
8 sci-libs/brial: upstream bump
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: François René Pierre Bissey <frp.bissey <AT> gmail.com>
12 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
13
14 sci-libs/brial/Manifest | 1 +
15 sci-libs/brial/brial-1.2.11.ebuild | 37 +++++++++++++++++++++++++++++++++++++
16 2 files changed, 38 insertions(+)
17
18 diff --git a/sci-libs/brial/Manifest b/sci-libs/brial/Manifest
19 index 07e518dcc825..dc8bb220205e 100644
20 --- a/sci-libs/brial/Manifest
21 +++ b/sci-libs/brial/Manifest
22 @@ -1 +1,2 @@
23 DIST brial-1.2.10.tar.bz2 1229830 BLAKE2B a1cfe4fcd19824d04388bbab1130a9d07e5920fb05ea1686424f1e0193c6f5d29300bba66bdf7ac59665cbceed3f6ff84fbb5a95311858196a0fbdecda5a2cc7 SHA512 163d9f3703271f412d20ec165d713280d9b46c50b66eed0b15385c6d94569e0ea5d7e84c3b6715d51197e97be4062325551402c844f70235a4aa1cebc5e9d3a1
24 +DIST brial-1.2.11.tar.bz2 1260892 BLAKE2B 910f4ffd728235c8b18deb0d36c76778ce2c392644b7eaba06a9c00a832b4ccb0c2cd69f4d9ab9770e060b54491bd6b613e4e1324a32f57d7c32f200fb0a900d SHA512 00532b6361c709fce44940bfd22563046cfcbc06d41282a01a26f9bcb25fa86df1406685d7ba4b1ebbb08cd7fa8b9811c81eccf78e72ea96960ef7a059c2e926
25
26 diff --git a/sci-libs/brial/brial-1.2.11.ebuild b/sci-libs/brial/brial-1.2.11.ebuild
27 new file mode 100644
28 index 000000000000..b744da836a67
29 --- /dev/null
30 +++ b/sci-libs/brial/brial-1.2.11.ebuild
31 @@ -0,0 +1,37 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +inherit toolchain-funcs
38 +
39 +DESCRIPTION="A C++ library for polynomials over boolean rings"
40 +HOMEPAGE="https://github.com/BRiAl/BRiAl"
41 +SRC_URI="https://github.com/BRiAl/BRiAl/releases/download/${PV}/${P}.tar.bz2"
42 +
43 +# The top-level license is GPL2+, but cudd/LICENSE is BSD.
44 +LICENSE="BSD GPL-2+"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x64-macos"
47 +IUSE="png static-libs"
48 +
49 +BDEPEND="virtual/pkgconfig"
50 +DEPEND="dev-libs/boost
51 + sci-libs/m4ri[png=]"
52 +RDEPEND="${DEPEND}"
53 +
54 +src_configure() {
55 + tc-export PKG_CONFIG
56 +
57 + # with-boost-libdir added to deal with some rather quirky setups
58 + # see https://github.com/cschwan/sage-on-gentoo/issues/551
59 + econf \
60 + --with-boost="${EPREFIX}"/usr \
61 + --with-boost-libdir="${EPREFIX}"/usr/$(get_libdir) \
62 + $(use_enable static-libs static)
63 +}
64 +
65 +src_install() {
66 + default
67 + find "${ED}" -name '*.la' -delete || die
68 +}