public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Craig Andrews" <candrews@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/roct-thunk-interface/
Date: Sat,  5 Dec 2020 19:14:09 +0000 (UTC)	[thread overview]
Message-ID: <1607195642.2c1697785a004d48df77b069801608a9f0b418ae.candrews@gentoo> (raw)

commit:     2c1697785a004d48df77b069801608a9f0b418ae
Author:     Wilfried Holzke <gentoo <AT> holzke <DOT> net>
AuthorDate: Sat Dec  5 19:06:11 2020 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Sat Dec  5 19:14:02 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c169778

dev-libs/roct-thunk-interface: Version bump to 3.10.0

Signed-off-by: Wilfried Holzke <gentoo <AT> holzke.net>
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Closes: https://github.com/gentoo/gentoo/pull/18519
Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>

 dev-libs/roct-thunk-interface/Manifest             |  1 +
 .../roct-thunk-interface-3.10.0.ebuild             | 35 ++++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/dev-libs/roct-thunk-interface/Manifest b/dev-libs/roct-thunk-interface/Manifest
index a9454a20d23..676a4a452ee 100644
--- a/dev-libs/roct-thunk-interface/Manifest
+++ b/dev-libs/roct-thunk-interface/Manifest
@@ -1,3 +1,4 @@
+DIST roct-thunk-interface-3.10.0.tar.gz 2694321 BLAKE2B c743e2df8133a382f62f0cac3b73eb1a1ce74efcf5970a7b07b7ec0f16a6c7d39a44112d62e32bd9f5d7c2b984e3aea31d7d8a8b1658f9608b6a3c283e12ad24 SHA512 c5a447be0b4a3df886446c2066e193c4e0064b2868103e248a6adba8e7f12aed49112647747ad16d3b115f9f74946c317360396e7c5f3e0cac43b349fcfd33d4
 DIST roct-thunk-interface-3.7.0.tar.gz 2692297 BLAKE2B 5a060becb1b35e4eb499de5c177b5747789f02036d6e1bbf241a4054430e819bab4c188aa83f1cec0d35c80a3c0af47298fdd1c34d272f693dac9da191d8d111 SHA512 307e88808d3c852837f81c8745181edaa46e0f205fa36b9af531661c9a6a2dee5f360eb14e9f607376f27969e438f075dd44336606803ae2f7ce597f7fe46135
 DIST roct-thunk-interface-3.8.0.tar.gz 2692624 BLAKE2B bb0d288da08081de63f3848987eb86a319c977250052b8bcccdd221b31167d2b344ecd17163aafe1fa5e7a4372248510af77c4ed992c39e71de05452b0b83a8c SHA512 b60461869f916791b702fb7a551978dd741873925154cb5980612f71bb19000f73fda8c1becb5e3482be872790d6cc8c34dfe3484349796c9fab2fedafef525b
 DIST roct-thunk-interface-3.9.0.tar.gz 2692605 BLAKE2B e256217aa8410eb3a1cbb430509c7426e2b00f4ad0a0a3d14879fc116a112e9d10e50b0e2d336f04bc52d98f0d98afda5195565995c6d8b64101132e9c71746c SHA512 eb0d3abaae1aa92f60eeb58ef07bf6dd0f954488e2e05bcf30cb75aa772430c49a3103b0498208c7f8f8fd35fb5d91f0f8c056064ce595263e1737e8f72ba462

diff --git a/dev-libs/roct-thunk-interface/roct-thunk-interface-3.10.0.ebuild b/dev-libs/roct-thunk-interface/roct-thunk-interface-3.10.0.ebuild
new file mode 100644
index 00000000000..ee5be506ed8
--- /dev/null
+++ b/dev-libs/roct-thunk-interface/roct-thunk-interface-3.10.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake 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/rocm-${PV}.tar.gz -> ${P}.tar.gz"
+	S="${WORKDIR}/ROCT-Thunk-Interface-rocm-${PV}"
+	KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="Radeon Open Compute Thunk Interface"
+HOMEPAGE="https://github.com/RadeonOpenCompute/ROCT-Thunk-Interface"
+CONFIG_CHECK="~HSA_AMD ~HMM_MIRROR ~ZONE_DEVICE ~DRM_AMDGPU ~DRM_AMDGPU_USERPTR"
+LICENSE="MIT"
+SLOT="0/$(ver_cut 1-2)"
+
+RDEPEND="sys-process/numactl"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+	sed -e "s:get_version ( \"1.0.0\" ):get_version ( \"${PV}\" ):" -i CMakeLists.txt || die
+	cmake_src_prepare
+}
+src_configure() {
+	local mycmakeargs=(
+		-DCPACK_PACKAGING_INSTALL_PREFIX="${EPREFIX}/usr"
+	)
+	cmake_src_configure
+}


             reply	other threads:[~2020-12-05 19:14 UTC|newest]

Thread overview: 44+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-05 19:14 Craig Andrews [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-10-11 18:14 [gentoo-commits] repo/gentoo:master commit in: dev-libs/roct-thunk-interface/ Andreas Sturmlechner
2025-06-15 16:12 Sam James
2025-02-13  8:38 Sam James
2024-12-01  7:57 Patrick Lauer
2024-07-28  8:00 Patrick Lauer
2024-03-12  2:25 Sam James
2023-10-19 10:38 罗百科
2023-09-03  6:31 罗百科
2023-09-03  6:31 罗百科
2023-02-22 16:16 Sam James
2023-02-01  9:53 Andreas Sturmlechner
2022-12-20  9:26 罗百科
2022-12-19 14:55 Andreas Sturmlechner
2022-08-06 14:23 Benda XU
2022-03-22  4:09 Benda XU
2022-02-11 16:12 Joonas Niilola
2021-08-19 19:46 Craig Andrews
2021-05-18 15:07 Craig Andrews
2020-12-21 12:55 Craig Andrews
2020-10-27 14:07 Craig Andrews
2020-09-18 13:23 Craig Andrews
2020-08-25 21:08 Craig Andrews
2020-08-14 13:56 Craig Andrews
2020-07-08 13:22 Craig Andrews
2020-05-26 17:04 Craig Andrews
2020-03-31 16:36 Craig Andrews
2020-02-25 19:30 Craig Andrews
2020-01-07 20:04 Craig Andrews
2020-01-02 12:59 Craig Andrews
2020-01-02 12:48 Craig Andrews
2020-01-02 12:48 Craig Andrews
2019-12-17 18:46 Craig Andrews
2019-11-24 17:10 Craig Andrews
2019-10-04 21:09 Craig Andrews
2019-10-04 21:09 Craig Andrews
2019-10-04 14:36 Craig Andrews
2019-10-01 18:00 Craig Andrews
2019-09-30 15:35 Craig Andrews
2019-09-30 15:23 Craig Andrews
2019-08-14 20:54 Craig Andrews
2019-08-10 22:50 Craig Andrews
2019-08-07 17:38 Craig Andrews
2019-01-15 19:00 Craig Andrews

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=1607195642.2c1697785a004d48df77b069801608a9f0b418ae.candrews@gentoo \
    --to=candrews@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