aboutsummaryrefslogtreecommitdiff
blob: e57d89c188bcd417d2a453150c88dccbc2c353b0 (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
# ChangeLog for dev-java/ibm-jdk-bin
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/ibm-jdk-bin/ChangeLog,v 1.220 2009/12/31 18:16:22 maekke Exp $

*ibm-jdk-bin-1.4.2.13-r1 (22 Feb 2010)

  22 Feb 2010; Vlastimil Babka <caster@gentoo.org>
  +ibm-jdk-bin-1.4.2.13-r1.ebuild, +files/ibm-jdk-bin-1.4.env,
  +files/cpuinfo, +files/ibm-jdk-bin-jawt.h.patch, +metadata.xml:
  Add 1.4 from main tree.

  31 Dec 2009; Markus Meier <maekke@gentoo.org> ibm-jdk-bin-1.5.0.11.ebuild,
  ibm-jdk-bin-1.6.0.7.ebuild:
  amd64 stable, bug #287490

  29 Dec 2009; Christian Faulhammer <fauli@gentoo.org>
  ibm-jdk-bin-1.5.0.11.ebuild:
  stable x86, security bug 287490

  29 Dec 2009; Christian Faulhammer <fauli@gentoo.org>
  ibm-jdk-bin-1.6.0.7.ebuild:
  stable x86, security bug 287490

  28 Dec 2009; Joseph Jezak <josejx@gentoo.org> ibm-jdk-bin-1.5.0.11.ebuild,
  ibm-jdk-bin-1.6.0.7.ebuild:
  Marked ppc/ppc64 stable for bug #287490.

*ibm-jdk-bin-1.6.0.7 (24 Dec 2009)
*ibm-jdk-bin-1.5.0.11 (24 Dec 2009)

  24 Dec 2009; Vlastimil Babka <caster@gentoo.org>
  -ibm-jdk-bin-1.5.0.9-r1.ebuild, +ibm-jdk-bin-1.5.0.11.ebuild,
  -ibm-jdk-bin-1.6.0.5.ebuild, +ibm-jdk-bin-1.6.0.7.ebuild:
  Version bump, security bug #287490.

  17 Nov 2009; Brent Baude <ranger@gentoo.org> ibm-jdk-bin-1.6.0.6.ebuild:
  Marking ibm-jdk-bin-1.6.0.6 ppc64 for bug 287490

  09 Nov 2009; Markus Meier <maekke@gentoo.org> ibm-jdk-bin-1.6.0.6.ebuild:
  amd64 stable, bug #287490

  09 Nov 2009; Markus Meier <maekke@gentoo.org> ibm-jdk-bin-1.5.0.10.ebuild:
  amd64 stable, bug #287490

  03 Nov 2009; Vlastimil Babka <caster@gentoo.org>
  ibm-jdk-bin-1.6.0.6.ebuild:
  Pull libXt on all arches, bug #290506.

  25 Oct 2009; Mounir Lamouri <volkmar@gentoo.org>
  ibm-jdk-bin-1.6.0.6.ebuild:
  Stable for ppc, bug 287490

*ibm-jdk-bin-1.6.0.6 (18 Oct 2009)

  18 Oct 2009; Vlastimil Babka <caster@gentoo.org>
  -ibm-jdk-bin-1.6.0.0.ebuild, -ibm-jdk-bin-1.6.0.4.ebuild,
  +ibm-jdk-bin-1.6.0.6.ebuild:
  Version bump, security bug #287490.

  15 Oct 2009; Mounir Lamouri <volkmar@gentoo.org>
  ibm-jdk-bin-1.5.0.10.ebuild:
  Stabilizing for ppc, bug 287490

  03 Oct 2009; Christian Faulhammer <fauli@gentoo.org>
  ibm-jdk-bin-1.5.0.10.ebuild:
  stable x86, security bug 287490

  03 Oct 2009; Brent Baude <ranger@gentoo.org> ibm-jdk-bin-1.5.0.10.ebuild:
  Marking ibm-jdk-bin-1.5.0.10 ppc64 for bug 287490

  06 Sep 2009; Brent Baude <ranger@gentoo.org> ibm-jdk-bin-1.6.0.5.ebuild:
  Marking ibm-jdk-bin-1.6.0.5 ppc64 for bug 278315

  09 Aug 2009; nixnut <nixnut@gentoo.org> ibm-jdk-bin-1.6.0.5.ebuild:
  ppc stable #278315

*ibm-jdk-bin-1.5.0.10 (01 Aug 2009)

  01 Aug 2009; Vlastimil Babka <caster@gentoo.org>
  +ibm-jdk-bin-1.5.0.10.ebuild:
  Version bump.

*ibm-jdk-bin-1.6.0.5 (19 Jun 2009)

  19 Jun 2009; Vlastimil Babka <caster@gentoo.org>
  +ibm-jdk-bin-1.6.0.5.ebuild:
  Version bump.

  29 May 2009; Vlastimil Babka <caster@gentoo.org>
  ibm-jdk-bin-1.4.2.13.ebuild, -ibm-jdk-bin-1.5.0.9.ebuild,
  ibm-jdk-bin-1.5.0.9-r1.ebuild, ibm-jdk-bin-1.6.0.0.ebuild,
  ibm-jdk-bin-1.6.0.4.ebuild:
  Remove old versions, remove version from DESCRIPTION - bug #186276.

  01 May 2009; Markus Meier <maekke@gentoo.org>
  ibm-jdk-bin-1.5.0.9-r1.ebuild:
  amd64/x86 stable, bug #252416

  22 Apr 2009; Serkan Kaba <serkan@gentoo.org> ibm-jdk-bin-1.6.0.4:
  Fixed vm.jar path bug for ppc64 as well. Reported by Brent Baude
  <ranger@gentoo.org>

  22 Apr 2009; Brent Baude <ranger@gentoo.org>
  ibm-jdk-bin-1.5.0.9-r1.ebuild:
  Marking ibm-jdk-bin-1.5.0.9-r1 ppc/ppc64 for bug 252416

*ibm-jdk-bin-1.5.0.9-r1 (22 Apr 2009)

  22 Apr 2009; Vlastimil Babka <caster@gentoo.org> ibm-jdk-bin-1.5.0.9,
  +ibm-jdk-bin-1.5.0.9-r1.ebuild:
  Version bump, security bug #252416. This SR9-SSU release uses same
  distfile version as the previous SR9 (1.5.0.9). To prevent the need for
  user renaming of the new version's files, the old ebuild was updated to
  expect distfiles with .old.tgz scheme.

  21 Apr 2009; Vlastimil Babka <caster@gentoo.org>
  -ibm-jdk-bin-1.4.2.12.ebuild, -ibm-jdk-bin-1.6.0.3.ebuild:
  Redigest because IBM changed distfiles silently, bug #265760. The only
  change seems to be omiting BigDecimal.java in src.zip, so no revbump.
  Remove old versions.

  21 Apr 2009; Vlastimil Babka <caster@gentoo.org> Manifest:
  Fix digest of IBMJava2-SDK-1.4.2-13.0.ppc.tgz - bug #265680.

  04 Apr 2009; Markus Meier <maekke@gentoo.org> ibm-jdk-bin-1.4.2.13.ebuild:
  amd64/x86 stable, bug #252416

  02 Apr 2009; Joseph Jezak <josejx@gentoo.org> ibm-jdk-bin-1.4.2.13.ebuild:
  Marked ppc/ppc64 stable.

*ibm-jdk-bin-1.4.2.13 (02 Apr 2009)

  02 Apr 2009; Vlastimil Babka <caster@gentoo.org>
  +ibm-jdk-bin-1.4.2.13.ebuild:
  Version bump, security bug #252416.

  30 Mar 2009; Brent Baude <ranger@gentoo.org> ibm-jdk-bin-1.6.0.4.ebuild:
  Marking ibm-jdk-bin-1.6.0.4 ppc64 and ppc for bug 252416

*ibm-jdk-bin-1.6.0.4 (29 Mar 2009)

  29 Mar 2009; Vlastimil Babka <caster@gentoo.org>
  -ibm-jdk-bin-1.5.0.8a.ebuild, -ibm-jdk-bin-1.6.0.2-r1.ebuild,
  +ibm-jdk-bin-1.6.0.4.ebuild:
  Version bump, security bug #252416.

  26 Jan 2009; Brent Baude <ranger@gentoo.org> ibm-jdk-bin-1.6.0.3.ebuild:
  Marking ibm-jdk-bin-1.6.0.3 ppc64 for bug 252357

  06 Jan 2009; Brent Baude <ranger@gentoo.org> ibm-jdk-bin-1.5.0.9.ebuild:
  Marking ibm-jdk-bin-1.5.0.9 ppc64 for bug 252416

  03 Jan 2009; nixnut <nixnut@gentoo.org> ibm-jdk-bin-1.6.0.3.ebuild:
  ppc stable #252357

  29 Dec 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  ibm-jdk-bin-1.5.0.9.ebuild:
  ppc stable, bug #252416

  25 Dec 2008; Markus Meier <maekke@gentoo.org> ibm-jdk-bin-1.5.0.9.ebuild:
  amd64/x86 stable, bug #252416

*ibm-jdk-bin-1.5.0.9 (20 Dec 2008)

  20 Dec 2008; Vlastimil Babka <caster@gentoo.org>
  +ibm-jdk-bin-1.5.0.9.ebuild:
  Version bump.

*ibm-jdk-bin-1.6.0.3 (08 Dec 2008)

  08 Dec 2008; Vlastimil Babka <caster@gentoo.org>
  +ibm-jdk-bin-1.6.0.3.ebuild:
  Version bump, found no changelog or security alert. Users now have to
  rename the javacomm distfile because it changes content without versioning
  the filename properly.

  18 Oct 2008; Vlastimil Babka <caster@gentoo.org>
  -ibm-jdk-bin-1.4.2.11.ebuild, -ibm-jdk-bin-1.6.0.1.ebuild,
  -ibm-jdk-bin-1.6.0.1-r1.ebuild, -ibm-jdk-bin-1.6.0.2.ebuild:
  Cleanup old versions.

  15 Oct 2008; Markus Rothe <corsair@gentoo.org>
  ibm-jdk-bin-1.4.2.12.ebuild:
  Stable on ppc/ppc64; bug #233652

  14 Oct 2008; Markus Rothe <corsair@gentoo.org>
  ibm-jdk-bin-1.6.0.2-r1.ebuild:
  Stable on ppc/ppc64; bug #233652

  12 Oct 2008; Markus Meier <maekke@gentoo.org> ibm-jdk-bin-1.4.2.12.ebuild:
  amd64/x86 stable, bug #233652

*ibm-jdk-bin-1.6.0.2-r1 (11 Oct 2008)

  11 Oct 2008; Vlastimil Babka <caster@gentoo.org>
  +ibm-jdk-bin-1.6.0.2-r1.ebuild:
  Revbump to use correct javacomm distfile, bug #240384.

*ibm-jdk-bin-1.4.2.12 (11 Oct 2008)

  11 Oct 2008; Vlastimil Babka <caster@gentoo.org>
  +ibm-jdk-bin-1.4.2.12.ebuild:
  Version bump, security bug #233652.

  17 Sep 2008; Markus Rothe <corsair@gentoo.org> ibm-jdk-bin-1.6.0.2.ebuild:
  Stable on ppc/ppc64; bug #233652

*ibm-jdk-bin-1.6.0.2 (16 Sep 2008)

  16 Sep 2008; Vlastimil Babka <caster@gentoo.org>
  -ibm-jdk-bin-1.5.0.8.ebuild, +ibm-jdk-bin-1.6.0.2.ebuild:
  Version bump, security bug #233652.

  12 Sep 2008; Markus Meier <maekke@gentoo.org> ibm-jdk-bin-1.5.0.8a.ebuild:
  x86 stable, bug #233652

  10 Sep 2008; Kenneth Prugh <ken69267@gentoo.org>
  ibm-jdk-bin-1.5.0.8a.ebuild:
  amd64 stable, bug #233652

  10 Sep 2008; Brent Baude <ranger@gentoo.org> ibm-jdk-bin-1.5.0.8a.ebuild:
  Marking ibm-jdk-bin-1.5.0.8a ppc64 and ppc for bug 233652

*ibm-jdk-bin-1.5.0.8a (08 Sep 2008)

  08 Sep 2008; Vlastimil Babka <caster@gentoo.org>
  -ibm-jdk-bin-1.5.0.7.ebuild, +ibm-jdk-bin-1.5.0.8a.ebuild:
  Version bump, including security bugfix.

  19 Aug 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  ibm-jdk-bin-1.5.0.8.ebuild:
  ppc stable, bug #233652

  07 Aug 2008; Markus Rothe <corsair@gentoo.org> ibm-jdk-bin-1.5.0.8.ebuild:
  Stable on ppc64; bug #233652

  06 Aug 2008; Markus Meier <maekke@gentoo.org> ibm-jdk-bin-1.5.0.8.ebuild:
  amd64/x86 stable, bug #233652

*ibm-jdk-bin-1.5.0.8 (03 Aug 2008)

  03 Aug 2008; Vlastimil Babka <caster@gentoo.org>
  -ibm-jdk-bin-1.4.2.10.ebuild, +ibm-jdk-bin-1.5.0.8.ebuild:
  Version bump, security bug #233652.

  22 Jun 2008; Markus Meier <maekke@gentoo.org> ibm-jdk-bin-1.4.2.11.ebuild:
  amd64 stable, bug #216112

  21 Jun 2008; Markus Rothe <corsair@gentoo.org>
  ibm-jdk-bin-1.4.2.11.ebuild:
  Stable on ppc64; bug #216112

  17 Jun 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  ibm-jdk-bin-1.4.2.11.ebuild:
  ppc stable, bug #216112

  16 Jun 2008; Christian Faulhammer <opfer@gentoo.org>
  ibm-jdk-bin-1.4.2.11.ebuild:
  stable x86, security bug 216112

*ibm-jdk-bin-1.4.2.11 (15 Jun 2008)

  15 Jun 2008; Vlastimil Babka <caster@gentoo.org>
  +ibm-jdk-bin-1.4.2.11.ebuild:
  Version bump, security bug #216112.

*ibm-jdk-bin-1.6.0.1-r1 (14 Jun 2008)

  14 Jun 2008; Serkan Kaba <serkan@gentoo.org>
  +ibm-jdk-bin-1.6.0.1-r1.ebuild:
  Revbump to fix blockers of bug #217442 caused by missing vm.jar in
  bootclasspath.

  14 Jun 2008; Petteri Räty <betelgeuse@gentoo.org>
  ibm-jdk-bin-1.6.0.1.ebuild:
  Add dependency on virtual/libstdc++-3.3 on ppc and ppc64 for bug #226133.

  12 May 2008; nixnut <nixnut@gentoo.org> ibm-jdk-bin-1.6.0.1.ebuild:
  Stable on ppc wrt bug 217442

  11 May 2008; Markus Rothe <corsair@gentoo.org> ibm-jdk-bin-1.6.0.1.ebuild:
  Stable on ppc64; bug #217442

  02 May 2008; Vlastimil Babka <caster@gentoo.org>
  ibm-jdk-bin-1.6.0.1.ebuild:
  Fix fetch instructions, bug #220012 by Tanktalus@gmail.com.

*ibm-jdk-bin-1.6.0.1 (01 May 2008)

  01 May 2008; Vlastimil Babka <caster@gentoo.org>
  -ibm-jdk-bin-1.5.0.6-r1.ebuild, +ibm-jdk-bin-1.6.0.1.ebuild:
  Version bump, security bug #216112.

  06 Apr 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  ibm-jdk-bin-1.5.0.7.ebuild:
  ppc stable, bug #216112

  06 Apr 2008; Markus Rothe <corsair@gentoo.org> ibm-jdk-bin-1.5.0.7.ebuild:
  Stable on ppc64; bug #216112

  06 Apr 2008; Markus Meier <maekke@gentoo.org> ibm-jdk-bin-1.5.0.7.ebuild:
  amd64/x86 stable, security bug #216112

*ibm-jdk-bin-1.5.0.7 (04 Apr 2008)

  04 Apr 2008; Vlastimil Babka <caster@gentoo.org>
  -ibm-jdk-bin-1.4.2.9.ebuild, +ibm-jdk-bin-1.5.0.7.ebuild:
  Version bump, security bug #216112.

  10 Mar 2008; <welp@gentoo.org> ibm-jdk-bin-1.4.2.10.ebuild:
  Stable on amd64; bug 198644

  05 Mar 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  ibm-jdk-bin-1.4.2.10.ebuild:
  ppc stable, bug #198644

  29 Feb 2008; Brent Baude <ranger@gentoo.org> ibm-jdk-bin-1.4.2.10.ebuild:
  Marking ibm-jdk-bin-1.4.2.10 ppc64 for bug 198644

  28 Feb 2008; Christian Faulhammer <opfer@gentoo.org>
  ibm-jdk-bin-1.4.2.10.ebuild:
  stable x86, security bug 198644

*ibm-jdk-bin-1.4.2.10 (26 Feb 2008)

  26 Feb 2008; Vlastimil Babka <caster@gentoo.org>
  +ibm-jdk-bin-1.4.2.10.ebuild, ibm-jdk-bin-1.5.0.6-r1.ebuild,
  ibm-jdk-bin-1.6.0.0.ebuild:
  Version bump, security bug #198644; remove unneeded libnet deps.

  17 Jan 2008; Tom Gall <tgall@gentoo.org. ibm-jdk-bin-1.6.0.0.ebuild:
  added ~ppc64, bug 166789

  24 Dec 2007; nixnut <nixnut@gentoo.org> ibm-jdk-bin-1.6.0.0.ebuild:
  Added ~ppc wrt bug 166789

  16 Dec 2007; Vlastimil Babka <caster@gentoo.org>
  ibm-jdk-bin-1.4.2.9.ebuild:
  Remove unnecessary dep.

  16 Dec 2007; Vlastimil Babka <caster@gentoo.org>
  ibm-jdk-bin-1.6.0.0.ebuild:
  Add odbc USE flag and revdep-rebuild control file for bug #177925.

  16 Dec 2007; Vlastimil Babka <caster@gentoo.org>
  files/ibm-jdk-bin-1.6.env:
  Fix the LDPATH in env file.

*ibm-jdk-bin-1.6.0.0 (16 Dec 2007)

  16 Dec 2007; Vlastimil Babka <caster@gentoo.org>
  +files/ibm-jdk-bin-1.6.env, +ibm-jdk-bin-1.6.0.0.ebuild:
  Version bump, bug #166789.

*ibm-jdk-bin-1.5.0.6-r1 (12 Dec 2007)

  12 Dec 2007; Vlastimil Babka <caster@gentoo.org>
  files/ibm-jdk-bin-1.5.env, -ibm-jdk-bin-1.5.0.5a.ebuild,
  +ibm-jdk-bin-1.5.0.6-r1.ebuild:
  Revbump to correct wrong BOOTCLASSPATH in the jdk's env file, discovered in
  bug #199252. Straight to stable - the env file is shared by whole slot
  anyway.

  18 Nov 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  ibm-jdk-bin-1.5.0.6.ebuild:
  ppc stable, bug #198644

  14 Nov 2007; Alex Howells <astinus@gentoo.org>
  ibm-jdk-bin-1.5.0.6.ebuild:
  stable on amd64, security bug #198644

  12 Nov 2007; Markus Rothe <corsair@gentoo.org> ibm-jdk-bin-1.5.0.6.ebuild:
  Stable on ppc64; bug #198644

  11 Nov 2007; Dawid Węgliński <cla@gentoo.org>
  ibm-jdk-bin-1.5.0.6.ebuild:
  Stable on x86 (bug #198644)

*ibm-jdk-bin-1.5.0.6 (10 Nov 2007)

  10 Nov 2007; Vlastimil Babka <caster@gentoo.org>
  +ibm-jdk-bin-1.5.0.6.ebuild:
  Version bump, security bug #198644.

  08 Sep 2007; Vlastimil Babka <caster@gentoo.org>
  -ibm-jdk-bin-1.5.0.4.ebuild, -ibm-jdk-bin-1.5.0.4-r1.ebuild,
  -ibm-jdk-bin-1.5.0.5.ebuild:
  Remove old and vulnerable versions.

  08 Sep 2007; Steve Dibb <beandog@gentoo.org> ibm-jdk-bin-1.5.0.5a.ebuild:
  amd64 stable, security bug 186277

  29 Aug 2007; Markus Rothe <corsair@gentoo.org>
  ibm-jdk-bin-1.5.0.5a.ebuild:
  Stable on ppc64; bug #186277

  22 Aug 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  ibm-jdk-bin-1.5.0.5a.ebuild:
  ppc stable, bug #186277

  21 Aug 2007; Christian Faulhammer <opfer@gentoo.org>
  ibm-jdk-bin-1.5.0.5a.ebuild:
  stable x86, security bug 186277

*ibm-jdk-bin-1.5.0.5a (21 Aug 2007)

  21 Aug 2007; Vlastimil Babka <caster@gentoo.org>
  -ibm-jdk-bin-1.4.2.8.ebuild, +ibm-jdk-bin-1.5.0.5a.ebuild:
  Version bump, security bug #186277.

  13 Aug 2007; Vlastimil Babka <caster@gentoo.org>
  files/digest-ibm-jdk-bin-1.4.2.9, Manifest:
  Fix digests broken by previous commit.

  12 Aug 2007; Steve Dibb <beandog@gentoo.org> ibm-jdk-bin-1.4.2.9.ebuild:
  amd64 stable, security bug 186277

  27 Jul 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  ibm-jdk-bin-1.4.2.9.ebuild:
  ppc stable, bug #186277

  25 Jul 2007; Markus Rothe <corsair@gentoo.org> ibm-jdk-bin-1.4.2.9.ebuild:
  Stable on ppc64; bug #186277

  23 Jul 2007; Christian Faulhammer <opfer@gentoo.org>
  ibm-jdk-bin-1.4.2.9.ebuild:
  stable x86, security bug 186277

*ibm-jdk-bin-1.4.2.9 (22 Jul 2007)

  22 Jul 2007; Vlastimil Babka <caster@gentoo.org>
  -ibm-jdk-bin-1.4.2.7.ebuild, +ibm-jdk-bin-1.4.2.9.ebuild,
  -ibm-jdk-bin-1.5.0.3-r1.ebuild:
  Version bump, security bug #186277, cleanup.

  22 Jul 2007; Wulf C. Krueger <philantrop@gentoo.org>
  ibm-jdk-bin-1.4.2.8.ebuild:
  Marked stable on amd64 as per bug 181341.

  22 Jul 2007; Hans de Graaff <graaff@gentoo.org>
  ibm-jdk-bin-1.5.0.3-r1.ebuild, ibm-jdk-bin-1.5.0.4.ebuild,
  ibm-jdk-bin-1.5.0.4-r1.ebuild, ibm-jdk-bin-1.5.0.5.ebuild:
  Drop virtual/x11 references.

  17 Jun 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  ibm-jdk-bin-1.4.2.8.ebuild:
  ppc stable, bug #181341

  14 Jun 2007; Christian Faulhammer <opfer@gentoo.org>
  ibm-jdk-bin-1.4.2.8.ebuild:
  stable x86, bug 181341

  10 Jun 2007; Wulf C. Krueger <philantrop@gentoo.org>
  ibm-jdk-bin-1.5.0.4.ebuild:
  Marked stable on amd64 as per bug 175284.

  09 Jun 2007; Markus Rothe <corsair@gentoo.org> ibm-jdk-bin-1.4.2.8.ebuild:
  Stable on ppc64; bug #181341

*ibm-jdk-bin-1.5.0.5 (08 Jun 2007)

  08 Jun 2007; Vlastimil Babka <caster@gentoo.org>
  +ibm-jdk-bin-1.5.0.5.ebuild:
  Version bump, bug #181306. No more symlink in old src.jar location.

  23 Apr 2007; Christian Faulhammer <opfer@gentoo.org>
  ibm-jdk-bin-1.5.0.4.ebuild:
  stable x86, bug 175284

  22 Apr 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  ibm-jdk-bin-1.5.0.4.ebuild:
  ppc stable, bug #175284

  21 Apr 2007; Markus Rothe <corsair@gentoo.org> ibm-jdk-bin-1.5.0.4.ebuild:
  Stable on ppc64; bug #175284

*ibm-jdk-bin-1.5.0.4-r1 (20 Apr 2007)

  20 Apr 2007; Vlastimil Babka <caster@gentoo.org>
  ibm-jdk-bin-1.4.2.8.ebuild, +ibm-jdk-bin-1.5.0.4-r1.ebuild:
  1.4: fix elog wording; 1.5: Revbump that adds examples USE flag that
  controls installing of demos, and doc flag that pulls java-sdk-docs for
  consistency. The src.jar file moved to expected location per bug #2241,
  previously used location contains symlink that will be removed in next
  version bump.

*ibm-jdk-bin-1.4.2.8 (19 Apr 2007)

  19 Apr 2007; Vlastimil Babka <caster@gentoo.org>
  +ibm-jdk-bin-1.4.2.8.ebuild:
  Version bump, bug #174481. Adds examples USE flag that controls installing
  of demos. The src.jar file moved to expected location per bug #2241,
  previously used location contains symlink that will be removed in next
  version bump.

  13 Apr 2007; Vlastimil Babka <caster@gentoo.org>
  -ibm-jdk-bin-1.4.2.6-r4.ebuild, ibm-jdk-bin-1.4.2.7.ebuild:
  Remove old version. Sync 1.4 pkg_nofetch() with 1.5.

  10 Apr 2007; Christian Faulhammer <opfer@gentoo.org>
  ibm-jdk-bin-1.4.2.7.ebuild:
  stable amd64, bug 166325

  10 Mar 2007; Vlastimil Babka <caster@gentoo.org>
  -ibm-jdk-bin-1.5.0.3.ebuild:
  Remove unneeded revision.

*ibm-jdk-bin-1.5.0.4 (10 Mar 2007)

  10 Mar 2007; Vlastimil Babka <caster@gentoo.org>
  +ibm-jdk-bin-1.5.0.4.ebuild:
  Version bump, bug #170271.

  13 Feb 2007; Markus Rothe <corsair@gentoo.org> ibm-jdk-bin-1.4.2.7.ebuild:
  Stable on ppc64; bug #166325

  13 Feb 2007; Joseph Jezak <josejx@gentoo.org> ibm-jdk-bin-1.4.2.7.ebuild:
  Marked ppc stable for bug #166325.

  12 Feb 2007; Christian Faulhammer <opfer@gentoo.org>
  ibm-jdk-bin-1.4.2.7.ebuild:
  stable x86; bug 166325

  03 Feb 2007; Steve Dibb <beandog@gentoo.org>
  ibm-jdk-bin-1.5.0.3-r1.ebuild:
  amd64 stable, bug 160633

  09 Jan 2007; Christian Faulhammer <opfer@gentoo.org>
  ibm-jdk-bin-1.5.0.3-r1.ebuild:
  stable x86, bug #160633

  09 Jan 2007; Markus Rothe <corsair@gentoo.org>
  ibm-jdk-bin-1.5.0.3-r1.ebuild:
  Stable on ppc64; bug #160633

  08 Jan 2007; Joseph Jezak <josejx@gentoo.org>
  ibm-jdk-bin-1.5.0.3-r1.ebuild:
  Marked ppc stable for bug #160633.

  18 Dec 2006; Vlastimil Babka <caster@gentoo.org>
  ibm-jdk-bin-1.4.2.7.ebuild, ibm-jdk-bin-1.5.0.3-r1.ebuild:
  Fix epatch line, sorry.

*ibm-jdk-bin-1.4.2.7 (18 Dec 2006)

  18 Dec 2006; Vlastimil Babka <caster@gentoo.org>
  -files/ibm-jdk-bin-1.5.0.3-jawt-h.patch, +files/ibm-jdk-bin-jawt.h.patch,
  ibm-jdk-bin-1.4.2.6-r4.ebuild, +ibm-jdk-bin-1.4.2.7.ebuild,
  ibm-jdk-bin-1.5.0.3-r1.ebuild:
  Version bump of 1.4 SLOT, now also applies the patch from bug #126105
  because at least amd64 was broken too. Try to provide direct download URLs
  in pkg_nofetch() so that people can download older versions not linked from
  the download pages and we don't have to do direct to stable bumps. Hopefully
  IBM won't break these links too often...

*ibm-jdk-bin-1.5.0.3-r1 (22 Nov 2006)

  22 Nov 2006; Vlastimil Babka <caster@gentoo.org>
  +files/ibm-jdk-bin-1.5.0.3-jawt-h.patch, -ibm-jdk-bin-1.5.0.2.ebuild,
  +ibm-jdk-bin-1.5.0.3-r1.ebuild:
  Revbump to fix bug #126105 with jawt.h patch. Thanks to Ed Catmur
  <ed@catmur.co.uk> for the initial report and patch, and everyone else in the
  bug. Also removed old version.

  18 Oct 2006; Joshua Nichols <nichoj@gentoo.org>
  ibm-jdk-bin-1.5.0.3.ebuild:
  Keywording ppc64.

  18 Oct 2006; Joshua Nichols <nichoj@gentoo.org>
  -files/ibm-jdk-bin-1.4.2.04, -files/ibm-jdk-bin-1.4.2.6,
  -files/ibm-jdk-bin-1.5.0, -ibm-jdk-bin-1.4.2.04.ebuild,
  -ibm-jdk-bin-1.4.2.6-r1.ebuild, -ibm-jdk-bin-1.5.0.ebuild:
  Pruned old revisions.

  18 Oct 2006; Joshua Jackson <tsunam@gentoo.org>
  ibm-jdk-bin-1.5.0.3.ebuild:
  Stable x86

  15 Oct 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  ibm-jdk-bin-1.4.2.6-r4.ebuild, ibm-jdk-bin-1.5.0.3.ebuild:
  ppc stable. bug #147254

  14 Oct 2006; Joshua Nichols <nichoj@gentoo.org>
  ibm-jdk-bin-1.4.2.6-r4.ebuild, ibm-jdk-bin-1.5.0.3.ebuild:
  Stabilizing on amd64 as part of new Java system, bug #147254.

  14 Oct 2006; Joshua Nichols <nichoj@gentoo.org>
  ibm-jdk-bin-1.4.2.6-r4.ebuild, ibm-jdk-bin-1.5.0.2.ebuild:
  Stabilizing on ppc64 as part of new Java system, bug #147254.

  14 Oct 2006; Joshua Jackson <tsunam@gentoo.org>
  ibm-jdk-bin-1.4.2.6-r4.ebuild, ibm-jdk-bin-1.5.0.2.ebuild:
  New java stable on x86; bug #147254

*ibm-jdk-bin-1.5.0.3 (09 Oct 2006)

  09 Oct 2006; Vlastimil Babka <caster@gentoo.org>
  +ibm-jdk-bin-1.5.0.3.ebuild:
  Version bump, thanks to Federico Fissore <justice@ngi.it> in bug #150604.

  09 Oct 2006; Joshua Nichols <nichoj@gentoo.org>
  ibm-jdk-bin-1.5.0.2.ebuild:
  Fixed url for alternate download page.

  09 Oct 2006; Joshua Nichols <nichoj@gentoo.org>
  ibm-jdk-bin-1.5.0.2.ebuild:
  Added QA_TEXTRELS for ppc64.

  27 Sep 2006; Joshua Nichols <nichoj@gentoo.org>
  ibm-jdk-bin-1.4.2.6-r1.ebuild, ibm-jdk-bin-1.4.2.6-r4.ebuild:
  Removed ppc's dep on lib-compat. Added dependency on =virtual/libstdc++-3.3
  for all archs instead. bug #147913.

  27 Sep 2006; Joshua Nichols <nichoj@gentoo.org>
  ibm-jdk-bin-1.5.0.2.ebuild:
  Added QA_TEXTRELS for ppc, bug #122831.

  25 Sep 2006; Vlastimil Babka <caster@gentoo.org>
  ibm-jdk-bin-1.4.2.6-r4.ebuild, ibm-jdk-bin-1.5.0.2.ebuild:
  Copied QA fixes from 1.4.2.6-r1 to 1.4.2.6-r4. Added QA variables for x86 in
  1.5.0.2. Bug #122831.

  25 Sep 2006; Sandro Bonazzola <sanchan@gentoo.org>
  ibm-jdk-bin-1.5.0.2.ebuild:
  QA Fixes for bug #122831.

  19 Sep 2006; Vlastimil Babka <caster@gentoo.org>
  ibm-jdk-bin-1.4.2.6-r4.ebuild:
  Do the javaws symlink only on x86, other archs don't have javaws.

*ibm-jdk-bin-1.4.2.6-r4 (19 Sep 2006)

  19 Sep 2006; Vlastimil Babka <caster@gentoo.org>
  -ibm-jdk-bin-1.4.2.6-r3.ebuild, +ibm-jdk-bin-1.4.2.6-r4.ebuild:
  Revbump to install javaws symlinks wrt bug #147259

  18 Sep 2006; Vlastimil Babka <caster@gentoo.org>
  ibm-jdk-bin-1.4.2.04.ebuild, ibm-jdk-bin-1.5.0.ebuild:
  Replaced deprecated browserplugin and mozilla USE flags with nsplugin which
  was already used in DEPEND but was not in IUSE. Whitespace cleanup.

  18 Sep 2006; Petteri Räty <betelgeuse@gentoo.org>
  ibm-jdk-bin-1.5.0.2.ebuild:
  Fixed a typo that resulted in sandbox violation. Fixes bug #148039.

  17 Sep 2006; Petteri Räty <betelgeuse@gentoo.org>
  ibm-jdk-bin-1.5.0.2.ebuild:
  It seems that the gtk2 version of javaplugin also needs gtk1. Now depends on
  both.

  17 Sep 2006; Petteri Räty <betelgeuse@gentoo.org>
  ibm-jdk-bin-1.5.0.ebuild:
  Removed other keywords than ~s390 from 1.5.0 because generation 2 eclasses
  should be used with 1.5 jdks.

  17 Sep 2006; Petteri Räty <betelgeuse@gentoo.org>
  ibm-jdk-bin-1.4.2.04.ebuild, ibm-jdk-bin-1.4.2.6-r1.ebuild,
  ibm-jdk-bin-1.4.2.6-r3.ebuild, ibm-jdk-bin-1.5.0.ebuild,
  ibm-jdk-bin-1.5.0.2.ebuild:
  Fixed dependencies by adding the deps needed by nsplugin and added the alsa
  use flag. Now removes the plugin and alsa shared libraries if the use flags
  are not set. Fixes bug #147610 and bug #118685.

  17 Sep 2006; Vlastimil Babka <caster@gentoo.org> -files/ibm-jdk-bin-1.4.2,
  -files/ibm-jdk-bin-1.4.2.03, -ibm-jdk-bin-1.4.2.03.ebuild,
  -ibm-jdk-bin-1.4.2.04-r10.ebuild, -ibm-jdk-bin-1.4.2.5.ebuild,
  -ibm-jdk-bin-1.4.2.6.ebuild, -ibm-jdk-bin-1.5.0-r11.ebuild:
  Cleanup of obsolete ebuilds.

  15 Sep 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  ibm-jdk-bin-1.4.2.6-r1.ebuild:
  Stable on x86 wrt bug #136710.

  15 Sep 2006; Joshua Nichols <nichoj@gentoo.org>
  ibm-jdk-bin-1.4.2.6-r1.ebuild:
  Added QA_TEXTRELS for ppc64. Keyworded ppc64. Also only do chmod on javaws
  if its there, since it isn't available on all archs.

  15 Sep 2006; Vlastimil Babka <caster@gentoo.org>
  ibm-jdk-bin-1.4.2.6-r1.ebuild, ibm-jdk-bin-1.4.2.6-r3.ebuild:
  Adding support for eventual s390 keywording

  15 Sep 2006; Joshua Nichols <nichoj@gentoo.org>
  ibm-jdk-bin-1.4.2.6-r1.ebuild:
  Added QA_TEXTRELS for ppc. Added ppc keyword for bug #136710

  15 Sep 2006; Joshua Nichols <nichoj@gentoo.org>
  ibm-jdk-bin-1.4.2.6-r1.ebuild:
  Added appropriate QA_TEXTRELS for amd64. Marked stable on amd64 per bug #136710

*ibm-jdk-bin-1.4.2.6-r1 (14 Sep 2006)

  14 Sep 2006; Vlastimil Babka <caster@gentoo.org>
  +files/ibm-jdk-bin-1.4.2.6, +ibm-jdk-bin-1.4.2.6-r1.ebuild:
  Adding generation-1 revision of version 1.4.2.6 for stable users because
  older versions aren't provided upstream.

*ibm-jdk-bin-1.4.2.6-r3 (14 Sep 2006)

  14 Sep 2006; Vlastimil Babka <caster@gentoo.org>
  +ibm-jdk-bin-1.4.2.6-r3.ebuild:
  Revision bump to make room for a revision using gen-1 eclass.

*ibm-jdk-bin-1.4.2.6 (13 Sep 2006)

  13 Sep 2006; Vlastimil Babka <caster@gentoo.org>
  +ibm-jdk-bin-1.4.2.6.ebuild:
  Version bump, thanks to lu_zero for noticing, maybe we'll be without a
  version bump bug this time. Dropped monolithic X support, snoozed TEXTRELs
  on x86.

  02 Sep 2006; Petteri Räty <betelgeuse@gentoo.org>
  ibm-jdk-bin-1.5.0-r11.ebuild, ibm-jdk-bin-1.5.0.2.ebuild:
  Added RDEPEND for =virtual/libstdc++-3.3. Fixes bug #117356 for everyone
  else than s390 users. Also moved X stuff from DEPEND to RDEPEND.

  01 Sep 2006; Joshua Nichols <nichoj@gentoo.org>
  ibm-jdk-bin-1.5.0.2.ebuild:
  Removed JAVA_VM_NO_GENERATION1, because default behavior now is not to
  install for generation-1.

  01 Sep 2006; Joshua Nichols <nichoj@gentoo.org>
  ibm-jdk-bin-1.4.2.5.ebuild:
  Added metadata to indicate packages support generation-1.

*ibm-jdk-bin-1.5.0.2 (27 Jul 2006)

  27 Jul 2006; Joshua Nichols <nichoj@gentoo.org>
  ibm-jdk-bin-1.4.2.03.ebuild, ibm-jdk-bin-1.4.2.04.ebuild,
  ibm-jdk-bin-1.4.2.04-r10.ebuild, ibm-jdk-bin-1.4.2.5.ebuild,
  +ibm-jdk-bin-1.5.0.2.ebuild:
  Removed unnecessary libstdc++ dep. Cleaned up 1.4.2.5 a little. Version bump
  for 1.5

  15 Jul 2006; Bryan Østergaard <kloeri@gentoo.org> metadata.xml:
  Remove SeJo from metadata.xml as he's retired.

  11 Jul 2006; Joshua Nichols <jnichols@gentoo.org>
  ibm-jdk-bin-1.4.2.03.ebuild, ibm-jdk-bin-1.4.2.04.ebuild,
  ibm-jdk-bin-1.4.2.04-r10.ebuild, ibm-jdk-bin-1.4.2.5.ebuild:
  Added dependency on virtual/libstdc++ as per bug #139990

  11 Jul 2006; Joshua Nichols <jnichols@gentoo.org>
  ibm-jdk-bin-1.4.2.5.ebuild:
  Fixed typo that caused a problem with the download URL.

  06 Jul 2006; Krzysiek Pawlik <nelchael@gentoo.org>
  ibm-jdk-bin-1.4.2.03.ebuild, ibm-jdk-bin-1.4.2.04.ebuild,
  ibm-jdk-bin-1.4.2.04-r10.ebuild, ibm-jdk-bin-1.4.2.5.ebuild,
  ibm-jdk-bin-1.5.0.ebuild, ibm-jdk-bin-1.5.0-r11.ebuild:
  Removed PROVIDE.

  03 Jul 2006; Petteri Räty <betelgeuse@gentoo.org>
  ibm-jdk-bin-1.4.2.03.ebuild, ibm-jdk-bin-1.4.2.04-r10.ebuild,
  ibm-jdk-bin-1.5.0-r11.ebuild:
  Removed useless dependencies on virtual/libc.

  02 Jul 2006; Joshua Nichols <nichoj@gentoo.org>
  ibm-jdk-bin-1.4.2.5.ebuild:
  Updated fetch restrict message to refer to older downloads.

*ibm-jdk-bin-1.4.2.5 (01 Jul 2006)

  01 Jul 2006; Joshua Nichols <nichoj@gentoo.org>
  +ibm-jdk-bin-1.4.2.5.ebuild:
  Version bump. Updated to use versioned RPMs for distfiles instead of
  annoyingly unversioned tarballs. Other minor cleanups.

  25 Jun 2006; Joshua Nichols <nichoj@gentoo.org>
  +files/ibm-jdk-bin-1.4.env, +files/ibm-jdk-bin-1.5.env:
  Revision bumps to add support for new Java system.

  16 Apr 2006; Mike Frysinger <vapier@gentoo.org>
  ibm-jdk-bin-1.4.2.04.ebuild, ibm-jdk-bin-1.5.0.ebuild:
  Initial s390 support thanks to Nils Reimann #129703.

  10 Apr 2006; Stephanie Lockwood-Childs <wormo@gentoo.org>
  ibm-jdk-bin-1.4.2.04.ebuild:
  tell non-amd64 users to fetch from old-releases homepage (bug #125178)

  05 Apr 2006; <nichoj@gentoo.org> ibm-jdk-bin-1.4.2.03.ebuild:
  Updated HOMEPAGE to point to older downloads page. Updated pkg_nofetch
  message. See bug #122220

  12 Mar 2006; Petteri Räty <betelgeuse@gentoo.org>
  ibm-jdk-bin-1.4.2.03.ebuild, ibm-jdk-bin-1.4.2.04.ebuild,
  ibm-jdk-bin-1.5.0.ebuild:
  Changed warnings about not having virtual/x11 installed from eerror to ewarn
  for bug #124258.

  08 Feb 2006; Saleem Abdulrasool <compnerd@gentoo.org>
  +files/ibm-jdk-bin-1.4.2.04:
  Add missed file (bug #122150)

*ibm-jdk-bin-1.4.2.04 (08 Feb 2006)

  08 Feb 2006; Saleem Abdulrasool <compnerd@gentoo.org>
  +ibm-jdk-bin-1.4.2.04.ebuild:
  Version bump from upstream

  08 Feb 2006; Saleem Abdulrasool <compnerd@gentoo.org>
  ibm-jdk-bin-1.5.0.ebuild:
  Forward port mod-x deps to 1.5

  21 Jan 2006; Markus Rothe <corsair@gentoo.org> ibm-jdk-bin-1.5.0.ebuild:
  Added ~ppc64

  14 Jan 2006; Joshua Nichols <nichoj@gentoo.org>
  ibm-jdk-bin-1.4.2.03.ebuild, ibm-jdk-bin-1.5.0.ebuild:
  Removed redundant dependencies provided by java.eclass (bug #118651).

  06 Jan 2006; Joshua Nichols <nichoj@gentoo.org>
  -files/ibm-jdk-bin-1.5_beta1, -ibm-jdk-bin-1.5_beta1.ebuild:
  Pruned old version, 1.5_beta1.

*ibm-jdk-bin-1.5.0 (06 Jan 2006)

  06 Jan 2006; Joshua Nichols <nichoj@gentoo.org> +files/ibm-jdk-bin-1.5.0,
  +ibm-jdk-bin-1.5.0.ebuild:
  Version bump (bug #115619).

  13 Dec 2005; Saleem Abdulrasool <compnerd@gentoo.org>
  -ibm-jdk-bin-1.4.2.ebuild:
  Pruning old ebuild

  13 Dec 2005; Saleem Abdulrasool <compnerd@gentoo.org>
  ibm-jdk-bin-1.4.2.03.ebuild:
  Adding modular X dependencies.

  11 Dec 2005; Saleem Abdulrasool <compnerd@gentoo.org>
  ibm-jdk-bin-1.4.2.03.ebuild:
  amd64 stable with confirmation from kandian.

  11 Dec 2005; Joseph Jezak <josejx@gentoo.org> ibm-jdk-bin-1.4.2.03.ebuild:
  Marked ppc stable for bug #114828.

  10 Dec 2005; Tom Gall <tgall@gentoo.org>
  ibm-jdk-bin-1.4.2.03.ebuild:
  stable on ppc64

  08 Dec 2005; Saleem Abdulrasool <compnerd@gentoo.org>
  ibm-jdk-bin-1.4.2.03.ebuild:
  Marking statble on x86

  23 Nov 2005; Saleem Abdulrasool <compnerd@gentoo.org>
  ibm-jdk-bin-1.4.2.ebuild:
  Adding warning to prevent people from downloading the latest SR.

*ibm-jdk-bin-1.5_beta1 (21 Nov 2005)

  21 Nov 2005; Jochen Maes <sejo@gentoo.org> +files/ibm-jdk-bin-1.5_beta1,
  +ibm-jdk-bin-1.5_beta1.ebuild:
  added initial ebuild 1.5_beta thanks to Santiago Gala <sgala@apache.org>
  this is ppc only as i cannot test on other arches.

*ibm-jdk-bin-1.4.2.03 (06 Nov 2005)

  06 Nov 2005; Saleem Abdulrasool <compnerd@gentoo.org>
  -files/ibm-jdk-bin-1.4.1, +files/ibm-jdk-bin-1.4.2.03,
  +ibm-jdk-bin-1.4.2.03.ebuild:
  Updating to latest SR, with fetch restrictions, and renaming for sources.
  This should resolve the issue with digests.  Resolves bug #106839 and bug
  #108251 .

  18 Oct 2005; Aron Griffis <agriffis@gentoo.org> ibm-jdk-bin-1.4.2.ebuild:
  Warn about deprecated browserplugin useflag

  18 Oct 2005; Aron Griffis <agriffis@gentoo.org> ibm-jdk-bin-1.4.2.ebuild:
  Respect the global USE=nsplugin instead of the local USE=browserplugin

  01 Oct 2005; Thomas Matthijs <axxo@gentoo.org>
  -ibm-jdk-bin-1.4.1-r2.ebuild, ibm-jdk-bin-1.4.2.ebuild:
  Restrict fetch

  26 Aug 2005; Diego Pettenò <flameeyes@gentoo.org>
  ibm-jdk-bin-1.4.2.ebuild:
  Fix cp -a usage for Gentoo/FreeBSD.

  11 Jul 2005; Thomas Matthijs <axxo@gentoo.org>
  ibm-jdk-bin-1.4.1-r2.ebuild, ibm-jdk-bin-1.4.2.ebuild:
  bug 94056: useflag rename mozilla -> browserplugin

  18 May 2005; Thomas Matthijs <axxo@gentoo.org>
  ibm-jdk-bin-1.4.1-r2.ebuild, ibm-jdk-bin-1.4.2.ebuild:
  remove obsolete java-scheme virtual. remove versions from provide: bug 93028

  22 Apr 2005; Simon Stelling <blubb@gentoo.org> ibm-jdk-bin-1.4.2.ebuild:
  stable on amd64

  25 Jan 2005; Markus Rothe <corsair@gentoo.org> ibm-jdk-bin-1.4.2.ebuild:
  don't install mozilla plugin on ppc64

  09 Jan 2005; Sven Wegener <swegener@gentoo.org>
  ibm-jdk-bin-1.4.1-r2.ebuild, ibm-jdk-bin-1.4.2.ebuild:
  Added missing parentheses in SRC_URI/*DEPEND/LICENSE.

  29 Dec 2004; Ciaran McCreesh <ciaranm@gentoo.org> :
  Change encoding to UTF-8 for GLEP 31 compliance

  11 Dec 2004; <SeJo@gentoo.org> ibm-jdk-bin-1.4.2.ebuild:
  stable on ppc

  20 Nov 2004; <SeJo@gentoo.org> ibm-jdk-bin-1.4.2.ebuild:
  mozilla plugin doesn't work with amd64, removing it

  20 Nov 2004; <SeJo@gentoo.org> ibm-jdk-bin-1.4.2.ebuild:
  mumble mumble something with amd64 in stead of amd in S

  20 Nov 2004; <SeJo@gentoo.org> ibm-jdk-bin-1.4.2.ebuild:
  added the amd64 thingies

  27 Oct 2004; Tom Gall <tgall@gentoo.org> ibm-jdk-bin-1.4.2.ebuild:
  stable on ppc64

  25 Oct 2004; Thomas Matthijs <axxo@gentoo.org> ibm-jdk-bin-1.4.2.ebuild:
  depend on java-sdk-docs-1.4.2 not 1.4.1

  29 Sep 2004; Thomas Matthijs <axxo@gentoo.org>
  ibm-jdk-bin-1.4.1-r2.ebuild, ibm-jdk-bin-1.4.2.ebuild:
  Cleaned up plugin instalation, Moved some messages to the eclass, see #22395
  for more information

  23 Sep 2004; Thomas Matthijs <axxo@gentoo.org> -ibm-jdk-bin-1.4.1-r1.ebuild,
  -ibm-jdk-bin-1.4.1.ebuild:
  prune older ebuilds

  06 Sep 2004; Ciaran McCreesh <ciaranm@gentoo.org>
  ibm-jdk-bin-1.4.1-r1.ebuild, ibm-jdk-bin-1.4.1-r2.ebuild,
  ibm-jdk-bin-1.4.1.ebuild, ibm-jdk-bin-1.4.2.ebuild:
  Switch to use epause and ebeep, bug #62950

  04 Aug 2004; Thomas Matthijs <axxo@gentoo.org> ibm-jdk-bin-1.4.1-r1.ebuild,
  ibm-jdk-bin-1.4.1-r2.ebuild, ibm-jdk-bin-1.4.1.ebuild,
  ibm-jdk-bin-1.4.2.ebuild:
  fix src_uri

  27 Jul 2004; Thomas Matthijs <axxo@gentoo.org> ibm-jdk-bin-1.4.1-r1.ebuild,
  ibm-jdk-bin-1.4.1-r2.ebuild, ibm-jdk-bin-1.4.1.ebuild,
  ibm-jdk-bin-1.4.2.ebuild:
  add java_pkg_postinst to pkg_postinst

  24 Jul 2004; <SeJo@gentoo.org> metadata.xml, ibm-jdk-bin-1.4.2.ebuild:
  fixed the /etc/cpuinfo error thanks to dholm

*ibm-jdk-bin-1.4.2 (14 Jul 2004)

  14 Jul 2004; Bryan Østergaard <kloeri@gentoo.org>
  ibm-jdk-bin-1.4.2.ebuild:
  Fix CVS header.

  01 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org>
  ibm-jdk-bin-1.4.1-r1.ebuild, ibm-jdk-bin-1.4.1-r2.ebuild,
  ibm-jdk-bin-1.4.1.ebuild:
  virtual/glibc -> virtual/libc

  30 Jun 2004; Tom Gall <tgall@gentoo.org> ibm-jdk-bin-1.4.1-r2.ebuild:
  stable on ppc64, bug #55597

  11 Jun 2004; <SeJo@gentoo.org> :
  added rc2 to fix bug 52366

  02 Jun 2004; Aron Griffis <agriffis@gentoo.org> ibm-jdk-bin-1.4.1-r1.ebuild,
  ibm-jdk-bin-1.4.1.ebuild:
  Fix use invocation

*ibm-jdk-bin-1.4.1-r1 (28 May 2004)

  28 May 2004; Karl Trygve Kalleberg <karltk@gentoo.org>
  ibm-jdk-bin-1.4.1-r1.ebuild:
  Added javacomm useflag and support. Fixes #30579.

  01 May 2004; <SeJo@gentoo.org> ibm-jdk-bin-1.4.1.ebuild:
  removed ppc and added ~x86

*ibm-jdk-bin-1.4.1 (29 Apr 2004)

  29 Apr 2004; David Holm <dholm@gentoo.org> +files/cpuinfo,
  +files/ibm-jdk-bin-1.4.1, ibm-jdk-bin-1.4.1.ebuild:
  Added missing files and fixed some bugs in the ebuild.

  28 Apr 2004; <SeJo@gentoo.org> +metadata.xml:
  new package same bin