Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/libfabric/
Date: Fri, 26 Feb 2021 08:40:08
Message-Id: 1614328791.4aea30164cf091cb80d25b58c68ac54658ed2237.soap@gentoo
1 commit: 4aea30164cf091cb80d25b58c68ac54658ed2237
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 26 08:39:51 2021 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 26 08:39:51 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4aea3016
7
8 sys-block/libfabric: [QA] Remove .la and .a files
9
10 Closes: https://bugs.gentoo.org/772944
11 Package-Manager: Portage-3.0.15, Repoman-3.0.2
12 Signed-off-by: David Seifert <soap <AT> gentoo.org>
13
14 sys-block/libfabric/libfabric-1.11.2.ebuild | 10 +++++++++-
15 1 file changed, 9 insertions(+), 1 deletion(-)
16
17 diff --git a/sys-block/libfabric/libfabric-1.11.2.ebuild b/sys-block/libfabric/libfabric-1.11.2.ebuild
18 index 59d1c970e24..e4b0e429284 100644
19 --- a/sys-block/libfabric/libfabric-1.11.2.ebuild
20 +++ b/sys-block/libfabric/libfabric-1.11.2.ebuild
21 @@ -41,7 +41,8 @@ src_prepare() {
22 }
23
24 src_configure() {
25 - local -a myeconfargs=(
26 + local myeconfargs=(
27 + --disable-static
28 # let's try to avoid automagic deps
29 --enable-bgq=no
30 --enable-cuda-dlopen=$(usex cuda yes no)
31 @@ -68,3 +69,10 @@ src_configure() {
32 )
33 econf "${myeconfargs[@]}"
34 }
35 +
36 +src_install() {
37 + default
38 +
39 + # no static archives
40 + find "${ED}" -name '*.la' -delete || die
41 +}