Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/seafile/
Date: Tue, 29 Sep 2020 10:26:57
Message-Id: 1601375161.015523e165bd8df865bd7708590236a610d026ec.juippis@gentoo
1 commit: 015523e165bd8df865bd7708590236a610d026ec
2 Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
3 AuthorDate: Mon Aug 31 09:45:26 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 29 10:26:01 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=015523e1
7
8 net-misc/seafile: do not install .a files
9
10 Closes: https://bugs.gentoo.org/739710
11 Package-Manager: Portage-3.0.4, Repoman-3.0.1
12 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
13 Closes: https://github.com/gentoo/gentoo/pull/17344
14 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
15
16 net-misc/seafile/seafile-7.0.5-r1.ebuild | 4 ++--
17 1 file changed, 2 insertions(+), 2 deletions(-)
18
19 diff --git a/net-misc/seafile/seafile-7.0.5-r1.ebuild b/net-misc/seafile/seafile-7.0.5-r1.ebuild
20 index 10233ae8ba1..7b2a3788f56 100644
21 --- a/net-misc/seafile/seafile-7.0.5-r1.ebuild
22 +++ b/net-misc/seafile/seafile-7.0.5-r1.ebuild
23 @@ -40,7 +40,7 @@ src_prepare() {
24
25 src_install() {
26 default
27 - # Remove unnecessary .la files, as recommended by ltprune.eclass
28 - find "${ED}" -name '*.la' -delete || die
29 + # Remove unnecessary files, as recommended by ltprune.eclass
30 + find "${ED}" -name '*.la' -o -name '*.a' -delete || die
31 python_fix_shebang "${ED}"/usr/bin
32 }