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 07B45138335 for ; Fri, 4 Oct 2019 21:10:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0AF73E0870; Fri, 4 Oct 2019 21:10:02 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 E5532E0870 for ; Fri, 4 Oct 2019 21:10:01 +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 50DB734B933 for ; Fri, 4 Oct 2019 21:10:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B4B75803 for ; Fri, 4 Oct 2019 21:09:57 +0000 (UTC) From: "Craig Andrews" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Craig Andrews" Message-ID: <1570223382.36e0684cff6a1b71ff45445fca06ac20a22d249f.candrews@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/roct-thunk-interface/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/roct-thunk-interface/roct-thunk-interface-2.9.0.ebuild X-VCS-Directories: dev-libs/roct-thunk-interface/ X-VCS-Committer: candrews X-VCS-Committer-Name: Craig Andrews X-VCS-Revision: 36e0684cff6a1b71ff45445fca06ac20a22d249f X-VCS-Branch: master Date: Fri, 4 Oct 2019 21:09:57 +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: 830cec0b-0096-4485-bcbc-adec43bed14b X-Archives-Hash: d924de6b25aad4fbd4393b7f33b403d2 commit: 36e0684cff6a1b71ff45445fca06ac20a22d249f Author: Craig Andrews gentoo org> AuthorDate: Fri Oct 4 21:09:42 2019 +0000 Commit: Craig Andrews gentoo org> CommitDate: Fri Oct 4 21:09:42 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36e0684c dev-libs/roct-thunk-interface: Clean up old version Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Craig Andrews gentoo.org> .../roct-thunk-interface-2.9.0.ebuild | 43 ---------------------- 1 file changed, 43 deletions(-) diff --git a/dev-libs/roct-thunk-interface/roct-thunk-interface-2.9.0.ebuild b/dev-libs/roct-thunk-interface/roct-thunk-interface-2.9.0.ebuild deleted file mode 100644 index 759da3dcd08..00000000000 --- a/dev-libs/roct-thunk-interface/roct-thunk-interface-2.9.0.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake-utils linux-info - -if [[ ${PV} == *9999 ]] ; then - EGIT_REPO_URI="https://github.com/RadeonOpenCompute/ROCT-Thunk-Interface/" - inherit git-r3 -else - SRC_URI="https://github.com/RadeonOpenCompute/ROCT-Thunk-Interface/archive/roc-${PV}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/ROCT-Thunk-Interface-roc-${PV}" - KEYWORDS="~amd64" -fi - -DESCRIPTION="Radeon Open Compute Thunk Interface" -HOMEPAGE="https://github.com/RadeonOpenCompute/ROCT-Thunk-Interface" -CONFIG_CHECK="~NUMA ~HSA_AMD ~HMM_MIRROR ~ZONE_DEVICE" -LICENSE="MIT" -SLOT="0/$(ver_cut 1-2)" - -RDEPEND="sys-process/numactl - sys-apps/pciutils" -DEPEND="${RDEPEND}" - -src_prepare() { - sed -e "s:get_version ( \"1.0.0\" ):get_version ( \"${PV}\" ):" -i CMakeLists.txt || die - cmake-utils_src_prepare -} -src_configure() { - local mycmakeargs=( - -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr/" - -DCPACK_PACKAGING_INSTALL_PREFIX="${EPREFIX}/usr/" - ) - cmake-utils_src_configure -} -src_compile() { - cmake-utils_src_compile build-dev -} -src_install() { - cmake-utils_src_install install-dev -}