Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/rtirq/
Date: Wed, 11 Sep 2019 16:21:40
Message-Id: 1568218859.5ee9f144844414a4e9ec9af3eeac4b58f9894a81.mgorny@gentoo
1 commit: 5ee9f144844414a4e9ec9af3eeac4b58f9894a81
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 11 11:27:16 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 11 16:20:59 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ee9f144
7
8 sys-process/rtirq: Drop old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 sys-process/rtirq/Manifest | 1 -
13 sys-process/rtirq/rtirq-20150216.ebuild | 41 ---------------------------------
14 2 files changed, 42 deletions(-)
15
16 diff --git a/sys-process/rtirq/Manifest b/sys-process/rtirq/Manifest
17 index 4c95062e111..9f56d4da7c5 100644
18 --- a/sys-process/rtirq/Manifest
19 +++ b/sys-process/rtirq/Manifest
20 @@ -1,2 +1 @@
21 -DIST rtirq-20150216.tar.gz 12249 BLAKE2B b138c3b274e7d0875fc18d21ff77291975f86d841cfd06d704b428bcf7e106fb06b4738a4d8dd88ca2e58fa719b8232ef8a61df0bd088c9a368497e27095bd39 SHA512 4cb4e3a8e314cec238c2a21c975bec258f229b660e0994893b73aa0b16f6041179ff4e220532fde237d70e15fd5420e22ee5dbf84168148060e760d76617b59c
22 DIST rtirq-20180209.tar.gz 12290 BLAKE2B 432bf6c931b753d4d9a5d7c50a35b0fb9b2161d09c9f762b97a5aae88152de1f3d14a2a4ccc46d8607d7379e4a7a659d603cc09ee20017923b176359eb4b9133 SHA512 9de924e627b91d6df162b6c8c0c3421fbab11f08162abe98b0fac8742ea924a7e0a18aab23d828e19fe81dfdb70f2f6814c7195acbcbc93af9a339dc549190b2
23
24 diff --git a/sys-process/rtirq/rtirq-20150216.ebuild b/sys-process/rtirq/rtirq-20150216.ebuild
25 deleted file mode 100644
26 index 5bd86fb047b..00000000000
27 --- a/sys-process/rtirq/rtirq-20150216.ebuild
28 +++ /dev/null
29 @@ -1,41 +0,0 @@
30 -# Copyright 1999-2019 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI="6"
34 -
35 -DESCRIPTION="Modify realtime scheduling policy and priority of IRQ handlers"
36 -HOMEPAGE="https://www.rncbc.org/archive/#rtirq"
37 -
38 -SRC_URI="https://www.rncbc.org/archive/old/${P}.tar.gz"
39 -LICENSE="GPL-2"
40 -SLOT="0"
41 -KEYWORDS="~amd64 ~x86"
42 -
43 -RDEPEND=">=sys-apps/util-linux-2.13"
44 -
45 -src_prepare() {
46 - # Correct config file path.
47 - sed -i -e "s:^\(RTIRQ_CONFIG\=\)\(.*\):\1/etc/conf.d/rtirq:" ${PN}.sh || die
48 - sed -i -e "s:/etc/sysconfig/rtirq:/etc/conf.d/rtirq:" ${PN}.conf || die
49 -
50 - default
51 -}
52 -
53 -src_install(){
54 - dosbin ${PN}.sh
55 - doinitd "${FILESDIR}"/${PN}
56 - newconfd ${PN}.conf ${PN}
57 -}
58 -
59 -pkg_postinst(){
60 - if [[ "$(rc-config list default | grep rtirq)" = "" ]] ; then
61 - elog "You probably want to add rtirq to the default runlevel, i.e."
62 - elog " rc-update add rtirq default"
63 - fi
64 - if [[ "$(uname -r | grep rt)" = "" ]] ; then
65 - elog "To use rtirq you need a realtime kernel."
66 - elog "Realtime kernel sources are supplied in sys-kernel/rt-sources."
67 - fi
68 - elog "To display the rtirq status issue:"
69 - elog " /etc/init.d/rtirq status"
70 -}