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 DA5EB138359 for ; Tue, 25 Aug 2020 10:39:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 144DCE0826; Tue, 25 Aug 2020 10:39:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 EBAA1E0826 for ; Tue, 25 Aug 2020 10:39:35 +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 F3AA0340B53 for ; Tue, 25 Aug 2020 10:39:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A5C892B2 for ; Tue, 25 Aug 2020 10:39:33 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1598351959.b8ae84addad928b57029801e6d6984fcd00a3a46.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: virtual/opencl/ X-VCS-Repository: repo/gentoo X-VCS-Files: virtual/opencl/opencl-3-r1.ebuild X-VCS-Directories: virtual/opencl/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: b8ae84addad928b57029801e6d6984fcd00a3a46 X-VCS-Branch: master Date: Tue, 25 Aug 2020 10:39:33 +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: d31692b2-15ce-46ad-84b4-8fe640ca6abc X-Archives-Hash: 409a191a0d11416c7c77947fa9487fed commit: b8ae84addad928b57029801e6d6984fcd00a3a46 Author: Marek Szuba gentoo org> AuthorDate: Tue Aug 25 10:05:30 2020 +0000 Commit: Marek Szuba gentoo org> CommitDate: Tue Aug 25 10:39:19 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8ae84ad virtual/opencl: Do not mention dev-libs/hsa-ext-rocr ROCm has had open-source OpenCL image support since 3.3, and since 3.7 it doesn't even try to use the proprietary library - which upstream has recently ceased to publish. Signed-off-by: Marek Szuba gentoo.org> virtual/opencl/opencl-3-r1.ebuild | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/virtual/opencl/opencl-3-r1.ebuild b/virtual/opencl/opencl-3-r1.ebuild index 8b108a5fbc6..e170f20cd30 100644 --- a/virtual/opencl/opencl-3-r1.ebuild +++ b/virtual/opencl/opencl-3-r1.ebuild @@ -19,18 +19,16 @@ pkg_postinst() { elog elog " * open:" elog " - dev-libs/intel-neo - integrated Intel GPUs from Broadwell onwards. 64-bit only;" - elog " - dev-libs/rocm-opencl-runtime - AMD GPUs supported by the amdgpu kernel driver." - elog " Image support still requires a proprietary extension [1]. 64-bit only;" - elog " - media-libs/mesa[opencl] - some older AMD GPUs; see [2]. 32-bit support;" + elog " - dev-libs/rocm-opencl-runtime - AMD GPUs supported by the amdgpu kernel driver. 64-bit only;" + elog " - media-libs/mesa[opencl] - some older AMD GPUs; see [1]. 32-bit support;" elog elog " * proprietary:" elog " - dev-libs/amdgpu-pro-opencl - AMD Polaris GPUs. 32-bit support;" elog " - dev-util/intel-ocl-sdk - Intel CPUs (*not* GPUs). 64-bit only;" elog " - x11-drivers/nvidia-drivers[uvm] - Nvidia GPUs; specific package versions" - elog " required for older devices [3]. 32-bit support." + elog " required for older devices [2]. 32-bit support." elog - elog " [1] dev-libs/hsa-ext-rocr" - elog " [2] https://dri.freedesktop.org/wiki/GalliumCompute/" - elog " [3] https://www.nvidia.com/en-us/drivers/unix/legacy-gpu/" + elog " [1] https://dri.freedesktop.org/wiki/GalliumCompute/" + elog " [2] https://www.nvidia.com/en-us/drivers/unix/legacy-gpu/" elog }