Gentoo Archives: gentoo-commits

From: "Jason Zaman (perfinion)" <perfinion@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-power/powertop: powertop-9999.ebuild powertop-2.6.ebuild powertop-2.7.ebuild powertop-2.7-r1.ebuild powertop-2.5.ebuild powertop-2.7-r2.ebuild ChangeLog
Date: Fri, 31 Jul 2015 04:09:56
Message-Id: 20150731040939.890A6112@oystercatcher.gentoo.org
1 perfinion 15/07/31 04:09:39
2
3 Modified: powertop-9999.ebuild powertop-2.6.ebuild
4 powertop-2.7.ebuild powertop-2.7-r1.ebuild
5 powertop-2.5.ebuild powertop-2.7-r2.ebuild
6 ChangeLog
7 Log:
8 CONFIG_PM_RUNTIME was renamed to CONFIG_PM in kernel 3.19
9
10 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0x7EF137EC935B0EAF)
11
12 Revision Changes Path
13 1.29 sys-power/powertop/powertop-9999.ebuild
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/powertop-9999.ebuild?rev=1.29&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/powertop-9999.ebuild?rev=1.29&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/powertop-9999.ebuild?r1=1.28&r2=1.29
18
19 Index: powertop-9999.ebuild
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/sys-power/powertop/powertop-9999.ebuild,v
22 retrieving revision 1.28
23 retrieving revision 1.29
24 diff -u -r1.28 -r1.29
25 --- powertop-9999.ebuild 30 May 2014 14:29:49 -0000 1.28
26 +++ powertop-9999.ebuild 31 Jul 2015 04:09:39 -0000 1.29
27 @@ -1,6 +1,6 @@
28 -# Copyright 1999-2014 Gentoo Foundation
29 +# Copyright 1999-2015 Gentoo Foundation
30 # Distributed under the terms of the GNU General Public License v2
31 -# $Header: /var/cvsroot/gentoo-x86/sys-power/powertop/powertop-9999.ebuild,v 1.28 2014/05/30 14:29:49 zerochaos Exp $
32 +# $Header: /var/cvsroot/gentoo-x86/sys-power/powertop/powertop-9999.ebuild,v 1.29 2015/07/31 04:09:39 perfinion Exp $
33
34 EAPI="5"
35
36 @@ -50,7 +50,6 @@
37 ~HPET_TIMER
38 ~CPU_FREQ_STAT
39 ~CPU_FREQ_GOV_ONDEMAND
40 - ~PM_RUNTIME
41 ~FTRACE
42 ~BLK_DEV_IO_TRACE
43 ~TIMER_STATS
44 @@ -65,7 +64,6 @@
45 ERROR_KERNEL_HPET_TIMER="HPET_TIMER should be enabled in the kernel for full powertop function"
46 ERROR_KERNEL_CPU_FREQ_STAT="CPU_FREQ_STAT should be enabled in the kernel for full powertop function"
47 ERROR_KERNEL_CPU_FREQ_GOV_ONDEMAND="CPU_FREQ_GOV_ONDEMAND should be enabled in the kernel for full powertop function"
48 - ERROR_KERNEL_PM_RUNTIME="PM_RUNTIME should be enabled in the kernel for full powertop function"
49 ERROR_KERNEL_FTRACE="FTRACE needs to be turned on to enable BLK_DEV_IO_TRACE"
50 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"
51 ERROR_KERNEL_TIMER_STATS="TIMER_STATS should be enabled in the kernel for full powertop function"
52 @@ -84,6 +82,15 @@
53 ERROR_KERNEL_EVENT_POWER_TRACING_DEPRECATED="EVENT_POWER_TRACING_DEPRECATED should be enabled in the kernel for full powertop function"
54 check_extra_config
55 fi
56 + if kernel_is -lt 3 19; then
57 + CONFIG_CHECK="~PM_RUNTIME"
58 + ERROR_KERNEL_PM_RUNTIME="PM_RUNTIME should be enabled in the kernel for full powertop function"
59 + check_extra_config
60 + else
61 + CONFIG_CHECK="~PM"
62 + ERROR_KERNEL_PM="PM should be enabled in the kernel for full powertop function"
63 + check_extra_config
64 + fi
65 fi
66 }
67
68
69
70
71 1.6 sys-power/powertop/powertop-2.6.ebuild
72
73 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/powertop-2.6.ebuild?rev=1.6&view=markup
74 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/powertop-2.6.ebuild?rev=1.6&content-type=text/plain
75 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/powertop-2.6.ebuild?r1=1.5&r2=1.6
76
77 Index: powertop-2.6.ebuild
78 ===================================================================
79 RCS file: /var/cvsroot/gentoo-x86/sys-power/powertop/powertop-2.6.ebuild,v
80 retrieving revision 1.5
81 retrieving revision 1.6
82 diff -u -r1.5 -r1.6
83 --- powertop-2.6.ebuild 2 Mar 2015 09:33:37 -0000 1.5
84 +++ powertop-2.6.ebuild 31 Jul 2015 04:09:39 -0000 1.6
85 @@ -1,6 +1,6 @@
86 # Copyright 1999-2015 Gentoo Foundation
87 # Distributed under the terms of the GNU General Public License v2
88 -# $Header: /var/cvsroot/gentoo-x86/sys-power/powertop/powertop-2.6.ebuild,v 1.5 2015/03/02 09:33:37 ago Exp $
89 +# $Header: /var/cvsroot/gentoo-x86/sys-power/powertop/powertop-2.6.ebuild,v 1.6 2015/07/31 04:09:39 perfinion Exp $
90
91 EAPI="5"
92
93 @@ -52,7 +52,6 @@
94 ~HPET_TIMER
95 ~CPU_FREQ_STAT
96 ~CPU_FREQ_GOV_ONDEMAND
97 - ~PM_RUNTIME
98 ~FTRACE
99 ~BLK_DEV_IO_TRACE
100 ~TIMER_STATS
101 @@ -67,7 +66,6 @@
102 ERROR_KERNEL_HPET_TIMER="HPET_TIMER should be enabled in the kernel for full powertop function"
103 ERROR_KERNEL_CPU_FREQ_STAT="CPU_FREQ_STAT should be enabled in the kernel for full powertop function"
104 ERROR_KERNEL_CPU_FREQ_GOV_ONDEMAND="CPU_FREQ_GOV_ONDEMAND should be enabled in the kernel for full powertop function"
105 - ERROR_KERNEL_PM_RUNTIME="PM_RUNTIME should be enabled in the kernel for full powertop function"
106 ERROR_KERNEL_FTRACE="FTRACE needs to be turned on to enable BLK_DEV_IO_TRACE"
107 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"
108 ERROR_KERNEL_TIMER_STATS="TIMER_STATS should be enabled in the kernel for full powertop function"
109 @@ -86,6 +84,15 @@
110 ERROR_KERNEL_EVENT_POWER_TRACING_DEPRECATED="EVENT_POWER_TRACING_DEPRECATED should be enabled in the kernel for full powertop function"
111 check_extra_config
112 fi
113 + if kernel_is -lt 3 19; then
114 + CONFIG_CHECK="~PM_RUNTIME"
115 + ERROR_KERNEL_PM_RUNTIME="PM_RUNTIME should be enabled in the kernel for full powertop function"
116 + check_extra_config
117 + else
118 + CONFIG_CHECK="~PM"
119 + ERROR_KERNEL_PM="PM should be enabled in the kernel for full powertop function"
120 + check_extra_config
121 + fi
122 fi
123 }
124
125
126
127
128 1.2 sys-power/powertop/powertop-2.7.ebuild
129
130 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/powertop-2.7.ebuild?rev=1.2&view=markup
131 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/powertop-2.7.ebuild?rev=1.2&content-type=text/plain
132 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/powertop-2.7.ebuild?r1=1.1&r2=1.2
133
134 Index: powertop-2.7.ebuild
135 ===================================================================
136 RCS file: /var/cvsroot/gentoo-x86/sys-power/powertop/powertop-2.7.ebuild,v
137 retrieving revision 1.1
138 retrieving revision 1.2
139 diff -u -r1.1 -r1.2
140 --- powertop-2.7.ebuild 24 Nov 2014 21:24:59 -0000 1.1
141 +++ powertop-2.7.ebuild 31 Jul 2015 04:09:39 -0000 1.2
142 @@ -1,6 +1,6 @@
143 -# Copyright 1999-2014 Gentoo Foundation
144 +# Copyright 1999-2015 Gentoo Foundation
145 # Distributed under the terms of the GNU General Public License v2
146 -# $Header: /var/cvsroot/gentoo-x86/sys-power/powertop/powertop-2.7.ebuild,v 1.1 2014/11/24 21:24:59 zerochaos Exp $
147 +# $Header: /var/cvsroot/gentoo-x86/sys-power/powertop/powertop-2.7.ebuild,v 1.2 2015/07/31 04:09:39 perfinion Exp $
148
149 EAPI="5"
150
151 @@ -50,7 +50,6 @@
152 ~HPET_TIMER
153 ~CPU_FREQ_STAT
154 ~CPU_FREQ_GOV_ONDEMAND
155 - ~PM_RUNTIME
156 ~FTRACE
157 ~BLK_DEV_IO_TRACE
158 ~TIMER_STATS
159 @@ -65,7 +64,6 @@
160 ERROR_KERNEL_HPET_TIMER="HPET_TIMER should be enabled in the kernel for full powertop function"
161 ERROR_KERNEL_CPU_FREQ_STAT="CPU_FREQ_STAT should be enabled in the kernel for full powertop function"
162 ERROR_KERNEL_CPU_FREQ_GOV_ONDEMAND="CPU_FREQ_GOV_ONDEMAND should be enabled in the kernel for full powertop function"
163 - ERROR_KERNEL_PM_RUNTIME="PM_RUNTIME should be enabled in the kernel for full powertop function"
164 ERROR_KERNEL_FTRACE="FTRACE needs to be turned on to enable BLK_DEV_IO_TRACE"
165 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"
166 ERROR_KERNEL_TIMER_STATS="TIMER_STATS should be enabled in the kernel for full powertop function"
167 @@ -84,6 +82,15 @@
168 ERROR_KERNEL_EVENT_POWER_TRACING_DEPRECATED="EVENT_POWER_TRACING_DEPRECATED should be enabled in the kernel for full powertop function"
169 check_extra_config
170 fi
171 + if kernel_is -lt 3 19; then
172 + CONFIG_CHECK="~PM_RUNTIME"
173 + ERROR_KERNEL_PM_RUNTIME="PM_RUNTIME should be enabled in the kernel for full powertop function"
174 + check_extra_config
175 + else
176 + CONFIG_CHECK="~PM"
177 + ERROR_KERNEL_PM="PM should be enabled in the kernel for full powertop function"
178 + check_extra_config
179 + fi
180 fi
181 }
182
183
184
185
186 1.3 sys-power/powertop/powertop-2.7-r1.ebuild
187
188 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/powertop-2.7-r1.ebuild?rev=1.3&view=markup
189 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/powertop-2.7-r1.ebuild?rev=1.3&content-type=text/plain
190 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/powertop-2.7-r1.ebuild?r1=1.2&r2=1.3
191
192 Index: powertop-2.7-r1.ebuild
193 ===================================================================
194 RCS file: /var/cvsroot/gentoo-x86/sys-power/powertop/powertop-2.7-r1.ebuild,v
195 retrieving revision 1.2
196 retrieving revision 1.3
197 diff -u -r1.2 -r1.3
198 --- powertop-2.7-r1.ebuild 2 Mar 2015 22:25:47 -0000 1.2
199 +++ powertop-2.7-r1.ebuild 31 Jul 2015 04:09:39 -0000 1.3
200 @@ -1,6 +1,6 @@
201 # Copyright 1999-2015 Gentoo Foundation
202 # Distributed under the terms of the GNU General Public License v2
203 -# $Header: /var/cvsroot/gentoo-x86/sys-power/powertop/powertop-2.7-r1.ebuild,v 1.2 2015/03/02 22:25:47 vapier Exp $
204 +# $Header: /var/cvsroot/gentoo-x86/sys-power/powertop/powertop-2.7-r1.ebuild,v 1.3 2015/07/31 04:09:39 perfinion Exp $
205
206 EAPI="5"
207
208 @@ -50,7 +50,6 @@
209 ~HPET_TIMER
210 ~CPU_FREQ_STAT
211 ~CPU_FREQ_GOV_ONDEMAND
212 - ~PM_RUNTIME
213 ~FTRACE
214 ~BLK_DEV_IO_TRACE
215 ~TIMER_STATS
216 @@ -65,7 +64,6 @@
217 ERROR_KERNEL_HPET_TIMER="HPET_TIMER should be enabled in the kernel for full powertop function"
218 ERROR_KERNEL_CPU_FREQ_STAT="CPU_FREQ_STAT should be enabled in the kernel for full powertop function"
219 ERROR_KERNEL_CPU_FREQ_GOV_ONDEMAND="CPU_FREQ_GOV_ONDEMAND should be enabled in the kernel for full powertop function"
220 - ERROR_KERNEL_PM_RUNTIME="PM_RUNTIME should be enabled in the kernel for full powertop function"
221 ERROR_KERNEL_FTRACE="FTRACE needs to be turned on to enable BLK_DEV_IO_TRACE"
222 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"
223 ERROR_KERNEL_TIMER_STATS="TIMER_STATS should be enabled in the kernel for full powertop function"
224 @@ -84,6 +82,15 @@
225 ERROR_KERNEL_EVENT_POWER_TRACING_DEPRECATED="EVENT_POWER_TRACING_DEPRECATED should be enabled in the kernel for full powertop function"
226 check_extra_config
227 fi
228 + if kernel_is -lt 3 19; then
229 + CONFIG_CHECK="~PM_RUNTIME"
230 + ERROR_KERNEL_PM_RUNTIME="PM_RUNTIME should be enabled in the kernel for full powertop function"
231 + check_extra_config
232 + else
233 + CONFIG_CHECK="~PM"
234 + ERROR_KERNEL_PM="PM should be enabled in the kernel for full powertop function"
235 + check_extra_config
236 + fi
237 fi
238 }
239
240
241
242
243 1.7 sys-power/powertop/powertop-2.5.ebuild
244
245 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/powertop-2.5.ebuild?rev=1.7&view=markup
246 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/powertop-2.5.ebuild?rev=1.7&content-type=text/plain
247 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/powertop-2.5.ebuild?r1=1.6&r2=1.7
248
249 Index: powertop-2.5.ebuild
250 ===================================================================
251 RCS file: /var/cvsroot/gentoo-x86/sys-power/powertop/powertop-2.5.ebuild,v
252 retrieving revision 1.6
253 retrieving revision 1.7
254 diff -u -r1.6 -r1.7
255 --- powertop-2.5.ebuild 12 Mar 2014 10:18:06 -0000 1.6
256 +++ powertop-2.5.ebuild 31 Jul 2015 04:09:39 -0000 1.7
257 @@ -1,6 +1,6 @@
258 -# Copyright 1999-2014 Gentoo Foundation
259 +# Copyright 1999-2015 Gentoo Foundation
260 # Distributed under the terms of the GNU General Public License v2
261 -# $Header: /var/cvsroot/gentoo-x86/sys-power/powertop/powertop-2.5.ebuild,v 1.6 2014/03/12 10:18:06 ago Exp $
262 +# $Header: /var/cvsroot/gentoo-x86/sys-power/powertop/powertop-2.5.ebuild,v 1.7 2015/07/31 04:09:39 perfinion Exp $
263
264 EAPI="5"
265
266 @@ -50,7 +50,6 @@
267 ~HPET_TIMER
268 ~CPU_FREQ_STAT
269 ~CPU_FREQ_GOV_ONDEMAND
270 - ~PM_RUNTIME
271 ~FTRACE
272 ~BLK_DEV_IO_TRACE
273 ~TIMER_STATS
274 @@ -65,7 +64,6 @@
275 ERROR_KERNEL_HPET_TIMER="HPET_TIMER should be enabled in the kernel for full powertop function"
276 ERROR_KERNEL_CPU_FREQ_STAT="CPU_FREQ_STAT should be enabled in the kernel for full powertop function"
277 ERROR_KERNEL_CPU_FREQ_GOV_ONDEMAND="CPU_FREQ_GOV_ONDEMAND should be enabled in the kernel for full powertop function"
278 - ERROR_KERNEL_PM_RUNTIME="PM_RUNTIME should be enabled in the kernel for full powertop function"
279 ERROR_KERNEL_FTRACE="FTRACE needs to be turned on to enable BLK_DEV_IO_TRACE"
280 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"
281 ERROR_KERNEL_TIMER_STATS="TIMER_STATS should be enabled in the kernel for full powertop function"
282 @@ -84,6 +82,15 @@
283 ERROR_KERNEL_EVENT_POWER_TRACING_DEPRECATED="EVENT_POWER_TRACING_DEPRECATED should be enabled in the kernel for full powertop function"
284 check_extra_config
285 fi
286 + if kernel_is -lt 3 19; then
287 + CONFIG_CHECK="~PM_RUNTIME"
288 + ERROR_KERNEL_PM_RUNTIME="PM_RUNTIME should be enabled in the kernel for full powertop function"
289 + check_extra_config
290 + else
291 + CONFIG_CHECK="~PM"
292 + ERROR_KERNEL_PM="PM should be enabled in the kernel for full powertop function"
293 + check_extra_config
294 + fi
295 fi
296 }
297
298
299
300
301 1.2 sys-power/powertop/powertop-2.7-r2.ebuild
302
303 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/powertop-2.7-r2.ebuild?rev=1.2&view=markup
304 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/powertop-2.7-r2.ebuild?rev=1.2&content-type=text/plain
305 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/powertop-2.7-r2.ebuild?r1=1.1&r2=1.2
306
307 Index: powertop-2.7-r2.ebuild
308 ===================================================================
309 RCS file: /var/cvsroot/gentoo-x86/sys-power/powertop/powertop-2.7-r2.ebuild,v
310 retrieving revision 1.1
311 retrieving revision 1.2
312 diff -u -r1.1 -r1.2
313 --- powertop-2.7-r2.ebuild 8 Jul 2015 11:53:58 -0000 1.1
314 +++ powertop-2.7-r2.ebuild 31 Jul 2015 04:09:39 -0000 1.2
315 @@ -1,6 +1,6 @@
316 # Copyright 1999-2015 Gentoo Foundation
317 # Distributed under the terms of the GNU General Public License v2
318 -# $Header: /var/cvsroot/gentoo-x86/sys-power/powertop/powertop-2.7-r2.ebuild,v 1.1 2015/07/08 11:53:58 vapier Exp $
319 +# $Header: /var/cvsroot/gentoo-x86/sys-power/powertop/powertop-2.7-r2.ebuild,v 1.2 2015/07/31 04:09:39 perfinion Exp $
320
321 EAPI="5"
322
323 @@ -50,7 +50,6 @@
324 ~HPET_TIMER
325 ~CPU_FREQ_STAT
326 ~CPU_FREQ_GOV_ONDEMAND
327 - ~PM_RUNTIME
328 ~FTRACE
329 ~BLK_DEV_IO_TRACE
330 ~TIMER_STATS
331 @@ -65,7 +64,6 @@
332 ERROR_KERNEL_HPET_TIMER="HPET_TIMER should be enabled in the kernel for full powertop function"
333 ERROR_KERNEL_CPU_FREQ_STAT="CPU_FREQ_STAT should be enabled in the kernel for full powertop function"
334 ERROR_KERNEL_CPU_FREQ_GOV_ONDEMAND="CPU_FREQ_GOV_ONDEMAND should be enabled in the kernel for full powertop function"
335 - ERROR_KERNEL_PM_RUNTIME="PM_RUNTIME should be enabled in the kernel for full powertop function"
336 ERROR_KERNEL_FTRACE="FTRACE needs to be turned on to enable BLK_DEV_IO_TRACE"
337 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"
338 ERROR_KERNEL_TIMER_STATS="TIMER_STATS should be enabled in the kernel for full powertop function"
339 @@ -84,6 +82,15 @@
340 ERROR_KERNEL_EVENT_POWER_TRACING_DEPRECATED="EVENT_POWER_TRACING_DEPRECATED should be enabled in the kernel for full powertop function"
341 check_extra_config
342 fi
343 + if kernel_is -lt 3 19; then
344 + CONFIG_CHECK="~PM_RUNTIME"
345 + ERROR_KERNEL_PM_RUNTIME="PM_RUNTIME should be enabled in the kernel for full powertop function"
346 + check_extra_config
347 + else
348 + CONFIG_CHECK="~PM"
349 + ERROR_KERNEL_PM="PM should be enabled in the kernel for full powertop function"
350 + check_extra_config
351 + fi
352 fi
353 }
354
355
356
357
358 1.112 sys-power/powertop/ChangeLog
359
360 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/ChangeLog?rev=1.112&view=markup
361 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/ChangeLog?rev=1.112&content-type=text/plain
362 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/powertop/ChangeLog?r1=1.111&r2=1.112
363
364 Index: ChangeLog
365 ===================================================================
366 RCS file: /var/cvsroot/gentoo-x86/sys-power/powertop/ChangeLog,v
367 retrieving revision 1.111
368 retrieving revision 1.112
369 diff -u -r1.111 -r1.112
370 --- ChangeLog 8 Jul 2015 11:53:58 -0000 1.111
371 +++ ChangeLog 31 Jul 2015 04:09:39 -0000 1.112
372 @@ -1,6 +1,11 @@
373 # ChangeLog for sys-power/powertop
374 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
375 -# $Header: /var/cvsroot/gentoo-x86/sys-power/powertop/ChangeLog,v 1.111 2015/07/08 11:53:58 vapier Exp $
376 +# $Header: /var/cvsroot/gentoo-x86/sys-power/powertop/ChangeLog,v 1.112 2015/07/31 04:09:39 perfinion Exp $
377 +
378 + 31 Jul 2015; Jason Zaman <perfinion@g.o> powertop-2.5.ebuild,
379 + powertop-2.6.ebuild, powertop-2.7-r1.ebuild, powertop-2.7-r2.ebuild,
380 + powertop-2.7.ebuild, powertop-9999.ebuild:
381 + CONFIG_PM_RUNTIME was renamed to CONFIG_PM in kernel 3.19
382
383 *powertop-2.7-r2 (08 Jul 2015)