chainsaw 15/05/19 12:46:33 Modified: ChangeLog Added: irqbalance-1.0.9.ebuild Log: Version bump, as requested by "andcycle". Now parses isolcpus on the kernel command line automatically. Improved signal handling. Closes bug #547698. (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0xB5058F9A)
Revision Changes Path 1.62 sys-apps/irqbalance/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/irqbalance/ChangeLog?rev=1.62&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/irqbalance/ChangeLog?rev=1.62&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/irqbalance/ChangeLog?r1=1.61&r2=1.62 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-apps/irqbalance/ChangeLog,v retrieving revision 1.61 retrieving revision 1.62 diff -u -r1.61 -r1.62 --- ChangeLog 7 Apr 2015 14:45:50 -0000 1.61 +++ ChangeLog 19 May 2015 12:46:33 -0000 1.62 @@ -1,6 +1,12 @@ # ChangeLog for sys-apps/irqbalance -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/irqbalance/ChangeLog,v 1.61 2015/04/07 14:45:50 jlec Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/irqbalance/ChangeLog,v 1.62 2015/05/19 12:46:33 chainsaw Exp $ + +*irqbalance-1.0.9 (19 May 2015) + + 19 May 2015; Tony Vroon <[email protected]> +irqbalance-1.0.9.ebuild: + Version bump, as requested by "andcycle". Now parses isolcpus on the kernel + command line automatically. Improved signal handling. Closes bug #547698. *irqbalance-1.0.7-r1 (08 Nov 2014) 1.1 sys-apps/irqbalance/irqbalance-1.0.9.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/irqbalance/irqbalance-1.0.9.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/irqbalance/irqbalance-1.0.9.ebuild?rev=1.1&content-type=text/plain Index: irqbalance-1.0.9.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-apps/irqbalance/irqbalance-1.0.9.ebuild,v 1.1 2015/05/19 12:46:33 chainsaw Exp $ 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_dounit "${FILESDIR}"/irqbalance.service }
