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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2FB57158046 for ; Sun, 13 Oct 2024 00:09:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B82D1E08D0; Sun, 13 Oct 2024 00:09: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 A10DAE08D0 for ; Sun, 13 Oct 2024 00:09:17 +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 E27CE34320E for ; Sun, 13 Oct 2024 00:09:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4FC9E1BCF for ; Sun, 13 Oct 2024 00:09:15 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1728760076.472c7020a538f7a335076db01f60861eec4aae68.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: media-libs/amdvlk/, media-libs/amdvlk/files/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-libs/amdvlk/amdvlk-2024.3.3.ebuild media-libs/amdvlk/files/amdvlk-2024.3.3-fix-build.patch X-VCS-Directories: media-libs/amdvlk/files/ media-libs/amdvlk/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: 472c7020a538f7a335076db01f60861eec4aae68 X-VCS-Branch: master Date: Sun, 13 Oct 2024 00:09:15 +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: be7bcda8-efff-46af-a32b-8a97fd53ad87 X-Archives-Hash: 149df871f23e207970f0438af7f36a46 Message-ID: <20241013000915.H2qxCfH9J_5g0ObmFt04nbLFwpwgIO1NZ6E4nqSJI4w@z> commit: 472c7020a538f7a335076db01f60861eec4aae68 Author: Username404-59 gmail com> AuthorDate: Fri Oct 11 19:25:38 2024 +0000 Commit: David Roman gmail com> CommitDate: Sat Oct 12 19:07:56 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=472c7020 media-libs/amdvlk: add patch to fix possible build failure Signed-off-by: Username404-59 gmail.com> Signed-off-by: David Roman gmail.com> media-libs/amdvlk/amdvlk-2024.3.3.ebuild | 1 + media-libs/amdvlk/files/amdvlk-2024.3.3-fix-build.patch | 13 +++++++++++++ 2 files changed, 14 insertions(+) diff --git a/media-libs/amdvlk/amdvlk-2024.3.3.ebuild b/media-libs/amdvlk/amdvlk-2024.3.3.ebuild index e36d4bb20..7d5fc13e0 100644 --- a/media-libs/amdvlk/amdvlk-2024.3.3.ebuild +++ b/media-libs/amdvlk/amdvlk-2024.3.3.ebuild @@ -77,6 +77,7 @@ PATCHES=( #"${FILESDIR}/amdvlk-2022.4.2-reduced-llvm-installations.patch" #"${FILESDIR}/amdvlk-2022.4.2-reduced-llvm-installations-part2.patch" "${FILESDIR}/amdvlk-2024.3.1-disable-Werror.patch" + "${FILESDIR}/amdvlk-2024.3.3-fix-build.patch" ) pkg_pretend(){ diff --git a/media-libs/amdvlk/files/amdvlk-2024.3.3-fix-build.patch b/media-libs/amdvlk/files/amdvlk-2024.3.3-fix-build.patch new file mode 100644 index 000000000..9aa3b4d5c --- /dev/null +++ b/media-libs/amdvlk/files/amdvlk-2024.3.3-fix-build.patch @@ -0,0 +1,13 @@ +diff --git a/pal/shared/devdriver/shared/legacy/inc/util/queue.h b/pal/shared/devdriver/shared/legacy/inc/util/queue.h +index 95421760..926e6c89 100644 +--- a/pal/shared/devdriver/shared/legacy/inc/util/queue.h ++++ b/pal/shared/devdriver/shared/legacy/inc/util/queue.h +@@ -368,7 +368,7 @@ namespace DevDriver + + // Private copy constructor to prevent implicit copies + Queue(const Queue& rhs) +- : Queue(rhs.allocCb) ++ : Queue(rhs.m_allocCb) + { + GrowBlocks(rhs.m_numBlocks); + for (int i = 0; i < rhs.m_size; i++)