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 6E60E15800A for ; Thu, 3 Aug 2023 17:12:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B45482BC01C; Thu, 3 Aug 2023 17:12:31 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 975352BC01C for ; Thu, 3 Aug 2023 17:12:31 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A358C335C8E for ; Thu, 3 Aug 2023 17:12:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3F8CEE99 for ; Thu, 3 Aug 2023 17:12:29 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1691082731.70e9fab62454298263d2fa834025ae4c745966f6.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/rocminfo/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/rocminfo/rocminfo-9999.ebuild X-VCS-Directories: dev-util/rocminfo/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 70e9fab62454298263d2fa834025ae4c745966f6 X-VCS-Branch: master Date: Thu, 3 Aug 2023 17:12:29 +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: 7892446a-daf5-474e-b0b0-8bca53024997 X-Archives-Hash: 7bf90eff8378e4e9565a8acaf965557b commit: 70e9fab62454298263d2fa834025ae4c745966f6 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Jul 27 18:58:26 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Aug 3 17:12:11 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70e9fab6 dev-util/rocminfo: drop 9999 Closes: https://bugs.gentoo.org/906321 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-util/rocminfo/rocminfo-9999.ebuild | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/dev-util/rocminfo/rocminfo-9999.ebuild b/dev-util/rocminfo/rocminfo-9999.ebuild deleted file mode 100644 index 2668b8684942..000000000000 --- a/dev-util/rocminfo/rocminfo-9999.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -if [[ ${PV} == *9999 ]] ; then - EGIT_REPO_URI="https://github.com/RadeonOpenCompute/rocminfo/" - inherit git-r3 -else - SRC_URI="https://github.com/RadeonOpenCompute/rocminfo/archive/rocm-${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64" - S="${WORKDIR}/rocminfo-rocm-${PV}" -fi - -DESCRIPTION="ROCm Application for Reporting System Info" -HOMEPAGE="https://github.com/RadeonOpenCompute/rocminfo" -LICENSE="MIT" -SLOT="0/$(ver_cut 1-2)" - -RDEPEND="dev-libs/rocr-runtime" -DEPEND="${RDEPEND}" - -src_configure() { - local mycmakeargs=( -DROCRTST_BLD_TYPE=Release ) - cmake_src_configure -}