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 30B98158020 for ; Thu, 27 Oct 2022 09:32:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 39C72E09D5; Thu, 27 Oct 2022 09:32:19 +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 1F64BE09D5 for ; Thu, 27 Oct 2022 09:32:19 +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 CF9413410AA for ; Thu, 27 Oct 2022 09:32:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 32F1961D for ; Thu, 27 Oct 2022 09:32:16 +0000 (UTC) From: "Denis Reva" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Denis Reva" Message-ID: <1666863007.b3bfee0f9e57f6c5dcec711b0c3187f60ae9fc93.RarogCmex@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-libs/amdvlk/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-libs/amdvlk/amdvlk-2022.4.1.ebuild X-VCS-Directories: media-libs/amdvlk/ X-VCS-Committer: RarogCmex X-VCS-Committer-Name: Denis Reva X-VCS-Revision: b3bfee0f9e57f6c5dcec711b0c3187f60ae9fc93 X-VCS-Branch: dev Date: Thu, 27 Oct 2022 09:32:16 +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: 5d6cac65-93c1-4e23-822b-4e441394ed62 X-Archives-Hash: eb63a3135d66e45662e30bf7a2609f0c commit: b3bfee0f9e57f6c5dcec711b0c3187f60ae9fc93 Author: Denis Reva gmail com> AuthorDate: Thu Oct 27 09:30:07 2022 +0000 Commit: Denis Reva gmail com> CommitDate: Thu Oct 27 09:30:07 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b3bfee0f media-libs/amdvlk: Fixed improper installation phase to clean things Signed-off-by: Denis Reva gmail.com> media-libs/amdvlk/amdvlk-2022.4.1.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/media-libs/amdvlk/amdvlk-2022.4.1.ebuild b/media-libs/amdvlk/amdvlk-2022.4.1.ebuild index a1204099a..7bdf5f66f 100644 --- a/media-libs/amdvlk/amdvlk-2022.4.1.ebuild +++ b/media-libs/amdvlk/amdvlk-2022.4.1.ebuild @@ -94,8 +94,8 @@ multilib_check_headers() { einfo "There is no headers" } -multilib_src_install() { - cmake_src_install +multilib_src_install_all() { + default einfo "Removing unused LLVM parts…" rm "${D}"/usr/lib/libLLVM*.a || die "Can't remove unused LLVM static libs" rm "${D}"/usr/lib/libLTO* || die "Can't remove unused LLVM lto library" @@ -104,7 +104,7 @@ multilib_src_install() { rm -r "${D}"/usr/include || die "Can't remove unused include folder" rm -r "${D}"/usr/lib/cmake || die "Can't remove unused LLVM cmake folder" einfo "Removal done! Moving docs…" - mv "${D}"/usr/share/doc/amdvlk/* "${D}"/usr/share/doc/"amdvlk-${PV}"/ || die "Can't move docs" + mv "${D}"/usr/share/doc/amdvlk/* "${D}"/usr/share/doc/"amdvlk-${PV}"/ || ewarn "Can't move docs. It is not fatal" einfo "Done!" }