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 AE383158090 for ; Sat, 21 May 2022 11:15:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ED86EE08FA; Sat, 21 May 2022 11:15:39 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CBDF9E08FA for ; Sat, 21 May 2022 11:15:39 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DC27D341302 for ; Sat, 21 May 2022 11:15:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 794313AA for ; Sat, 21 May 2022 11:15:37 +0000 (UTC) From: "Thomas Beierlein" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Beierlein" Message-ID: <1653131721.e0dfb89ea47c003d17a6bbbf3e6905f77e92a357.tomjbe@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/bacula/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-backup/bacula/bacula-11.0.5.ebuild app-backup/bacula/bacula-11.0.6-r1.ebuild X-VCS-Directories: app-backup/bacula/ X-VCS-Committer: tomjbe X-VCS-Committer-Name: Thomas Beierlein X-VCS-Revision: e0dfb89ea47c003d17a6bbbf3e6905f77e92a357 X-VCS-Branch: master Date: Sat, 21 May 2022 11:15:37 +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: 97b52db1-780c-4e8f-956d-fbc54e7c2851 X-Archives-Hash: 6151bfdd590217aa3618a4da17182846 commit: e0dfb89ea47c003d17a6bbbf3e6905f77e92a357 Author: Thomas Beierlein gentoo org> AuthorDate: Sat May 21 11:13:59 2022 +0000 Commit: Thomas Beierlein gentoo org> CommitDate: Sat May 21 11:15:21 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0dfb89e app-backup/bacula: Drop unneeded .la files Closes: https://bugs.gentoo.org/840957 Signed-off-by: Thomas Beierlein gentoo.org> app-backup/bacula/bacula-11.0.5.ebuild | 3 +++ app-backup/bacula/bacula-11.0.6-r1.ebuild | 3 +++ 2 files changed, 6 insertions(+) diff --git a/app-backup/bacula/bacula-11.0.5.ebuild b/app-backup/bacula/bacula-11.0.5.ebuild index c33c1259fd03..50ddfc74dfde 100644 --- a/app-backup/bacula/bacula-11.0.5.ebuild +++ b/app-backup/bacula/bacula-11.0.5.ebuild @@ -231,6 +231,9 @@ src_install() { emake DESTDIR="${D}" install doicon scripts/bacula.png + # remove not needed .la files #840957 + find "${ED}" -name '*.la' -delete || die + # install bat icon and desktop file when enabled # (for some reason ./configure doesn't pick this up) if use qt5 && ! use static ; then diff --git a/app-backup/bacula/bacula-11.0.6-r1.ebuild b/app-backup/bacula/bacula-11.0.6-r1.ebuild index 280ae3cb775c..fe60047ffdcb 100644 --- a/app-backup/bacula/bacula-11.0.6-r1.ebuild +++ b/app-backup/bacula/bacula-11.0.6-r1.ebuild @@ -231,6 +231,9 @@ src_install() { emake DESTDIR="${D}" install doicon scripts/bacula.png + # remove not needed .la files #840957 + find "${ED}" -name '*.la' -delete || die + # install bat icon and desktop file when enabled # (for some reason ./configure doesn't pick this up) if use qt5 && ! use static ; then