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 EA3431382C5 for ; Fri, 30 Apr 2021 07:45:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4D17DE085B; Fri, 30 Apr 2021 07:45:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 2FEAFE085B for ; Fri, 30 Apr 2021 07:45:23 +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 3ACD4340B9C for ; Fri, 30 Apr 2021 07:45:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D04C94C3 for ; Fri, 30 Apr 2021 07:45:20 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1619692951.181b7fa84894efb6d914b6a99b6f2b35085e90d5.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: media-libs/vips/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-libs/vips/vips-8.10.6.ebuild X-VCS-Directories: media-libs/vips/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 181b7fa84894efb6d914b6a99b6f2b35085e90d5 X-VCS-Branch: master Date: Fri, 30 Apr 2021 07:45:20 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ba36c0ff-74d6-4a5c-be22-edf718f11f44 X-Archives-Hash: bfa6c8d4de05be07d29ce1f3e92d3b25 commit: 181b7fa84894efb6d914b6a99b6f2b35085e90d5 Author: Ronny (tastytea) Gutbrod tastytea de> AuthorDate: Thu Apr 29 10:31:41 2021 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Thu Apr 29 10:42:31 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=181b7fa8 media-libs/vips: Fix econf, replace prune_libtool_files. The econf command would only go until `$(use_with openexr OpenEXR)` and then print the error: “--without-orc: command not found”. prune_libtool_files is deprecated. Replaced with find. Closes: https://bugs.gentoo.org/786225 Signed-off-by: Ronny (tastytea) Gutbrod tastytea.de> media-libs/vips/vips-8.10.6.ebuild | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/media-libs/vips/vips-8.10.6.ebuild b/media-libs/vips/vips-8.10.6.ebuild index 59394e697..09f6fd6b8 100644 --- a/media-libs/vips/vips-8.10.6.ebuild +++ b/media-libs/vips/vips-8.10.6.ebuild @@ -80,7 +80,6 @@ multilib_src_configure() { $(use_with lcms) \ $(use_with matio ) \ $(use_with openexr OpenEXR) \ -# $(use_with openslide) \ $(use_with orc) \ $(use_with pango pangoft2) \ $(use_with pango pangocairo) \ @@ -101,5 +100,5 @@ multilib_src_install() { } multilib_src_install_all() { einstalldocs - prune_libtool_files + find "${D}" -name '*.la' -type f -delete || die }