diff options
author | Kurt Kanzenbach <kurt@kmk-computers.de> | 2019-04-26 23:23:08 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-01-23 11:53:19 +0200 |
commit | 0bbc3dee5539cf046692f34d49668de67f65f67a (patch) | |
tree | a0b2f36d2d73cbdd63458c50c59bbb2be03c8a1e /dev-util | |
parent | dev-python/pytest-qt: pytest plugin for Qt (PyQt4, PyQt5 and PySide) (diff) | |
download | gentoo-0bbc3dee5539cf046692f34d49668de67f65f67a.tar.gz gentoo-0bbc3dee5539cf046692f34d49668de67f65f67a.tar.bz2 gentoo-0bbc3dee5539cf046692f34d49668de67f65f67a.zip |
dev-util/rt-tests: A collection of latency testing tools (new package)
rt-tests contains a set of programs that test and measure various components of
real-time kernel behavior, such as timer latency, signal latency and the
functioning of priority-inheritance mutexes. Additionally it contains hackbench,
a program to generate work for the scheduler.
Closes: https://bugs.gentoo.org/705150
Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Kurt Kanzenbach <kurt@kmk-computers.de>
Closes: https://github.com/gentoo/gentoo/pull/14303
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/rt-tests/Manifest | 1 | ||||
-rw-r--r-- | dev-util/rt-tests/files/rt-tests-1.6-man-compression.patch | 61 | ||||
-rw-r--r-- | dev-util/rt-tests/metadata.xml | 21 | ||||
-rw-r--r-- | dev-util/rt-tests/rt-tests-1.6.ebuild | 34 |
4 files changed, 117 insertions, 0 deletions
diff --git a/dev-util/rt-tests/Manifest b/dev-util/rt-tests/Manifest new file mode 100644 index 000000000000..e0040c68a716 --- /dev/null +++ b/dev-util/rt-tests/Manifest @@ -0,0 +1 @@ +DIST rt-tests-1.6.tar.xz 104864 BLAKE2B 36ada7cbe6deefae2eef80fa167892d41a9c56a6f54a23c8ace5ab97a32e23a88a488bc95f92456a7eea48c49567c4755adc43b3aa68e20c885ca1c354825a7d SHA512 1cbb9b1bc7f6ac335be269e5937209598bfb8c0a29750484e7bba8b87b416c04cd38c8d6d48dc5ed1978c1797dee4cecff0218124bd6d7f23b43a13dc7a75a29 diff --git a/dev-util/rt-tests/files/rt-tests-1.6-man-compression.patch b/dev-util/rt-tests/files/rt-tests-1.6-man-compression.patch new file mode 100644 index 000000000000..e44a9525060d --- /dev/null +++ b/dev-util/rt-tests/files/rt-tests-1.6-man-compression.patch @@ -0,0 +1,61 @@ +From 30e9529a140fb2a5ef96e510743e201c62ded022 Mon Sep 17 00:00:00 2001 +From: Kurt Kanzenbach <kurt@kmk-computers.de> +Date: Wed, 22 Jan 2020 18:42:25 +0100 +Subject: [PATCH] make: Don't compress man pages by default + +Most package systems do the compression on their own. + +Signed-off-by: Kurt Kanzenbach <kurt@kmk-computers.de> +--- + Makefile | 28 ++++++++++++++-------------- + 1 file changed, 14 insertions(+), 14 deletions(-) + +diff --git a/Makefile b/Makefile +index 552b3fe885cc..244d26eed7cc 100644 +--- a/Makefile ++++ b/Makefile +@@ -180,19 +180,19 @@ install: all install_hwlatdetect + cp $(TARGETS) "$(DESTDIR)$(bindir)" + install src/queuelat/get_cpuinfo_mhz.sh "$(DESTDIR)$(bindir)" + install src/queuelat/determine_maximum_mpps.sh "${DESTDIR}${bindir}" +- gzip -c src/cyclictest/cyclictest.8 >"$(DESTDIR)$(mandir)/man8/cyclictest.8.gz" +- gzip -c src/pi_tests/pi_stress.8 >"$(DESTDIR)$(mandir)/man8/pi_stress.8.gz" +- gzip -c src/ptsematest/ptsematest.8 >"$(DESTDIR)$(mandir)/man8/ptsematest.8.gz" +- gzip -c src/rt-migrate-test/rt-migrate-test.8 >"$(DESTDIR)$(mandir)/man8/rt-migrate-test.8.gz" +- gzip -c src/sigwaittest/sigwaittest.8 >"$(DESTDIR)$(mandir)/man8/sigwaittest.8.gz" +- gzip -c src/svsematest/svsematest.8 >"$(DESTDIR)$(mandir)/man8/svsematest.8.gz" +- gzip -c src/pmqtest/pmqtest.8 >"$(DESTDIR)$(mandir)/man8/pmqtest.8.gz" +- gzip -c src/hackbench/hackbench.8 >"$(DESTDIR)$(mandir)/man8/hackbench.8.gz" +- gzip -c src/signaltest/signaltest.8 >"$(DESTDIR)$(mandir)/man8/signaltest.8.gz" +- gzip -c src/pi_tests/pip_stress.8 >"$(DESTDIR)$(mandir)/man8/pip_stress.8.gz" +- gzip -c src/queuelat/queuelat.8 >"$(DESTDIR)$(mandir)/man8/queuelat.8.gz" +- gzip -c src/sched_deadline/deadline_test.8 >"$(DESTDIR)$(mandir)/man8/deadline_test.8.gz" +- gzip -c src/ssdd/ssdd.8 >"$(DESTDIR)$(mandir)/man8/ssdd.8.gz" ++ install -D -m 644 src/cyclictest/cyclictest.8 "$(DESTDIR)$(mandir)/man8/cyclictest.8" ++ install -D -m 644 src/pi_tests/pi_stress.8 "$(DESTDIR)$(mandir)/man8/pi_stress.8" ++ install -D -m 644 src/ptsematest/ptsematest.8 "$(DESTDIR)$(mandir)/man8/ptsematest.8" ++ install -D -m 644 src/rt-migrate-test/rt-migrate-test.8 "$(DESTDIR)$(mandir)/man8/rt-migrate-test.8" ++ install -D -m 644 src/sigwaittest/sigwaittest.8 "$(DESTDIR)$(mandir)/man8/sigwaittest.8" ++ install -D -m 644 src/svsematest/svsematest.8 "$(DESTDIR)$(mandir)/man8/svsematest.8" ++ install -D -m 644 src/pmqtest/pmqtest.8 "$(DESTDIR)$(mandir)/man8/pmqtest.8" ++ install -D -m 644 src/hackbench/hackbench.8 "$(DESTDIR)$(mandir)/man8/hackbench.8" ++ install -D -m 644 src/signaltest/signaltest.8 "$(DESTDIR)$(mandir)/man8/signaltest.8" ++ install -D -m 644 src/pi_tests/pip_stress.8 "$(DESTDIR)$(mandir)/man8/pip_stress.8" ++ install -D -m 644 src/queuelat/queuelat.8 "$(DESTDIR)$(mandir)/man8/queuelat.8" ++ install -D -m 644 src/sched_deadline/deadline_test.8 "$(DESTDIR)$(mandir)/man8/deadline_test.8" ++ install -D -m 644 src/ssdd/ssdd.8 "$(DESTDIR)$(mandir)/man8/ssdd.8" + + .PHONY: install_hwlatdetect + install_hwlatdetect: hwlatdetect +@@ -201,7 +201,7 @@ install_hwlatdetect: hwlatdetect + install -D -m 755 src/hwlatdetect/hwlatdetect.py $(DESTDIR)$(PYLIB)/hwlatdetect.py ; \ + rm -f "$(DESTDIR)$(bindir)/hwlatdetect" ; \ + ln -s $(PYLIB)/hwlatdetect.py "$(DESTDIR)$(bindir)/hwlatdetect" ; \ +- gzip -c src/hwlatdetect/hwlatdetect.8 >"$(DESTDIR)$(mandir)/man8/hwlatdetect.8.gz" ; \ ++ install -D -m 644 src/hwlatdetect/hwlatdetect.8 "$(DESTDIR)$(mandir)/man8/hwlatdetect.8" ; \ + fi + + .PHONY: tarball +-- +2.24.1 + diff --git a/dev-util/rt-tests/metadata.xml b/dev-util/rt-tests/metadata.xml new file mode 100644 index 000000000000..23b5a048fe99 --- /dev/null +++ b/dev-util/rt-tests/metadata.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>kurt@kmk-computers.de</email> + <name>Kurt Kanzenbach</name> + </maintainer> + <maintainer type="project"> + <email>proxy-maint@gentoo.org</email> + <name>Proxy Maintainers</name> + </maintainer> + <longdescription> + rt-tests contains a set of programs that test and measure various components + of real-time kernel behavior, such as timer latency, signal latency and the + functioning of priority-inheritance mutexes. Additionally it contains + hackbench, a program to generate work for the scheduler. + </longdescription> + <use> + <flag name="numa">Make test programs NUMA aware</flag> + </use> +</pkgmetadata> diff --git a/dev-util/rt-tests/rt-tests-1.6.ebuild b/dev-util/rt-tests/rt-tests-1.6.ebuild new file mode 100644 index 000000000000..debc1623e79f --- /dev/null +++ b/dev-util/rt-tests/rt-tests-1.6.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=(python3_{6,7,8}) + +inherit python-single-r1 + +DESCRIPTION="A collection of latency testing tools for the linux(-rt) kernel" +HOMEPAGE="https://git.kernel.org/pub/scm/utils/rt-tests/rt-tests.git/about/" +SRC_URI="https://kernel.org/pub/linux/utils/rt-tests/${P}.tar.xz" + +LICENSE="GPL-2 GPL-2+ LGPL-2.1+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="numa" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +DEPEND="${PYTHON_DEPS} + numa? ( sys-process/numactl )" +RDEPEND="${DEPEND}" + +PATCHES=( "${FILESDIR}/${P}-man-compression.patch" ) + +src_compile() { + emake $(usex numa 'NUMA=1' 'NUMA=0') all +} + +src_install() { + emake prefix=/usr DESTDIR="${D}" install + python_fix_shebang "${ED}" + python_optimize +} |