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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 58C36158041 for ; Sat, 2 Mar 2024 14:44:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 944F3E29C5; Sat, 2 Mar 2024 14:44:32 +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 6F1BCE29C5 for ; Sat, 2 Mar 2024 14:44:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 62CC233BE19 for ; Sat, 2 Mar 2024 14:44:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C6AC51049 for ; Sat, 2 Mar 2024 14:44:29 +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: <1709390659.ba0a9f492d82e9ac8af7fdc01a05f60acc662b0e.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/libredwg/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/libredwg/libredwg-0.13.3.ebuild X-VCS-Directories: media-gfx/libredwg/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: ba0a9f492d82e9ac8af7fdc01a05f60acc662b0e X-VCS-Branch: master Date: Sat, 2 Mar 2024 14:44:29 +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: 95259bbe-31bd-4670-98c9-f70785396797 X-Archives-Hash: 610a58a76b70150b36c827385fc47b00 commit: ba0a9f492d82e9ac8af7fdc01a05f60acc662b0e Author: Andrew Ammerlaan gentoo org> AuthorDate: Sat Mar 2 14:43:48 2024 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Sat Mar 2 14:44:19 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba0a9f49 media-gfx/libredwg: only remove la files if they exist Closes: https://bugs.gentoo.org/914184 Signed-off-by: Andrew Ammerlaan gentoo.org> media-gfx/libredwg/libredwg-0.13.3.ebuild | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/media-gfx/libredwg/libredwg-0.13.3.ebuild b/media-gfx/libredwg/libredwg-0.13.3.ebuild index 57215dfb3169..d29a75a7f99d 100644 --- a/media-gfx/libredwg/libredwg-0.13.3.ebuild +++ b/media-gfx/libredwg/libredwg-0.13.3.ebuild @@ -106,9 +106,6 @@ src_install() { use python && python_optimize # remove .la files if static-libs disabled if ! use static-libs; then - rm "${ED}/usr/$(get_libdir)/libredwg.la" || die - if use python; then - rm "${D}/$(python_get_sitedir)/_LibreDWG.la" || die - fi + find "${ED}" -name '*.la' -delete || die fi }