Gentoo Archives: gentoo-commits

From: "Richard Farina (zerochaos)" <zerochaos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-power/powertop: powertop-2.1-r1.ebuild powertop-9999.ebuild ChangeLog
Date: Thu, 22 Nov 2012 15:00:50
Message-Id: 20121122150037.B52C020C65@flycatcher.gentoo.org
1 zerochaos 12/11/22 15:00:37
2
3 Modified: powertop-2.1-r1.ebuild powertop-9999.ebuild
4 ChangeLog
5 Log:
6 SND_HDA_POWER_SAVE deprecated in kernel 3.7.0 so we conditionalize the check
7
8 (Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key DD11F94A)
9
10 Revision Changes Path
11 1.9 sys-power/powertop/powertop-2.1-r1.ebuild
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/powertop-2.1-r1.ebuild?rev=1.9&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/powertop-2.1-r1.ebuild?rev=1.9&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/powertop-2.1-r1.ebuild?r1=1.8&r2=1.9
16
17 Index: powertop-2.1-r1.ebuild
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-power/powertop/powertop-2.1-r1.ebuild,v
20 retrieving revision 1.8
21 retrieving revision 1.9
22 diff -u -r1.8 -r1.9
23 --- powertop-2.1-r1.ebuild 20 Sep 2012 03:26:51 -0000 1.8
24 +++ powertop-2.1-r1.ebuild 22 Nov 2012 15:00:37 -0000 1.9
25 @@ -1,6 +1,6 @@
26 # Copyright 1999-2012 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-power/powertop/powertop-2.1-r1.ebuild,v 1.8 2012/09/20 03:26:51 zerochaos Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-power/powertop/powertop-2.1-r1.ebuild,v 1.9 2012/11/22 15:00:37 zerochaos Exp $
30
31 EAPI="4"
32
33 @@ -57,7 +57,10 @@
34 ~EVENT_POWER_TRACING_DEPRECATED
35 ~TRACING
36 "
37 - linux_chkconfig_present SND_HDA_INTEL && CONFIG_CHECK+="~SND_HDA_POWER_SAVE"
38 + if kernel_is -lt 3 7 0; then
39 + linux_chkconfig_present SND_HDA_INTEL && CONFIG_CHECK+="~SND_HDA_POWER_SAVE"
40 + linux_chkconfig_present SND_HDA_INTEL && ERROR_KERNEL_SND_HDA_POWER_SAVE="SND_HDA_POWER_SAVE should be enabled in the kernel for full powertop function"
41 + fi
42 ERROR_KERNEL_X86_MSR="X86_MSR is not enabled in the kernel, you almost certainly need it"
43 ERROR_KERNEL_DEBUG_FS="DEBUG_FS is not enabled in the kernel, you almost certainly need it"
44 ERROR_KERNEL_PERF_EVENTS="PERF_EVENTS should be enabled in the kernel for full powertop function"
45 @@ -67,7 +70,6 @@
46 ERROR_KERNEL_HPET_TIMER="HPET_TIMER should be enabled in the kernel for full powertop function"
47 ERROR_KERNEL_CPU_FREQ_STAT="CPU_FREQ_STAT should be enabled in the kernel for full powertop function"
48 ERROR_KERNEL_CPU_FREQ_GOV_ONDEMAND="CPU_FREQ_GOV_ONDEMAND should be enabled in the kernel for full powertop function"
49 - linux_chkconfig_present SND_HDA_INTEL && ERROR_KERNEL_SND_HDA_POWER_SAVE="SND_HDA_POWER_SAVE should be enabled in the kernel for full powertop function"
50 ERROR_KERNEL_USB_SUSPEND="USB_SUSPEND should be enabled in the kernel for full powertop function"
51 ERROR_KERNEL_FTRACE="FTRACE needs to be turned on to enable BLK_DEV_IO_TRACE"
52 ERROR_KERNEL_BLK_DEV_IO_TRACE="BLK_DEV_IO_TRACE needs to be turned on to enable TIMER_STATS, TRACING and EVENT_POWER_TRACING_DEPRECATED"
53
54
55
56 1.16 sys-power/powertop/powertop-9999.ebuild
57
58 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/powertop-9999.ebuild?rev=1.16&view=markup
59 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/powertop-9999.ebuild?rev=1.16&content-type=text/plain
60 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/powertop-9999.ebuild?r1=1.15&r2=1.16
61
62 Index: powertop-9999.ebuild
63 ===================================================================
64 RCS file: /var/cvsroot/gentoo-x86/sys-power/powertop/powertop-9999.ebuild,v
65 retrieving revision 1.15
66 retrieving revision 1.16
67 diff -u -r1.15 -r1.16
68 --- powertop-9999.ebuild 20 Sep 2012 03:26:51 -0000 1.15
69 +++ powertop-9999.ebuild 22 Nov 2012 15:00:37 -0000 1.16
70 @@ -1,6 +1,6 @@
71 # Copyright 1999-2012 Gentoo Foundation
72 # Distributed under the terms of the GNU General Public License v2
73 -# $Header: /var/cvsroot/gentoo-x86/sys-power/powertop/powertop-9999.ebuild,v 1.15 2012/09/20 03:26:51 zerochaos Exp $
74 +# $Header: /var/cvsroot/gentoo-x86/sys-power/powertop/powertop-9999.ebuild,v 1.16 2012/11/22 15:00:37 zerochaos Exp $
75
76 EAPI="4"
77
78 @@ -57,7 +57,10 @@
79 ~EVENT_POWER_TRACING_DEPRECATED
80 ~TRACING
81 "
82 - linux_chkconfig_present SND_HDA_INTEL && CONFIG_CHECK+="~SND_HDA_POWER_SAVE"
83 + if kernel_is -lt 3 7 0; then
84 + linux_chkconfig_present SND_HDA_INTEL && CONFIG_CHECK+="~SND_HDA_POWER_SAVE"
85 + linux_chkconfig_present SND_HDA_INTEL && ERROR_KERNEL_SND_HDA_POWER_SAVE="SND_HDA_POWER_SAVE should be enabled in the kernel for full powertop function"
86 + fi
87 ERROR_KERNEL_X86_MSR="X86_MSR is not enabled in the kernel, you almost certainly need it"
88 ERROR_KERNEL_DEBUG_FS="DEBUG_FS is not enabled in the kernel, you almost certainly need it"
89 ERROR_KERNEL_PERF_EVENTS="PERF_EVENTS should be enabled in the kernel for full powertop function"
90 @@ -67,7 +70,6 @@
91 ERROR_KERNEL_HPET_TIMER="HPET_TIMER should be enabled in the kernel for full powertop function"
92 ERROR_KERNEL_CPU_FREQ_STAT="CPU_FREQ_STAT should be enabled in the kernel for full powertop function"
93 ERROR_KERNEL_CPU_FREQ_GOV_ONDEMAND="CPU_FREQ_GOV_ONDEMAND should be enabled in the kernel for full powertop function"
94 - linux_chkconfig_present SND_HDA_INTEL && ERROR_KERNEL_SND_HDA_POWER_SAVE="SND_HDA_POWER_SAVE should be enabled in the kernel for full powertop function"
95 ERROR_KERNEL_USB_SUSPEND="USB_SUSPEND should be enabled in the kernel for full powertop function"
96 ERROR_KERNEL_FTRACE="FTRACE needs to be turned on to enable BLK_DEV_IO_TRACE"
97 ERROR_KERNEL_BLK_DEV_IO_TRACE="BLK_DEV_IO_TRACE needs to be turned on to enable TIMER_STATS, TRACING and EVENT_POWER_TRACING_DEPRECATED"
98
99
100
101 1.70 sys-power/powertop/ChangeLog
102
103 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/ChangeLog?rev=1.70&view=markup
104 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/ChangeLog?rev=1.70&content-type=text/plain
105 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/ChangeLog?r1=1.69&r2=1.70
106
107 Index: ChangeLog
108 ===================================================================
109 RCS file: /var/cvsroot/gentoo-x86/sys-power/powertop/ChangeLog,v
110 retrieving revision 1.69
111 retrieving revision 1.70
112 diff -u -r1.69 -r1.70
113 --- ChangeLog 18 Nov 2012 11:44:09 -0000 1.69
114 +++ ChangeLog 22 Nov 2012 15:00:37 -0000 1.70
115 @@ -1,6 +1,10 @@
116 # ChangeLog for sys-power/powertop
117 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
118 -# $Header: /var/cvsroot/gentoo-x86/sys-power/powertop/ChangeLog,v 1.69 2012/11/18 11:44:09 pacho Exp $
119 +# $Header: /var/cvsroot/gentoo-x86/sys-power/powertop/ChangeLog,v 1.70 2012/11/22 15:00:37 zerochaos Exp $
120 +
121 + 22 Nov 2012; Rick Farina <zerochaos@g.o> powertop-2.1-r1.ebuild,
122 + powertop-9999.ebuild:
123 + SND_HDA_POWER_SAVE deprecated in kernel 3.7.0 so we conditionalize the check
124
125 18 Nov 2012; Pacho Ramos <pacho@g.o> metadata.xml:
126 Drop mobile herd as talked in gentoo-dev ML