summaryrefslogtreecommitdiff
blob: 6804343e3f0e6c56fb1e690d14d0fc733ca54d4b (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
# ChangeLog for dev-util/catalyst
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/catalyst/ChangeLog,v 1.179 2008/02/07 03:02:43 wolf31o2 Exp $

*catalyst-2.0.6_pre1 (07 Feb 2008)

  07 Feb 2008; Chris Gianelloni <wolf31o2@gentoo.org>
  +catalyst-2.0.6_pre1.ebuild:
  Version bump to 2.0.6_pre1 for testing.

  25 Jan 2008; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.10.10.ebuild, catalyst-2.0.5.ebuild:
  Marking catalyst 2.0.5 stable and removing 1.1.10.10 so I never have to get
  another stupid catalyst 1.x bug, again.

*catalyst-2.0.5 (10 Jan 2008)

  10 Jan 2008; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-2.0.5_pre3.ebuild, -catalyst-2.0.5_pre4.ebuild,
  -catalyst-2.0.5_pre5.ebuild, -catalyst-2.0.5_pre6.ebuild,
  +catalyst-2.0.5.ebuild:
  Adding catalyst 2.0.5 to the tree.

*catalyst-2.0.5_pre6 (25 Nov 2007)

  25 Nov 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  +catalyst-2.0.5_pre6.ebuild:
  Version bump to 2.0.5_pre6 for testing. This version adds support for N32 on
  MIPS and also initial icecream cluster compiler support. Closing bug #197917
  and bug #200095.

*catalyst-2.0.5_pre5 (13 Nov 2007)

  13 Nov 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  +catalyst-2.0.5_pre5.ebuild:
  Version bump for testing.  Closing bug #197572.

*catalyst-2.0.5_pre4 (12 Oct 2007)

  12 Oct 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-2.0.4.ebuild, -catalyst-2.0.5_pre2.ebuild,
  +catalyst-2.0.5_pre4.ebuild:
  Version bump to 2.0.5_pre4, which fixes bug #120076, bug #131504, bug
  #169041, and bug #191524.

*catalyst-2.0.5_pre3 (31 Aug 2007)

  31 Aug 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  +catalyst-2.0.5_pre3.ebuild:
  Version bump to 2.0.5_pre3 to test some new stage-building code.

*catalyst-2.0.5_pre2 (29 Aug 2007)

  29 Aug 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-2.0.5_pre1.ebuild, +catalyst-2.0.5_pre2.ebuild:
  Version bump to 2.0.5_pre2 for testing and closing bug #188099.

*catalyst-2.0.5_pre1 (29 Aug 2007)

  29 Aug 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  +catalyst-2.0.5_pre1.ebuild:
  Version bump to catalyst 2.0.5_pre1, which closes bug #174287, bug #174298,
  bug #174635, bug #177796, bug #178289, and bug #188339.

  28 Aug 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  catalyst-1.1.10.10.ebuild:
  Removing sys-apps/setarch from dependencies for bug #190476.

  12 Jul 2007; Mike Frysinger <vapier@gentoo.org> catalyst-2.0.4.ebuild:
  Dont force sys-apps/setarch as it is part of the system already.

*catalyst-2.0.4 (12 Apr 2007)

  12 Apr 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-2.0.2.ebuild, -catalyst-2.0.3.ebuild, +catalyst-2.0.4.ebuild:
  Version bumped to 2.0.4 for 2007.0's release. This resolves bug #173002, bug
  #173532, bug #173740, and bug #173826.

  07 Apr 2007; Mike Frysinger <vapier@gentoo.org> catalyst-1.1.10.10.ebuild,
  catalyst-2.0.2.ebuild, catalyst-2.0.3.ebuild:
  Rewrite hack abuse of dohtml to use insinto/doins.

  21 Mar 2007; Chris Gianelloni <wolf31o2@gentoo.org> catalyst-2.0.3.ebuild:
  Remove cdr from IUSE since we no longer use it and change the x86-fbsd check
  to kernel_linux, which is more appropriate.

*catalyst-2.0.3 (20 Mar 2007)

  20 Mar 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-2.0.3_pre1.ebuild, -catalyst-2.0.3_pre2.ebuild,
  -catalyst-2.0.3_pre3.ebuild, +catalyst-2.0.3.ebuild:
  Version bump to 2.0.3 to resolve bug #166294, bug #166420, bug #166426, bug
  #166695, bug #169363, and bug #171157.

*catalyst-2.0.3_pre3 (06 Mar 2007)

  06 Mar 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  +catalyst-2.0.3_pre3.ebuild:
  Version bump to the latest catalyst 2.0.3 pre-release to fix bug #166294,
  bug #166420, bug #166426, bug #166695, and bug #166363.

  05 Mar 2007; Marius Mauch <genone@gentoo.org> catalyst-1.1.10.10.ebuild,
  catalyst-2.0.2.ebuild, catalyst-2.0.3_pre1.ebuild,
  catalyst-2.0.3_pre2.ebuild:
  Replacing einfo with elog

*catalyst-2.0.3_pre2 (15 Feb 2007)
*catalyst-2.0.3_pre1 (15 Feb 2007)

  15 Feb 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  +digest-catalyst-2.0.3_pre1, +digest-catalyst-2.0.3_pre2,
  +catalyst-2.0.3_pre1.ebuild, +catalyst-2.0.3_pre2.ebuild:
  Adding pre-release versions of catalyst for further testing.

  15 Feb 2007; Chris Gianelloni <wolf31o2@gentoo.org> -catalyst-2.0.ebuild,
  -catalyst-2.0.1.ebuild:
  Removing older versions.

  09 Feb 2007; Chris Gianelloni <wolf31o2@gentoo.org> catalyst-2.0.2.ebuild:
  We need to install the default catalystrc. Thanks to Andrew Gaffney
  <agaffney@gentoo.org> for pointing this out.

*catalyst-2.0.2 (06 Feb 2007)

  06 Feb 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  +catalyst-2.0.2.ebuild:
  Version bump to the new 2.0.2 release of catalyst. This closes bug #143725,
  bug #145941, bug #147195, bug #159040, bug #159103, bug #159598, and bug
  #161915.

  21 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> catalyst-2.0.1.ebuild:
  Add ~x86-fbsd keyword.

*catalyst-2.0.1 (20 Dec 2006)

  20 Dec 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc50-slot.patch, +catalyst-2.0.1.ebuild:
  Version bump to 2.0.1, which fixes quite a few minor bugs in 2.0, and
  removing an unused patch.

  07 Nov 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-2.0_rc50.ebuild:
  Remove older release candidates for 2.0.

  29 Jul 2006; Chris Gianelloni <wolf31o2@gentoo.org> catalyst-2.0.ebuild:
  Change SLOT to 0.

*catalyst-2.0 (29 Jul 2006)

  29 Jul 2006; Chris Gianelloni <wolf31o2@gentoo.org> +catalyst-2.0.ebuild:
  Version bump.  This is 2.0, so let the rejoicing begin.

*catalyst-2.0_rc50 (20 Jul 2006)

  20 Jul 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc49-slot.patch, +files/catalyst-2.0_rc50-slot.patch,
  -catalyst-2.0_rc49.ebuild, +catalyst-2.0_rc50.ebuild:
  Version bump and closing bug #139337.

*catalyst-2.0_rc49 (28 Jun 2006)

  28 Jun 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc48-slot.patch, +files/catalyst-2.0_rc49-slot.patch,
  -catalyst-2.0_rc48.ebuild, +catalyst-2.0_rc49.ebuild:
  Version bump.  Closing bug #136351, bug #138080, and bug #138255.

*catalyst-2.0_rc48 (22 Jun 2006)

  22 Jun 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc47-slot.patch, +files/catalyst-2.0_rc48-slot.patch,
  -catalyst-2.0_rc47.ebuild, +catalyst-2.0_rc48.ebuild:
  Version bump to 2.0_rc48.  Closing bug #137252.

*catalyst-2.0_rc47 (09 Jun 2006)

  09 Jun 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc46-slot.patch, +files/catalyst-2.0_rc47-slot.patch,
  -catalyst-2.0_rc46.ebuild, +catalyst-2.0_rc47.ebuild:
  Version bump to 2.0_rc47 and closing bug #135051 and bug #135971.

*catalyst-2.0_rc46 (25 May 2006)

  25 May 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc45-slot.patch, +files/catalyst-2.0_rc46-slot.patch,
  -catalyst-2.0_rc45.ebuild, +catalyst-2.0_rc46.ebuild:
  Version bump to 2.0_rc46 and closing bug #132180 and bug #128878.

  25 May 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc44-slot.patch, -catalyst-2.0_rc44.ebuild:
  Cleaning up older versions.

*catalyst-2.0_rc45 (01 May 2006)

  01 May 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  +files/catalyst-2.0_rc45-slot.patch, +catalyst-2.0_rc45.ebuild:
  Version bump to fix a few bugs. Closing bug #131181, bug #131190, and bug
  #131502.

*catalyst-2.0_rc44 (20 Apr 2006)

  20 Apr 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc43-slot.patch, +files/catalyst-2.0_rc44-slot.patch,
  -catalyst-2.0_rc43.ebuild, +catalyst-2.0_rc44.ebuild:
  Version bump because I can't code.  Enjoy.

*catalyst-2.0_rc43 (19 Apr 2006)

  19 Apr 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc42-slot.patch, +files/catalyst-2.0_rc43-slot.patch,
  -catalyst-2.0_rc42.ebuild, +catalyst-2.0_rc43.ebuild:
  Version bumped to 2.0_rc43 as this fixes a major bug in 2.0_rc42 and also
  fixes bug #130476.

  19 Apr 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  catalyst-2.0_rc42.ebuild:
  Made sed for ccache actually be determined by USE=ccache and removed sed for
  crc32->md5 since we no longer use Archive-Zip.

*catalyst-2.0_rc42 (18 Apr 2006)

  18 Apr 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc41-slot.patch, +files/catalyst-2.0_rc42-slot.patch,
  -catalyst-2.0_rc41.ebuild, +catalyst-2.0_rc42.ebuild:
  Version bump. This closes bug #123584, bug #124662, bug #125498, bug
  #126900, bug #129890, and bug #130103.

  11 Apr 2006; Simon Stelling <blubb@gentoo.org> catalyst-1.1.10.10.ebuild,
  catalyst-2.0_rc41.ebuild:
  correct deps on linux32, ppc32 to sys-apps/setarch; bug 129571

*catalyst-2.0_rc41 (04 Apr 2006)

  04 Apr 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc40-slot.patch, +files/catalyst-2.0_rc41-slot.patch,
  -catalyst-2.0_rc40.ebuild, +catalyst-2.0_rc41.ebuild:
  Version bump to 2.0_rc41.

  14 Mar 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  catalyst-2.0_rc40.ebuild:
  Removed sed for hash_function and making sure sed for ccache is done behind
  an if statement.

*catalyst-2.0_rc40 (13 Mar 2006)

  13 Mar 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc39-slot.patch, +files/catalyst-2.0_rc40-slot.patch,
  -catalyst-2.0_rc39.ebuild, +catalyst-2.0_rc40.ebuild:
  Version bump to 2.0_rc40 to resolve bug #123267.

*catalyst-2.0_rc39 (17 Feb 2006)

  17 Feb 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc38-slot.patch, +files/catalyst-2.0_rc39-slot.patch,
  -catalyst-2.0_rc38.ebuild, +catalyst-2.0_rc39.ebuild:
  This is catalyst 2.0_rc39.  This closes bug #122154 and bug #122822.

*catalyst-2.0_rc38 (14 Feb 2006)

  14 Feb 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc37-slot.patch, +files/catalyst-2.0_rc38-slot.patch,
  -catalyst-2.0_rc37.ebuild, +catalyst-2.0_rc38.ebuild:
  Version bump to 2.0_rc38 to resolve an issue with livecd-stage2 where
  root_overlay was not set causing catalyst to bail out.

*catalyst-2.0_rc37 (13 Feb 2006)

  13 Feb 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc36-slot.patch, +files/catalyst-2.0_rc37-slot.patch,
  -catalyst-2.0_rc36.ebuild, +catalyst-2.0_rc37.ebuild:
  Version bump to 2.0_rc37. This should support multiple overlays as well as
  fix 2 bugs regarding the official LiveCD and the Installer.

*catalyst-2.0_rc36 (10 Feb 2006)

  10 Feb 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc35-slot.patch, +files/catalyst-2.0_rc36-slot.patch,
  -catalyst-2.0_rc35.ebuild, +catalyst-2.0_rc36.ebuild:
  Version bump to 2.0_rc36 and closing bug #122154.

*catalyst-2.0_rc35 (09 Feb 2006)

  09 Feb 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc34-slot.patch, +files/catalyst-2.0_rc35-slot.patch,
  -catalyst-2.0_rc34.ebuild, +catalyst-2.0_rc35.ebuild:
  Version bump to 2.0_rc35. This fixes an indentation bug in 2.0_rc34 along
  with adding some hfs-hide options for PPC64. This also has some updates to
  the motd for the LiveCD to make it easier for users to know what to do when
  they get to the command line.

*catalyst-2.0_rc34 (08 Feb 2006)

  08 Feb 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc33-slot.patch, +files/catalyst-2.0_rc34-slot.patch,
  -catalyst-2.0_rc33.ebuild, +catalyst-2.0_rc34.ebuild:
  Version bump to 2.0_rc34. This version fixes problems with extraversion in
  livecd-stage2 and also adds an additional entry without serial for people
  using the serial option.

  08 Feb 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  files/catalyst-2.0_rc33-slot.patch:
  Fixing the patch, apparently my sed-fu was a bit too much on rc32 (and crc32).

*catalyst-2.0_rc33 (08 Feb 2006)

  08 Feb 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc32-slot.patch, +files/catalyst-2.0_rc33-slot.patch,
  -catalyst-2.0_rc32.ebuild, +catalyst-2.0_rc33.ebuild:
  Version bumped to 2.0_rc33. This resolves a bug in the order in which we
  perform updates for the official LiveCD that broke systempkgs.txt for the
  Installer.

*catalyst-2.0_rc32 (07 Feb 2006)

  07 Feb 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc31-slot.patch, +files/catalyst-2.0_rc32-slot.patch,
  -catalyst-2.0_rc31.ebuild, +catalyst-2.0_rc32.ebuild:
  Version bump to 2.0_rc32 to resolve an issue with extraversion.

*catalyst-2.0_rc31 (06 Feb 2006)

  06 Feb 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc30-slot.patch, +files/catalyst-2.0_rc31-slot.patch,
  -catalyst-2.0_rc30.ebuild, +catalyst-2.0_rc31.ebuild:
  Added copying of /usr/portage/eclass for the Installer and changing all
  occurrences of clst_livecd_cdfstype with clst_fstype.

*catalyst-2.0_rc30 (02 Feb 2006)

  02 Feb 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc29-slot.patch, +files/catalyst-2.0_rc30-slot.patch,
  -catalyst-2.0_rc29.ebuild, +catalyst-2.0_rc30.ebuild:
  Version bump to 2.0_rc30.  This resolves an issue with labels on PPC*.

*catalyst-2.0_rc29 (02 Feb 2006)

  02 Feb 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc28-slot.patch, +files/catalyst-2.0_rc29-slot.patch,
  -catalyst-2.0_rc28.ebuild, +catalyst-2.0_rc29.ebuild:
  Version bump to 2.0_rc29.  This resolves bug #119940 and bug #117649.

*catalyst-2.0_rc28 (31 Jan 2006)

  31 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc26-slot.patch, +files/catalyst-2.0_rc28-slot.patch,
  -catalyst-2.0_rc26.ebuild, +catalyst-2.0_rc28.ebuild:
  Version bump to 2.0_rc28. This fixes up the PPC/PPC64 cdtar, fixes grp/use,
  closes bug #120935, and fixes ISO creation on amd64/x86.

*catalyst-2.0_rc26 (27 Jan 2006)

  27 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc25-slot.patch, +files/catalyst-2.0_rc26-slot.patch,
  -catalyst-2.0_rc25.ebuild, +catalyst-2.0_rc26.ebuild:
  Version bump to 2.0_rc26. This resolves an error when kernel packages aren't
  defined, adds console and machine_type=ibm settings for PPC64, and creates a
  separated PPC64 ISO creation.

*catalyst-2.0_rc25 (26 Jan 2006)

  26 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc24-slot.patch, +files/catalyst-2.0_rc25-slot.patch,
  -catalyst-2.0_rc24.ebuild, +catalyst-2.0_rc25.ebuild:
  Version bumped to 2.0_rc25 and really closing bug #120475.

*catalyst-2.0_rc24 (26 Jan 2006)

  26 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc23-slot.patch, +files/catalyst-2.0_rc24-slot.patch,
  -catalyst-2.0_rc23.ebuild, +catalyst-2.0_rc24.ebuild:
  Version bumped to 2.0_rc24 and closing bug #120475.

*catalyst-2.0_rc23 (26 Jan 2006)

  26 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc22-slot.patch, +files/catalyst-2.0_rc23-slot.patch,
  -catalyst-2.0_rc22.ebuild, +catalyst-2.0_rc23.ebuild:
  Version bump to 2.0_rc23. This version fixes kernel caching and adds initial
  EFI support for x86. EFI support is still experimental and is completely
  untested. Please do not file bug reports without patches.

*catalyst-2.0_rc22 (26 Jan 2006)

  26 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc21-slot.patch, +files/catalyst-2.0_rc22-slot.patch,
  -catalyst-2.0_rc21.ebuild, +catalyst-2.0_rc22.ebuild:
  Version bumped to 2.0_rc22 which improves softlevel support.

  26 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  catalyst-2.0_rc21.ebuild:
  Added dosfstools to the dependencies for ia64 if USE=cdr.

*catalyst-2.0_rc21 (24 Jan 2006)

  24 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc20-slot.patch, +files/catalyst-2.0_rc21-slot.patch,
  -catalyst-2.0_rc20.ebuild, +catalyst-2.0_rc21.ebuild:
  Version bump to fix an issue on on IA64. This version changes the default
  for the x86 subarch to use -mtune rather than -mcpu. This means that if
  you're using a seed stage that has GCC 3.3 or lower, you will need to add
  cflags and cxxflags to your stage1 spec file for it to compile properly.

*catalyst-2.0_rc20 (20 Jan 2006)

  20 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc19-slot.patch, +files/catalyst-2.0_rc20-slot.patch,
  -catalyst-2.0_rc19.ebuild, +catalyst-2.0_rc20.ebuild:
  Version bump to close bug #119605 and bug #119635.

*catalyst-2.0_rc19 (18 Jan 2006)

  18 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc17-slot.patch, +files/catalyst-2.0_rc19-slot.patch,
  -catalyst-2.0_rc17.ebuild, +catalyst-2.0_rc19.ebuild:
  Version bump to 2.0_rc19 to resolve some issues with string conversion and
  spacing.

*catalyst-2.0_rc17 (17 Jan 2006)

  17 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc16-slot.patch, +files/catalyst-2.0_rc17-slot.patch,
  -catalyst-2.0_rc16.ebuild, +catalyst-2.0_rc17.ebuild:
  Version bumped to 2.0_rc17 to solve a fairly major bug in spec parsing.

  16 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc15-slot.patch, -catalyst-2.0_rc15.ebuild:
  Clean up older versions.

*catalyst-2.0_rc16 (16 Jan 2006)

  16 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  +files/catalyst-2.0_rc16-slot.patch, +catalyst-2.0_rc16.ebuild:
  Version bump and closing bug #119123.

*catalyst-2.0_rc15 (16 Jan 2006)

  16 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc14-slot.patch, +files/catalyst-2.0_rc15-slot.patch,
  -catalyst-2.0_rc14.ebuild, +catalyst-2.0_rc15.ebuild:
  Version bump. Closes bug #117648, #117649, #118213, #118975, #119009, and
  #119041.

*catalyst-2.0_rc14 (13 Jan 2006)

  13 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc13-slot.patch, +files/catalyst-2.0_rc14-slot.patch,
  -catalyst-2.0_rc13.ebuild, +catalyst-2.0_rc14.ebuild:
  Version bump.  Fixes bug #118709 and bug #118542.

*catalyst-2.0_rc13 (04 Jan 2006)

  04 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc12-slot.patch, +files/catalyst-2.0_rc13-slot.patch,
  -catalyst-2.0_rc12.ebuild, +catalyst-2.0_rc13.ebuild:
  Version bumped to 2.0_rc13 and closing bug #117253, bug #117254, and bug
  #117648.

*catalyst-2.0_rc12 (21 Dec 2005)

  21 Dec 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc11-slot.patch, +files/catalyst-2.0_rc12-slot.patch,
  -catalyst-2.0_rc11.ebuild, +catalyst-2.0_rc12.ebuild:
  Version bumped to 2.0_rc12.

  21 Dec 2005; Markus Rothe <corsair@gentoo.org> catalyst-2.0_rc11.ebuild:
  removed ppc64 exclusion from shash dependency

  20 Dec 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  catalyst-2.0_rc11.ebuild:
  sparc fix0red wrt #116186

  20 Dec 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  catalyst-2.0_rc11.ebuild:
  Add proper exclusions for app-crypt/shash.

*catalyst-2.0_rc11 (20 Dec 2005)

  20 Dec 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc10-slot.patch, +files/catalyst-2.0_rc11-slot.patch,
  -catalyst-2.0_rc10.ebuild, +catalyst-2.0_rc11.ebuild:
  Bumped to 2.0_rc11 due to a major failure in stage1 building. Blame vapier
  for being about 45 seconds too late to keep me from putting out rc10.

*catalyst-2.0_rc10 (20 Dec 2005)

  20 Dec 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  +files/catalyst-2.0_rc10-slot.patch, -files/catalyst-2.0_rc9-slot.patch,
  -catalyst-2.0_rc9.ebuild, +catalyst-2.0_rc10.ebuild:
  Version bumped to 2.0_rc10.

*catalyst-2.0_rc9 (13 Dec 2005)

  13 Dec 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc8-slot.patch, +files/catalyst-2.0_rc9-slot.patch,
  -catalyst-2.0_rc8.ebuild, +catalyst-2.0_rc9.ebuild:
  Version bumped to rc9, which should fix all reported bugs.

*catalyst-2.0_rc8 (09 Dec 2005)

  09 Dec 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc7-slot.patch, +files/catalyst-2.0_rc8-slot.patch,
  -catalyst-2.0_rc7.ebuild, +catalyst-2.0_rc8.ebuild:
  Added more gnome-theme goodness from the LiveCD, updated the man page, fixed
  the environment, and cleaned up some error messages.

*catalyst-2.0_rc7 (07 Dec 2005)

  07 Dec 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc6-slot.patch, +files/catalyst-2.0_rc7-slot.patch,
  -catalyst-2.0_rc6.ebuild, +catalyst-2.0_rc7.ebuild:
  Version bumped to 2.0_rc7 to fix a snapshot issue and to turn off emerge
  pauses for unmerges on all stage targets.

*catalyst-2.0_rc6 (07 Dec 2005)

  07 Dec 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc5-slot.patch, +files/catalyst-2.0_rc6-slot.patch,
  -catalyst-2.0_rc5.ebuild, +catalyst-2.0_rc6.ebuild:
  Version bumped to 2.0_rc6 to fix a nasty unpack bug.  Closing bug #114665.

*catalyst-2.0_rc5 (04 Dec 2005)

  04 Dec 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc4-slot.patch, +files/catalyst-2.0_rc5-slot.patch,
  -catalyst-2.0_rc4.ebuild, +catalyst-2.0_rc5.ebuild:
  Version bumped to _rc5 for some fixes.

*catalyst-2.0_rc4 (02 Dec 2005)

  02 Dec 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc3-slot.patch, +files/catalyst-2.0_rc4-slot.patch,
  -catalyst-2.0_rc3.ebuild, +catalyst-2.0_rc4.ebuild:
  Version bump. This version was rushed out to repair problems with the python
  in 2.0_rc3. You can blame me for that one.

*catalyst-2.0_rc3 (02 Dec 2005)

  02 Dec 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc2-slot.patch, +files/catalyst-2.0_rc3-slot.patch,
  -catalyst-2.0_rc2.ebuild, +catalyst-2.0_rc3.ebuild:
  Version bumped. This version includes automatic MD5/SHA1 generation for
  stages/ISO/GRP (srcset/pkgset).

*catalyst-2.0_rc2 (30 Nov 2005)

  30 Nov 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_rc1-slot.patch, +files/catalyst-2.0_rc2-slot.patch,
  -catalyst-2.0_rc1.ebuild, +catalyst-2.0_rc2.ebuild:
  Version bumped to 2.0_rc2. This adds autoresume points between each kernel
  on multiple builds and fixes a nasty livecd-stage1 USE issue.

*catalyst-2.0_rc1 (29 Nov 2005)

  29 Nov 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_pre20051129-slot.patch,
  +files/catalyst-2.0_rc1-slot.patch, -catalyst-2.0_pre20051129.ebuild,
  +catalyst-2.0_rc1.ebuild:
  Here's catalyst 2.0_rc1, which I will be unmasking to get more wide-spread
  testing. This should be production-ready.

*catalyst-2.0_pre20051129 (29 Nov 2005)

  29 Nov 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_pre20051122-slot.patch,
  +files/catalyst-2.0_pre20051129-slot.patch,
  -catalyst-2.0_pre20051122.ebuild, +catalyst-2.0_pre20051129.ebuild:
  This new pre-release version fixes all of the issues that have been reported
  to us. Hopefully, this is the last pre-release version and the next release
  will be catalyst 2.0 final.

*catalyst-2.0_pre20051122 (22 Nov 2005)

  22 Nov 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_pre20051118-slot.patch,
  +files/catalyst-2.0_pre20051122-slot.patch,
  -catalyst-2.0_pre20051118.ebuild, +catalyst-2.0_pre20051122.ebuild:
  Updated to a newer pre-version that should resolve the amd64/x86 issues.

*catalyst-2.0_pre20051118 (18 Nov 2005)

  18 Nov 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_pre20051115-slot.patch,
  +files/catalyst-2.0_pre20051118-slot.patch,
  -catalyst-2.0_pre20051115.ebuild, +catalyst-2.0_pre20051118.ebuild:
  Updated to latest pre-version, to resolve all remaining open bugs with
  catalyst. This also fixes the nasty problems with x86/amd64 CD building.

*catalyst-2.0_pre20051115 (15 Nov 2005)

  15 Nov 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/catalyst-2.0_pre20051111-slot.patch,
  +files/catalyst-2.0_pre20051115-slot.patch,
  -catalyst-2.0_pre20051111.ebuild, +catalyst-2.0_pre20051115.ebuild:
  Version bumped to 2.0_pre20051115 to fix a nasty livecd-stage2 bug when not
  using seedcache and also enabled proper livecd/readme support.

*catalyst-2.0_pre20051111 (11 Nov 2005)

  11 Nov 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  +files/catalyst-2.0_pre20051111-slot.patch,
  +catalyst-2.0_pre20051111.ebuild:
  Added catalyst 2.0_pre20051111. This is the first catalyst 2.0 pre-release
  version available to the public, so please test it thoroughly.

*catalyst-1.1.10.10 (29 Jul 2005)

  29 Jul 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.10.9.ebuild, +catalyst-1.1.10.10.ebuild:
  Version bump to fix critical PPC bug.

*catalyst-1.1.10.9 (28 Jul 2005)

  28 Jul 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.10.8.ebuild, +catalyst-1.1.10.9.ebuild:
  Version bumped to include newer Getting_Online.txt and also to fix some
  issues with building Pegasos kernels.

*catalyst-1.1.10.8 (27 Jul 2005)

  27 Jul 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.10.7.ebuild, +catalyst-1.1.10.8.ebuild:
  Version bumped to add a Getting_Online.txt document for minimal installation
  CD images.

*catalyst-1.1.10.7 (26 Jul 2005)

  26 Jul 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.10.6.ebuild, +catalyst-1.1.10.7.ebuild:
  Version bumped to remove locales from official media to produce smaller
  release media.

*catalyst-1.1.10.6 (21 Jul 2005)

  21 Jul 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.10.5.ebuild, +catalyst-1.1.10.6.ebuild:
  Version bumped to build smaller stage1 and stage2 tarballs and also to
  resolve a ccache error in livecd-stage2.

*catalyst-1.1.10.5 (18 Jul 2005)

  18 Jul 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.10.4.ebuild, +catalyst-1.1.10.5.ebuild:
  Version bump to fix minor livecd issues and to fix ia64 livecd-stage2.

*catalyst-1.1.10.4 (12 Jul 2005)

  12 Jul 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.10.3.ebuild, +catalyst-1.1.10.4.ebuild:
  Version bumped to fix critical bug in new postconf code.

*catalyst-1.1.10.3 (12 Jul 2005)

  12 Jul 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.10.2.ebuild, +catalyst-1.1.10.3.ebuild:
  Version bumped to fix alsasound init script issue, remove postconf, and
  update isolinux cdtar to 3.09 for x86/amd64.

*catalyst-1.1.10.2 (12 Jul 2005)

  12 Jul 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.10.1.ebuild, +catalyst-1.1.10.2.ebuild:
  Version bumped to fix building on ia64.

  08 Jul 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  catalyst-1.1.10.1.ebuild:
  Fixing RDEPEND for mips.

  08 Jul 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  files/digest-catalyst-1.1.10.1:
  Fixing digest.

  08 Jul 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  catalyst-1.1.10.1.ebuild:
  Fixing being all masked.

*catalyst-1.1.10.1 (08 Jul 2005)

  08 Jul 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.10.ebuild, +catalyst-1.1.10.1.ebuild:
  Version bumped to 1.1.10.1 to fix a bug with auto-starting X on generic
  LiveCD and GameCD builds.

  08 Jul 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  files/digest-catalyst-1.1.10:
  Re-rolled catalyst tarball and fixing digest.

*catalyst-1.1.10 (08 Jul 2005)

  08 Jul 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.9.ebuild, -catalyst-1.1.10_pre18.ebuild,
  +catalyst-1.1.10.ebuild:
  Version bumped to catalyst 1.1.10 and removing all previous versions. This
  is the last catalyst 1.x release other than bugfix releases. I'd like to
  thank everyone for the success of catalyst and hope you all enjoy catalyst
  2.0 when it is released.

*catalyst-1.1.10_pre18 (06 Jul 2005)

  06 Jul 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.10_pre17.ebuild, +catalyst-1.1.10_pre18.ebuild:
  Version bump and fixing a very nasty bug in _pre17 where stage1 would always
  fail.

*catalyst-1.1.10_pre17 (05 Jul 2005)

  05 Jul 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.10_pre16.ebuild, +catalyst-1.1.10_pre17.ebuild:
  Version bump.  Added initial IA64 support.  Closing bug #97867.

*catalyst-1.1.10_pre16 (01 Jul 2005)

  01 Jul 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.10_pre15.ebuild, +catalyst-1.1.10_pre16.ebuild:
  Version bump to remove livecd/bootargs bug.

*catalyst-1.1.10_pre15 (01 Jul 2005)

  01 Jul 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.10_pre14.ebuild, +catalyst-1.1.10_pre15.ebuild:
  Version bump.

*catalyst-1.1.10_pre14 (29 Jun 2005)

  29 Jun 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.10_pre13.ebuild, +catalyst-1.1.10_pre14.ebuild:
  Version bump to add livecd/bootargs support.

*catalyst-1.1.10_pre13 (28 Jun 2005)

  28 Jun 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.10_pre12.ebuild, +catalyst-1.1.10_pre13.ebuild:
  Version bump.

*catalyst-1.1.10_pre12 (24 Jun 2005)

  24 Jun 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.10_pre11.ebuild, +catalyst-1.1.10_pre12.ebuild:
  Version bump.

*catalyst-1.1.10_pre11 (22 Jun 2005)

  22 Jun 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.10_pre10.ebuild, +catalyst-1.1.10_pre11.ebuild:
  Version bump.

*catalyst-1.1.10_pre10 (21 Jun 2005)

  21 Jun 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.10_pre9.ebuild, +catalyst-1.1.10_pre10.ebuild:
  Version bumped to fix boot issue on alpha, hppa, and sparc.

*catalyst-1.1.10_pre9 (20 Jun 2005)

  20 Jun 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.10_pre8.ebuild, +catalyst-1.1.10_pre9.ebuild:
  Version bumped to catalyst 1.1.10_pre9 to fix boot issue with PPC.

  16 Jun 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  catalyst-1.1.10_pre8.ebuild:
  Removed isogen lines since we've dropped it from the package in CVS.

*catalyst-1.1.10_pre8 (15 Jun 2005)

  15 Jun 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.10_pre7.ebuild, +catalyst-1.1.10_pre8.ebuild:
  Version bumped to new catalyst version and fixing tar/star issues reported
  on gentoo-catalyst.

*catalyst-1.1.10_pre7 (14 Jun 2005)

  14 Jun 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.10_pre6.ebuild, +catalyst-1.1.10_pre7.ebuild:
  Version bumped to 1.1.10_pre7.

*catalyst-1.1.10_pre6 (14 Jun 2005)

  14 Jun 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.10_pre5.ebuild, +catalyst-1.1.10_pre6.ebuild:
  Updated to catalyst 1.1.10_pre6 and closing bug #95819.

*catalyst-1.1.10_pre5 (10 Jun 2005)

  10 Jun 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.10_pre4.ebuild, +catalyst-1.1.10_pre5.ebuild:
  Version bumped to new 1.1.10_pre5 for testing.

*catalyst-1.1.10_pre4 (09 Jun 2005)

  09 Jun 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.10_pre3.ebuild, +catalyst-1.1.10_pre4.ebuild:
  Updated to catalyst 1.1.10_pre4

*catalyst-1.1.10_pre3 (03 Jun 2005)

  03 Jun 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.10_pre2.ebuild, +catalyst-1.1.10_pre3.ebuild:
  Version bumped to _pre3.

*catalyst-1.1.10_pre2 (02 Jun 2005)

  02 Jun 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.10_pre1.ebuild, +catalyst-1.1.10_pre2.ebuild:
  Version bumped to _pre2.

  01 Jun 2005; Chris Gianelloni <wolf31o2@gentoo.org> catalyst-1.1.9.ebuild:
  Added mips check on squashfs-tools.

*catalyst-1.1.10_pre1 (01 Jun 2005)

  01 Jun 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.1.ebuild, -catalyst-1.1.8.ebuild, catalyst-1.1.9.ebuild,
  +catalyst-1.1.10_pre1.ebuild:
  Cleaning up older versions, adding first testing version, and moving
  catalyst 1.1.9 to stable.

  29 Apr 2005; Bryan Østergaard <kloeri@gentoo.org> catalyst-1.1.8.ebuild:
  Stable on alpha. commit

*catalyst-1.1.9 (15 Apr 2005)

  15 Apr 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  +catalyst-1.1.9.ebuild:
  Version bumped to catalyst 1.1.9 and closing bug #77342, #84156, #72522,
  #88426, and #88943.

  01 Apr 2005; Lars Weiler <pylon@gentoo.org> catalyst-1.1.8.ebuild:
  Stable on ppc.

  01 Apr 2005; Gustavo Zacarias <gustavoz@gentoo.org> catalyst-1.1.8.ebuild:
  Stable on amd64, sparc and x86

  01 Apr 2005; Aron Griffis <agriffis@gentoo.org> catalyst-1.1.8.ebuild:
  stable on ia64

*catalyst-1.1.8 (24 Mar 2005)

  24 Mar 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.7.ebuild, +catalyst-1.1.8.ebuild:
  Version bumped to 1.1.8 to resolve problems with livecd-stage1 and also to
  do a few cleanups. Check the package's ChangeLog in /usr/share/doc for a
  complete listing of changes.

*catalyst-1.1.7 (09 Mar 2005)

  09 Mar 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.6.ebuild, +catalyst-1.1.7.ebuild:
  Version bumped to 1.1.7 and cleaning up older ebuilds.

*catalyst-1.1.6 (03 Mar 2005)

  03 Mar 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.5.ebuild, +catalyst-1.1.6.ebuild:
  Version bumped to 1.1.6 and removing 1.1.5 ebuild.

  24 Feb 2005; Chris Gianelloni <wolf31o2@gentoo.org> catalyst-1.1.1.ebuild,
  catalyst-1.1.5.ebuild:
  Removed extranneous genkernel dependency.

  24 Feb 2005; Chris Gianelloni <wolf31o2@gentoo.org> metadata.xml:
  Updated metadata.

  12 Feb 2005; Chris Gianelloni <wolf31o2@gentoo.org> catalyst-1.1.1.ebuild,
  catalyst-1.1.5.ebuild:
  Changed RDEPEND from app-cdr/cdrtools to virtual/cdrtools.

*catalyst-1.1.5 (29 Jan 2005)

  29 Jan 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.4.ebuild, +catalyst-1.1.5.ebuild:
  Updated to latest version to fix gconfd-2/acpi bugs.

  29 Jan 2005; Markus Rothe <corsair@gentoo.org> catalyst-1.1.4.ebuild:
  Stable on ppc64

  29 Jan 2005; Chris Gianelloni <wolf31o2@gentoo.org> :
  Updated version info.

*catalyst-1.1.4 (29 Jan 2005)

  29 Jan 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.1.0.ebuild, -catalyst-1.1.2.ebuild, -catalyst-1.1.3.ebuild,
  +catalyst-1.1.4.ebuild:
  Version bumped to latest version.

*catalyst-1.1.3 (26 Jan 2005)

  26 Jan 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  +catalyst-1.1.3.ebuild:
  Updated to latest version. This should be used for the 2005.0 release, as it
  includes some stage1 fixes, along with a fix for using package.use properly.

  15 Jan 2005; Chris Gianelloni <wolf31o2@gentoo.org> catalyst-1.1.2.ebuild:
  Fixed S so files are actually installed now and added some error checking.

*catalyst-1.1.2 (14 Jan 2005)

  14 Jan 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -catalyst-1.0.8.1-r1.ebuild, -catalyst-1.0.8.1.ebuild,
  -catalyst-1.0.9.ebuild, +catalyst-1.1.2.ebuild:
  ...and God looked down upon Catalyst 1.1.2, and He saw that it was good.
  This closes bugs #73556, #76530, #70663, #70518, #76146, #70425, #68307,
  #77480, #76542, #66592, and #75336.

  07 Jan 2005; Markus Rothe <corsair@gentoo.org> catalyst-1.1.1.ebuild:
  Stable on ppc64

  06 Jan 2005; Bryan Østergaard <kloeri@gentoo.org> catalyst-1.1.1.ebuild:
  Stable on alpha.

  07 Dec 2004; Chris Gianelloni <wolf31o2@gentoo.org> catalyst-1.1.1.ebuild:
  Marking stable on x86 and amd64.

  01 Nov 2004; Gustavo Zacarias <gustavoz@gentoo.org> catalyst-1.1.1.ebuild:
  Stable on sparc

*catalyst-1.1.1 (28 Oct 2004)

  28 Oct 2004; Chris Gianelloni <wolf31o2@gentoo.org> catalyst-1.1.0.ebuild,
  +catalyst-1.1.1.ebuild:
  Fixing 1.1.0 ebuild trying to install files from livecd/kconfig, which no
  longer exists and adding new catalyst version 1.1.1, which is a minor bugfix
  release.

*catalyst-1.1.0 (22 Oct 2004)

  22 Oct 2004; Chris Gianelloni <wolf31o2@gentoo.org>
  +catalyst-1.1.0.ebuild:
  Catalyst 1.1.0! See ChangeLog from package for massive changes since 1.0.9
  was released.

*catalyst-1.0.9 (26 Sep 2004)

  26 Sep 2004; John Davis <zhen@gentoo.org> catalyst-1.0.9.ebuild:
  bumping 1.0.9 to stable on x86

  03 Sep 2004; Gustavo Zacarias <gustavoz@gentoo.org> catalyst-1.0.8.1.ebuild:
  Stable on sparc, we lack a stable, we want a stable

  16 Aug 2004; John Davis <zhen@gentoo.org> catalyst-1.0.8.1.ebuild:
  marking unstable for s390 since the dep on genkernel cannot be met

  16 Aug 2004; John Davis <zhen@gentoo.org> catalyst-1.0.8.1.ebuild:
  marking unstable for arm since the dep of >=genkernel-3.0.2b cannot be met

  13 Aug 2004; John Davis <zhen@gentoo.org> catalyst-1.0.8.1.ebuild:
  catalyst-1.9.0 initial commit

*catalyst-1.0.8.1-r1 (29 Jul 2004)

  29 Jul 2004; Mike Frysinger <vapier@gentoo.org> +catalyst-1.0.8.1-r1.ebuild:
  Add a patch to support stacked profiles.

  18 Jul 2004; Tom Gall <tgall@gentoo.org> catalyst-1.0.8.1.ebuild:
  stable on ppc64, bug #57487

  16 Jul 2004; Guy Martin <gmsoft@gentoo.org> catalyst-1.0.8.1.ebuild:
  Marked stable on hppa.

  02 Jul 2004; John Davis <zhen@gentoo.org> catalyst-1.0.8.1.ebuild:
  bumping to stable

  19 Jun 2004; Gustavo Zacarias <gustavoz@gentoo.org> catalyst-1.0.8.1.ebuild:
  Keyworded ~sparc, looking good

*catalyst-1.0.8.1 (13 Jun 2004)

  13 Jun 2004; John Davis <zhen@gentoo.org> catalyst-1.0.8.1.ebuild:
  adding version 1.0.8.1. Please read the ChangeLog

  04 Jun 2004; Daniel Black <dragonheart@gentoo.org> catalyst-1.0.7.ebuild,
  catalyst-1.0.8.ebuild:
  sys-apps/squashfs-tools dependancy moved to sys-fs/squashfs-tools

  27 May 2004; Travis Tilley <lv@gentoo.org> catalyst-1.0.8.ebuild:
  added ~amd64 keyword

  22 May 2004; John Davis <zhen@gentoo.org> catalyst-1.0.7.ebuild,
  catalyst-1.0.8.ebuild:
  replacing the keywords that I clobbered

*catalyst-1.0.8 (22 May 2004)

  22 May 2004; John Davis <zhen@gentoo.org> catalyst-1.0.4.ebuild,
  catalyst-1.0.5.1.ebuild, catalyst-1.0.5.ebuild, catalyst-1.0.6.ebuild,
  catalyst-1.0.8.ebuild, metadata.xml:
  cleanup and addition of 1.0.8, version bump

  12 May 2004; Michael McCabe <randy@gentoo.org> catalyst-1.0.7.ebuild:
  Added s390 keywords

  27 Apr 2004; John Davis <zhen@gentoo.org> catalyst-1.0.7.ebuild:
  bumping to stable

*catalyst-1.0.7 (26 Apr 2004)

  26 Apr 2004; John Davis <zhen@gentoo.org> catalyst-1.0.7.ebuild:
  adding in 1.0.7

*catalyst-1.0.6 (12 Apr 2004)

  12 Apr 2004; John Davis <zhen@gentoo.org> catalyst-1.0.6.ebuild:
  here we go - 1.0.6, many bash backend changes

*catalyst-1.0.5.1 (08 Apr 2004)

  08 Apr 2004; Gustavo Zacarias <gustavoz@gentoo.org> catalyst-1.0.5.1.ebuild:
  Stable on sparc

  04 Apr 2004; John Davis <zhen@gentoo.org> :
  release of 1.0.5.1, fixes /dev issue in stages, as well as a modules.conf fix

*catalyst-1.0.5 (01 Apr 2004)

  01 Apr 2004; John Davis <zhen@gentoo.org> catalyst-1.0.2.ebuild,
  catalyst-1.0.3.ebuild, catalyst-1.0.5.ebuild, metadata.xml:
  cleaning up old files

  01 Apr 2004; John Davis <zhen@gentoo.org> :
  1.0.5 released

*catalyst-1.0.4 (05 Mar 2004)

  05 Mar 2004; John Davis <zhen@gentoo.org> catalyst-1.0.4.ebuild:
  version bump - bug where catalyst.conf was in the wrong location

*catalyst-1.0.3 (04 Mar 2004)

  04 Mar 2004; John Davis <zhen@gentoo.org> catalyst-1.0.1-r1.ebuild,
  catalyst-1.0.1.ebuild, catalyst-1.0.3.ebuild, catalyst-1.0.ebuild:
  version bump, fix bug #43607

*catalyst-1.0.2 (27 Feb 2004)

  01 Mar 2004; Mike Frysinger <vapier@gentoo.org> :
  Clean up install steps to be more Gentoo like.

  27 Feb 2004; John Davis <zhen@gentoo.org> catalyst-1.0.2.ebuild:
  commit 1.0.2 to stable, grp bugfix, added a doc use flag to enable examples
  installation

*catalyst-1.0.1-r1 (19 Feb 2004)

  19 Feb 2004; John Davis <zhen@gentoo.org> catalyst-1.0.1-r1.ebuild:
  fix for bug #42173

*catalyst-1.0.1 (18 Feb 2004)

  18 Feb 2004; John Davis <zhen@gentoo.org> catalyst-1.0.1.ebuild:
  version bump to fix bug #42044

*catalyst-1.0 (17 Feb 2004)

  17 Feb 2004; John Davis <zhen@gentoo.org> catalyst-1.0.ebuild:
  initial import