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 ACFC5138330 for ; Fri, 25 May 2018 00:11:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 923B6E07AE; Fri, 25 May 2018 00:11:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 6578AE07AE for ; Fri, 25 May 2018 00:11:28 +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 A1157335C85 for ; Fri, 25 May 2018 00:11:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B157D27A for ; Fri, 25 May 2018 00:11:23 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1527207065.896c2cf4b46dbc7b8fcbc92ad1bef0916a4c2223.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libressl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libressl/libressl-2.6.4.ebuild dev-libs/libressl/libressl-2.7.3.ebuild X-VCS-Directories: dev-libs/libressl/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 896c2cf4b46dbc7b8fcbc92ad1bef0916a4c2223 X-VCS-Branch: master Date: Fri, 25 May 2018 00:11:23 +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: 3d1e0124-f0ee-4018-98ef-237d194716bb X-Archives-Hash: 998516799bfe8f03bcd7a58c8a365913 commit: 896c2cf4b46dbc7b8fcbc92ad1bef0916a4c2223 Author: Aaron Bauman gentoo org> AuthorDate: Fri May 25 00:11:05 2018 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Fri May 25 00:11:05 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=896c2cf4 dev-libs/libressl: drop ltprune eclass Drop ltprune eclass in favor of proper find call. Package-Manager: Portage-2.3.38, Repoman-2.3.9 dev-libs/libressl/libressl-2.6.4.ebuild | 4 ++-- dev-libs/libressl/libressl-2.7.3.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-libs/libressl/libressl-2.6.4.ebuild b/dev-libs/libressl/libressl-2.6.4.ebuild index 152d3751d35..9aaf4681a71 100644 --- a/dev-libs/libressl/libressl-2.6.4.ebuild +++ b/dev-libs/libressl/libressl-2.6.4.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit ltprune multilib-minimal +inherit multilib-minimal DESCRIPTION="Free version of the SSL/TLS protocol forked from OpenSSL" HOMEPAGE="https://www.libressl.org/" @@ -49,5 +49,5 @@ multilib_src_test() { multilib_src_install_all() { einstalldocs - prune_libtool_files + find "${D}" -name '*.la' -exec rm -f {} + || die } diff --git a/dev-libs/libressl/libressl-2.7.3.ebuild b/dev-libs/libressl/libressl-2.7.3.ebuild index b9bfe8bd72d..1c15a09a5fa 100644 --- a/dev-libs/libressl/libressl-2.7.3.ebuild +++ b/dev-libs/libressl/libressl-2.7.3.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit ltprune multilib-minimal +inherit multilib-minimal DESCRIPTION="Free version of the SSL/TLS protocol forked from OpenSSL" HOMEPAGE="https://www.libressl.org/" @@ -49,5 +49,5 @@ multilib_src_test() { multilib_src_install_all() { einstalldocs - prune_libtool_files + find "${D}" -name '*.la' -exec rm -f {} + || die }