summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Tsoy <alexander@tsoy.me>2022-04-17 02:45:27 +0300
committerJoonas Niilola <juippis@gentoo.org>2022-04-23 08:31:31 +0300
commit25fdcb25799aa7272fb77676906f0d702c25bd8e (patch)
treed8dfa3542b887c59e9b62252ffadb5803ee0d986 /sys-process
parentsys-process/rtirq: Version bump to 20210329 (diff)
downloadgentoo-25fdcb25799aa7272fb77676906f0d702c25bd8e.tar.gz
gentoo-25fdcb25799aa7272fb77676906f0d702c25bd8e.tar.bz2
gentoo-25fdcb25799aa7272fb77676906f0d702c25bd8e.zip
sys-process/rtirq: Remove 20180209
Signed-off-by: Alexander Tsoy <alexander@tsoy.me> Closes: https://github.com/gentoo/gentoo/pull/25053 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'sys-process')
-rw-r--r--sys-process/rtirq/Manifest1
-rw-r--r--sys-process/rtirq/files/rtirq28
-rw-r--r--sys-process/rtirq/rtirq-20180209.ebuild38
3 files changed, 0 insertions, 67 deletions
diff --git a/sys-process/rtirq/Manifest b/sys-process/rtirq/Manifest
index 09df64b10c4a..63a37811d892 100644
--- a/sys-process/rtirq/Manifest
+++ b/sys-process/rtirq/Manifest
@@ -1,3 +1,2 @@
-DIST rtirq-20180209.tar.gz 12290 BLAKE2B 432bf6c931b753d4d9a5d7c50a35b0fb9b2161d09c9f762b97a5aae88152de1f3d14a2a4ccc46d8607d7379e4a7a659d603cc09ee20017923b176359eb4b9133 SHA512 9de924e627b91d6df162b6c8c0c3421fbab11f08162abe98b0fac8742ea924a7e0a18aab23d828e19fe81dfdb70f2f6814c7195acbcbc93af9a339dc549190b2
DIST rtirq-20191121.tar.gz 12755 BLAKE2B 040e1b39b83dc27e542093a12830fa51c9786c2747962740c31e684235acab33275a40761fd87cd1307284c2b8e49362d4acb216000338bc0744dd0ca6b0144c SHA512 bb1ae0099e37220b13f91303e56e8ae7892964638c1000fd66b6ceb23925c8aa2ac0c629bbb799a59c1a8adb035c34c4b0bee31afe05fcc9f80cd94d5a84ddc1
DIST rtirq-20210329.tar.gz 15360 BLAKE2B 278868817b349d0fd8bc70f0fb0374016d9117b593ed2fe710300fe194e7f8e640f4071f30e73688cca11d6da79fd93624a5e5e5246bfc2f9cd367397c00cadd SHA512 e08ee7768c93dd4e7244b61629272c4a4482d63b1fe37b7972a27703cd0a55cc12449589a781b33e9c92f5dd664c1a4ceba65caadb09c676deea86c161cc3d37
diff --git a/sys-process/rtirq/files/rtirq b/sys-process/rtirq/files/rtirq
deleted file mode 100644
index 988337fbf1eb..000000000000
--- a/sys-process/rtirq/files/rtirq
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License, v2 or later
-
-command="/usr/sbin/rtirq.sh"
-
-extra_commands="status"
-
-depend() {
- need localmount
- after alsasound logger
-}
-
-start() {
- ebegin "Starting rtirq"
- ${command} start
- eend $?
-}
-
-stop() {
- ebegin "Stopping rtirq"
- ${command} reset
- eend $?
-}
-
-status() {
- ${command} status
-}
diff --git a/sys-process/rtirq/rtirq-20180209.ebuild b/sys-process/rtirq/rtirq-20180209.ebuild
deleted file mode 100644
index f51c09b09172..000000000000
--- a/sys-process/rtirq/rtirq-20180209.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit linux-info systemd
-
-DESCRIPTION="Modify realtime scheduling policy and priority of IRQ handlers"
-HOMEPAGE="https://www.rncbc.org/archive/#rtirq"
-SRC_URI="https://www.rncbc.org/archive/old/${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-src_prepare() {
- get_version
-
- # Correct config file path.
- sed -i -e "s:^\(RTIRQ_CONFIG\=\)\(.*\):\1/etc/conf.d/rtirq:" ${PN}.sh || die
- sed -i -e "s:/etc/sysconfig/rtirq:/etc/conf.d/rtirq:" ${PN}.conf || die
-
- default
-}
-
-src_install() {
- dosbin rtirq.sh
- doinitd "${FILESDIR}"/rtirq
- newconfd rtirq.conf rtirq
- systemd_dounit rtirq.service
-}
-
-pkg_postinst() {
- if [[ ${KV_LOCAL} != *rt* ]] ; then
- elog "To use rtirq you need a realtime kernel."
- elog "Realtime kernel sources are supplied in sys-kernel/rt-sources."
- fi
-}