Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/irqbalance: irqbalance-1.0.3.ebuild ChangeLog
Date: Fri, 06 Apr 2012 18:03:55
Message-Id: 20120406180329.B01B82004C@flycatcher.gentoo.org
1 flameeyes 12/04/06 18:03:29
2
3 Modified: ChangeLog
4 Added: irqbalance-1.0.3.ebuild
5 Log:
6 Version bump, reduce init script.
7
8 (Portage version: 2.2.0_alpha99/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.39 sys-apps/irqbalance/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/irqbalance/ChangeLog?rev=1.39&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/irqbalance/ChangeLog?rev=1.39&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/irqbalance/ChangeLog?r1=1.38&r2=1.39
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/irqbalance/ChangeLog,v
20 retrieving revision 1.38
21 retrieving revision 1.39
22 diff -u -r1.38 -r1.39
23 --- ChangeLog 8 Jan 2012 09:53:49 -0000 1.38
24 +++ ChangeLog 6 Apr 2012 18:03:29 -0000 1.39
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sys-apps/irqbalance
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/irqbalance/ChangeLog,v 1.38 2012/01/08 09:53:49 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/irqbalance/ChangeLog,v 1.39 2012/04/06 18:03:29 flameeyes Exp $
30 +
31 +*irqbalance-1.0.3 (06 Apr 2012)
32 +
33 + 06 Apr 2012; Diego E. Pettenò <flameeyes@g.o> +files/irqbalance.init.2,
34 + +irqbalance-1.0.3.ebuild:
35 + Version bump, reduce init script.
36
37 08 Jan 2012; Michał Górny <mgorny@g.o> files/irqbalance.service:
38 Update .service file path as well.
39
40
41
42 1.1 sys-apps/irqbalance/irqbalance-1.0.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/irqbalance/irqbalance-1.0.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/irqbalance/irqbalance-1.0.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: irqbalance-1.0.3.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sys-apps/irqbalance/irqbalance-1.0.3.ebuild,v 1.1 2012/04/06 18:03:29 flameeyes Exp $
52
53 EAPI=4
54
55 inherit systemd
56
57 DESCRIPTION="Distribute hardware interrupts across processors on a multiprocessor system"
58 HOMEPAGE="http://irqbalance.googlecode.com/"
59 SRC_URI="http://irqbalance.googlecode.com/files/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~x86"
64 IUSE="caps numa"
65
66 RDEPEND="dev-libs/glib:2
67 caps? ( sys-libs/libcap-ng )
68 numa? ( sys-process/numactl )"
69 DEPEND="${RDEPEND}
70 dev-util/pkgconfig"
71
72 src_configure() {
73 econf \
74 $(use_with caps libcap-ng) \
75 $(use_enable numa)
76 }
77
78 src_install() {
79 default
80 newinitd "${FILESDIR}"/irqbalance.init.2 irqbalance
81 newconfd "${FILESDIR}"/irqbalance.confd-1 irqbalance
82 systemd_dounit "${FILESDIR}"/irqbalance.service
83 }