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-mathematics/octave/
Date: Sat, 07 May 2022 16:17:58
Message-Id: 1651940268.07a6c967141ad1390f6668c7ce947630be207523.mjo@gentoo
1 commit: 07a6c967141ad1390f6668c7ce947630be207523
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 7 13:59:52 2022 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Sat May 7 16:17:48 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07a6c967
7
8 sci-mathematics/octave: don't install *.la files.
9
10 I've fixed this only in the currently-unkeyworded v7.1.0 since it is
11 harmless and octave takes a long time to build.
12
13 Closes: https://bugs.gentoo.org/842663
14 Package-Manager: Portage-3.0.30, Repoman-3.0.3
15 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
16
17 sci-mathematics/octave/octave-7.1.0.ebuild | 2 ++
18 1 file changed, 2 insertions(+)
19
20 diff --git a/sci-mathematics/octave/octave-7.1.0.ebuild b/sci-mathematics/octave/octave-7.1.0.ebuild
21 index 1158afd167bd..b04de9f52552 100644
22 --- a/sci-mathematics/octave/octave-7.1.0.ebuild
23 +++ b/sci-mathematics/octave/octave-7.1.0.ebuild
24 @@ -206,4 +206,6 @@ src_install() {
25
26 echo "LDPATH=${EPREFIX}/usr/$(get_libdir)/${PN}/${PV}" > 99octave || die
27 doenvd 99octave
28 +
29 + find "${ED}" -type f -name '*.la' -delete || die
30 }