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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 04150158090 for ; Mon, 23 May 2022 13:50:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2E82EE0848; Mon, 23 May 2022 13:50:45 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0C769E0848 for ; Mon, 23 May 2022 13:50:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CAB9A33BEFE for ; Mon, 23 May 2022 13:50:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 499B6471 for ; Mon, 23 May 2022 13:50:41 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1653313829.f58d4a109a2cf6d0e2a5481362582fc87efc0fb1.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/cmrt/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/cmrt/cmrt-1.0.6-r1.ebuild x11-libs/cmrt/cmrt-1.0.6.ebuild X-VCS-Directories: x11-libs/cmrt/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: f58d4a109a2cf6d0e2a5481362582fc87efc0fb1 X-VCS-Branch: master Date: Mon, 23 May 2022 13:50:41 +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: e15e1d60-0c2d-4772-9fae-9a843bf7d60d X-Archives-Hash: 5019dfebff8cc3a2e7f3b876217fa0f6 commit: f58d4a109a2cf6d0e2a5481362582fc87efc0fb1 Author: Conrad Kostecki gentoo org> AuthorDate: Mon May 23 13:46:41 2022 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Mon May 23 13:50:29 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f58d4a10 x11-libs/cmrt: don't install *.la files Closes: https://bugs.gentoo.org/847100 Signed-off-by: Conrad Kostecki gentoo.org> x11-libs/cmrt/{cmrt-1.0.6.ebuild => cmrt-1.0.6-r1.ebuild} | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/x11-libs/cmrt/cmrt-1.0.6.ebuild b/x11-libs/cmrt/cmrt-1.0.6-r1.ebuild similarity index 87% rename from x11-libs/cmrt/cmrt-1.0.6.ebuild rename to x11-libs/cmrt/cmrt-1.0.6-r1.ebuild index 811508e5bbc1..ea02e47a44ae 100644 --- a/x11-libs/cmrt/cmrt-1.0.6.ebuild +++ b/x11-libs/cmrt/cmrt-1.0.6-r1.ebuild @@ -24,3 +24,8 @@ src_prepare() { default eautoreconf } + +src_install() { + default + find "${ED}" -type f -name '*.la' -delete || die +}