diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2018-07-09 13:58:34 +0200 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2018-07-09 14:34:44 +0200 |
commit | 3843742efffba73810bc4140604977aa0fdd9824 (patch) | |
tree | e7648dbd9ad17db6b6991831e3c6ce9fab3a2840 /sys-apps/irqbalance/files | |
parent | media-video/ffmpeg: bump to 3.4.3 (diff) | |
download | gentoo-3843742efffba73810bc4140604977aa0fdd9824.tar.gz gentoo-3843742efffba73810bc4140604977aa0fdd9824.tar.bz2 gentoo-3843742efffba73810bc4140604977aa0fdd9824.zip |
sys-apps/irqbalance: Removed old.
Package-Manager: Portage-2.3.41, Repoman-2.3.9
Diffstat (limited to 'sys-apps/irqbalance/files')
-rw-r--r-- | sys-apps/irqbalance/files/irqbalance-1.2.0-tinfo.patch | 32 | ||||
-rw-r--r-- | sys-apps/irqbalance/files/irqbalance.init.3 | 27 | ||||
-rw-r--r-- | sys-apps/irqbalance/files/irqbalance.service.1 | 8 |
3 files changed, 0 insertions, 67 deletions
diff --git a/sys-apps/irqbalance/files/irqbalance-1.2.0-tinfo.patch b/sys-apps/irqbalance/files/irqbalance-1.2.0-tinfo.patch deleted file mode 100644 index 20716542b6dd..000000000000 --- a/sys-apps/irqbalance/files/irqbalance-1.2.0-tinfo.patch +++ /dev/null @@ -1,32 +0,0 @@ -From 287d50594fe624bdb4400611d0dbecec6ff38a41 Mon Sep 17 00:00:00 2001 -From: Lars Wendler <polynomial-c@gentoo.org> -Date: Wed, 1 Mar 2017 17:11:42 +0100 -Subject: [PATCH] Prefer pkgconfig to check for ncursesw. - -That way we take possible separate tinfo lib into account. ---- - configure.ac | 8 +++++++- - 1 file changed, 7 insertions(+), 1 deletion(-) - -diff --git a/configure.ac b/configure.ac -index 17b879a..77d8aa4 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -26,7 +26,13 @@ AC_CHECK_FUNCS(getopt_long) - AC_CHECK_LIB(numa, numa_available) - AC_CHECK_LIB(m, floor) - --AC_CHECK_LIB(curses, mvprintw) -+PKG_CHECK_MODULES([NCURSESW], [ncursesw], [has_ncursesw=yes], [AC_CHECK_LIB(curses, mvprintw)]) -+AS_IF([test "x$has_ncursesw" = "xyes"], [ -+ AC_SUBST([NCURSESW_CFLAGS]) -+ AC_SUBST([NCURSESW_LIBS]) -+ LIBS="$LIBS $NCURSESW_LIBS" -+ AC_SUBST([LIBS]) -+]) - - AC_C_CONST - AC_C_INLINE --- -2.12.0 - diff --git a/sys-apps/irqbalance/files/irqbalance.init.3 b/sys-apps/irqbalance/files/irqbalance.init.3 deleted file mode 100644 index 9ed16416510d..000000000000 --- a/sys-apps/irqbalance/files/irqbalance.init.3 +++ /dev/null @@ -1,27 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License, v2 or later - -depend() { - need localmount - after bootmisc -} - -command="/usr/sbin/irqbalance" -command_args="${IRQBALANCE_OPTS}" - -check_sysfs() { - if grep -q MSI /proc/interrupts 2>/dev/null && \ - test -z "$(find /sys/devices -type d -name msi_irqs 2>/dev/null)"; then - eerror "MSI interrupts found in /proc/interrupts but none found in sysfs." - eerror "You need to update your kernel." - return 1 - fi -} - -start() { - check_sysfs || return 1 - ebegin "Starting irqbalance" - start-stop-daemon --exec ${command} --start -- ${IRQBALANCE_OPTS} - eend $? -} diff --git a/sys-apps/irqbalance/files/irqbalance.service.1 b/sys-apps/irqbalance/files/irqbalance.service.1 deleted file mode 100644 index af7a979a25d0..000000000000 --- a/sys-apps/irqbalance/files/irqbalance.service.1 +++ /dev/null @@ -1,8 +0,0 @@ -[Unit] -Description=CPU Interrupt Balancer - -[Service] -ExecStart=/usr/sbin/irqbalance --foreground - -[Install] -WantedBy=multi-user.target |