summaryrefslogtreecommitdiff
blob: 1a35c507e9ef3a6112439210fa5d7e4e4c9e0c89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
# ChangeLog for sys-kernel/linux-headers
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/sys-kernel/linux-headers/ChangeLog,v 1.254 2007/12/31 01:22:55 vapier Exp $

  22 Dec 2007; Samuli Suominen <drac@gentoo.org>
  linux-headers-2.6.23-r2.ebuild:
  amd64 stable wrt #202666

  21 Dec 2007; Raúl Porcel <armin76@gentoo.org>
  linux-headers-2.6.23-r2.ebuild:
  alpha/ia64/sparc stable wrt #202666

  21 Dec 2007; nixnut <nixnut@gentoo.org> linux-headers-2.6.23-r2.ebuild:
  Stable on ppc wrt bug 202666

  19 Dec 2007; Markus Meier <maekke@gentoo.org>
  linux-headers-2.6.23-r2.ebuild:
  x86 stable, bug #202666

  19 Dec 2007; Jeroen Roovers <jer@gentoo.org>
  linux-headers-2.6.23-r2.ebuild:
  Stable for HPPA (bug #202666).

*linux-headers-2.6.23-r2 (18 Nov 2007)

  18 Nov 2007; Mike Frysinger <vapier@gentoo.org>
  +linux-headers-2.6.23-r2.ebuild:
  Pull in linux/types.h in linux/mroute.h.

*linux-headers-2.6.23-r1 (13 Oct 2007)

  12 Nov 2007; Mike Frysinger <vapier@gentoo.org>
  +linux-headers-2.6.23-r1.ebuild:
  Version bump.

  09 Nov 2007; nixnut <nixnut@gentoo.org> linux-headers-2.6.22-r2.ebuild:
  Stable on ppc wrt bug 195704

  17 Oct 2007; Raúl Porcel <armin76@gentoo.org>
  linux-headers-2.6.22-r2.ebuild:
  alpha/sparc stable wrt #195704

  15 Oct 2007; Markus Rothe <corsair@gentoo.org>
  linux-headers-2.6.22-r2.ebuild:
  Stable on ppc64

  14 Oct 2007; Jeroen Roovers <jer@gentoo.org>
  linux-headers-2.6.22-r2.ebuild:
  Stable for HPPA (bug #195704).

*linux-headers-2.6.23 (13 Oct 2007)

  13 Oct 2007; Mike Frysinger <vapier@gentoo.org>
  +linux-headers-2.6.23.ebuild:
  Version bump.

  13 Oct 2007; Christoph Mende <angelos@gentoo.org>
  linux-headers-2.6.22-r2.ebuild:
  Stable on amd64 wrt bug #195704

  06 Oct 2007; Raúl Porcel <armin76@gentoo.org>
  linux-headers-2.6.22-r2.ebuild:
  x86 stable

  03 Sep 2007; Joshua Kinard <kumba@gentoo.org> linux-headers-2.6.21.ebuild:
  Stable on mips, per #184691.

  27 Aug 2007; Raúl Porcel <armin76@gentoo.org>
  linux-headers-2.6.22-r2.ebuild:
  ia64 stable

  06 Aug 2007; Raúl Porcel <armin76@gentoo.org>
  linux-headers-2.6.17-r2.ebuild:
  alpha stable as discussed on irc

  25 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  linux-headers-2.6.21.ebuild:
  Stable on sparc wrt #184691

*linux-headers-2.6.22-r2 (25 Jul 2007)

  25 Jul 2007; Mike Frysinger <vapier@gentoo.org>
  +linux-headers-2.6.22-r2.ebuild:
  Fix linux/dvb/video.h #186568.

  22 Jul 2007; Joseph Jezak <josejx@gentoo.org> linux-headers-2.6.21.ebuild:
  Marked ppc stable for bug #184691.

  17 Jul 2007; Jeroen Roovers <jer@gentoo.org> linux-headers-2.6.21.ebuild:
  Stable for HPPA (bug #184691).

*linux-headers-2.6.22-r1 (15 Jul 2007)

  15 Jul 2007; Mike Frysinger <vapier@gentoo.org>
  +linux-headers-2.6.22-r1.ebuild:
  Disable 64bit swap funcs for ansi code #185175.

  15 Jul 2007; Mike Frysinger <vapier@gentoo.org>
  linux-headers-2.6.22.ebuild:
  Move into ~alpha now that aboot/binutils build.

  13 Jul 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  linux-headers-2.6.21.ebuild:
  Stable on amd64/x86 wrt bug #184691.

  09 Jul 2007; Raúl Porcel <armin76@gentoo.org>
  linux-headers-2.6.21.ebuild:
  ia64 stable wrt #184691

  09 Jul 2007; Markus Rothe <corsair@gentoo.org>
  linux-headers-2.6.21.ebuild:
  Stable on ppc64; bug #184691

  09 Jul 2007; Jose Luis Rivero <yoswink@gentoo.org>
  linux-headers-2.6.17-r2.ebuild:
  Marked ~alpha. Seems to work fine and following versions would break aboot
  due to the introduction of sanitized kernel headers. ATM this is our best
  option.

*linux-headers-2.6.22 (09 Jul 2007)

  09 Jul 2007; Mike Frysinger <vapier@gentoo.org>
  +linux-headers-2.6.22.ebuild:
  Version bump.

  19 Jun 2007; Raúl Porcel <armin76@gentoo.org>
  linux-headers-2.6.20-r2.ebuild:
  ia64 stable

  15 May 2007; Jeroen Roovers <jer@gentoo.org>
  linux-headers-2.6.20-r2.ebuild:
  Stable for HPPA (bug #168131).

  13 May 2007; Joshua Kinard <kumba@gentoo.org>
  linux-headers-2.6.19.2-r2.ebuild, linux-headers-2.6.20-r2.ebuild:
  Stable 2.6.19.2-r2 on mips, add ~mips to 2.6.20-r2.

*linux-headers-2.6.21 (02 May 2007)

  02 May 2007; Mike Frysinger <vapier@gentoo.org>
  +linux-headers-2.6.21.ebuild:
  Version bump.

  29 Mar 2007; Markus Rothe <corsair@gentoo.org>
  linux-headers-2.6.8.1-r4.ebuild, linux-headers-2.6.11-r2.ebuild,
  linux-headers-2.6.11-r3.ebuild, linux-headers-2.6.11-r4.ebuild,
  linux-headers-2.6.11-r5.ebuild, linux-headers-2.6.11-r6.ebuild,
  linux-headers-2.6.16.ebuild, linux-headers-2.6.17.ebuild,
  linux-headers-2.6.17-r1.ebuild, linux-headers-2.6.17-r2.ebuild:
  Move from gcc-powerpc64 to kgcc64

*linux-headers-2.6.20-r2 (17 Mar 2007)

  17 Mar 2007; Mike Frysinger <vapier@gentoo.org>
  +linux-headers-2.6.20-r2.ebuild:
  Cleanup asm/page.h and asm/user.h removal some more.

  02 Mar 2007; Steve Dibb <beandog@gentoo.org>
  linux-headers-2.6.17-r2.ebuild:
  amd64 stable, bug 167091

  25 Feb 2007; Joshua Kinard <kumba@gentoo.org>
  linux-headers-2.6.19.2-r2.ebuild:
  linux-headers is the new thang for mips in 2007.1-dev. mips-headers is on
  its way out. To use this, please switch to using the 2007.1-dev mips
  profile.

*linux-headers-2.6.20-r1 (24 Feb 2007)

  24 Feb 2007; Mike Frysinger <vapier@gentoo.org>
  +linux-headers-2.6.20-r1.ebuild:
  Push out some SuperH and HPPA fixes.

  13 Feb 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  linux-headers-2.6.19.2-r2.ebuild:
  Stable on sparc wrt #146407 and other reasons

  11 Feb 2007; Bryan Østergaard <kloeri@gentoo.org>
  linux-headers-2.6.19.2-r2.ebuild, linux-headers-2.6.20.ebuild:
  linux-headers-2.6.19+ breaks binutils and aboot on Alpha.

*linux-headers-2.6.20 (04 Feb 2007)

  04 Feb 2007; Mike Frysinger <vapier@gentoo.org>
  +linux-headers-2.6.20.ebuild:
  Version bump.

  30 Jan 2007; Danny van Dyk <kugelfang@gentoo.org>
  linux-headers-2.6.17-r1.ebuild:
  Marked stable on amd64.

*linux-headers-2.6.19.2-r2 (28 Jan 2007)

  28 Jan 2007; Mike Frysinger <vapier@gentoo.org>
  +linux-headers-2.6.19.2-r2.ebuild:
  Fixup some exported ioctls.

  28 Jan 2007; Mike Frysinger <vapier@gentoo.org>
  linux-headers-2.6.19.2-r1.ebuild:
  Add support for FEATURES=test.

  18 Jan 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  linux-headers-2.4.26-r1.ebuild, linux-headers-2.4.33.3.ebuild,
  linux-headers-2.6.8.1-r4.ebuild, linux-headers-2.6.11-r2.ebuild,
  linux-headers-2.6.11-r3.ebuild, linux-headers-2.6.11-r4.ebuild,
  linux-headers-2.6.11-r5.ebuild, linux-headers-2.6.11-r6.ebuild,
  linux-headers-2.6.16.ebuild, linux-headers-2.6.17.ebuild,
  linux-headers-2.6.17-r1.ebuild, linux-headers-2.6.17-r2.ebuild:
  Switch to kgcc64 for sparc

*linux-headers-2.6.19.2-r1 (15 Jan 2007)

  15 Jan 2007; Mike Frysinger <vapier@gentoo.org>
  +linux-headers-2.6.19.2-r1.ebuild:
  Fixup ISO99 handling in linux/types.h #162144.

  14 Jan 2007; Joseph Jezak <josejx@gentoo.org>
  linux-headers-2.6.17-r2.ebuild:
  Marked ppc stable for bug #146407.

*linux-headers-2.6.19.2 (13 Jan 2007)

  13 Jan 2007; Mike Frysinger <vapier@gentoo.org>
  +linux-headers-2.6.19.2.ebuild:
  Version bump.

*linux-headers-2.6.17-r2 (02 Dec 2006)

  02 Dec 2006; Mike Frysinger <vapier@gentoo.org>
  +linux-headers-2.6.17-r2.ebuild:
  Fix for ipmi #150864 and nbd #149074.

*linux-headers-2.6.19 (02 Dec 2006)

  02 Dec 2006; Mike Frysinger <vapier@gentoo.org>
  +linux-headers-2.6.19.ebuild:
  Version bump.

  11 Oct 2006; Markus Rothe <corsair@gentoo.org>
  linux-headers-2.6.17-r1.ebuild:
  Stable on ppc64

*linux-headers-2.6.18 (08 Oct 2006)

  08 Oct 2006; Mike Frysinger <vapier@gentoo.org>
  +linux-headers-2.6.18.ebuild:
  Version bump #149012 by Arfrever Frehtes Taifersar Arahesis.

  24 Sep 2006; Michael Hanselmann <hansmi@gentoo.org>
  linux-headers-2.6.17-r1.ebuild:
  Added to ~ppc.

  20 Sep 2006; Markus Rothe <corsair@gentoo.org>
  linux-headers-2.6.17-r1.ebuild:
  Added ~ppc64

  19 Sep 2006; Jason Wever <weeve@gentoo.org>
  linux-headers-2.6.17-r1.ebuild:
  Added ~sparc keyword.

*linux-headers-2.6.17-r1 (16 Sep 2006)

  16 Sep 2006; Tim Yamin <plasmaroo@gentoo.org>
  +linux-headers-2.6.17-r1.ebuild:
  Fix #144082, #145512, #146407. Stable on x86.

  13 Sep 2006; Luca Barbato <lu_zero@gentoo.org>
  linux-headers-2.6.16.ebuild:
  Marked ppc

  04 Sep 2006; Tim Yamin <plasmaroo@gentoo.org>
  linux-headers-2.6.11-r5.ebuild:
  Stable on x86; bug #146234.

  04 Sep 2006; Luca Barbato <lu_zero@gentoo.org>
  linux-headers-2.6.16.ebuild, linux-headers-2.6.17.ebuild:
  Remove ppc workarounds

*linux-headers-2.2.26-r1 (03 Sep 2006)
*linux-headers-2.0.40-r1 (03 Sep 2006)

  03 Sep 2006; Mike Frysinger <vapier@gentoo.org>
  -linux-headers-2.0.40.ebuild, +linux-headers-2.0.40-r1.ebuild,
  -linux-headers-2.2.26.ebuild, +linux-headers-2.2.26-r1.ebuild:
  Update to kernel-2 eclass.

*linux-headers-2.4.33.3 (03 Sep 2006)

  03 Sep 2006; Mike Frysinger <vapier@gentoo.org>
  +linux-headers-2.4.33.3.ebuild:
  Version bump.

  22 Aug 2006; Markus Rothe <corsair@gentoo.org>
  linux-headers-2.6.16.ebuild, linux-headers-2.6.17.ebuild:
  2.6.16 stable on ppc64; 2.6.17 now ~ppc64

  13 Aug 2006; <plasmaroo@gentoo.org> linux-headers-2.6.17.ebuild:
  Fix #139086, #139973, #140679, #143804.

  07 Aug 2006; <plasmaroo@gentoo.org> linux-headers-2.6.16.ebuild:
  Fix bug #130933.

  07 Aug 2006; <plasmaroo@gentoo.org> linux-headers-2.6.17.ebuild:
  Keyword ~x86, fix bug #142994.

  28 Jul 2006; <plasmaroo@gentoo.org> linux-headers-2.6.11-r2.ebuild,
  linux-headers-2.6.11-r3.ebuild, linux-headers-2.6.11-r4.ebuild,
  linux-headers-2.6.11-r5.ebuild, linux-headers-2.6.11-r6.ebuild:
  Fix bug #132332.

  26 Jul 2006; Michael Hanselmann <hansmi@gentoo.org>
  linux-headers-2.6.16.ebuild:
  Added to ~ppc.

  12 Jul 2006; Danny van Dyk <kugelfang@gentoo.org>
  linux-headers-2.4.21.ebuild, linux-headers-2.4.21-r1.ebuild,
  linux-headers-2.4.23.ebuild, linux-headers-2.4.26.ebuild:
  QA: Added gcc64 to IUSE.

*linux-headers-2.6.17 (02 Jul 2006)

  02 Jul 2006; <plasmaroo@gentoo.org> +linux-headers-2.6.17.ebuild:
  Version bump; fix #120971, #136941.

  09 Jun 2006; Markus Rothe <corsair@gentoo.org>
  linux-headers-2.6.16.ebuild:
  Added ~ppc64

  05 Jun 2006; Guy Martin <gmsoft@gentoo.org>
  linux-headers-2.6.11-r5.ebuild:
  Stable on hppa.

  30 May 2006; <plasmaroo@gentoo.org> linux-headers-2.6.16.ebuild:
  Keywording ~amd64.

  26 May 2006; <plasmaroo@gentoo.org> linux-headers-2.6.16.ebuild:
  Fix #128028, #130508, #130521, #130933, #131609.

  26 May 2006; <plasmaroo@gentoo.org> linux-headers-2.6.11-r6.ebuild:
  Stable on IA64.

  17 May 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  linux-headers-2.6.11-r6.ebuild:
  Stable on sparc

*linux-headers-2.6.11-r6 (09 May 2006)

  09 May 2006; <plasmaroo@gentoo.org> +linux-headers-2.6.11-r6.ebuild:
  Fixup xorg on IA64; libgii on sparc.

  08 May 2006; Aron Griffis <agriffis@gentoo.org>
  linux-headers-2.6.11-r5.ebuild:
  Mark 2.6.11-r5 ~ia64

  06 May 2006; Diego Pettenò <flameeyes@gentoo.org>
  linux-headers-2.6.11-r4.ebuild:
  Replace malloc.h with stdlib.h when building on FreeBSD libc.

  29 Apr 2006; <plasmaroo@gentoo.org> linux-headers-2.6.11-r5.ebuild:
  Fix #131005.

*linux-headers-2.6.11-r5 (19 Apr 2006)

  19 Apr 2006; <plasmaroo@gentoo.org> +linux-headers-2.6.11-r5.ebuild:
  Fix #119374, #121657, #122929, #128028.

  18 Apr 2006; <plasmaroo@gentoo.org> linux-headers-2.6.16.ebuild:
  Fix #130026, #130032.

  09 Apr 2006; Markus Rothe <corsair@gentoo.org>
  linux-headers-2.6.11-r4.ebuild:
  Stable on ppc64 (we need this stable for libgii - see bug #97991)

  02 Apr 2006; Joseph Jezak <josejx@gentoo.org>
  linux-headers-2.6.11-r4.ebuild:
  Marked ppc stable to fix bug #127778 and #115708.

*linux-headers-2.6.16 (25 Mar 2006)

  25 Mar 2006; <plasmaroo@gentoo.org> -linux-headers-2.6.15_rc6.ebuild,
  +linux-headers-2.6.16.ebuild:
  Version bump; fix #119875, #120107.

  14 Mar 2006; Mark Loeser <halcy0n@gentoo.org>
  linux-headers-2.4.26-r1.ebuild:
  Stable on x86; bug #124221

  12 Mar 2006; Simon Stelling <blubb@gentoo.org>
  linux-headers-2.6.11-r3.ebuild, linux-headers-2.6.15_rc6.ebuild:
  set ABI=; bug 119012

  10 Mar 2006; Aron Griffis <agriffis@gentoo.org>
  linux-headers-2.6.11-r4.ebuild:
  Mark 2.6.11-r4 stable on ia64

  27 Feb 2006; Simon Stelling <blubb@gentoo.org>
  linux-headers-2.4.21.ebuild, linux-headers-2.4.21-r1.ebuild,
  linux-headers-2.4.26.ebuild, linux-headers-2.4.26-r1.ebuild:
  kernel 2.4 isn't supported on amd64, dropping keywords; bug 124221

  16 Feb 2006; Aron Griffis <agriffis@gentoo.org>
  linux-headers-2.6.11-r4.ebuild:
  Mark 2.6.11-r4 ~ia64, fixes joystick.h issue on ia64 for kdebase compilation

  15 Jan 2006; Mike Frysinger <vapier@gentoo.org>
  linux-headers-2.6.11-r2.ebuild, linux-headers-2.6.11-r3.ebuild,
  linux-headers-2.6.11-r4.ebuild:
  Add support for blackfin devices.

  07 Jan 2006; Mike Frysinger <vapier@gentoo.org>
  +files/2.6.11-s390-cflags-update.patch, linux-headers-2.6.11-r2.ebuild,
  linux-headers-2.6.11-r3.ebuild:
  Minor fix for s390/gcc-4 from upstream.

  05 Jan 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  linux-headers-2.6.11-r4.ebuild:
  Stable on sparc

  03 Jan 2006; Bryan Østergaard <kloeri@gentoo.org
  linux-headers-2.6.11-r4.ebuild:
  Stable on alpha to fix bug 115705.

  30 Dec 2005; <plasmaroo@gentoo.org> linux-headers-2.6.15_rc6.ebuild:
  Fix glibc compile; start running headers___fix on all the headers
  by default.

  28 Dec 2005; <plasmaroo@gentoo.org> linux-headers-2.6.11-r4.ebuild:
  Fix joystick.h issue on SPARC.

  27 Dec 2005; Bryan Østergaard <kloeri@gentoo.org
  linux-headers-2.6.11-r4.ebuild:
  More Alpha inline fixes.

  22 Dec 2005; <plasmaroo@gentoo.org> linux-headers-2.6.11-r4.ebuild:
  Fix libgii on SPARC and PPC64 (#97991).

*linux-headers-2.6.11-r4 (21 Dec 2005)

  21 Dec 2005; <plasmaroo@gentoo.org> +linux-headers-2.6.11-r4.ebuild,
  +linux-headers-2.6.15_rc6.ebuild:
  Fix #100703, #114767.

  19 Dec 2005; <plasmaroo@gentoo.org> linux-headers-2.6.11-r3.ebuild:
  Fix #112722, #115708.

  16 Dec 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  linux-headers-2.4.26-r1.ebuild:
  Stable on sparc

  28 Nov 2005; Bryan Østergaard <kloeri@gentoo.org>
  linux-headers-2.6.11-r2.ebuild:
  Stable on alpha.

  22 Nov 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  linux-headers-2.4.26-r1.ebuild:
  sparc64 bootstrap DEP fix

  21 Nov 2005; Mike Frysinger <vapier@gentoo.org>
  +files/linux-headers-2.4-errno-in-unistd.patch,
  linux-headers-2.4.26-r1.ebuild:
  Add the unistd.h errno.h fix from 2.6 headers.

*linux-headers-2.6.11-r3 (18 Nov 2005)

  18 Nov 2005; <plasmaroo@gentoo.org> +linux-headers-2.6.11-r3.ebuild:
  Fix #82243, #100659, #104845, #108521.

  31 Oct 2005; Bryan Østergaard <kloeri@gentoo.org>
  linux-headers-2.6.11-r2.ebuild:
  ~alpha keyword.

  28 Oct 2005; <dostrow@gentoo.org> +files/2.6.11-ppc64-32ul-spinlock.patch,
  linux-headers-2.6.11-r2.ebuild:
  Add patch for bug #103374 and bug #109501.
  Will have plasmaroo add to the patchball when he returns.

  26 Oct 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  linux-headers-2.4.26-r1.ebuild:
  Added x86 support and marked ~x86 for bug #109754.

  29 Sep 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  linux-headers-2.6.11-r2.ebuild:
  SPARC non-multi DEP fix needed here too

  06 Sep 2005; Jeremy Huddleston <eradicator@gentoo.org>
  linux-headers-2.6.11-r2.ebuild:
  Added to ~sparc.

  03 Sep 2005; Michael Hanselmann <hansmi@gentoo.org>
  linux-headers-2.6.11-r2.ebuild:
  Stable on ppc.

  25 Aug 2005; Mike Frysinger <vapier@gentoo.org>
  +files/linux-headers-2.4-arm-cris-ELF_DATA.patch,
  linux-headers-2.4.26-r1.ebuild:
  Fix ELF_DATA defines for arm/cris.

  25 Aug 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  linux-headers-2.6.8.1-r4.ebuild:
  sparc non-multilib fix

  28 Jul 2005; <plasmaroo@gentoo.org> linux-headers-2.6.11-r2.ebuild:
  Fix #100080.

  21 Jul 2005; Michael Sterrett <mr_bones_@gentoo.org>
  linux-headers-2.0.40.ebuild, linux-headers-2.2.26.ebuild,
  linux-headers-2.4.21.ebuild, linux-headers-2.4.21-r1.ebuild,
  linux-headers-2.4.22.ebuild, linux-headers-2.4.22-r1.ebuild,
  linux-headers-2.4.23.ebuild, linux-headers-2.4.25.ebuild,
  linux-headers-2.4.26.ebuild:
  remove old virtual: virtual/kernel

  18 Jul 2005; <plasmaroo@gentoo.org> linux-headers-2.6.11-r2.ebuild:
  Fix #82243, #99275, add S390 fixes.

  09 Jul 2005; <plasmaroo@gentoo.org> linux-headers-2.6.11-r2.ebuild:
  Fix #97556, #98443.

  09 Jul 2005; <plasmaroo@gentoo.org> linux-headers-2.6.11-r2.ebuild,
  linux-headers-2.6.8.1-r4.ebuild:
  Fix <spinlock.h> issues on PPC64/PPC multilib.

  06 Jul 2005; Daniel Ostrow <dostrow@gentoo.org>
  linux-headers-2.6.8.1-r4.ebuild, linux-headers-2.6.11-r2.ebuild:
  Add a dep on sys-devel/gcc-powerpc64 if the user is using a 32bit userland
  with a ppc64 kernel.

  05 Jul 2005; <plasmaroo@gentoo.org> linux-headers-2.6.11-r2.ebuild:
  Stable on x86 and amd64.

  03 Jul 2005; Joseph Jezak <josejx@gentoo.org>
  linux-headers-2.6.11-r2.ebuild:
  Marked ~ppc.

  02 Jul 2005; Markus Rothe <corsair@gentoo.org>
  linux-headers-2.6.11-r2.ebuild:
  Stable on ppc64 again

  02 Jul 2005; <plasmaroo@gentoo.org> linux-headers-2.6.11-r2.ebuild,
  -linux-headers-2.6.8.1-r2.ebuild, linux-headers-2.6.8.1-r4.ebuild,
  -files/linux-headers-2.6*
  Move patches out of files/.

  28 Jun 2005; Markus Rothe <corsair@gentoo.org>
  linux-headers-2.6.11-r2.ebuild:
  Stable on ppc64

  24 Jun 2005; <plasmaroo@gentoo.org> linux-headers-2.6.11-r2.ebuild:
  Stable on IA64.

*linux-headers-2.6.11-r2 (17 Jun 2005)

  17 Jun 2005; <plasmaroo@gentoo.org> -linux-headers-2.6.11-r1.ebuild,
  +linux-headers-2.6.11-r2.ebuild, files/linux-headers-2.6.11-appCompat.patch:
  Fix kbd on PPC, bounds-checking on AMD64, and C++-happiness for list.h.

*linux-headers-2.6.11-r1 (29 May 2005)

  29 May 2005; <plasmaroo@gentoo.org> +linux-headers-2.6.11-r1.ebuild,
  -linux-headers-2.6.11.ebuild, files/linux-headers-2.6.11-appCompat.patch:
  Fix #93609, #94256 (version bump).

  24 May 2005; <plasmaroo@gentoo.org>
  files/linux-headers-2.6.11-appCompat.patch:
  Fix #89770, #91507, #92816.

  18 May 2005; Sven Wegener <swegener@gentoo.org>
  linux-headers-2.4.21.ebuild, linux-headers-2.4.21-r1.ebuild,
  linux-headers-2.4.22.ebuild, linux-headers-2.4.22-r1.ebuild,
  linux-headers-2.4.23.ebuild, linux-headers-2.4.25.ebuild,
  linux-headers-2.4.26.ebuild, linux-headers-2.4.26-r1.ebuild,
  linux-headers-2.6.11.ebuild:
  Changed order of inherits to stop eclasses from overwriting the DESCRIPTION.

  12 May 2005; Markus Rothe <corsair@gentoo.org>
  linux-headers-2.6.11.ebuild:
  Added ~ppc64 to KEYWORDS

  09 May 2005; <plasmaroo@gentoo.org>
  files/linux-headers-2.6.11-appCompat.patch:
  Fix #90261.

  05 May 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  linux-headers-2.4.26-r1.ebuild:
  Tested and set up for sparc, keyworded ~sparc

  29 Apr 2005; <plasmaroo@gentoo.org>
  files/linux-headers-2.6.8.1-appCompat.patch:
  Fix #90455.

  24 Apr 2005; <plasmaroo@gentoo.org>
  files/linux-headers-2.6.11-appCompat.patch:
  Fix #90203.

  24 Apr 2005; <plasmaroo@gentoo.org>
  files/linux-headers-2.6.11-appCompat.patch,
  files/linux-headers-2.6.8.1-appCompat.patch:
  Fix #87513.

  24 Apr 2005; <plasmaroo@gentoo.org>
  files/linux-headers-2.6.8.1-appCompat.patch:
  Backport #86968 fix to 2.6.8.1 headers.

  21 Apr 2005; <plasmaroo@gentoo.org>
  files/linux-headers-2.6.11-appCompat.patch:
  Fix #89836.

  20 Apr 2005; <plasmaroo@gentoo.org>
  files/linux-headers-2.6.11-appCompat.patch:
  Fix #84353, #89387.

  18 Apr 2005; <plasmaroo@gentoo.org>
  files/linux-headers-2.6.11-appCompat.patch:
  Fix #82690.

  14 Apr 2005; <plasmaroo@gentoo.org>
  files/linux-headers-2.6.11-appCompat.patch:
  Fix #86968.

  06 Apr 2005; Sven Wegener <swegener@gentoo.org> :
  Fixed digests for KV_EXTRA suport in kernel-2.eclass.

*linux-headers-2.4.26-r1 (30 Mar 2005)

  30 Mar 2005; Mike Frysinger <vapier@gentoo.org>
  +linux-headers-2.4.26-r1.ebuild:
  Version bump / kernel-2.eclass for arm support.

  28 Mar 2005; Bryan Østergaard <kloeri@gentoo.org>
  linux-headers-2.6.8.1-r2.ebuild:
  Stable on alpha.

  28 Mar 2005; Joseph Jezak <josejx@gentoo.org>
  linux-headers-2.6.8.1-r4.ebuild:
  Marked ppc stable for 2005.0.

  15 Mar 2005; <plasmaroo@gentoo.org> linux-headers-2.6.11.ebuild:
  Add m68k KEYWORD back in.

*linux-headers-2.6.11 (15 Mar 2005)

  15 Mar 2005; <plasmaroo@gentoo.org> -linux-headers-2.6.10.ebuild,
  +linux-headers-2.6.11.ebuild, -files/linux-headers-2.6.10-appCompat.patch,
  +files/linux-headers-2.6.11-appCompat.patch:
  Bump to 2.6.11; fix #85106.

  06 Mar 2005; <plasmaroo@gentoo.org>
  files/linux-headers-2.6.10-appCompat.patch:
  Fix gnome-applets; #83550.

  28 Feb 2005; <solar@gentoo.org> metadata.xml,
  linux-headers-2.4.22-r1.ebuild:
  Marking x86 2.4.x pic aware syscall headers stable on x86, added a
  description to the metadata.xml for plasmaroo and kumba's roles.

  16 Feb 2005; <plasmaroo@gentoo.org>
  files/linux-headers-2.6.10-appCompat.patch:
  Fix rp-pppoe.

  14 Feb 2005; <plasmaroo@gentoo.org>
  files/linux-headers-2.6.10-appCompat.patch:
  Add a usbutils fix; #81882.

  13 Feb 2005; <plasmaroo@gentoo.org>
  files/linux-headers-2.6.8.1-appCompat.patch:
  Fix sysklogd on IA64; update userspace detection for newer glibcs on IA64
  as well.

*linux-headers-2.4.22-r1 (12 Feb 2005)

  12 Feb 2005; <solar@gentoo.org> +files/unistd.h-i386-pic.patch,
  +linux-headers-2.4.22-r1.ebuild:
  - ~x86 pic syscall macros

  12 Feb 2005; <plasmaroo@gentoo.org>
  files/linux-headers-2.6.10-appCompat.patch:
  Fix net-tools compile.

*linux-headers-2.6.10 (08 Feb 2005)

  08 Feb 2005; <plasmaroo@gentoo.org> +linux-headers-2.6.10.ebuild,
  +files/linux-headers-2.6.10-appCompat.patch,
  +files/linux-headers-2.6.10-generic-arm-prepare.patch:
  Version bump; also fixes #79252, #79939 (thanks Kevin Quinn) and #80552.

  03 Feb 2005; <plasmaroo@gentoo.org> linux-headers-2.6.8.1-r2.ebuild,
  linux-headers-2.6.8.1-r4.ebuild,
  files/linux-headers-2.6.8.1-appCompat.patch:
  Fix efibootmgr compilation on IA64.

  22 Jan 2005; <plasmaroo@gentoo.org>
  files/linux-headers-2.6.8.1-appCompat.patch:
  Fixing howl compilation on IA64.

  13 Jan 2005; Jeremy Huddleston <eradicator@gentoo.org>
  linux-headers-2.6.8.1-r2.ebuild, linux-headers-2.6.8.1-r4.ebuild:
  Added missing detect_version.

*linux-headers-2.6.8.1-r4 (13 Jan 2005)

  13 Jan 2005; Jeremy Huddleston <eradicator@gentoo.org>
  -files/generate-asm-amd64, files/linux-headers-2.6.8.1-appCompat.patch,
  -files/linux-headers-2.6.8.1-sparc-glibcsafe.patch,
  linux-headers-2.6.8.1-r2.ebuild, -linux-headers-2.6.8.1-r3.ebuild,
  +linux-headers-2.6.8.1-r4.ebuild:
  Merged sparc-glibc.patch ingo appcompat.patch to avoid filecount bloat.
  Revbump to add #include <linux/compiler.h> and force upgrade for people who
  grabbed it with the bad kernel-2.eclass.

*linux-headers-2.6.8.1-r2 (11 Jan 2005)

  11 Jan 2005; Mike Frysinger <vapier@gentoo.org>
  +files/linux-headers-2.6.0-fb.patch,
  +files/linux-headers-2.6.0-sysctl_h-compat.patch,
  +files/linux-headers-2.6.7-generic-arm-prepare.patch,
  +files/linux-headers-2.6.8.1-appCompat.patch,
  +files/linux-headers-2.6.8.1-arm-float.patch,
  +files/linux-headers-2.6.8.1-parisc-syscall.patch,
  +files/linux-headers-2.6.8.1-sparc-glibcsafe.patch,
  +files/linux-headers-2.6.8.1-strict-ansi-fix.patch,
  +linux-headers-2.6.8.1-r2.ebuild, +linux-headers-2.6.8.1-r3.ebuild:
  Bring 2.6 headers back from linux26-headers.

  14 Nov 2004; Markus Rothe <corsair@gentoo.org> linux-headers-2.4.22.ebuild:
  Added a ppc64 patch for soundcard support.

  06 Oct 2004; Gustavo Zacarias <gustavoz@gentoo.org>
  linux-headers-2.4.21-r1.ebuild, linux-headers-2.4.21.ebuild,
  linux-headers-2.4.23.ebuild:
  Workaround for cascading profiles on sparc64

  04 Oct 2004; <iggy@gentoo.org> linux-headers-2.4.26.ebuild:
  switched custom ARCH setting code to use set_arch_to_* from eutils

  17 Aug 2004; Aron Griffis <agriffis@gentoo.org> linux-headers-2.4.23.ebuild:
  stable on alpha

*linux-headers-2.6.99 (09 Jul 2004)

  09 Jul 2004; Travis Tilley <lv@gentoo.org> +linux-headers-2.6.99.ebuild:
  added an ebuild to help migrating 2.6 kernel header users

  09 Jul 2004; Travis Tilley <lv@gentoo.org>
  -files/linux-headers-2.6.0-appCompat.patch,
  -files/linux-headers-2.6.0-fb.patch,
  -files/linux-headers-2.6.0-strict-ansi-fix.patch,
  -files/linux-headers-2.6.0-sysctl_h-compat.patch,
  -files/linux-headers-2.6.3-appCompat.patch,
  -files/linux-headers-2.6.3-strict-ansi-fix.patch,
  -files/linux-headers-2.6.4-appCompat.patch,
  -files/linux-headers-2.6.4-unistd-nptl-fix.patch,
  -files/linux-headers-2.6.6-appCompat.patch,
  -files/linux-headers-2.6.6-tcp_info-DRS-backport.patch,
  -files/linux-headers-2.6.7-appCompat.patch, linux-headers-2.0.40.ebuild,
  linux-headers-2.2.26.ebuild, linux-headers-2.4.21-r1.ebuild,
  linux-headers-2.4.21.ebuild, linux-headers-2.4.22.ebuild,
  linux-headers-2.4.23.ebuild, linux-headers-2.4.25.ebuild,
  linux-headers-2.4.26.ebuild, -linux-headers-2.6.1.ebuild,
  -linux-headers-2.6.3-r1.ebuild, -linux-headers-2.6.4.ebuild,
  -linux-headers-2.6.5.ebuild, -linux-headers-2.6.6-r1.ebuild,
  -linux-headers-2.6.6.ebuild, -linux-headers-2.6.7-r1.ebuild:
  moved all 2.6 header packages into linux26-headers and updated dependencies so
  that linux-headers conflicts with virtual/os-headers

  03 Jul 2004; Michal Januszewski <spock@gentoo.org>
  linux-headers-2.6.7-r1.ebuild:
  Removed the nptl-fix patch from 2.6.7 ebuild, as this has been fixed in
  upstream. Closes bug #55165.

*linux-headers-2.6.7-r1 (28 Jun 2004)

  28 Jun 2004; <plasmaroo@gentoo.org> +linux-headers-2.6.7-r1.ebuild,
  -linux-headers-2.6.7.ebuild, files/linux-headers-2.6.7-appCompat.patch:
  Removing forced inlining from the 2.6.7 headers; this should solve inlining
  issues for GCC 3.4 users.

  24 Jun 2004; <plasmaroo@gentoo.org>
  files/linux-headers-2.6.7-appCompat.patch:
  Added a few missing bits from <linux/compiler.h> that were removed from
  upstream but are still needed. Fixes bug #54542.

  24 Jun 2004; <plasmaroo@gentoo.org> linux-headers-2.6.6-r1.ebuild:
  Added "cd ${S}" so this doesn't fail under amd64. Closes bug #54949.

  23 Jun 2004; Aron Griffis <agriffis@gentoo.org> linux-headers-2.2.26.ebuild,
  linux-headers-2.4.21-r1.ebuild, linux-headers-2.4.21.ebuild,
  linux-headers-2.4.22.ebuild, linux-headers-2.4.23.ebuild,
  linux-headers-2.4.25.ebuild, linux-headers-2.4.26.ebuild,
  linux-headers-2.6.1.ebuild, linux-headers-2.6.3-r1.ebuild,
  linux-headers-2.6.4.ebuild, linux-headers-2.6.5.ebuild,
  linux-headers-2.6.6-r1.ebuild, linux-headers-2.6.6.ebuild,
  linux-headers-2.6.7.ebuild:
  QA - fix use invocation and don't subshell epatch

*linux-headers-2.6.6-r1 (22 Jun 2004)

  22 Jun 2004; <plasmaroo@gentoo.org> +linux-headers-2.6.6-r1.ebuild,
  +files/linux-headers-2.6.6-tcp_info-DRS-backport.patch:
  Backporting the 2.6.7 TCP header change upstream so that iproute2 compiles
  fine on amd64.

*linux-headers-2.6.7 (19 Jun 2004)

  19 Jun 2004; <plasmaroo@gentoo.org> +linux-headers-2.6.7.ebuild,
  +files/linux-headers-2.6.7-appCompat.patch:
  Version bump.

  19 Jun 2004; <malc@gentoo.org> linux-headers-2.6.6.ebuild:
  Mark stable for release - amd64 needs this DEP for glibc 20040605

  04 Jun 2004; <plasmaroo@gentoo.org>
  files/linux-headers-2.6.6-appCompat.patch:
  Added a patch to linux-headers-2.6.6 to solve sash issues on ARM and possibly
  other architectures. Closes bug #42527.

  03 Jun 2004; Travis Tilley <lv@gentoo.org> linux-headers-2.6.6.ebuild:
  added ~amd64 to keywords

*linux-headers-2.6.6 (03 Jun 2004)

  03 Jun 2004; <plasmaroo@gentoo.org> +linux-headers-2.6.6.ebuild,
  +files/linux-headers-2.6.6-appCompat.patch:
  Version bump.

  02 Jun 2004; Travis Tilley <lv@gentoo.org> linux-headers-2.4.26.ebuild:
  added ~amd64 keyword

  27 Apr 2004; Aron Griffis <agriffis@gentoo.org> linux-headers-2.4.25.ebuild,
  linux-headers-2.4.26.ebuild, linux-headers-2.6.1.ebuild,
  linux-headers-2.6.3-r1.ebuild, linux-headers-2.6.4.ebuild,
  linux-headers-2.6.5.ebuild:
  Add inherit eutils

*linux-headers-2.4.26 (22 Apr 2004)

  22 Apr 2004; Joshua Kinard <kumba@gentoo.org> +linux-headers-2.4.26.ebuild:
  Version Bump.

  14 Apr 2004; Joshua Kinard <kumba@gentoo.org>
  linux-headers-2.4.21-r1.ebuild, linux-headers-2.4.21.ebuild,
  linux-headers-2.4.22.ebuild, linux-headers-2.4.23.ebuild,
  linux-headers-2.4.25.ebuild, linux-headers-2.6.1.ebuild,
  linux-headers-2.6.3-r1.ebuild, linux-headers-2.6.4.ebuild,
  linux-headers-2.6.5.ebuild:
  Fixed up how the generate-asm-sparc script is handled. Instead of attempting
  to chmod it in FILEDIR, we copy it to WORKDIR first and then chmod it, incase it loses it's
  permissions. This avoids sandbox violations.

  12 Apr 2004; Daniel Ahlberg <aliz@gentoo.org>
  linux-headers-2.4.21-r1.ebuild, linux-headers-2.4.21.ebuild,
  linux-headers-2.4.22.ebuild, linux-headers-2.4.23.ebuild:
  Add eutils to inherit, add IUSE=

  12 Apr 2004; Travis Tilley <lv@gentoo.org> linux-headers-2.6.4.ebuild,
  linux-headers-2.6.5.ebuild:
  added a patch that allows glibc to compile with nptl support on amd64

  11 Apr 2004; Joshua Kinard <kumba@gentoo.org> linux-headers-2.0.40.ebuild,
  linux-headers-2.2.26.ebuild, linux-headers-2.4.21-r1.ebuild,
  linux-headers-2.4.21.ebuild, linux-headers-2.4.22.ebuild,
  linux-headers-2.4.23.ebuild, linux-headers-2.4.25.ebuild,
  linux-headers-2.6.1.ebuild, linux-headers-2.6.3-r1.ebuild,
  linux-headers-2.6.4.ebuild, linux-headers-2.6.5.ebuild:
  More cleanups in the sed code for setting ARCH. Eliminates the i386_64 bug on
  amd64.

  11 Apr 2004; Joshua Kinard <kumba@gentoo.org> linux-headers-2.6.1.ebuild,
  linux-headers-2.6.3-r1.ebuild, linux-headers-2.6.4.ebuild,
  linux-headers-2.6.5.ebuild:
  Typo fixes: the "-e s/i386_64/x86_64/" parts of the sed command in pkg_setup
  got cut off in the last update.

*linux-headers-2.0.40 (10 Apr 2004)

  10 Apr 2004; Joshua Kinard <kumba@gentoo.org> linux-headers-2.0.40.ebuild,
  linux-headers-2.2.20.ebuild, linux-headers-2.2.21_pre3.ebuild,
  linux-headers-2.2.26.ebuild, linux-headers-2.4.16-r1.ebuild,
  linux-headers-2.4.16-r3.ebuild, linux-headers-2.4.16.ebuild,
  linux-headers-2.4.17-r3.ebuild, linux-headers-2.4.17-r4.ebuild,
  linux-headers-2.4.17-r5.ebuild, linux-headers-2.4.18-r1.ebuild,
  linux-headers-2.4.18-r2.ebuild, linux-headers-2.4.18.ebuild,
  linux-headers-2.4.19-r1.ebuild, linux-headers-2.4.19.ebuild:
  Cleaned out old ebuilds (2.4.16->2.4.19), removed old 2.2.2{0,1} ebuilds, and
  added ebuilds for 2.0.40 and 2.2.26

  09 Apr 2004; Brian Jackson <iggy@gentoo.org> linux-headers-2.4.22.ebuild:
  added s390 keyword

  07 Apr 2004; Joshua Kinard <kumba@gentoo.org>
  linux-headers-2.4.21-r1.ebuild, linux-headers-2.4.21.ebuild,
  linux-headers-2.4.22.ebuild, linux-headers-2.4.23.ebuild,
  linux-headers-2.4.25.ebuild, linux-headers-2.6.1.ebuild,
  linux-headers-2.6.3-r1.ebuild, linux-headers-2.6.4.ebuild,
  linux-headers-2.6.5.ebuild:
  Moved the mips checking code into pkg_setup and added hppa to the check (both
  have their own headers packages)

*linux-headers-2.6.5 (07 Apr 2004)

  07 Apr 2004; <plasmaroo@gentoo.org> +linux-headers-2.6.5.ebuild:
  Version bump.

  03 Apr 2004; Jason Wever <weeve@gentoo.org> linux-headers-2.4.23.ebuild:
  Stable on sparc.

  21 Mar 2004; Joshua Kinard <kumba@gentoo.org>
  linux-headers-2.4.21-r1.ebuild, linux-headers-2.4.23.ebuild,
  linux-headers-2.4.25.ebuild, linux-headers-2.6.3-r1.ebuild,
  linux-headers-2.6.4.ebuild:
  Bump linux-2.4.21-r1 headers to x86 stable, as it has a patch that fixes Bug
  #32246 for x86. Also tweaked how headers for sparc systems are handled. For
  sparc32, generate-sparc-asm is no longer used and headers are copied as-is,
  but for sparc64, generate-sparc-asm gets used to get headers generated
  properly.

*linux-headers-2.6.4 (13 Mar 2004)

  13 Mar 2004; <plasmaroo@gentoo.org> linux-headers-2.6.4.ebuild,
  files/linux-headers-2.6.4-appCompat.patch:
  Version bump; also fixes bugs #40419 and #44265.

  13 Mar 2004; Seemant Kulleen <seemant@gentoo.org>
  linux-headers-2.2.20.ebuild, linux-headers-2.2.21_pre3.ebuild,
  linux-headers-2.4.16-r1.ebuild, linux-headers-2.4.16-r3.ebuild,
  linux-headers-2.4.16.ebuild, linux-headers-2.4.17-r3.ebuild,
  linux-headers-2.4.17-r4.ebuild, linux-headers-2.4.17-r5.ebuild,
  linux-headers-2.4.18-r1.ebuild, linux-headers-2.4.18-r2.ebuild,
  linux-headers-2.4.18.ebuild, linux-headers-2.4.19-r1.ebuild,
  linux-headers-2.4.19.ebuild:
  console-tools has been PROVIDEd by sys-apps/kbd for the longest time, so
  changed the dependency info to sys-apps/kbd from sys-apps/console-tools

  08 Mar 2004; Jason Wever <weeve@gentoo.org> linux-headers-2.4.23.ebuild:
  Added ~sparc keyword to help resolve bug #43233.

*linux-headers-2.4.25 (07 Mar 2004)

  07 Mar 2004; Joshua Kinard <kumba@gentoo.org> linux-headers-2.4.23.ebuild,
  linux-headers-2.4.25.ebuild:
  New headers revision, keyword masked.

  07 Mar 2004; Joshua Kinard <kumba@gentoo.org>
  linux-headers-2.4.19-r1.ebuild:
  mips keywords don't belong in linux-headers, removing.

  03 Mar 2004; <agriffis@gentoo.org> linux-headers-2.4.23.ebuild:
  Add back -* for bug 43670 even though I don't quite get it yet

  03 Mar 2004; <agriffis@gentoo.org> linux-headers-2.4.23.ebuild:
  Add alpha and ia64 keywords to linux-headers-2.4.23 which should fix
  compilation of many userland applications (such as sash) which could not build
  with the older headers.

  02 Mar 2004; Brian Jackson <iggy@gentoo.org> linux-headers-2.4.21-r1.ebuild:
  s390 keywords

  29 Feb 2004; <plasmaroo@gentoo.org>
  files/linux-headers-2.6.3-strict-ansi-fix.patch:
  Added Kevin Owen's contributed patch porting our X86 specific
  compatibility patches to AMD64. Closes bug #43520. Thanks!

*linux-headers-2.6.3-r1 (22 Feb 2004)

  22 Feb 2004; <plasmaroo@gentoo.org> linux-headers-2.6.3-r1.ebuild,
  linux-headers-2.6.3.ebuild, files/linux-headers-2.6.3-strict-ansi-fix.patch:
  Version bump; resolves bug #42239.

*linux-headers-2.6.3 (19 Feb 2004)

  19 Feb 2004; <plasmaroo@gentoo.org> linux-headers-2.6.3.ebuild,
  files/linux-headers-2.6.3-appCompat.patch,
  files/linux-headers-2.6.3-strict-ansi-fix.patch:
  Version bump. Closes bug #42153.

  15 Feb 2004; Jason Wever <weeve@gentoo.org> linux-headers-2.4.21-r1.ebuild:
  Marked stable on sparc, fixes bug #26062.

*linux-headers-2.6.1 (08 Feb 2004)

  08 Feb 2004; <plasmaroo@gentoo.org> linux-headers-2.6.1.ebuild,
  files/linux-headers-2.6.0-appCompat.patch:
  Version bump. Closes bugs #40438 and #38357.

  02 Feb 2004; Joshua Kinard <kumba@gentoo.org> linux-headers-2.4.21.ebuild,
  linux-headers-2.4.22.ebuild:
  Bumped 2.4.21 headers to x86 stable, and 2.4.22 to x86 unstable.

  28 Jan 2004; Aron Griffis <agriffis@gentoo.org> linux-headers-2.4.21.ebuild:
  stable on alpha and ia64

  22 Jan 2004; Michal 'Spock' Januszewski <spock@gentoo.org>
  linux-headers-2.6.0.ebuild, files/linux-headers-2.6.0-fb.patch:
  Added a fix for linux/fb.h. This should close bugs #38737 and #38603.

  16 Jan 2004; Bartosch Pixa <darkspecter@gentoo.org>
  linux-headers-2.4.22.ebuild:
  set ppc in keywords

  08 Jan 2004; Brian Jackson <iggy@gentoo.org> linux-headers-2.2.20.ebuild,
  linux-headers-2.2.21_pre3.ebuild, linux-headers-2.4.16-r1.ebuild,
  linux-headers-2.4.16-r3.ebuild, linux-headers-2.4.16.ebuild,
  linux-headers-2.4.17-r3.ebuild, linux-headers-2.4.17-r4.ebuild,
  linux-headers-2.4.17-r5.ebuild, linux-headers-2.4.18-r1.ebuild,
  linux-headers-2.4.18-r2.ebuild, linux-headers-2.4.18.ebuild,
  linux-headers-2.4.19-r1.ebuild, linux-headers-2.4.19.ebuild,
  linux-headers-2.4.21-r1.ebuild, linux-headers-2.4.21.ebuild,
  linux-headers-2.4.22.ebuild, linux-headers-2.4.23.ebuild,
  linux-headers-2.6.0.ebuild:
  updated ebuild Copyright years

*linux-headers-2.6.0 (24 Dec 2003)

  24 Dec 2003; <plasmaroo@gentoo.org> linux-headers-2.6.0.ebuild,
  linux-headers-2.6.0_beta11.ebuild,
  files/linux-headers-2.6.0-appCompat.patch:
  Version bump - this version has been patched to support some applications
  which did not compile on 2.6. Please report any bugs to http://bugs.gentoo.org
  or plasmaroo@gentoo.org

  11 Dec 2003; <plasmaroo@gentoo.org>
  files/linux-headers-strict-ansi-fix.patch:
  Updated the 'linux-headers-strict-ansi-fix.patch' patch to fix problematic
  packages such as kdemultimedia with ANSI compilation errors; this should close
  bug #32246. Thanks to all those involved in testing this.

  09 Dec 2003; <spider@gentoo.org> linux-headers-2.2.20.ebuild,
  linux-headers-2.2.21_pre3.ebuild, linux-headers-2.4.16-r1.ebuild,
  linux-headers-2.4.16-r3.ebuild, linux-headers-2.4.16.ebuild,
  linux-headers-2.4.17-r3.ebuild, linux-headers-2.4.17-r4.ebuild,
  linux-headers-2.4.17-r5.ebuild, linux-headers-2.4.18-r1.ebuild,
  linux-headers-2.4.18-r2.ebuild, linux-headers-2.4.18.ebuild,
  linux-headers-2.4.19-r1.ebuild, linux-headers-2.4.19.ebuild:
  Fixing chown 0.0 to 0:0

*linux-headers-2.6.0_beta11 (07 Dec 2003)

  07 Dec 2003; Joshua Kinard <kumba@gentoo.org> linux-headers-2.4.23.ebuild,
  linux-headers-2.6.0_beta11.ebuild:
  May be of use for people to test against before final 2.6 sources get released.
  Should work for the most part, but we'll just have to see...

*linux-headers-2.4.23 (28 Nov 2003)

  28 Nov 2003; Joshua Kinard <kumba@gentoo.org> linux-headers-2.4.23.ebuild:
  Revision bump for 2.4.23 kernel. Keyword masked until it can be tested. With
  the newer iputils package available, these should work fine.

*linux-headers-2.4.21-r1 (16 Nov 2003)

  24 Nov 2003; Aron Griffis <agriffis@gentoo.org> linux-headers-2.4.21.ebuild:
  Add '~alpha'.

  20 Nov 2003; Brandon Low <lostlogic@gentoo.org>
  linux-headers-2.4.21-r1.ebuild, linux-headers-2.4.21.ebuild,
  linux-headers-2.4.22.ebuild:
  Move version handling logic to after inherit kernel, or insert it where
  necessary.

  16 Nov 2003; Joshua Kinard <kumba@gentoo.org>
  linux-headers-2.4.21-r1.ebuild, linux-headers-2.4.21.ebuild,
  linux-headers-2.4.22.ebuild:
  Sparc Fix: For the generation of asm_offsets.h for sparc systems, changed the
  "make ARCH=sparc dep" line to "make ARCH=${ARCH} dep" because the system
  compiler at the present time will fail to complete a make dep stage. This is a
  temp-fix for sparc64 systems (make dep will invoke the gcc64 compiler), but sparc32
  systems may continue to be affected until either the kernel gets a fix, or a new
  gcc branch update hopefully corrects the problem.

  16 Nov 2003; Joshua Kinard <kumba@gentoo.org>
  linux-headers-2.4.21-r1.ebuild, linux-headers-2.4.21.ebuild,
  linux-headers-2.4.22.ebuild, files/linux-headers-strict-ansi-fix.patch:
  Changed the ordering of some variables to adjust to new kernel.eclass behavior.
  Added a patch that fixes an issue regarding the use of gcc's -ansi flag.

*linux-headers-2.4.22 (21 Sep 2003)

  30 Oct 2003; Joshua Kinard <kumba@gentoo.org> linux-headers-2.4.21.ebuild,
  linux-headers-2.4.22.ebuild:
  Added a minor note in pkg_postinst() to advise users to upgrade their glibc
  after emerging newer kernel headers.  Closes Bug #25836
  Tweaked the ARCH= line in the same ebuilds to get assigned the value of
  "uname -m".  This prevents any nasty surprises incase someone re-defines
  $ARCH from the commandline (or in a script).  Closes Bug #26647.

  29 Oct 2003; <plasmaroo@gentoo.org> linux-headers-2.2.20.ebuild,
  linux-headers-2.2.21_pre3.ebuild, linux-headers-2.4.16-r1.ebuild,
  linux-headers-2.4.16-r3.ebuild, linux-headers-2.4.16.ebuild,
  linux-headers-2.4.17-r3.ebuild, linux-headers-2.4.17-r4.ebuild,
  linux-headers-2.4.17-r5.ebuild, linux-headers-2.4.18-r1.ebuild,
  linux-headers-2.4.18-r2.ebuild, linux-headers-2.4.18.ebuild,
  linux-headers-2.4.19-r1.ebuild, linux-headers-2.4.19.ebuild:
  All linux-headers ebuilds have been re-slotted to slot zero.
  Bug #32197, et al.

  23 Oct 2003; Joshua Kinard <kumba@gentoo.org> linux-headers-2.4.21.ebuild,
  linux-headers-2.4.22.ebuild:
  Changed SLOT to 0 from ${OKV}

  21 Oct 2003; Joshua Kinard <kumba@gentoo.org> linux-headers-2.4.21.ebuild:
  Added ~x86 to KEYWORDS
  Removed +x mode that somehow got set on all ebuilds.

  01 Oct 2003; Joshua Kinard <kumba@gentoo.org> linux-headers-2.4.21.ebuild,
  linux-headers-2.4.22.ebuild:
  Missing PROVIDE="virtual/kernel virtual/os-headers"; Added.

  29 Sep 2003; Martin Holzer <mholzer@gentoo.org> linux-headers-2.2.20.ebuild,
  linux-headers-2.2.21_pre3.ebuild, linux-headers-2.4.16-r1.ebuild,
  linux-headers-2.4.16-r3.ebuild, linux-headers-2.4.16.ebuild,
  linux-headers-2.4.17-r3.ebuild, linux-headers-2.4.17-r4.ebuild,
  linux-headers-2.4.17-r5.ebuild, linux-headers-2.4.18-r1.ebuild,
  linux-headers-2.4.18-r2.ebuild, linux-headers-2.4.18.ebuild,
  linux-headers-2.4.19-r1.ebuild, linux-headers-2.4.19.ebuild,
  linux-headers-2.4.21.ebuild, linux-headers-2.4.22.ebuild:
  Now uses mirror://kernel.

  21 Sep 2003; Joshua Kinard <kumba@gentoo.org> linux-headers-2.4.22.ebuild:
  Created ebuild for linux-headers-2.4.22; set KEYWORDS to "-*" to mask it 
  until it is needed. Please note that at this time, net-misc/iputils will 
  fail to compile if built against 2.4.22 headers.

*linux-headers-2.4.21 (21 Jun 2003)

  21 Sep 2003; Joshua Kinard <kumba@gentoo.org> linux-headers-2.4.21.ebuild:
  Typo fixes in linux-headers-2.4.21, added blank EXTRAVERSION to prevent
  kernel.eclass from appending "-linux-r0" to the version string.

  17 Sep 2003; Jon Portnoy <avenj@gentoo.org> linux-headers-2.4.21.ebuild:
  Added 'ia64' keywords.

  12 Sep 2003; Joshua Kinard <kumba@gentoo.org> linux-headers-2.4.21.ebuild,
  files/bigendian-byteorder-fix.patch, files/generate-asm-sparc:
  Re-written linux-headers-2.4.21 ebuild; Utilizes kernel.eclass, and includes a
  needed fix for sparc systems. Only usable with the gcc33-sparc64-1.4 testing
  profile right now.  Should not affect amd64; if it does, Yell.

  21 Jun 2003; Daniel Robbins <drobbins@gentoo.org> 
  New linux-headers-2.4.21 (stock) to be used for amd64.

*linux-headers-2.4.17-r4 (11 Mar 2003)

  11 Mar 2003; Zach Welch <zwelch@gentoo.org> linux-headers-2.2.20.ebuild,
  linux-headers-2.2.21_pre3.ebuild, linux-headers-2.4.16-r1.ebuild,
  linux-headers-2.4.16-r3.ebuild, linux-headers-2.4.16.ebuild,
  linux-headers-2.4.17-r3.ebuild, linux-headers-2.4.17-r4.ebuild,
  linux-headers-2.4.17-r5.ebuild, linux-headers-2.4.18-r1.ebuild,
  linux-headers-2.4.18-r2.ebuild, linux-headers-2.4.18.ebuild,
  linux-headers-2.4.19-r1.ebuild, linux-headers-2.4.19.ebuild,
  linux-headers-2.4.20.ebuild:
  Add virtual/os-headers "PROVIDE".

*linux-headers-2.4.20 (06 Feb 2003)

  03 Apr 2003; Guy Martin <gmsoft@gentoo.org> linux-headers-2.4.20.ebuild :
  This ebuild is replaced by the hppa-headers-2.4.20_p32.ebuild since
  KEYWORDS was "hppa -*".

  28 Mar 2003; Guy Martin <gmsoft@gentoo.org> linux-headers-2.4.20.ebuild :
  Added building of include/asm/offset.h on hppa.

  15 Feb 2003; Guy Martin <gmsoft@gentoo.org> linux-headers-2.4.20.ebuild :
  Updated hppa patch level from 23 to 26.

  06 Feb 2003; Guy Martin <gmsoft@gentoo.org> linux-headers-2.4.20.ebuild :
  Released 2.4.20 needed for hppa. Others archs are masked.

  20 Dec 2002; Dean Bailey <alron@gentoo.org> : added missing sparc64 to ebuild.

*linux-headers-2.4.19-r1 (18 Dec 2002)

  24 Mar 2003; Christian Birchinger <joker@gentoo.org>
  linux-headers-2.4.19-r1.ebuild:
  Added a sparc64 detection fix.

  19 Jan 2003; Jan Seidel <tuxus@gentoo.org> :
  Added 'mips' to keywords.

  18 Dec 2002; Dean Bailey <alron@gentoo.org> : 
  Fixed the lack of sparc64 instances in the file which were accidently wiped during an earlier fix.
  Set to r1 as this was a large enough change.

  17 Dec 2002; Brandon Low <lostlogic@gentoo.org>:
  Make all kernel-sources SLOT="${KV}"

  06 Dec 2002; Rodney Rees <manson@gentoo.org> : Changed sparc ~sparc keywords.

*linux-headers-2.4.19 (02 Sept 2002)

  02 Sept 2002; Nicholas Jones <carpaski@gentoo.org> :

  Fixed the
	  mv: cannot move `linux-2.4.19' to a subdirectory of itself
          error with a $OKV!=$KV check.

  Added comments to the die statements.		

*** See the sys-kernel/linux-sources ChangeLog for general changes. ***