* [gentoo-commits] repo/gentoo:master commit in: sys-fabric/perftest/
@ 2021-02-28 10:38 罗百科
0 siblings, 0 replies; 11+ messages in thread
From: 罗百科 @ 2021-02-28 10:38 UTC (permalink / raw
To: gentoo-commits
commit: 6d2ac7a3df4cd7466a2635eec63747c1aea8393e
Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 28 10:38:15 2021 +0000
Commit: 罗百科 <patrick <AT> gentoo <DOT> org>
CommitDate: Sun Feb 28 10:38:15 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d2ac7a3
sys-fabric/perftest: Bump
Package-Manager: Portage-3.0.16, Repoman-3.0.2
Signed-off-by: Patrick Lauer <patrick <AT> gentoo.org>
sys-fabric/perftest/Manifest | 1 +
sys-fabric/perftest/perftest-4.4.0.37.ebuild | 40 ++++++++++++++++++++++++++++
2 files changed, 41 insertions(+)
diff --git a/sys-fabric/perftest/Manifest b/sys-fabric/perftest/Manifest
index b3649eecb82..7b4155ac2ed 100644
--- a/sys-fabric/perftest/Manifest
+++ b/sys-fabric/perftest/Manifest
@@ -1 +1,2 @@
DIST OFED-3.12-rc1.tgz 22055476 BLAKE2B 49e6411721392f418369a292513709f396fbb0f17001687aa15b5c0acdc91013cc67354e5978df56452178af7fbbd338a7ff408592ff9126a3045b9bb27375fe SHA512 9f834d6982ab7e8ab47a8b5c958ab2e4c238ef983e47798e7f06655f69672ea1e996297939b381f26ed8c39552f6e62156173d5ddd2f0a7b6cad6aecdd973944
+DIST perftest-4.4.0.37.tar.gz 146362 BLAKE2B f84c3cd9e7d56bcffc700131e23bcff23e6515d0a198b4223d9784fad73601f493c9881a46fd94ca62dd9b7c76233fe5d47d8789775f77cf8c5008ee7341010a SHA512 3f1b29f1de4a9cea118d0d258cba007933e6530bbc50e1d0980a46429715b73230092240bbd436b7d0ae605fe7337c20bad27c0ff3d4ae08e60af8f8fff46893
diff --git a/sys-fabric/perftest/perftest-4.4.0.37.ebuild b/sys-fabric/perftest/perftest-4.4.0.37.ebuild
new file mode 100644
index 00000000000..598a4ce98a2
--- /dev/null
+++ b/sys-fabric/perftest/perftest-4.4.0.37.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit autotools
+
+DESCRIPTION="OpenIB uverbs micro-benchmarks"
+
+HOMEPAGE="https://github.com/linux-rdma/perftest/"
+LICENSE="|| ( GPL-2 BSD-2 )"
+
+MY_PV="$(ver_cut 1-2)"-"$(ver_cut 3-4)"
+
+SRC_URI="https://github.com/linux-rdma/perftest/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64 ~x86 ~amd64-linux"
+IUSE=""
+SLOT=0
+
+DEPEND="
+ sys-apps/pciutils
+ sys-cluster/rdma-core
+ "
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}"/"${PN}"-"${MY_PV}"
+
+src_prepare() {
+ default
+
+ eautoreconf
+}
+
+
+src_install() {
+ default
+
+ dodoc README runme
+ dobin ib_*
+}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fabric/perftest/
@ 2021-03-04 6:24 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2021-03-04 6:24 UTC (permalink / raw
To: gentoo-commits
commit: 170819268e46db80a969c83fa017009d6821c3a1
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 4 06:18:51 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 4 06:18:51 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17081926
sys-fabric/perftest: fix DoubleEmptyLine
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-fabric/perftest/perftest-4.4.0.37.ebuild | 18 +++++++-----------
1 file changed, 7 insertions(+), 11 deletions(-)
diff --git a/sys-fabric/perftest/perftest-4.4.0.37.ebuild b/sys-fabric/perftest/perftest-4.4.0.37.ebuild
index 598a4ce98a2..2b04e19d6f9 100644
--- a/sys-fabric/perftest/perftest-4.4.0.37.ebuild
+++ b/sys-fabric/perftest/perftest-4.4.0.37.ebuild
@@ -5,33 +5,29 @@ EAPI="7"
inherit autotools
-DESCRIPTION="OpenIB uverbs micro-benchmarks"
+MY_PV="$(ver_cut 1-2)-$(ver_cut 3-4)"
+DESCRIPTION="OpenIB uverbs micro-benchmarks"
HOMEPAGE="https://github.com/linux-rdma/perftest/"
-LICENSE="|| ( GPL-2 BSD-2 )"
-
-MY_PV="$(ver_cut 1-2)"-"$(ver_cut 3-4)"
-
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"
-IUSE=""
-SLOT=0
DEPEND="
sys-apps/pciutils
sys-cluster/rdma-core
- "
+"
RDEPEND="${DEPEND}"
-S="${WORKDIR}"/"${PN}"-"${MY_PV}"
-
src_prepare() {
default
eautoreconf
}
-
src_install() {
default
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fabric/perftest/
@ 2021-05-16 19:53 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2021-05-16 19:53 UTC (permalink / raw
To: gentoo-commits
commit: 5122522d09f6429c67b7cb2174f09738e6f46f70
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun May 16 19:53:16 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun May 16 19:53:16 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5122522d
sys-fabric/perftest: Stabilize 2.0 x86, #643122
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-fabric/perftest/perftest-2.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-fabric/perftest/perftest-2.0.ebuild b/sys-fabric/perftest/perftest-2.0.ebuild
index de51e5133e3..7ed0b078e65 100644
--- a/sys-fabric/perftest/perftest-2.0.ebuild
+++ b/sys-fabric/perftest/perftest-2.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
@@ -13,7 +13,7 @@ inherit openib
DESCRIPTION="OpenIB uverbs micro-benchmarks"
-KEYWORDS="amd64 ~x86 ~amd64-linux"
+KEYWORDS="amd64 x86 ~amd64-linux"
IUSE=""
DEPEND="
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fabric/perftest/
@ 2022-01-11 13:01 Jakov Smolić
0 siblings, 0 replies; 11+ messages in thread
From: Jakov Smolić @ 2022-01-11 13:01 UTC (permalink / raw
To: gentoo-commits
commit: 746e8f88fcbfd025f5b309d21ab17a01cfff74ef
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 11 13:01:41 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Jan 11 13:01:41 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=746e8f88
sys-fabric/perftest: Stabilize 4.4.0.37 x86, #831001
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
sys-fabric/perftest/perftest-4.4.0.37.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-fabric/perftest/perftest-4.4.0.37.ebuild b/sys-fabric/perftest/perftest-4.4.0.37.ebuild
index 2f97b0f362ea..8b5a88dceb74 100644
--- a/sys-fabric/perftest/perftest-4.4.0.37.ebuild
+++ b/sys-fabric/perftest/perftest-4.4.0.37.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${PN}-${MY_PV}"
LICENSE="|| ( GPL-2 BSD-2 )"
SLOT="0"
-KEYWORDS="amd64 ~x86 ~amd64-linux"
+KEYWORDS="amd64 x86 ~amd64-linux"
DEPEND="
sys-apps/pciutils
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fabric/perftest/
@ 2022-01-11 13:01 Jakov Smolić
0 siblings, 0 replies; 11+ messages in thread
From: Jakov Smolić @ 2022-01-11 13:01 UTC (permalink / raw
To: gentoo-commits
commit: 01429bdd306b0f98b7f0d7115acb0bbd3f039105
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 11 13:01:33 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Jan 11 13:01:33 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01429bdd
sys-fabric/perftest: Stabilize 4.4.0.37 amd64, #831001
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
sys-fabric/perftest/perftest-4.4.0.37.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-fabric/perftest/perftest-4.4.0.37.ebuild b/sys-fabric/perftest/perftest-4.4.0.37.ebuild
index 2b04e19d6f98..2f97b0f362ea 100644
--- a/sys-fabric/perftest/perftest-4.4.0.37.ebuild
+++ b/sys-fabric/perftest/perftest-4.4.0.37.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
@@ -14,7 +14,7 @@ S="${WORKDIR}/${PN}-${MY_PV}"
LICENSE="|| ( GPL-2 BSD-2 )"
SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux"
+KEYWORDS="amd64 ~x86 ~amd64-linux"
DEPEND="
sys-apps/pciutils
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fabric/perftest/
@ 2022-02-15 9:24 Jakov Smolić
0 siblings, 0 replies; 11+ messages in thread
From: Jakov Smolić @ 2022-02-15 9:24 UTC (permalink / raw
To: gentoo-commits
commit: 2284a34adc0a3b3c215f5966866ab0f89088e46f
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 15 09:07:03 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Feb 15 09:22:29 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2284a34a
sys-fabric/perftest: drop 2.0
Closes: https://bugs.gentoo.org/726018
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
sys-fabric/perftest/Manifest | 1 -
sys-fabric/perftest/perftest-2.0.ebuild | 29 -----------------------------
2 files changed, 30 deletions(-)
diff --git a/sys-fabric/perftest/Manifest b/sys-fabric/perftest/Manifest
index 7b4155ac2edb..4c9483092fca 100644
--- a/sys-fabric/perftest/Manifest
+++ b/sys-fabric/perftest/Manifest
@@ -1,2 +1 @@
-DIST OFED-3.12-rc1.tgz 22055476 BLAKE2B 49e6411721392f418369a292513709f396fbb0f17001687aa15b5c0acdc91013cc67354e5978df56452178af7fbbd338a7ff408592ff9126a3045b9bb27375fe SHA512 9f834d6982ab7e8ab47a8b5c958ab2e4c238ef983e47798e7f06655f69672ea1e996297939b381f26ed8c39552f6e62156173d5ddd2f0a7b6cad6aecdd973944
DIST perftest-4.4.0.37.tar.gz 146362 BLAKE2B f84c3cd9e7d56bcffc700131e23bcff23e6515d0a198b4223d9784fad73601f493c9881a46fd94ca62dd9b7c76233fe5d47d8789775f77cf8c5008ee7341010a SHA512 3f1b29f1de4a9cea118d0d258cba007933e6530bbc50e1d0980a46429715b73230092240bbd436b7d0ae605fe7337c20bad27c0ff3d4ae08e60af8f8fff46893
diff --git a/sys-fabric/perftest/perftest-2.0.ebuild b/sys-fabric/perftest/perftest-2.0.ebuild
deleted file mode 100644
index 7ed0b078e654..000000000000
--- a/sys-fabric/perftest/perftest-2.0.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-OFED_VER="3.12"
-OFED_RC="1"
-OFED_RC_VER="1"
-OFED_SUFFIX="0.80.g54c73c6"
-OFED_SNAPSHOT="1"
-
-inherit openib
-
-DESCRIPTION="OpenIB uverbs micro-benchmarks"
-
-KEYWORDS="amd64 x86 ~amd64-linux"
-IUSE=""
-
-DEPEND="
- sys-fabric/libibverbs:${SLOT}
- sys-fabric/libibumad:${SLOT}
- sys-fabric/librdmacm:${SLOT}"
-RDEPEND="${DEPEND}"
-block_other_ofed_versions
-
-src_install() {
- dodoc README runme
- dobin ib_*
-}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fabric/perftest/
@ 2022-10-12 22:39 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2022-10-12 22:39 UTC (permalink / raw
To: gentoo-commits
commit: b20defda52ac7236454c38b0bce1e9603cab6eae
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 12 22:39:33 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> 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 <sam <AT> 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_*
+}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fabric/perftest/
@ 2022-10-12 22:39 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2022-10-12 22:39 UTC (permalink / raw
To: gentoo-commits
commit: fedc8c47f465f04824fc681fd13b1ad1f4067e32
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 12 22:34:20 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Oct 12 22:34:37 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fedc8c47
sys-fabric/perftest: depend on >=sys-cluster/rdma-core-32.0
Tries to use private symbols.
Closes: https://bugs.gentoo.org/774246
Signed-off-by: Sam James <sam <AT> gentoo.org>
.../perftest/{perftest-4.4.0.37.ebuild => perftest-4.4.0.37-r1.ebuild} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-fabric/perftest/perftest-4.4.0.37.ebuild b/sys-fabric/perftest/perftest-4.4.0.37-r1.ebuild
similarity index 95%
rename from sys-fabric/perftest/perftest-4.4.0.37.ebuild
rename to sys-fabric/perftest/perftest-4.4.0.37-r1.ebuild
index 8b5a88dceb74..bfd7e8603e50 100644
--- a/sys-fabric/perftest/perftest-4.4.0.37.ebuild
+++ b/sys-fabric/perftest/perftest-4.4.0.37-r1.ebuild
@@ -18,7 +18,7 @@ KEYWORDS="amd64 x86 ~amd64-linux"
DEPEND="
sys-apps/pciutils
- sys-cluster/rdma-core
+ >=sys-cluster/rdma-core-32.0
"
RDEPEND="${DEPEND}"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fabric/perftest/
@ 2023-07-04 22:13 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2023-07-04 22:13 UTC (permalink / raw
To: gentoo-commits
commit: 1bd1e1e7979b07d76a150e7364c5320e31a7b349
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 4 22:13:30 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jul 4 22:13:30 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bd1e1e7
sys-fabric/perftest: Stabilize 4.5.0.17 x86, #909655
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-fabric/perftest/perftest-4.5.0.17.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-fabric/perftest/perftest-4.5.0.17.ebuild b/sys-fabric/perftest/perftest-4.5.0.17.ebuild
index 2161b7f513fa..697c21e92dd8 100644
--- a/sys-fabric/perftest/perftest-4.5.0.17.ebuild
+++ b/sys-fabric/perftest/perftest-4.5.0.17.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -13,7 +13,7 @@ S="${WORKDIR}/${PN}-${MY_PV}"
LICENSE="|| ( GPL-2 BSD-2 )"
SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux"
+KEYWORDS="~amd64 x86 ~amd64-linux"
DEPEND="
sys-apps/pciutils
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fabric/perftest/
@ 2023-07-04 22:14 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2023-07-04 22:14 UTC (permalink / raw
To: gentoo-commits
commit: dad16beb9f07306f47798e00d7f3afc838bbd38c
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 4 22:14:04 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jul 4 22:14:04 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dad16beb
sys-fabric/perftest: add github upstream metadata
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-fabric/perftest/metadata.xml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/sys-fabric/perftest/metadata.xml b/sys-fabric/perftest/metadata.xml
index f5fb83321f9e..a92d1df3cf3d 100644
--- a/sys-fabric/perftest/metadata.xml
+++ b/sys-fabric/perftest/metadata.xml
@@ -5,4 +5,7 @@
<email>cluster@gentoo.org</email>
<name>Gentoo Cluster Project</name>
</maintainer>
+ <upstream>
+ <remote-id type="github">linux-rdma/perftest</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fabric/perftest/
@ 2023-07-04 22:23 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2023-07-04 22:23 UTC (permalink / raw
To: gentoo-commits
commit: 9500a7ca14982a369f15d08d0d7c1b09509cbc96
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 4 22:23:13 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jul 4 22:23:13 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9500a7ca
sys-fabric/perftest: Stabilize 4.5.0.17 amd64, #909655
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-fabric/perftest/perftest-4.5.0.17.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-fabric/perftest/perftest-4.5.0.17.ebuild b/sys-fabric/perftest/perftest-4.5.0.17.ebuild
index 697c21e92dd8..c4ccd55cbc46 100644
--- a/sys-fabric/perftest/perftest-4.5.0.17.ebuild
+++ b/sys-fabric/perftest/perftest-4.5.0.17.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${PN}-${MY_PV}"
LICENSE="|| ( GPL-2 BSD-2 )"
SLOT="0"
-KEYWORDS="~amd64 x86 ~amd64-linux"
+KEYWORDS="amd64 x86 ~amd64-linux"
DEPEND="
sys-apps/pciutils
^ permalink raw reply related [flat|nested] 11+ messages in thread
end of thread, other threads:[~2023-07-04 22:23 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-15 9:24 [gentoo-commits] repo/gentoo:master commit in: sys-fabric/perftest/ Jakov Smolić
-- strict thread matches above, loose matches on Subject: below --
2023-07-04 22:23 Sam James
2023-07-04 22:14 Sam James
2023-07-04 22:13 Sam James
2022-10-12 22:39 Sam James
2022-10-12 22:39 Sam James
2022-01-11 13:01 Jakov Smolić
2022-01-11 13:01 Jakov Smolić
2021-05-16 19:53 Sam James
2021-03-04 6:24 Sam James
2021-02-28 10:38 罗百科
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox