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 8BC561382C5 for ; Tue, 29 Dec 2020 16:40:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9350E08F6; Tue, 29 Dec 2020 16:40:17 +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 AFF5DE08F6 for ; Tue, 29 Dec 2020 16:40:17 +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 96F7B341703 for ; Tue, 29 Dec 2020 16:40:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 01BE147F for ; Tue, 29 Dec 2020 16:40:14 +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: <1609260004.40b5831adadd55442b152c2080d8871cb7cfc6e9.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-print/cndrvcups-common-lb/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-print/cndrvcups-common-lb/cndrvcups-common-lb-3.70.ebuild X-VCS-Directories: net-print/cndrvcups-common-lb/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 40b5831adadd55442b152c2080d8871cb7cfc6e9 X-VCS-Branch: master Date: Tue, 29 Dec 2020 16:40:14 +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: 692ec95e-d41e-4465-83ee-7c52b3d60c2f X-Archives-Hash: bfe92668e8e6b8dd912d86403218cc96 commit: 40b5831adadd55442b152c2080d8871cb7cfc6e9 Author: Jakov Smolic sartura hr> AuthorDate: Tue Dec 29 16:40:04 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Tue Dec 29 16:40:04 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40b5831a net-print/cndrvcups-common-lb: Respect AR, prune static-libs Closes: https://github.com/gentoo/gentoo/pull/18868 Closes: https://bugs.gentoo.org/762235 Signed-off-by: Jakov Smolic sartura.hr> Signed-off-by: David Seifert gentoo.org> net-print/cndrvcups-common-lb/cndrvcups-common-lb-3.70.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/net-print/cndrvcups-common-lb/cndrvcups-common-lb-3.70.ebuild b/net-print/cndrvcups-common-lb/cndrvcups-common-lb-3.70.ebuild index b6566cc425d..03e2dcc952f 100644 --- a/net-print/cndrvcups-common-lb/cndrvcups-common-lb-3.70.ebuild +++ b/net-print/cndrvcups-common-lb/cndrvcups-common-lb-3.70.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit autotools +inherit autotools toolchain-funcs MY_PV="$(ver_rs 1- '')" SOURCES_NAME="linux-UFRII-drv-v${MY_PV}-uken" @@ -75,7 +75,7 @@ src_configure() { } src_compile() { - change_dir emake + change_dir emake AR="$(tc-getAR)" # Cannot be moved to 'change_dir' as it doesn't need eautoreconf cd "${S}/c3plmod_ipc" || die @@ -114,4 +114,6 @@ src_install() { if [[ "$(get_libdir)" != lib ]] && [[ ${SYMLINK_LIB} = yes ]]; then dosym "../$(get_libdir)/libc3pl.so" /usr/lib/libc3pl.so fi + + find "${ED}" -name '*.la' -o -name '*.a' -delete || die }