sys-apps/irqbalance: Removed old.
authorLars Wendler <polynomial-c@gentoo.org>
Mon, 9 Jul 2018 11:58:34 +0000 (13:58 +0200)
committerLars Wendler <polynomial-c@gentoo.org>
Mon, 9 Jul 2018 12:34:44 +0000 (14:34 +0200)
Package-Manager: Portage-2.3.41, Repoman-2.3.9

sys-apps/irqbalance/Manifest
sys-apps/irqbalance/files/irqbalance-1.2.0-tinfo.patch [deleted file]
sys-apps/irqbalance/files/irqbalance.init.3 [deleted file]
sys-apps/irqbalance/files/irqbalance.service.1 [deleted file]
sys-apps/irqbalance/irqbalance-1.0.9-r1.ebuild [deleted file]
sys-apps/irqbalance/irqbalance-1.1.0.ebuild [deleted file]
sys-apps/irqbalance/irqbalance-1.2.0.ebuild [deleted file]

index b9bf92621df5aa38e450c3577ec96e7078420938..1e33c837789277545ef2d3e4c411be57d38704de 100644 (file)
@@ -1,5 +1,2 @@
-DIST irqbalance-1.0.9.tar.gz 44661 BLAKE2B f6405629683499c0c92a954927e51dff56eeb1e9df175d3bf77251ea3d465e32e69500bed10da8e6b2d93c5fbc0102fefba09cb8eee80c846b2f4c6a2c25178e SHA512 ef3ce9eeec11ec86291e2e3cd701e782ee1fb4ba256e2ea5ea0ea04b373f97ff2eae0a44919127c4dbd7fd805e9e3df3a5e62a3528e4d1c9bbab4db39186b5c5
-DIST irqbalance-1.1.0.tar.gz 46742 BLAKE2B 621e97abd3b901b3ceac3b7959c6bcf88e5dda3742ff83bb3e15e0b65887c945180a9a24b93d20acbb6153015bceda849bb4552293ceb7d94c072aa9cb2781f9 SHA512 66abf71b87e25df190417afbf9da24d826d817de3c0ebdc686e3ae56ac131b2f9586092ba67e5f9c749cb139fbf2faaa2af2ef30700955a5b347f1964f61bf6b
-DIST irqbalance-1.2.0.tar.gz 55618 BLAKE2B 2f5be5564e4cfe510537d7a9322725eec0783b75ebc165d59edc742dde6af3ae694da9ecc4775b5e43c3f4f8946bc4e75cb227258936922f7487f0244752e072 SHA512 02510d0d4dc069570b5f98f3b8191384593a6ed9a88c65c87f5a4261f375c291d95c401b01c03ef9d80834925dd124a088f56ac90c5f290815e26337d4f61c1b
 DIST irqbalance-1.3.0.tar.gz 53225 BLAKE2B 01820d3a3e465896823927dfb43655c4c5efd1eb043a25b438d7b0802c5a6dd7a966825cfb1e71a32d47eca41b72260ba29190e49d9f585c4bf70b676db75c81 SHA512 6328d3e419689192a9dce99ccfd803aaf3ad0e766498e63da1c8c5fbbd7ef669b94fa4102b841fa7aca3729ca595f72c05a0ae4373922fb340b6832648de12c4
 DIST irqbalance-1.4.0.tar.gz 53431 BLAKE2B 35271fab011cb917e5472079025f88df45142b0622d94570f62ef7cce7f2a4e9c9c0b77a79121afa5e7edf4510707c7ace52e894b2af44a5a26b543160f481d0 SHA512 d95909c5e86efa452d0d440df0335b398bd2bf973d6a84e29068534f8c4dc033df90913bf507a6d1b7cdab11b288bafbd2c88b4e476f04e32d5f4c89efe4f7d9
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 (file)
index 2071654..0000000
+++ /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 (file)
index 9ed1641..0000000
+++ /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 (file)
index af7a979..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-[Unit]
-Description=CPU Interrupt Balancer
-
-[Service]
-ExecStart=/usr/sbin/irqbalance --foreground
-
-[Install]
-WantedBy=multi-user.target
diff --git a/sys-apps/irqbalance/irqbalance-1.0.9-r1.ebuild b/sys-apps/irqbalance/irqbalance-1.0.9-r1.ebuild
deleted file mode 100644 (file)
index 6d9972b..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=true
-
-inherit autotools-utils systemd linux-info
-
-DESCRIPTION="Distribute hardware interrupts across processors on a multiprocessor system"
-HOMEPAGE="https://github.com/Irqbalance/irqbalance"
-SRC_URI="https://github.com/Irqbalance/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="caps +numa selinux"
-
-CDEPEND="dev-libs/glib:2
-       caps? ( sys-libs/libcap-ng )
-       numa? ( sys-process/numactl )
-"
-DEPEND="${CDEPEND}
-       virtual/pkgconfig
-"
-RDEPEND="${CDEPEND}
-       selinux? ( sec-policy/selinux-irqbalance )
-"
-
-pkg_setup() {
-       CONFIG_CHECK="~PCI_MSI"
-       linux-info_pkg_setup
-}
-
-src_configure() {
-       local myeconfargs=(
-               $(use_with caps libcap-ng)
-               $(use_enable numa)
-               )
-       autotools-utils_src_configure
-}
-
-src_install() {
-       autotools-utils_src_install
-       newinitd "${FILESDIR}"/irqbalance.init.3 irqbalance
-       newconfd "${FILESDIR}"/irqbalance.confd-1 irqbalance
-       systemd_newunit "${FILESDIR}"/irqbalance.service.1 irqbalance.service
-}
diff --git a/sys-apps/irqbalance/irqbalance-1.1.0.ebuild b/sys-apps/irqbalance/irqbalance-1.1.0.ebuild
deleted file mode 100644 (file)
index 0673ae2..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-AUTOTOOLS_AUTORECONF=true
-
-inherit autotools-utils systemd linux-info
-
-DESCRIPTION="Distribute hardware interrupts across processors on a multiprocessor system"
-HOMEPAGE="https://github.com/Irqbalance/irqbalance"
-SRC_URI="https://github.com/Irqbalance/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="caps +numa selinux"
-
-CDEPEND="
-       dev-libs/glib:2
-       caps? ( sys-libs/libcap-ng )
-       numa? ( sys-process/numactl )
-"
-DEPEND="${CDEPEND}
-       virtual/pkgconfig
-"
-RDEPEND="${CDEPEND}
-       selinux? ( sec-policy/selinux-irqbalance )
-"
-
-pkg_setup() {
-       CONFIG_CHECK="~PCI_MSI"
-       linux-info_pkg_setup
-}
-
-src_prepare() {
-       # Follow systemd policies
-       # https://wiki.gentoo.org/wiki/Project:Systemd/Ebuild_policy
-       sed -i -e 's/ $IRQBALANCE_ARGS//' misc/irqbalance.service || die
-       sed -i -e '/EnvironmentFile/d' misc/irqbalance.service || die
-       autotools-utils_src_prepare
-}
-
-src_configure() {
-       local myeconfargs=(
-               $(use_with caps libcap-ng)
-               $(use_enable numa)
-               )
-       autotools-utils_src_configure
-}
-
-src_install() {
-       autotools-utils_src_install
-       newinitd "${FILESDIR}"/irqbalance.init.3 irqbalance
-       newconfd "${FILESDIR}"/irqbalance.confd-1 irqbalance
-       systemd_dounit misc/irqbalance.service
-}
diff --git a/sys-apps/irqbalance/irqbalance-1.2.0.ebuild b/sys-apps/irqbalance/irqbalance-1.2.0.ebuild
deleted file mode 100644 (file)
index 5a86070..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-AUTOTOOLS_AUTORECONF=true
-
-inherit autotools-utils systemd linux-info
-
-DESCRIPTION="Distribute hardware interrupts across processors on a multiprocessor system"
-HOMEPAGE="https://github.com/Irqbalance/irqbalance"
-SRC_URI="https://github.com/Irqbalance/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="caps +numa selinux"
-
-CDEPEND="
-       dev-libs/glib:2
-       sys-libs/ncurses:0=[unicode]
-       caps? ( sys-libs/libcap-ng )
-       numa? ( sys-process/numactl )
-"
-DEPEND="${CDEPEND}
-       virtual/pkgconfig
-"
-RDEPEND="${CDEPEND}
-       selinux? ( sec-policy/selinux-irqbalance )
-"
-
-PATCHES=(
-       "${FILESDIR}/${P}-tinfo.patch"
-)
-
-pkg_setup() {
-       CONFIG_CHECK="~PCI_MSI"
-       linux-info_pkg_setup
-}
-
-src_prepare() {
-       # Follow systemd policies
-       # https://wiki.gentoo.org/wiki/Project:Systemd/Ebuild_policy
-       sed \
-               -e 's/ $IRQBALANCE_ARGS//' \
-               -e '/EnvironmentFile/d' \
-               -i misc/irqbalance.service || die
-       autotools-utils_src_prepare
-}
-
-src_configure() {
-       local myeconfargs=(
-               $(use_with caps libcap-ng)
-               $(use_enable numa)
-               )
-       autotools-utils_src_configure
-}
-
-src_install() {
-       autotools-utils_src_install
-       newinitd "${FILESDIR}"/irqbalance.init.4 irqbalance
-       newconfd "${FILESDIR}"/irqbalance.confd-1 irqbalance
-       systemd_dounit misc/irqbalance.service
-}