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 51FED158021 for ; Wed, 12 Oct 2022 22:39:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2F53DE096D; Wed, 12 Oct 2022 22:39:53 +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 16204E096D for ; Wed, 12 Oct 2022 22:39:53 +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 2CC05341297 for ; Wed, 12 Oct 2022 22:39:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 621B4617 for ; Wed, 12 Oct 2022 22:39:50 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1665614373.b20defda52ac7236454c38b0bce1e9603cab6eae.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fabric/perftest/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fabric/perftest/Manifest sys-fabric/perftest/perftest-4.5.0.17.ebuild X-VCS-Directories: sys-fabric/perftest/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b20defda52ac7236454c38b0bce1e9603cab6eae X-VCS-Branch: master Date: Wed, 12 Oct 2022 22:39:50 +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: f1315a45-67c4-4e71-bf66-a2b3e104b4e3 X-Archives-Hash: 371c043c699b574b2d3c8ee5075fce72 commit: b20defda52ac7236454c38b0bce1e9603cab6eae Author: Sam James gentoo org> AuthorDate: Wed Oct 12 22:39:33 2022 +0000 Commit: Sam James gentoo org> CommitDate: Wed Oct 12 22:39:33 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b20defda sys-fabric/perftest: add 4.5.0.17 Signed-off-by: Sam James gentoo.org> sys-fabric/perftest/Manifest | 1 + sys-fabric/perftest/perftest-4.5.0.17.ebuild | 35 ++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/sys-fabric/perftest/Manifest b/sys-fabric/perftest/Manifest index 4c9483092fca..f9912897fe44 100644 --- a/sys-fabric/perftest/Manifest +++ b/sys-fabric/perftest/Manifest @@ -1 +1,2 @@ DIST perftest-4.4.0.37.tar.gz 146362 BLAKE2B f84c3cd9e7d56bcffc700131e23bcff23e6515d0a198b4223d9784fad73601f493c9881a46fd94ca62dd9b7c76233fe5d47d8789775f77cf8c5008ee7341010a SHA512 3f1b29f1de4a9cea118d0d258cba007933e6530bbc50e1d0980a46429715b73230092240bbd436b7d0ae605fe7337c20bad27c0ff3d4ae08e60af8f8fff46893 +DIST perftest-4.5.0.17.tar.gz 139410 BLAKE2B 14dfe1435c3c99d7235a2284ee4ab3f93a346cb7aae47f129a4e7a3211512afbf66b6e9388b16c2956acfe143408b4caf690ad58ec456e3ca3cb8103d3a0a87f SHA512 4a0584fc0d5143f6c5dc9eaab29ece70b56f65b06de0a77b9459cf5b8b337d1286eda3bfb5f69f81118ca82de40692dd0f5d0f359fc58bf4ed10a3e469b622bc diff --git a/sys-fabric/perftest/perftest-4.5.0.17.ebuild b/sys-fabric/perftest/perftest-4.5.0.17.ebuild new file mode 100644 index 000000000000..2161b7f513fa --- /dev/null +++ b/sys-fabric/perftest/perftest-4.5.0.17.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +MY_PV="$(ver_cut 1-2)-$(ver_cut 3-4)" +DESCRIPTION="OpenIB uverbs micro-benchmarks" +HOMEPAGE="https://github.com/linux-rdma/perftest/" +SRC_URI="https://github.com/linux-rdma/perftest/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}-${MY_PV}" + +LICENSE="|| ( GPL-2 BSD-2 )" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux" + +DEPEND=" + sys-apps/pciutils + >=sys-cluster/rdma-core-32.0 +" +RDEPEND="${DEPEND}" + +src_prepare() { + default + + eautoreconf +} + +src_install() { + default + + dodoc README runme + dobin ib_* +}