From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/rocPRIM/
Date: Sat, 11 Oct 2025 18:14:34 +0000 (UTC)	[thread overview]
Message-ID: <1760206123.5f482e3f28f47eb976d555fe90ec758618982db6.asturm@gentoo> (raw)
commit:     5f482e3f28f47eb976d555fe90ec758618982db6
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 11 07:53:07 2025 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Oct 11 18:08:43 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f482e3f
sci-libs/rocPRIM: drop 5.7.1
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
 sci-libs/rocPRIM/Manifest             |  1 -
 sci-libs/rocPRIM/rocPRIM-5.7.1.ebuild | 79 -----------------------------------
 2 files changed, 80 deletions(-)
diff --git a/sci-libs/rocPRIM/Manifest b/sci-libs/rocPRIM/Manifest
index 0552d77f4651..ccf95bc449df 100644
--- a/sci-libs/rocPRIM/Manifest
+++ b/sci-libs/rocPRIM/Manifest
@@ -1,3 +1,2 @@
-DIST rocPRIM-5.7.1.tar.gz 535649 BLAKE2B 469bf59b5c92c37df96f58bac5a6559dc2cb879e5f82e539881d79bda57d23c25a9b114466042258e87862a88cd53d260155d7785c9a69a1800b0d05e931f56d SHA512 b2f0bc07dbc5cd111dd513f6c05dbc533908c52ea99caf77d6a4dd35db2b28f98c80006bd1f50a232873eab00b70e54231c38bfd1035c8845029d53690fd5e71
 DIST rocPRIM-6.3.3.tar.gz 745961 BLAKE2B 7ab15f623390de9052258717fa568b41c0f0dbe2e70c5c59089ad52bd00bdb44905a0f371dd71673af4b6f5d5ca21ab5bc6e41c04721e3b812f9543ad849c236 SHA512 5e216ff18d0a3eeb901f3ad4e8b74f9d8661a0bb943edea064529bdb973f3955e6791c415e492a89456eb0f19376f74528c3b348c4e32755a48e6b3f855a91e2
 DIST rocPRIM-6.4.3.tar.gz 868355 BLAKE2B f9dea0b2089a54033c689593f156a2ec5fa57c9be1d97491ab888667d2f12e919dc191baf3b321cf9450c1c09032a771be286ec9662e3cd4a2e5b18ad64636eb SHA512 1190a5397d30ee659128038c6903188c29808ad8e7e09f9ef648384662bdb6eda331d7a4847b3e00d31eb3c6752977703cfba2516ce0f268b2b0a349c97e5b24
diff --git a/sci-libs/rocPRIM/rocPRIM-5.7.1.ebuild b/sci-libs/rocPRIM/rocPRIM-5.7.1.ebuild
deleted file mode 100644
index 34c46c1b401d..000000000000
--- a/sci-libs/rocPRIM/rocPRIM-5.7.1.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ROCM_VERSION=${PV}
-inherit cmake rocm
-
-DESCRIPTION="HIP parallel primitives for developing performant GPU-accelerated code on ROCm"
-HOMEPAGE="https://github.com/ROCmSoftwarePlatform/rocPRIM"
-SRC_URI="https://github.com/ROCmSoftwarePlatform/rocPRIM/archive/rocm-${PV}.tar.gz -> rocPRIM-${PV}.tar.gz"
-
-LICENSE="MIT"
-KEYWORDS="~amd64"
-SLOT="0/$(ver_cut 1-2)"
-IUSE="benchmark test"
-REQUIRED_USE="${ROCM_REQUIRED_USE}"
-
-RDEPEND="dev-util/hip
-	benchmark? ( dev-cpp/benchmark )
-	test? ( dev-cpp/gtest )"
-BDEPEND="dev-build/rocm-cmake
-	>=dev-build/cmake-3.22"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/rocPRIM-rocm-${PV}"
-
-RESTRICT="!test? ( test )"
-
-PATCHES=( "${FILESDIR}"/${PN}-5.7.1-expand-isa-compatibility.patch )
-
-src_prepare() {
-	# "hcc" is depcreated, new platform ist "rocclr"
-	sed -e "/HIP_PLATFORM STREQUAL/s,hcc,rocclr," -i cmake/VerifyCompiler.cmake || die
-
-	# Install according to FHS
-	sed -e "/PREFIX rocprim/d" \
-		-e "/INSTALL_INTERFACE/s,rocprim/include,include/rocprim," \
-		-e "/DESTINATION/s,rocprim/include,include," \
-		-e "/rocm_install_symlink_subdir(rocprim)/d" \
-		-i rocprim/CMakeLists.txt || die
-
-	# disable downloading googletest and googlebenchmark
-	sed  -r -e '/Downloading/{:a;N;/\n *\)$/!ba; d}' -i cmake/Dependencies.cmake || die
-
-	# remove GIT dependency
-	sed  -r -e '/find_package\(Git/{:a;N;/\nendif/!ba; d}' -i cmake/Dependencies.cmake || die
-
-	# install benchmark files
-	if use benchmark; then
-		sed -e "/get_filename_component/s,\${BENCHMARK_SOURCE},${PN}_\${BENCHMARK_SOURCE}," \
-			-e "/add_executable/a\  install(TARGETS \${BENCHMARK_TARGET})" -i benchmark/CMakeLists.txt || die
-	fi
-
-	eapply_user
-	cmake_src_prepare
-}
-
-src_configure() {
-	addpredict /dev/kfd
-	addpredict /dev/dri/
-
-	local mycmakeargs=(
-		-DCMAKE_SKIP_RPATH=ON
-		-DAMDGPU_TARGETS="$(get_amdgpu_flags)"
-		-DBUILD_TEST=$(usex test ON OFF)
-		-DBUILD_BENCHMARK=$(usex benchmark ON OFF)
-		-DBUILD_FILE_REORG_BACKWARD_COMPATIBILITY=OFF
-		-DROCM_SYMLINK_LIBS=OFF
-	)
-
-	CXX=hipcc cmake_src_configure
-}
-
-src_test() {
-	check_amdgpu
-	# uses HMM to fit tests to default <512M iGPU VRAM
-	MAKEOPTS="-j1" ROCPRIM_USE_HMM="1" cmake_src_test
-}
next             reply	other threads:[~2025-10-11 18:15 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-11 18:14 Andreas Sturmlechner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-10-21 20:34 [gentoo-commits] repo/gentoo:master commit in: sci-libs/rocPRIM/ Sam James
2025-10-21 18:50 Sam James
2025-10-12 13:08 Andreas Sturmlechner
2025-08-10  6:07 Patrick Lauer
2025-03-04 10:55 Patrick Lauer
2025-02-13  8:38 Sam James
2025-02-08 10:07 Patrick Lauer
2024-09-09 18:20 Sam James
2023-07-05 18:15 Craig Andrews
2023-02-01  9:53 Andreas Sturmlechner
2022-12-19 14:00 Andreas Sturmlechner
2022-09-22  1:08 Benda XU
2022-05-03  5:41 Benda XU
2022-03-20  8:57 Benda XU
2021-08-27  3:34 Benda XU
2021-01-24  7:49 Benda XU
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox
  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):
  git send-email \
    --in-reply-to=1760206123.5f482e3f28f47eb976d555fe90ec758618982db6.asturm@gentoo \
    --to=asturm@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY
  https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
  Be sure your reply has a Subject: header at the top and a blank line
  before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox