sys-apps/irqbalance: Removed old
authorLars Wendler <polynomial-c@gentoo.org>
Tue, 19 Nov 2019 13:00:39 +0000 (14:00 +0100)
committerLars Wendler <polynomial-c@gentoo.org>
Tue, 19 Nov 2019 13:00:39 +0000 (14:00 +0100)
Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
sys-apps/irqbalance/Manifest
sys-apps/irqbalance/files/irqbalance-1.4.0-configure.patch [deleted file]
sys-apps/irqbalance/irqbalance-1.4.0-r1.ebuild [deleted file]

index 5a4c4054ed898eb4baaac96016520003f1f2c56a..9194616e77819504f32fa8a9b58bf29e9baf0a76 100644 (file)
@@ -1,3 +1,2 @@
-DIST irqbalance-1.4.0.tar.gz 53431 BLAKE2B 35271fab011cb917e5472079025f88df45142b0622d94570f62ef7cce7f2a4e9c9c0b77a79121afa5e7edf4510707c7ace52e894b2af44a5a26b543160f481d0 SHA512 d95909c5e86efa452d0d440df0335b398bd2bf973d6a84e29068534f8c4dc033df90913bf507a6d1b7cdab11b288bafbd2c88b4e476f04e32d5f4c89efe4f7d9
 DIST irqbalance-1.5.0.tar.gz 55150 BLAKE2B b111e9fd4cfec968b261f6ae8a6876d15845849ebf28d7304fd8af3bdeb93b8b9a626888c5728b69925f02a5e472c3512f5862726c6ae9a4d378c46ebcf39069 SHA512 343421fd533d7d161fd05a0edfadaddf1da6ced854a19e9f10ea6c12b97b2ef1629aad855214d9700d31d056bb816bf3ec90cdf7c643a1b6e8af1de5befa64f5
 DIST irqbalance-1.6.0.tar.gz 55310 BLAKE2B 67589a40541e9034a0ac09d60a2293dde7a0cf524620794e25b60b4d78f2c91270252f6cebc2c91c66aed105536a211d51aeb29305fc1235112d96b714dc80bd SHA512 ce89dc41eb3aab5950a56b4b1c817aae5e87eaa84bc69bf88618caf53386513e488bb0b4724a600ae175c96be509367cfc418c7f85531007f80e02f7de549b16
diff --git a/sys-apps/irqbalance/files/irqbalance-1.4.0-configure.patch b/sys-apps/irqbalance/files/irqbalance-1.4.0-configure.patch
deleted file mode 100644 (file)
index 6008e45..0000000
+++ /dev/null
@@ -1,68 +0,0 @@
-From 8ad74cdabac37599d20a985e6a456b1faca92df8 Mon Sep 17 00:00:00 2001
-From: Manuel Mommertz <2kmm@gmx.de>
-Date: Mon, 9 Jul 2018 14:08:35 +0200
-Subject: [PATCH 1/2] configure.ac: Fix --without-caps option
-
-irqbalance links to libcap-ng if it is installed, even when useflag
-caps is disabled. This is an error in the configure-script, which
-checks for the wrong variable to determine if the user used --with/
---without for libcap-ng.
-
-Downstream bug report: https://bugs.gentoo.org/660782
-
-Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
----
- configure.ac | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/configure.ac b/configure.ac
-index f6c60da..19b148a 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -65,7 +65,7 @@ AC_ARG_WITH([libcap-ng],
-   AS_HELP_STRING([libcap-ng], [Add libcap-ng-support @<:@default=auto@:>@]))
- AS_IF(
--  [test "x$libcap_ng" != "xno"],
-+  [test "x$with_libcap_ng" != "xno"],
-   [
-   PKG_CHECK_MODULES([LIBCAP_NG], [libcap-ng],
-     [AC_DEFINE(HAVE_LIBCAP_NG,1,[libcap-ng support])],
--- 
-2.18.0
-
-From bc56dbd4eead9ad19ff1d84dc8810123c96503c0 Mon Sep 17 00:00:00 2001
-From: Lars Wendler <polynomial-c@gentoo.org>
-Date: Mon, 9 Jul 2018 14:11:44 +0200
-Subject: [PATCH 2/2] configure.ac: Fix --enable-irqbalance-ui logic
-
-Before this patch --enable-irqbalance-ui disabled compilation/
-installation of the ui because AC_ARG_WITH is used wrong.
-The third arguement to AC_ARG_WITH is _action-if-present_ which means
-that this action gets triggered once the --enable option has been
-submitted to configure on command line no matter if it's enabled or
-disabled.
-See also https://autotools.io/autoconf/arguments.html chapter 3.1
----
- configure.ac | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 19b148a..75c234d 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -43,9 +43,9 @@ AM_PROG_CC_C_O
- AC_ARG_WITH([irqbalance-ui],
-       [AC_HELP_STRING([--without-irqbalance-ui],
-                       [Dont build the irqbalance ui component])],
--                      [with_irqbalanceui=false], [with_irqbalanceui=true])
-+                      [with_irqbalanceui=$withval], [with_irqbalanceui=yes])
--AM_CONDITIONAL([IRQBALANCEUI], [test x$with_irqbalanceui = xtrue])
-+AM_CONDITIONAL([IRQBALANCEUI], [test x$with_irqbalanceui = xyes])
- AC_ARG_WITH([systemd],
-   [ AS_HELP_STRING([--with-systemd],[Add systemd-lib support])]
--- 
-2.18.0
-
diff --git a/sys-apps/irqbalance/irqbalance-1.4.0-r1.ebuild b/sys-apps/irqbalance/irqbalance-1.4.0-r1.ebuild
deleted file mode 100644 (file)
index 4b61bf9..0000000
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit autotools 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 tui"
-
-CDEPEND="
-       dev-libs/glib:2
-       caps? ( sys-libs/libcap-ng )
-       numa? ( sys-process/numactl )
-       tui? ( sys-libs/ncurses:0=[unicode] )
-"
-DEPEND="${CDEPEND}
-       virtual/pkgconfig
-"
-RDEPEND="${CDEPEND}
-       selinux? ( sec-policy/selinux-irqbalance )
-"
-
-PATCHES=(
-       "${FILESDIR}/${P}-configure.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
-
-       default
-
-       eautoreconf
-}
-
-src_configure() {
-       local myeconfargs=(
-               $(use_with caps libcap-ng)
-               $(use_enable numa)
-               $(use_with tui irqbalance-ui)
-       )
-       econf "${myeconfargs[@]}"
-}
-
-src_install() {
-       default
-
-       newinitd "${FILESDIR}"/irqbalance.init.4 irqbalance
-       newconfd "${FILESDIR}"/irqbalance.confd-1 irqbalance
-       systemd_dounit misc/irqbalance.service
-}