Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/atf/
Date: Fri, 07 Sep 2018 17:18:56
Message-Id: 1536340724.3b520e5686ec099557f0ae8cd010616312045fb2.floppym@gentoo
1 commit: 3b520e5686ec099557f0ae8cd010616312045fb2
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 7 14:53:22 2018 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 7 17:18:44 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b520e56
7
8 dev-libs/atf: remove /usr/tests
9
10 Bug: https://bugs.gentoo.org/654496
11 Package-Manager: Portage-2.3.49_p2, Repoman-2.3.10_p48
12
13 dev-libs/atf/{atf-0.21-r1.ebuild => atf-0.21-r2.ebuild} | 9 ++++-----
14 1 file changed, 4 insertions(+), 5 deletions(-)
15
16 diff --git a/dev-libs/atf/atf-0.21-r1.ebuild b/dev-libs/atf/atf-0.21-r2.ebuild
17 similarity index 75%
18 rename from dev-libs/atf/atf-0.21-r1.ebuild
19 rename to dev-libs/atf/atf-0.21-r2.ebuild
20 index 8f0c520fae8..81fad911bd9 100644
21 --- a/dev-libs/atf/atf-0.21-r1.ebuild
22 +++ b/dev-libs/atf/atf-0.21-r2.ebuild
23 @@ -1,10 +1,8 @@
24 -# Copyright 1999-2017 Gentoo Foundation
25 +# Copyright 1999-2018 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27
28 EAPI=6
29
30 -inherit ltprune
31 -
32 DESCRIPTION="Libraries to write tests in C, C++ and shell"
33 HOMEPAGE="https://github.com/jmmv/atf"
34 SRC_URI="https://github.com/jmmv/atf/releases/download/${P}/${P}.tar.gz"
35 @@ -16,9 +14,10 @@ IUSE=""
36
37 DEPEND="virtual/pkgconfig"
38
39 -PATCHES=( ${FILESDIR}/${P}-getopt-solaris.patch )
40 +PATCHES=( "${FILESDIR}"/${P}-getopt-solaris.patch )
41
42 src_install() {
43 default
44 - prune_libtool_files
45 + rm -r "${ED%/}"/usr/tests || die
46 + find "${ED}" -name '*.la' -delete || die
47 }