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 1160D1382C5 for ; Fri, 16 Apr 2021 12:54:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3E10AE081A; Fri, 16 Apr 2021 12:54:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 22EBFE081A for ; Fri, 16 Apr 2021 12:54:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 584F4335D30 for ; Fri, 16 Apr 2021 12:54:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DAC27643 for ; Fri, 16 Apr 2021 12:54:08 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1618577639.45ae3c01f58be5d85cd8ca2632722a7f303d91d5.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-cdr/brasero/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-cdr/brasero/brasero-3.12.2-r1.ebuild app-cdr/brasero/brasero-3.12.2-r2.ebuild X-VCS-Directories: app-cdr/brasero/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 45ae3c01f58be5d85cd8ca2632722a7f303d91d5 X-VCS-Branch: master Date: Fri, 16 Apr 2021 12:54:08 +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: 2371ac8e-6c49-47ea-a424-de948f06b8d5 X-Archives-Hash: cfe62ee3d07435c7be59f2b10d37dd21 commit: 45ae3c01f58be5d85cd8ca2632722a7f303d91d5 Author: Matt Turner gentoo org> AuthorDate: Fri Apr 16 12:50:35 2021 +0000 Commit: Matt Turner gentoo org> CommitDate: Fri Apr 16 12:53:59 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45ae3c01 app-cdr/brasero: Install metainfo to correct location Closes: https://bugs.gentoo.org/732898 Signed-off-by: Matt Turner gentoo.org> .../{brasero-3.12.2-r1.ebuild => brasero-3.12.2-r2.ebuild} | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/app-cdr/brasero/brasero-3.12.2-r1.ebuild b/app-cdr/brasero/brasero-3.12.2-r2.ebuild similarity index 92% rename from app-cdr/brasero/brasero-3.12.2-r1.ebuild rename to app-cdr/brasero/brasero-3.12.2-r2.ebuild index 917812f3310..3c5638c5640 100644 --- a/app-cdr/brasero/brasero-3.12.2-r1.ebuild +++ b/app-cdr/brasero/brasero-3.12.2-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -74,3 +74,9 @@ src_configure() { $(use_enable playlist) \ $(use_enable tracker search) } + +src_install() { + default + mv "${ED}"/usr/share/{appdata,metainfo} || die + find "${ED}" -type f -name "*.la" -delete || die +}