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 288C01382C5 for ; Mon, 31 May 2021 09:20:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C0896E0875; Mon, 31 May 2021 09:20:21 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 AA498E0875 for ; Mon, 31 May 2021 09:20:21 +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 BCE13335D28 for ; Mon, 31 May 2021 09:20:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E7F6F7A8 for ; Mon, 31 May 2021 09:20:16 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1622452758.76336f86c7c0d669af4b575edc2825af6cad9690.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-geosciences/congen/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-geosciences/congen/congen-1.6.2-r1.ebuild X-VCS-Directories: sci-geosciences/congen/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 76336f86c7c0d669af4b575edc2825af6cad9690 X-VCS-Branch: master Date: Mon, 31 May 2021 09:20:16 +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: e660089e-58a2-4dc8-9ae9-73174142cb29 X-Archives-Hash: 43bd6352498a0e1d557abcd43f68374f commit: 76336f86c7c0d669af4b575edc2825af6cad9690 Author: Conrad Kostecki gentoo org> AuthorDate: Mon May 31 09:19:18 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Mon May 31 09:19:18 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76336f86 sci-geosciences/congen: drop deprecated ltprune eclass Signed-off-by: Conrad Kostecki gentoo.org> Signed-off-by: David Seifert gentoo.org> sci-geosciences/congen/congen-1.6.2-r1.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sci-geosciences/congen/congen-1.6.2-r1.ebuild b/sci-geosciences/congen/congen-1.6.2-r1.ebuild index 9bbfd8b6ee3..400b0fd64e9 100644 --- a/sci-geosciences/congen/congen-1.6.2-r1.ebuild +++ b/sci-geosciences/congen/congen-1.6.2-r1.ebuild @@ -3,8 +3,6 @@ EAPI=6 -inherit ltprune - MY_P=${P/_p/-r} DESCRIPTION="Calculate speeds, equilibrium arguments, node factors of tidal constituents" HOMEPAGE="http://www.flaterco.com/xtide/files.html" @@ -29,5 +27,8 @@ src_configure() { src_install() { default - use static-libs || prune_libtool_files + + if ! use static-libs; then + find "${ED}" -name '*.la' -delete || die + fi }