From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1045680-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A35E9138334 for <garchives@archives.gentoo.org>; Fri, 7 Sep 2018 17:18:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CE4F8E085D; Fri, 7 Sep 2018 17:18:55 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A459FE085D for <gentoo-commits@lists.gentoo.org>; Fri, 7 Sep 2018 17:18:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 25167335C7D for <gentoo-commits@lists.gentoo.org>; Fri, 7 Sep 2018 17:18:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9F8413BC for <gentoo-commits@lists.gentoo.org>; Fri, 7 Sep 2018 17:18:51 +0000 (UTC) From: "Mike Gilbert" <floppym@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" <floppym@gentoo.org> Message-ID: <1536340724.3b520e5686ec099557f0ae8cd010616312045fb2.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/atf/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/atf/atf-0.21-r1.ebuild dev-libs/atf/atf-0.21-r2.ebuild X-VCS-Directories: dev-libs/atf/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 3b520e5686ec099557f0ae8cd010616312045fb2 X-VCS-Branch: master Date: Fri, 7 Sep 2018 17:18:51 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: cb21bda7-32b0-4b00-a09d-9b055e4ac71c X-Archives-Hash: 3b41e9ba76cdbab84f4113e554700f64 commit: 3b520e5686ec099557f0ae8cd010616312045fb2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org> AuthorDate: Fri Sep 7 14:53:22 2018 +0000 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org> CommitDate: Fri Sep 7 17:18:44 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b520e56 dev-libs/atf: remove /usr/tests Bug: https://bugs.gentoo.org/654496 Package-Manager: Portage-2.3.49_p2, Repoman-2.3.10_p48 dev-libs/atf/{atf-0.21-r1.ebuild => atf-0.21-r2.ebuild} | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/dev-libs/atf/atf-0.21-r1.ebuild b/dev-libs/atf/atf-0.21-r2.ebuild similarity index 75% rename from dev-libs/atf/atf-0.21-r1.ebuild rename to dev-libs/atf/atf-0.21-r2.ebuild index 8f0c520fae8..81fad911bd9 100644 --- a/dev-libs/atf/atf-0.21-r1.ebuild +++ b/dev-libs/atf/atf-0.21-r2.ebuild @@ -1,10 +1,8 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit ltprune - DESCRIPTION="Libraries to write tests in C, C++ and shell" HOMEPAGE="https://github.com/jmmv/atf" SRC_URI="https://github.com/jmmv/atf/releases/download/${P}/${P}.tar.gz" @@ -16,9 +14,10 @@ IUSE="" DEPEND="virtual/pkgconfig" -PATCHES=( ${FILESDIR}/${P}-getopt-solaris.patch ) +PATCHES=( "${FILESDIR}"/${P}-getopt-solaris.patch ) src_install() { default - prune_libtool_files + rm -r "${ED%/}"/usr/tests || die + find "${ED}" -name '*.la' -delete || die }