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 5650815808B for ; Sat, 5 Mar 2022 23:08:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 65424E07EC; Sat, 5 Mar 2022 23:08:17 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 258CEE079E for ; Sat, 5 Mar 2022 23:08:17 +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 33FBA3430EC for ; Sat, 5 Mar 2022 23:08:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A8BE32D3 for ; Sat, 5 Mar 2022 23:08:14 +0000 (UTC) From: "Oliver Freyermuth" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Oliver Freyermuth" Message-ID: <1646521690.13beddbe34e5e6053341149a49024f6ee11981f0.freyermuth@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-video/mpv-mpris/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-video/mpv-mpris/mpv-mpris-9999.ebuild X-VCS-Directories: media-video/mpv-mpris/ X-VCS-Committer: freyermuth X-VCS-Committer-Name: Oliver Freyermuth X-VCS-Revision: 13beddbe34e5e6053341149a49024f6ee11981f0 X-VCS-Branch: dev Date: Sat, 5 Mar 2022 23:08: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: 2f36de2c-b266-46e4-8e72-5da9c5ff80c6 X-Archives-Hash: 7b73c501cb862eb2719c788a0d950f9b commit: 13beddbe34e5e6053341149a49024f6ee11981f0 Author: Oliver Freyermuth googlemail com> AuthorDate: Sat Mar 5 23:08:10 2022 +0000 Commit: Oliver Freyermuth googlemail com> CommitDate: Sat Mar 5 23:08:10 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=13beddbe media-video/mpv-mpris: Fix broken library install path. This fixes the installation path for the library, which got broken in: c5daf69b839cb5b11f98c0a0401bc0219724bbd2 leading to a dangling symlink. Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Oliver Freyermuth googlemail.com> media-video/mpv-mpris/mpv-mpris-9999.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/media-video/mpv-mpris/mpv-mpris-9999.ebuild b/media-video/mpv-mpris/mpv-mpris-9999.ebuild index d56b88791..8814420b5 100644 --- a/media-video/mpv-mpris/mpv-mpris-9999.ebuild +++ b/media-video/mpv-mpris/mpv-mpris-9999.ebuild @@ -51,7 +51,8 @@ src_test() { } src_install() { - dolib.so mpris.so + insinto "/usr/$(get_libdir)/mpv" + doins mpris.so use autoload && dosym -r /usr/$(get_libdir)/mpv/mpris.so /etc/mpv/scripts/mpris.so einstalldocs }