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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CBDD815808B for ; Sun, 20 Mar 2022 08:57:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 30121E0801; Sun, 20 Mar 2022 08:57:55 +0000 (UTC) Received: from smtp.gentoo.org (dev.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B3CC7E0801 for ; Sun, 20 Mar 2022 08:57:54 +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 7A2A5343149 for ; Sun, 20 Mar 2022 08:57:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B2D7F320 for ; Sun, 20 Mar 2022 08:57:51 +0000 (UTC) From: "Benda XU" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Benda XU" Message-ID: <1647766627.cafbd53363901aa5a5629adc8fe709a456311ace.heroxbd@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/rocPRIM/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/rocPRIM/rocPRIM-4.3.0-r1.ebuild sci-libs/rocPRIM/rocPRIM-4.3.0.ebuild X-VCS-Directories: sci-libs/rocPRIM/ X-VCS-Committer: heroxbd X-VCS-Committer-Name: Benda XU X-VCS-Revision: cafbd53363901aa5a5629adc8fe709a456311ace X-VCS-Branch: master Date: Sun, 20 Mar 2022 08:57:51 +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: 4e3067e1-1ac2-401a-a111-8af09ff13ab0 X-Archives-Hash: 469325d2db23e88f0b80227d5572cf14 commit: cafbd53363901aa5a5629adc8fe709a456311ace Author: YiyangWu gmail com> AuthorDate: Tue Dec 21 03:10:38 2021 +0000 Commit: Benda XU gentoo org> CommitDate: Sun Mar 20 08:57:07 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cafbd533 sci-libs/rocPRIM: remove unused cmake variable __skip_rocmclang is used to avoid configuration error for cmake-3.21.(1|2), which don't exist among ebuilds anymore, so this flag is not recognized. Closes: https://github.com/gentoo/gentoo/pull/23447 Closes: https://bugs.gentoo.org/829075 Package-Manager: Portage-3.0.22, Repoman-3.0.3 Signed-off-by: Yiyang Wu gmail.com> Signed-off-by: Benda Xu gentoo.org> sci-libs/rocPRIM/{rocPRIM-4.3.0.ebuild => rocPRIM-4.3.0-r1.ebuild} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sci-libs/rocPRIM/rocPRIM-4.3.0.ebuild b/sci-libs/rocPRIM/rocPRIM-4.3.0-r1.ebuild similarity index 92% rename from sci-libs/rocPRIM/rocPRIM-4.3.0.ebuild rename to sci-libs/rocPRIM/rocPRIM-4.3.0-r1.ebuild index 98f626fe7f9a..0e7bba7b2a7c 100644 --- a/sci-libs/rocPRIM/rocPRIM-4.3.0.ebuild +++ b/sci-libs/rocPRIM/rocPRIM-4.3.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -17,6 +17,7 @@ IUSE="benchmark test" RDEPEND="dev-util/hip:${SLOT} benchmark? ( dev-cpp/benchmark )" BDEPEND="dev-util/rocm-cmake:${SLOT} + >=dev-util/cmake-3.22 test? ( dev-cpp/gtest )" DEPEND="${RDEPEND}" @@ -63,7 +64,6 @@ src_configure() { -DBUILD_TEST=$(usex test ON OFF) -DBUILD_BENCHMARK=$(usex benchmark ON OFF) ${AMDGPU_TARGETS+-DAMDGPU_TARGETS="${AMDGPU_TARGETS}"} - -D__skip_rocmclang="ON" ## fix cmake-3.21 configuration issue caused by officialy support programming language "HIP" ) cmake_src_configure