From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 8D464139694 for ; Sun, 26 Mar 2017 19:37:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 88AC123407E; Sun, 26 Mar 2017 19:36:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6862A23407E for ; Sun, 26 Mar 2017 19:36:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 87B6F340DF9 for ; Sun, 26 Mar 2017 19:36:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2E9FB70B7 for ; Sun, 26 Mar 2017 19:36:32 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1490556969.bce4d97d4de766063f8b631bb982970a998420c9.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libgcrypt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libgcrypt/libgcrypt-1.5.6-r101.ebuild dev-libs/libgcrypt/libgcrypt-1.7.6.ebuild X-VCS-Directories: dev-libs/libgcrypt/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: bce4d97d4de766063f8b631bb982970a998420c9 X-VCS-Branch: master Date: Sun, 26 Mar 2017 19:36:32 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 19a537ab-6991-4969-9203-9fd4a4127f53 X-Archives-Hash: 89de66ef293ac7c13283b510aa3b029d commit: bce4d97d4de766063f8b631bb982970a998420c9 Author: Matt Turner gentoo org> AuthorDate: Sat Mar 25 06:57:24 2017 +0000 Commit: Matt Turner gentoo org> CommitDate: Sun Mar 26 19:36:09 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bce4d97d dev-libs/libgcrypt: Delete *.la files Bug: https://bugs.gentoo.org/613924 dev-libs/libgcrypt/libgcrypt-1.5.6-r101.ebuild | 4 ++++ dev-libs/libgcrypt/libgcrypt-1.7.6.ebuild | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/dev-libs/libgcrypt/libgcrypt-1.5.6-r101.ebuild b/dev-libs/libgcrypt/libgcrypt-1.5.6-r101.ebuild index 8ada6dad282..b8ee9740719 100644 --- a/dev-libs/libgcrypt/libgcrypt-1.5.6-r101.ebuild +++ b/dev-libs/libgcrypt/libgcrypt-1.5.6-r101.ebuild @@ -57,3 +57,7 @@ multilib_src_install() { rm -r "${ED%/}"/usr/{bin,include,lib*/*.so,share} || die } + +multilib_src_install_all() { + find "${ED}" -name '*.la' -delete +} diff --git a/dev-libs/libgcrypt/libgcrypt-1.7.6.ebuild b/dev-libs/libgcrypt/libgcrypt-1.7.6.ebuild index ed38072926c..7cbc5e92392 100644 --- a/dev-libs/libgcrypt/libgcrypt-1.7.6.ebuild +++ b/dev-libs/libgcrypt/libgcrypt-1.7.6.ebuild @@ -70,3 +70,7 @@ multilib_src_install() { emake DESTDIR="${D}" install multilib_is_native_abi && use doc && dodoc doc/gcrypt.pdf } + +multilib_src_install_all() { + find "${ED}" -name '*.la' -delete +}