Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/xar/
Date: Sun, 03 Nov 2019 09:29:15
Message-Id: 1572773337.a5ef33712484c143ba8ca057e6f033899a83777c.mgorny@gentoo
1 commit: a5ef33712484c143ba8ca057e6f033899a83777c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 3 08:53:47 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 3 09:28:57 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5ef3371
7
8 app-arch/xar: [QA] Fix using deprecated ltprune.eclass
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-arch/xar/xar-1.8-r3.ebuild | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/app-arch/xar/xar-1.8-r3.ebuild b/app-arch/xar/xar-1.8-r3.ebuild
16 index 18ab6a29a1f..17416980f25 100644
17 --- a/app-arch/xar/xar-1.8-r3.ebuild
18 +++ b/app-arch/xar/xar-1.8-r3.ebuild
19 @@ -2,7 +2,7 @@
20 # Distributed under the terms of the GNU General Public License v2
21
22 EAPI=6
23 -inherit flag-o-matic multilib-minimal multilib ltprune
24 +inherit flag-o-matic multilib-minimal multilib
25
26 APPLE_PV=417.1
27 DESCRIPTION="An easily extensible archive format"
28 @@ -60,5 +60,5 @@ multilib_src_configure() {
29
30 multilib_src_install() {
31 default
32 - prune_libtool_files
33 + find "${D}" -name '*.la' -delete || die
34 }