aboutsummaryrefslogtreecommitdiff
blob: 3071a505bfe6948e0e3c35c47f3cc2b97ced1489 (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
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
# ChangeLog for dev-java/icedtea
# Copyright 1999-2019 Gentoo Authors; Distributed under the GPL v2
# $Header: $

*icedtea-7.2.6.17 (26 Mar 2019)

  26 Mar 2019; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.6.17.ebuild, -icedtea-7.2.6.16.ebuild:
  dev-java/icedtea: Update to 2.6.17 (http://bitly.com/it20617)

*icedtea-3.11.0 (12 Mar 2019)
*icedtea-3.12.0_pre00 (12 Mar 2019)

  12 Mar 2019; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.11.0.ebuild, +icedtea-3.12.0_pre00.ebuild, -icedtea-3.10.0.ebuild,
  -icedtea-3.11.0_pre01.ebuild:
  dev-java/icedtea: IcedTea 3.11.0 released: http://bitly.com/it31100

*icedtea-3.11.0_pre01 (10 Jan 2019)

  10 Jan 2019; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.11.0_pre01.ebuild, -icedtea-3.11.0_pre00.ebuild:
  dev-java/icedtea: Update to 3.11.0pre01, removing SunEC USE flag

*icedtea-7.2.6.16 (07 Jan 2019)

  07 Jan 2019; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.6.16.ebuild, -icedtea-7.2.6.15.ebuild:
  dev-java/icedtea: 2.6.16 released: http://bitly.com/it20616

*icedtea-7.2.6.15 (04 Jan 2019)

  04 Jan 2019; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.6.15.ebuild, -icedtea-7.2.6.14.ebuild:
  dev-java/icedtea: 2.6.15 released: http://bitly.com/it20615

*icedtea-3.10.0 (03 Jan 2019)
*icedtea-3.11.0_pre00 (03 Jan 2019)

  03 Jan 2019; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.10.0.ebuild, +icedtea-3.11.0_pre00.ebuild,
  -icedtea-3.10.0_pre00.ebuild, -icedtea-3.9.0.ebuild:
  dev-java/icedtea: 3.10.0 Released: http://bitly.com/it31000

*icedtea-3.10.0_pre00 (02 Oct 2018)
*icedtea-3.9.0 (02 Oct 2018)

  02 Oct 2018; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.10.0_pre00.ebuild, +icedtea-3.9.0.ebuild, -icedtea-3.8.0.ebuild,
  -icedtea-3.9.0_pre00.ebuild:
  dev-java/icedtea: Update to 3.9.0 (http://bitly.com/it30900)

*icedtea-3.8.0 (07 Jun 2018)
*icedtea-3.9.0_pre00 (07 Jun 2018)

  07 Jun 2018; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.8.0.ebuild, +icedtea-3.9.0_pre00.ebuild, -icedtea-3.7.0.ebuild,
  -icedtea-3.8.0_pre01.ebuild:
  dev-java/icedtea: Update to IcedTea 3.8.0: http://bitly.com/it30800

*icedtea-7.2.6.14 (31 May 2018)

  31 May 2018; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.6.14.ebuild, -icedtea-7.2.6.13.ebuild, metadata.xml:
  dev-java/icedtea: Update to 2.6.14: http://bitly.com/it20614

*icedtea-3.8.0_pre01 (28 Mar 2018)

  28 Mar 2018; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.8.0_pre01.ebuild, -icedtea-3.8.0_pre00.ebuild:
  dev-java/icedtea: Update to icedtea-3.8.0pre01.

*icedtea-3.7.0 (02 Mar 2018)
*icedtea-3.8.0_pre00 (02 Mar 2018)
*icedtea-7.2.6.13 (02 Mar 2018)

  02 Mar 2018; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.7.0.ebuild, +icedtea-3.8.0_pre00.ebuild, +icedtea-7.2.6.13.ebuild,
  -icedtea-3.6.0.ebuild, -icedtea-3.7.0_pre00.ebuild, -icedtea-7.2.6.12.ebuild:
  dev-java/icedtea: Update to 2.7.13 (http://bitly.com/it20713) and 3.7.0
  (http://bitly.com/it30700)

  06 Dec 2017; Andrew John Hughes <gnu_andrew@member.fsf.org>
  icedtea-7.2.7.0_pre15.ebuild:
  dev-java/icedtea: Remove errant '+'.

*icedtea-7.2.6.12 (06 Dec 2017)
*icedtea-7.2.7.0_pre15 (06 Dec 2017)

  06 Dec 2017; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.6.12.ebuild, +icedtea-7.2.7.0_pre15.ebuild,
  -icedtea-7.2.6.11.ebuild, -icedtea-7.2.7.0_pre14.ebuild:
  dev-java/icedtea: Bump to 2.6.12 (http://bitly.com/it20612). Symlink tapsets
  into system tapset directory.

*icedtea-3.6.0 (02 Nov 2017)
*icedtea-3.7.0_pre00 (02 Nov 2017)

  02 Nov 2017; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.6.0.ebuild, +icedtea-3.7.0_pre00.ebuild, -icedtea-3.5.1.ebuild,
  -icedtea-3.6.0_pre01.ebuild:
  dev-java/icedtea: IcedTea 3.6.0 released: http://bitly.com/it30600

*icedtea-7.2.7.0_pre14 (18 Sep 2017)

  18 Sep 2017; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.7.0_pre14.ebuild, -icedtea-7.2.7.0_pre05.ebuild, metadata.xml:
  dev-java/icedtea: Update 2.7 live ebuild to latest pre-release.

*icedtea-7.2.6.11 (10 Aug 2017)

  10 Aug 2017; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.6.11.ebuild, -icedtea-7.2.6.10.ebuild:
  dev-java/icedtea: IcedTea 2.6.11 released (http://bitly.com/it20611)

*icedtea-3.6.0_pre01 (31 Jul 2017)

  31 Jul 2017; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.6.0_pre01.ebuild, -icedtea-3.6.0_pre00.ebuild:
  dev-java/icedtea: Bump 3.6 pre-release, following 3.5.1

*icedtea-3.5.1 (31 Jul 2017)

  31 Jul 2017; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.5.1.ebuild, -icedtea-3.5.0.ebuild:
  dev-java/icedtea: IcedTea 3.5.1 released (http://bitly.com/it30501)

*icedtea-3.5.0 (21 Jul 2017)
*icedtea-3.6.0_pre00 (21 Jul 2017)

  21 Jul 2017; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.5.0.ebuild, +icedtea-3.6.0_pre00.ebuild, -icedtea-3.4.0.ebuild,
  -icedtea-3.5.0_pre00.ebuild:
  dev-java/icedtea: IcedTea 3.5.0 Released (http://bitly.com/it30500)

*icedtea-7.2.6.10 (17 May 2017)

  17 May 2017; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.6.10.ebuild, -icedtea-7.2.6.9.ebuild:
  dev-java/icedtea: IcedTea 2.6.10 released: http://bitly.com/it20610

*icedtea-3.4.0 (17 May 2017)
*icedtea-3.5.0_pre00 (17 May 2017)

  17 May 2017; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.4.0.ebuild, +icedtea-3.5.0_pre00.ebuild, -icedtea-3.3.0.ebuild,
  -icedtea-3.4.0_pre00.ebuild:
  dev-java/icedtea: IcedTea 3.4.0 released: http://bitly.com/it30400

  14 Feb 2017; Andrew John Hughes <gnu_andrew@member.fsf.org> metadata.xml:
  dev-java/icedtea: Remove unused "systemtap" USE flag from IcedTea 1.x.

  14 Feb 2017; Andrew John Hughes <gnu_andrew@member.fsf.org>
  -icedtea-6.1.13.13.ebuild, -icedtea-6.9999.ebuild:
  dev-java/icedtea: Remove unsupported IcedTea 1.x ebuilds.

*icedtea-7.2.6.9 (14 Feb 2017)

  14 Feb 2017; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.6.9.ebuild, -icedtea-7.2.6.8.ebuild:
  dev-java/icedtea: 2.6.9 released: http://bitly.com/it20609

*icedtea-3.4.0_pre00 (14 Feb 2017)

  14 Feb 2017; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.4.0_pre00.ebuild, -icedtea-3.3.0_pre00.ebuild:
  dev-java/icedtea: Update IcedTea 3.x live ebuild.

*icedtea-3.3.0 (28 Jan 2017)

  28 Jan 2017; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.3.0.ebuild, -icedtea-3.2.0.ebuild:
  dev-java/icedtea: Update to 3.3.0 release: http://bitly.com/it30300

*icedtea-6.1.13.13 (12 Jan 2017)

  12 Jan 2017; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-6.1.13.13.ebuild, -icedtea-6.1.13.12.ebuild, icedtea-6.9999.ebuild:
  dev-java/icedtea: Update to final 1.13.x release, 1.13.13
  (http://bitly.com/it11313)

*icedtea-7.2.6.8 (14 Nov 2016)

  14 Nov 2016; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.6.8.ebuild, -icedtea-7.2.6.7.ebuild:
  dev-java/icedtea: IcedTea 2.6.8 released (http://bitly.com/it20608)

*icedtea-3.2.0 (09 Nov 2016)
*icedtea-3.3.0_pre00 (09 Nov 2016)

  09 Nov 2016; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.2.0.ebuild, +icedtea-3.3.0_pre00.ebuild, -icedtea-3.1.0.ebuild,
  -icedtea-3.2.0_pre02.ebuild, metadata.xml:
  dev-java/icedtea: Update to 3.2.0 and OpenJDK 8 u111.
  (http://bitly.com/it30200)

  25 Aug 2016; Andrew John Hughes <gnu_andrew@member.fsf.org>
  icedtea-6.9999.ebuild:
  dev-java/icedtea: Testing now works on 1.x HEAD.

*icedtea-6.1.13.12 (25 Aug 2016)

  25 Aug 2016; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-6.1.13.12.ebuild, -icedtea-6.1.13.11.ebuild, icedtea-6.9999.ebuild:
  dev-java/icedtea: Update to 1.13.12 and OpenJDK 6 b40;
  http://bitly.com/it11312

*icedtea-3.2.0_pre02 (09 Aug 2016)

  09 Aug 2016; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.2.0_pre02.ebuild, -icedtea-3.2.0_pre01.ebuild:
  dev-java/icedtea: Bump to 3.2.0pre02 and sync with changes to 3.1.0 ebuild.

*icedtea-3.2.0_pre01 (05 Aug 2016)

  05 Aug 2016; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.2.0_pre01.ebuild:
  dev-java/icedtea: Provide first 3.2.0 pre-release.

*icedtea-7.2.6.7 (29 Jul 2016)

  29 Jul 2016; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.6.7.ebuild, -icedtea-7.2.6.6.ebuild:
  dev-java/icedtea: Bump to 2.6.7 (http://bitly.com/it20607). Turn off JTreg and
  SystemTap tests.

*icedtea-3.1.0 (26 Jul 2016)

  26 Jul 2016; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.1.0.ebuild, -icedtea-3.0.1.ebuild, -icedtea-3.1.0_pre04.ebuild:
  dev-java/icedtea: Update to IcedTea 3.1.0 (http://bitly.com/it30100)

*icedtea-3.1.0_pre04 (26 Jul 2016)

  26 Jul 2016; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.1.0_pre04.ebuild, -icedtea-3.1.0_pre03.ebuild, metadata.xml:
  dev-java/icedtea: Bump to icedtea-3.1.0pre04.

*icedtea-3.1.0_pre03 (17 Jul 2016)

  17 Jul 2016; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.1.0_pre03.ebuild, -icedtea-3.1.0_pre02.ebuild,
  icedtea-3.0.1.ebuild:
  dev-java/icedtea: Bump to icedtea-3.1.0pre03.

  21 May 2016; Andrew John Hughes <gnu_andrew@member.fsf.org>
  icedtea-6.1.13.11.ebuild, icedtea-6.9999.ebuild, icedtea-7.2.6.6.ebuild,
  icedtea-7.2.7.0_pre05.ebuild:
  dev-java/icedtea: Drop icedtea-bin:6 support as now removed from main tree.

*icedtea-3.1.0_pre02 (21 May 2016)

  21 May 2016; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.1.0_pre02.ebuild:
  dev-java/icedtea: Add support for 3.1.0pre02.

*icedtea-6.1.13.11 (04 May 2016)

  04 May 2016; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-6.1.13.11.ebuild, -icedtea-6.1.13.10.ebuild, icedtea-6.9999.ebuild:
  dev-java/icedtea: Update to OpenJDK 6 b39 with 1.13.11
  (http://bitly.com/it11311) and latest HEAD

*icedtea-3.0.1 (25 Apr 2016)

  25 Apr 2016; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.0.1.ebuild, -files/8-ccache.patch, -icedtea-3.0.0.ebuild:
  dev-java/icedtea: Update to 3.0.1; http://bitly.com/it30001

*icedtea-7.2.6.6 (22 Apr 2016)

  22 Apr 2016; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.6.6.ebuild, -icedtea-7.2.6.5.ebuild:
  dev-java/icedtea: Update to 2.6.6; http://bitly.com/it20606

*icedtea-7.2.7.0_pre05 (17 Apr 2016)

  17 Apr 2016; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.7.0_pre05.ebuild, -icedtea-7.2.7.0_pre00-r1.ebuild:
  dev-java/icedtea: Bump to 2.7.0pre05.

  12 Apr 2016; Andrew John Hughes <gnu_andrew@member.fsf.org>
  icedtea-3.0.0.ebuild:
  dev-java/icedtea-3.0.0: Disable sunec USE flag by default until #579676 is
  resolved.

*icedtea-3.0.0 (08 Apr 2016)

  08 Apr 2016; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.0.0.ebuild, -icedtea-3.0.0_pre10.ebuild:
  dev-java/icedtea: Bump to 3.0.0 release; http://bitly.com/it30000

*icedtea-3.0.0_pre10 (30 Mar 2016)

  30 Mar 2016; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.0.0_pre10.ebuild, -icedtea-3.0.0_pre09.ebuild:
  dev-java/icedtea: Bump to 3.0.0 pre10.

  29 Mar 2016; Andrew John Hughes <gnu_andrew@member.fsf.org> metadata.xml:
  dev-java/icedtea: Document the CUPS flag, as it's not obvious what it does.

*icedtea-7.2.6.5 (25 Mar 2016)

  25 Mar 2016; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.6.5.ebuild, -icedtea-7.2.6.4.ebuild:
  dev-java/icedtea: Add 2.6.5 security update. http://bitly.com/it20605

  03 Mar 2016; Andrew John Hughes <gnu_andrew@member.fsf.org>
  icedtea-3.0.0_pre09.ebuild, icedtea-6.1.13.10.ebuild, icedtea-6.9999.ebuild,
  icedtea-7.2.6.4.ebuild, icedtea-7.2.7.0_pre00-r1.ebuild:
  dev-java/icedtea: Resolve #573276 by adding libressl USE flag.

*icedtea-3.0.0_pre09 (22 Feb 2016)

  22 Feb 2016; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.0.0_pre09.ebuild, -files/pr1983.patch, -files/pr2804.patch,
  -files/pr2825.patch, -icedtea-3.0.0_pre08.ebuild, metadata.xml:
  dev-java/icedtea: Bump to 3.0.0pre09.

*icedtea-3.0.0_pre08 (30 Jan 2016)

  30 Jan 2016; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +files/pr1983.patch, +files/pr2804.patch, +files/pr2825.patch,
  +icedtea-3.0.0_pre08.ebuild, -icedtea-3.0.0_pre07-r2.ebuild:
  dev-java/icedtea: Bump to pre08 and sync against 2.x. Add SunEC support &
  remove PKCS11 (nss). Add back libXt dependency (needed for headers). Drop
  unneeded libxslt dependency. Fix SystemTap testing and disable all JTreg
  testing.

  25 Jan 2016; Andrew John Hughes <gnu_andrew@member.fsf.org>
  icedtea-6.1.13.10.ebuild, icedtea-6.9999.ebuild:
  dev-java/icedtea: Re-sync IcedTea 1.x ebuilds with IcedTea 2.x ebuilds.

*icedtea-6.1.13.10 (25 Jan 2016)

  25 Jan 2016; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-6.1.13.10.ebuild, -icedtea-6.1.13.9.ebuild, icedtea-6.9999.ebuild:
  dev-java/icedtea: Bump to 1.13.10/OpenJDK 6 b39 (http://bitly.com/it11310)

*icedtea-7.2.6.4 (22 Jan 2016)

  22 Jan 2016; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.6.4.ebuild, -icedtea-7.2.6.3-r1.ebuild,
  icedtea-7.2.7.0_pre00-r1.ebuild:
  dev-java/icedtea: Bump to 2.6.4 (http://bitly.com/it20604). Remove CUPS
  Makefile hack; will be replaced by
  http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2803

*icedtea-3.0.0_pre07-r1 (11 Jan 2016)

  11 Jan 2016; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.0.0_pre07-r1.ebuild, -icedtea-3.0.0_pre07.ebuild:
  dev-java/icedtea: Remove unsetting of LDFLAGS now flags containing commas can
  be handled (PR2428)

*icedtea-3.0.0_pre07 (24 Dec 2015)

  24 Dec 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.0.0_pre07.ebuild, -icedtea-3.0.0_pre06.ebuild:
  dev-java/icedtea: Update to IcedTea 3.0.0pre07.

*icedtea-7.2.6.3-r1 (18 Nov 2015)
*icedtea-7.2.7.0_pre00-r1 (18 Nov 2015)

  18 Nov 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.6.3-r1.ebuild, +icedtea-7.2.7.0_pre00-r1.ebuild,
  -icedtea-7.2.6.3.ebuild, -icedtea-7.2.7.0_pre00.ebuild:
  dev-java/icedtea: Restore documentation symlink in IcedTea 2.x ebuilds

  17 Nov 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  icedtea-3.0.0_pre06.ebuild, icedtea-6.1.13.9.ebuild, icedtea-6.9999.ebuild,
  icedtea-7.2.6.3.ebuild, icedtea-7.2.7.0_pre00.ebuild, metadata.xml:
  dev-java/icedtea: Bring in headless USE flag renaming from main tree.

*icedtea-7.2.6.3 (17 Nov 2015)

  17 Nov 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.6.3.ebuild, -icedtea-7.2.6.2.ebuild:
  dev-java/icedtea: Update to IcedTea 2.6.3; http://bitly.com/it20603

*icedtea-6.1.13.9 (17 Nov 2015)
*icedtea-7.2.6.2 (17 Nov 2015)

  17 Nov 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-6.1.13.9.ebuild, +icedtea-7.2.6.2.ebuild, icedtea-3.0.0_pre06.ebuild,
  icedtea-6.9999.ebuild, icedtea-7.2.7.0_pre00.ebuild, metadata.xml:
  dev-java/icedtea: Restore removed ebuilds. Please STOP deleting ebuilds from
  this repository.

  13 Nov 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  icedtea-6.9999.ebuild:
  dev-java/icedtea: Update 1.x live e-build following b37 release.

*icedtea-6.1.13.9 (13 Nov 2015)

  13 Nov 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-6.1.13.9.ebuild, -files/6-cacao-dynmaxheap-Makefile.patch,
  -files/6-cacao-dynmaxheap.patch, -icedtea-6.1.13.8-r1.ebuild:
  dev-java/icedtea: Update to 1.13.9 (http://bitly.com/it11309)

*icedtea-7.2.6.2 (23 Oct 2015)

  23 Oct 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.6.2.ebuild, -icedtea-7.2.6.1-r1.ebuild:
  dev-java/icedtea: Update to 2.6.2, http://bitly.com/it20602

  22 Oct 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  icedtea-3.0.0_pre06.ebuild, icedtea-6.1.13.8-r1.ebuild, icedtea-6.9999.ebuild,
  icedtea-7.2.6.1-r1.ebuild, icedtea-7.2.7.0_pre00.ebuild, metadata.xml:
  dev-java/icedtea: Rename X/awt USE flag to headless to match upstream
  terminology.

*icedtea-6.1.13.8-r1 (22 Oct 2015)
*icedtea-7.2.6.1-r1 (22 Oct 2015)

  22 Oct 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-6.1.13.8-r1.ebuild, +icedtea-7.2.6.1-r1.ebuild,
  -icedtea-6.1.13.8.ebuild, -icedtea-7.2.5.6.ebuild, -icedtea-7.2.6.1.ebuild:
  dev-java/icedtea: Bring in changes from main tree. Drop obsolete 2.5.x

*icedtea-3.0.0_pre06 (03 Oct 2015)

  03 Oct 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.0.0_pre06.ebuild, -icedtea-3.0.0_pre04-r1.ebuild:
  dev-java/icedtea: Bump icedtea:8 to 3.0.0_pre06.

*icedtea-6.1.13.8 (30 Jul 2015)

  30 Jul 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-6.1.13.8.ebuild:
  IcedTea 1.13.8 release: http://bitly.com/it11308

*icedtea-7.2.5.6 (23 Jul 2015)

  23 Jul 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.5.6.ebuild:
  Add final 2.5.x release, 2.5.6: http://bitly.com/it20506

*icedtea-7.2.6.1 (21 Jul 2015)

  21 Jul 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.6.1.ebuild, -icedtea-7.2.6.0.ebuild:
  IcedTea 2.6.1 security update: http://bitly.com/it20601

*icedtea-7.2.6.0 (19 Jul 2015)
*icedtea-7.2.7.0_pre00 (19 Jul 2015)

  19 Jul 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.6.0.ebuild, +icedtea-7.2.7.0_pre00.ebuild,
  -icedtea-7.2.6.0_pre24.ebuild:
  IcedTea 2.6.0 Released: http://bitly.com/it20600

*icedtea-7.2.6.0_pre24 (09 Jul 2015)

  09 Jul 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.6.0_pre24.ebuild, -icedtea-7.2.6.0_pre23.ebuild:
  Bump IcedTea 2.6.0 ebuild to pre24.

*icedtea-3.0.0_pre04-r1 (25 Jun 2015)

  25 Jun 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.0.0_pre04-r1.ebuild, -icedtea-3.0.0_pre04.ebuild, metadata.xml:
  Sync IcedTea-Web/IcedTea-Sound support from icedtea:7. Fix X hack (#552916)
  and typo. Add sctp & pcsc-lite dependencies. Explicitly disable in-tree
  pulseaudio support, deferring to IcedTea-Sound.

  20 Jun 2015; James Le Cuirot <chewi@gentoo.org> icedtea-3.0.0_pre04.ebuild,
  icedtea-6.9999.ebuild, icedtea-7.2.6.0_pre23.ebuild:
  media-fonts/lklug is now keyworded ~ppc64. Remove redundant --with-ecj-jar
  code as javac from gcj-jdk always takes precedence. Remove redundant
  bootstrap_impossible code as this is no longer relevant. Remove gcj-jdk
  dependency from icedtea-3 as this currently doesn't work. Clean up other VM
  dependencies and remove references to the old VM handles as the dependencies
  will ensure that the new ones are always present anyway.

  19 Jun 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  icedtea-7.2.6.0_pre23.ebuild:
  Sync 2.x ebuild with 3.x, adding improved alternate VM support and removing
  branch name from CACAO + JamVM tarballs. Turn on SunEC by default as in the
  2.5.5 ebuild.

  19 Jun 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  icedtea-3.0.0_pre04.ebuild:
  Allow icedtea:8 to be built with itself.

*icedtea-3.0.0_pre04 (19 Jun 2015)

  19 Jun 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-3.0.0_pre04.ebuild, -files/pr2383.patch, -icedtea-3.0.0_pre03.ebuild:
  Bump to IcedTea 3.0.0pre04.

*icedtea-7.2.6.0_pre23 (17 Jun 2015)

  17 Jun 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.6.0_pre23.ebuild, -icedtea-7.2.6.0_pre18.ebuild:
  Bump 2.6.0 pre-release build to pre23. Sync ebuild with changes in 2.5.5 and
  3.0.0 ebuilds.

*icedtea-3.0.0_pre03 (26 May 2015)

  26 May 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +files/pr2383.patch, +icedtea-3.0.0_pre03.ebuild, -icedtea-3.9999.ebuild:
  Bump IcedTea 3.x.x support to 3.0.0pre03.

  07 May 2015; James Le Cuirot <chewi@gentoo.org> icedtea-3.9999.ebuild,
  icedtea-6.9999.ebuild, icedtea-7.2.6.0_pre18.ebuild:
  Fix various dependency SLOTs.

  06 May 2015; James Le Cuirot <chewi@gentoo.org> icedtea-3.9999.ebuild,
  -icedtea-6.1.13.7.ebuild, icedtea-6.9999.ebuild, -icedtea-7.2.5.5.ebuild,
  icedtea-7.2.6.0_pre18.ebuild:
  Latest releases now in the tree. Apply my changes to the remainder.

*icedtea-6.1.13.7 (15 Apr 2015)
*icedtea-7.2.5.5 (15 Apr 2015)

  15 Apr 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-6.1.13.7.ebuild, +icedtea-7.2.5.5.ebuild, -icedtea-6.1.13.6.ebuild,
  -icedtea-7.2.5.4.ebuild, icedtea-6.9999.ebuild:
  April 2015 security updates; 1.13.7 (http://bitly.com/it11307) & 2.5.5
  (http://bitly.com/it20505) Also resolves #431972 (gsettings-desktop-schemas) &
  #531686 (giflib 5.1) Turn on SunEC provider by default. Use correct tarball
  for arm & arm64.

  02 Feb 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  icedtea-6.9999.ebuild:
  Synchronise Mercurial IcedTea 1.x ebuild with 1.13.x series.

*icedtea-7.2.6.0_pre18 (30 Jan 2015)

  30 Jan 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.6.0_pre18.ebuild, -icedtea-7.2.6.0_pre11.ebuild:
  Update 2.6.0 pre-release ebuild to latest version (pre18).

*icedtea-6.1.13.6 (26 Jan 2015)

  26 Jan 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-6.1.13.6.ebuild, -icedtea-6.1.13.5-r1.ebuild:
  IcedTea 1.13.6 released: http://bitly.com/it11306

*icedtea-7.2.5.4 (23 Jan 2015)

  23 Jan 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.5.4.ebuild, -files/7085757-currency_fix.patch,
  -icedtea-7.2.5.3.ebuild:
  IcedTea 2.5.4 released: http://bitly.com/it20504

  11 Jan 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  icedtea-6.1.13.5-r1.ebuild, icedtea-6.9999.ebuild:
  Let CACAO handle ppc64 with OpenJDK 6 / IcedTea 1.x as there is no HotSpot
  port there.

  11 Jan 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  icedtea-3.9999.ebuild, icedtea-6.1.13.5-r1.ebuild, icedtea-6.9999.ebuild,
  icedtea-7.2.5.3.ebuild, icedtea-7.2.6.0_pre11.ebuild:
  Synchronise arch selection across all ebuilds, update to match Gentoo values
  and use 'use' over 'has'. Resolves #528186 and #481266.

  03 Jan 2015; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +files/7085757-currency_fix.patch, icedtea-7.2.5.3.ebuild:
  Fix currency generation failure caused by 2014-12-31 being > 10 years ago;
  #534118

*icedtea-7.2.6.0_pre11 (13 Nov 2014)

  13 Nov 2014; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.6.0_pre11.ebuild, -icedtea-7.2.6.0_pre09.ebuild:
  Bump to 2.6.0pre11.

  03 Nov 2014; Andrew John Hughes <gnu_andrew@member.fsf.org>
  icedtea-3.9999.ebuild, icedtea-6.1.13.5-r1.ebuild, icedtea-6.9999.ebuild,
  icedtea-7.2.5.3.ebuild, icedtea-7.2.6.0_pre09.ebuild:
  Move selinux dependency to RDEPEND only; bug 527698.

  03 Nov 2014; Andrew John Hughes <gnu_andrew@member.fsf.org>
  icedtea-6.1.13.5-r1.ebuild, icedtea-6.9999.ebuild, icedtea-7.2.5.3.ebuild,
  icedtea-7.2.6.0_pre09.ebuild:
  Sync IcedTea-Web changes with main tree version.

  01 Nov 2014; Vlastimil Babka <caster@gentoo.org> icedtea-3.9999.ebuild,
  icedtea-6.1.13.5-r1.ebuild, icedtea-6.9999.ebuild, icedtea-7.2.5.3.ebuild,
  icedtea-7.2.6.0_pre09.ebuild:
  Backporting changes from portage: install missing dtd to docs; code style
  cleanups

  01 Nov 2014; Vlastimil Babka <caster@gentoo.org> icedtea-3.9999.ebuild,
  icedtea-6.1.13.5-r1.ebuild, icedtea-6.9999.ebuild, icedtea-7.2.5.3.ebuild,
  icedtea-7.2.6.0_pre09.ebuild:
  Backporting changes from portage: use multiprocessing eclass instead of
  manual MAKEOPTS parsing

  01 Nov 2014; Vlastimil Babka <caster@gentoo.org> icedtea-3.9999.ebuild,
  icedtea-6.1.13.5-r1.ebuild, icedtea-6.9999.ebuild, icedtea-7.2.5.3.ebuild,
  icedtea-7.2.6.0_pre09.ebuild:
  Backporting changes from portage: add pre-build disk space checking, bug
  #508728.

  30 Oct 2014; Andrew John Hughes <gnu_andrew@member.fsf.org>
  icedtea-7.2.6.0_pre09.ebuild:
  Lock 2.6 ebuild to Mercurial tag for that pre-release.

*icedtea-7.2.6.0_pre09 (30 Oct 2014)

  30 Oct 2014; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.6.0_pre09.ebuild, -icedtea-7.9999.ebuild:
  Update IcedTea 2.x HEAD ebuild and rename as a pre-release of the next minor
  release series.

*icedtea-6.1.13.5-r1 (27 Oct 2014)

  27 Oct 2014; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-6.1.13.5-r1.ebuild, -icedtea-6.1.13.5.ebuild:
  Fix tarball used by 1.13.5.

  15 Oct 2014; Andrew John Hughes <gnu_andrew@member.fsf.org>
  icedtea-6.1.13.5.ebuild, icedtea-6.9999.ebuild:
  Add --with-pkgversion option to IcedTea 1.x ebuilds too.

*icedtea-7.2.5.3 (15 Oct 2014)

  15 Oct 2014; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.5.3.ebuild, -icedtea-7.2.4.8.ebuild, -icedtea-7.2.5.2.ebuild:
  Update to IcedTea 2.5.3, drop unsupported 2.4.8. http://bitly.com/it20503

*icedtea-6.1.13.5 (15 Oct 2014)

  15 Oct 2014; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-6.1.13.5.ebuild, -icedtea-6.1.13.4.ebuild:
  Update to 1.13.5 security update: http://bitly.com/it11305

  07 Oct 2014; Andrew John Hughes <gnu_andrew@member.fsf.org>
  icedtea-6.1.13.4.ebuild, icedtea-7.2.4.8.ebuild, icedtea-7.2.5.2.ebuild:
  Use the HotSpot ARM32 JIT on arm rather than CACAO.

  05 Oct 2014; Vlastimil Babka <caster@gentoo.org> icedtea-3.9999.ebuild,
  icedtea-6.1.13.4.ebuild, icedtea-6.9999.ebuild, icedtea-7.2.4.8.ebuild,
  icedtea-7.2.5.2.ebuild, icedtea-7.9999.ebuild:
  Add missing ant-core dep to icedtea:6 and change it to >=1.8.2 everywhere.

  05 Oct 2014; Vlastimil Babka <caster@gentoo.org> icedtea-3.9999.ebuild:
  Drop ~ia64 temporarily until icedtea-web:0 has it

  05 Oct 2014; Vlastimil Babka <caster@gentoo.org> icedtea-7.2.4.8.ebuild,
  icedtea-7.2.5.2.ebuild, icedtea-7.9999.ebuild:
  USE depend on icedtea7 flag for icedtea-web:0, thanks arfrever.

  05 Oct 2014; Vlastimil Babka <caster@gentoo.org> icedtea-3.9999.ebuild:
  Make 3.9999 depend on icedtea-web:0

  05 Oct 2014; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.13.4.ebuild,
  icedtea-6.9999.ebuild, icedtea-7.2.4.8.ebuild, icedtea-7.2.5.2.ebuild,
  icedtea-7.9999.ebuild:
  Support icedtea-web:0 like the in-tree versions, bug #500264.

*icedtea-7.2.5.2 (02 Sep 2014)

  02 Sep 2014; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.5.2.ebuild, -icedtea-7.2.5.1.ebuild:
  Update to 2.5.2: http://bitly.com/20502

  13 Aug 2014; Andrew John Hughes <gnu_andrew@member.fsf.org>
  icedtea-7.2.5.1.ebuild, icedtea-7.9999.ebuild:
  Update live 7 ebuild and sync with 2.5.1. Add pkgversion and ppc64le and
  update NSS dependency.

  12 Aug 2014; Andrew John Hughes <gnu_andrew@member.fsf.org>
  icedtea-6.1.13.4.ebuild, icedtea-6.9999.ebuild, icedtea-7.2.4.8.ebuild,
  icedtea-7.2.5.1.ebuild, icedtea-7.9999.ebuild:
  Add missing libXt dependency (#489880)

*icedtea-7.2.4.8 (24 Jul 2014)

  24 Jul 2014; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.4.8.ebuild, -icedtea-7.2.4.7.ebuild:
  IcedTea 2.4.8 release: http://bitly.com/it20408

  18 Jul 2014; Andrew John Hughes <gnu_andrew@member.fsf.org>
  icedtea-7.2.5.1.ebuild, icedtea-7.9999.ebuild:
  Add a post-dependency on icedtea-sound, following removal of PulseAudio
  provider in 2.5.0.

  16 Jul 2014; Andrew John Hughes <gnu_andrew@member.fsf.org>
  icedtea-7.2.5.1.ebuild:
  Fix JamVM patch, as spotted by lvlnd.

*icedtea-7.2.5.1 (16 Jul 2014)

  16 Jul 2014; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.5.1.ebuild, -icedtea-7.2.5.0.ebuild:
  IcedTea 2.5.1 security update: http://bitly.com/it20501

  15 Jul 2014; Andrew John Hughes <gnu_andrew@member.fsf.org>
  icedtea-3.9999.ebuild, icedtea-6.1.13.4.ebuild, icedtea-6.9999.ebuild,
  icedtea-7.2.4.7.ebuild, icedtea-7.2.5.0.ebuild, icedtea-7.9999.ebuild:
  Add selinux USE flag and dependency, as suggested by Dessa on IRC.

*icedtea-6.1.13.4 (15 Jul 2014)

  15 Jul 2014; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-6.1.13.4.ebuild, -icedtea-6.1.13.3.ebuild:
  IcedTea 1.13.4 security update for OpenJDK 6: http://bitly.com/it1134

*icedtea-7.2.5.0 (15 Jul 2014)

  15 Jul 2014; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.5.0.ebuild, icedtea-7.9999.ebuild, metadata.xml:
  IcedTea 2.5.0 release: http://bitly.com/1l7n3Qq

*icedtea-7.2.4.7 (16 Apr 2014)

  16 Apr 2014; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.4.7.ebuild, -files/icedtea-6-pass_javac_memory_args_to_vm.patch,
  -files/icedtea-6.1.10.4_pax_kernel_support.patch,
  -files/icedtea-6_pax_kernel_support.patch,
  -files/icedtea-7-compile_for_7_cacao_mem.patch,
  -files/icedtea-7-compiler_detection_cleanup.patch,
  -files/icedtea-7-ecj_jar.patch, -files/icedtea-7-no_suffix.patch,
  -files/icedtea-7.2.1-pax_kernel_support.patch,
  -files/icedtea-7.2.1-pax_mark_rmic_java.patch,
  -files/icedtea-7.2.1-pr986-cacao_memory_fix.patch,
  -files/icedtea-7.2.2-pr986-cacao_memory_fix_v2.patch, -icedtea-7.2.4.6.ebuild:
  IcedTea 2.4.7 security update: http://bitly.com/1maXJMQ

*icedtea-6.1.13.3 (15 Apr 2014)

  15 Apr 2014; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-6.1.13.3.ebuild, -icedtea-6.1.11.15.ebuild, -icedtea-6.1.12.8.ebuild,
  -icedtea-6.1.13.2.ebuild, -icedtea-7.2.3.14.ebuild:
  IcedTea 1.13.3 security update: http://bitly.com/1p8b9hn

*icedtea-6.1.13.2 (28 Mar 2014)

  28 Mar 2014; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +files/icedtea-7-ecj_jar.patch, +icedtea-6.1.13.2.ebuild,
  -icedtea-6.1.13.1.ebuild, icedtea-7.2.4.6.ebuild:
  Fix ecj jar requirement in 2.4.6 & update to 1.13.2: http://bitly.com/1f0BhnC

*icedtea-7.2.3.14 (28 Mar 2014)
*icedtea-7.2.4.6 (28 Mar 2014)

  28 Mar 2014; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.3.14.ebuild, +icedtea-7.2.4.6.ebuild, -icedtea-7.2.3.12.ebuild,
  -icedtea-7.2.4.5.ebuild:
  2.3.14 & 2.4.6 releases: http://bitly.com/1rKqaoa

  22 Feb 2014; Andrew John Hughes <gnu_andrew@member.fsf.org>
  icedtea-7.9999.ebuild, metadata.xml:
  Update live 2.x ebuild to work with latest additions (updated PaX support,
  ppc64 port, kerberos & smartcard compile-time link option)

  30 Jan 2014; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.13.1.ebuild:
  Fix sandbox violation #499746
  Copy arm keyword from main tree

*icedtea-6.1.11.15 (30 Jan 2014)

  30 Jan 2014; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-6.1.11.15.ebuild, -icedtea-6.1.11.14.ebuild:
  IcedTea 1.11.15 security update: http://bitly.com/1flaAsJ

*icedtea-7.2.4.5 (29 Jan 2014)

  29 Jan 2014; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.4.5.ebuild, -icedtea-7.2.4.3.ebuild:
  IcedTea 2.4.5 update: http://bitly.com/1d7AJHj

*icedtea-6.1.12.8 (23 Jan 2014)
*icedtea-6.1.13.1 (23 Jan 2014)

  23 Jan 2014; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-6.1.12.8.ebuild, +icedtea-6.1.13.1.ebuild, -icedtea-6.1.12.7.ebuild,
  -icedtea-6.1.13.0.ebuild, icedtea-6.9999.ebuild:
  IcedTea 1.12.8 & 1.13.1 for OpenJDK 6 security updates:
  http://bitly.com/1eTE0MN

  27 Dec 2013; Andrew John Hughes <gnu_andrew@member.fsf.org>
  icedtea-6.1.13.0.ebuild:
  Update URL for OpenJDK 6 tarball.

*icedtea-6.1.13.0 (26 Dec 2013)

  26 Dec 2013; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-6.1.13.0.ebuild, icedtea-6.9999.ebuild, metadata.xml:
  Add IcedTea 1.13.0 release: http://bitly.com/1dFDtgL

  01 Dec 2013; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.11.14.ebuild,
  icedtea-6.1.12.7.ebuild, icedtea-7.2.3.12.ebuild, icedtea-7.2.4.3.ebuild:
  Pin virtual/jpeg dependency to slot 0, bug #491250

*icedtea-6.1.12.7 (25 Nov 2013)

  25 Nov 2013; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-6.1.12.7.ebuild, -icedtea-6.1.12.6.ebuild:
  IcedTea 1.12.x security update: http://bitly.com/1dvBnES

*icedtea-6.1.11.14 (13 Nov 2013)

  13 Nov 2013; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-6.1.11.14.ebuild, -icedtea-6.1.11.13.ebuild:
  IcedTea 1.11.14 security release: http://bitly.com/1eK3iAA

  23 Oct 2013; Andrew John Hughes <gnu_andrew@member.fsf.org>
  -icedtea-7.2.1.9-r1.ebuild, -icedtea-7.2.2.9-r1.ebuild:
  Remove unsupported 2.1.x and 2.2.x series, obsoleted by latest security
  update.

*icedtea-7.2.4.3 (23 Oct 2013)

  23 Oct 2013; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.4.3.ebuild, -icedtea-7.2.4.2.ebuild:
  2.4.3 security update: http://bitly.com/1a6PbzK

*icedtea-7.2.4.2 (24 Sep 2013)

  24 Sep 2013; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.4.2.ebuild, -icedtea-7.2.4.1-r1.ebuild:
  2.4.2 release: http://bitly.com/1b82gNW

*icedtea-7.9999 (19 Sep 2013)

  19 Sep 2013; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.9999.ebuild:
  Add live ebuild for 7 (finally).

*icedtea-7.2.3.12 (09 Sep 2013)

  09 Sep 2013; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.3.12.ebuild:
  Don't remove current versions from overlay!

*icedtea-6.1.11.13 (07 Sep 2013)

  07 Sep 2013; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-6.1.11.13.ebuild, -icedtea-6.1.11.12.ebuild:
  IcedTea 1.11.13 release: bitly.com/17FfRZ3

*icedtea-7.2.3.12 (30 Jul 2013)

  30 Jul 2013; Andrew John Hughes <gnu_andrew@member.fsf.org>
  -icedtea-7.2.3.11.ebuild, +icedtea-7.2.3.12.ebuild:
  2.3.12 release: http://bitly.com/14eE8X5

*icedtea-7.2.4.1-r1 (25 Jul 2013)
*icedtea-7.2.2.9-r1 (25 Jul 2013)
*icedtea-7.2.1.9-r1 (25 Jul 2013)

  25 Jul 2013; Andrew John Hughes <gnu_andrew@member.fsf.org>
  -icedtea-7.2.1.9.ebuild, +icedtea-7.2.1.9-r1.ebuild, -icedtea-7.2.2.9.ebuild,
  +icedtea-7.2.2.9-r1.ebuild, -icedtea-7.2.4.1.ebuild,
  +icedtea-7.2.4.1-r1.ebuild:
  Update other 7 ebuilds to re-enable LCMS with >= 2.5.

*icedtea-7.2.3.11 (25 Jul 2013)

  25 Jul 2013; Andrew John Hughes <gnu_andrew@member.fsf.org>
  -icedtea-7.2.3.10.ebuild, +icedtea-7.2.3.11.ebuild:
  2.3.x update for ARM32 users: http://bitly.com/171EtHE

*icedtea-6.1.12.6 (12 Jul 2013)
*icedtea-6.1.11.12 (12 Jul 2013)

  12 Jul 2013; Andrew John Hughes <gnu_andrew@member.fsf.org>
  -icedtea-6.1.11.11.ebuild, +icedtea-6.1.11.12.ebuild,
  -icedtea-6.1.12.5.ebuild, +icedtea-6.1.12.6.ebuild:
  New IcedTea for OpenJDK 6 security updates: http://bitly.com/174N6TC

*icedtea-7.2.4.1 (09 Jul 2013)

  09 Jul 2013; Andrew John Hughes <gnu_andrew@member.fsf.org>
  -icedtea-7.2.4.0.ebuild, +icedtea-7.2.4.1.ebuild:
  2.4.1 security update: http://bitly.com/16jAEgD

*icedtea-7.2.2.9 (01 Jul 2013)
*icedtea-7.2.1.9 (01 Jul 2013)

  01 Jul 2013; Andrew John Hughes <gnu_andrew@member.fsf.org>
  -icedtea-7.2.1.8.ebuild, +icedtea-7.2.1.9.ebuild, -icedtea-7.2.2.8.ebuild,
  +icedtea-7.2.2.9.ebuild:
  Add 2.1.9 and 2.2.9 security updates: http://bitly.com/18pHUxv

*icedtea-7.2.3.10 (28 Jun 2013)

  28 Jun 2013; Andrew John Hughes <gnu_andrew@member.fsf.org>
  -icedtea-7.2.3.9.ebuild, +icedtea-7.2.3.10.ebuild:
  2.3.10 security update: http://bitly.com/14A60zV

  10 Jun 2013; Andrew John Hughes <gnu_andrew@member.fsf.org>
  icedtea-7.2.4.0.ebuild:
  Add = slot dependency to freetype and cairo too (as in pango).

  10 Jun 2013; Andrew John Hughes <gnu_andrew@member.fsf.org>
  icedtea-7.2.4.0.ebuild:
  Update to use EAPI 5.

*icedtea-7.2.4.0 (10 Jun 2013)

  10 Jun 2013; Andrew John Hughes <gnu_andrew@member.fsf.org>
  +icedtea-7.2.4.0.ebuild:
  New IcedTea 2.4.0 release: bitly.com/11Bzajd

*icedtea-7.2.1.8 (12 May 2013)

  12 May 2013; Andrew John Hughes <andrew@gentoo.org> -icedtea-7.2.1.7.ebuild,
  +icedtea-7.2.1.8.ebuild:
  Latest 2.1.x release: http://bitly.com/15VpcNA

*icedtea-7.2.2.8 (02 May 2013)

  02 May 2013; Andrew John Hughes <andrew@gentoo.org> -icedtea-7.2.2.7.ebuild,
  +icedtea-7.2.2.8.ebuild:
  New 2.2.x security release: http://bit.ly/14RjZpX

*icedtea-6.1.12.5 (30 Apr 2013)
*icedtea-6.1.11.11 (30 Apr 2013)

  30 Apr 2013; Andrew John Hughes <andrew@gentoo.org>
  -icedtea-6.1.11.10.ebuild, +icedtea-6.1.11.11.ebuild,
  -icedtea-6.1.12.4.ebuild, +icedtea-6.1.12.5.ebuild:
  Add new 6 ebuilds: http://bitly.com/14RjZpX

*icedtea-7.2.3.9 (22 Apr 2013)

  22 Apr 2013; Andrew John Hughes <andrew@gentoo.org> -icedtea-7.2.3.8.ebuild,
  +icedtea-7.2.3.9.ebuild, metadata.xml:
  Latest security release and Zero support: http://bitly.com/11uDsb9

*icedtea-6.1.11.10 (17 Apr 2013)

  17 Apr 2013; Andrew John Hughes <andrew@gentoo.org> -icedtea-6.1.11.9.ebuild,
  +icedtea-6.1.11.10.ebuild:
  Add latest security fixes: http://bitly.com/YVSJ5Y

  12 Apr 2013; Andrew John Hughes <andrew@gentoo.org> icedtea-6.9999.ebuild:
  Update HotSpot tarball, use better naming suggested in #439140.

*icedtea-3.9999 (21 Mar 2013)

  21 Mar 2013; Andrew John Hughes <andrew@gentoo.org> +icedtea-3.9999.ebuild,
  icedtea-7.2.3.8.ebuild:
  First attempt at a build for the 3.x series, supporting OpenJDK 8. Fix paths
  in 2.3.8 ebuild broken by last commit.

  20 Mar 2013; Andrew John Hughes <andrew@gentoo.org> icedtea-7.2.3.8.ebuild:
  Add better tarball naming as suggested in #439140.

  13 Mar 2013; Andrew John Hughes <andrew@gentoo.org> icedtea-6.9999.ebuild:
  Update HotSpot tarball to match upstream.

*icedtea-6.1.12.4 (12 Mar 2013)
*icedtea-6.1.11.9 (12 Mar 2013)

  12 Mar 2013; Andrew John Hughes <andrew@gentoo.org> -icedtea-6.1.11.8.ebuild,
  +icedtea-6.1.11.9.ebuild, -icedtea-6.1.12.3.ebuild, +icedtea-6.1.12.4.ebuild:
  Add latest security releases for 6: http://bitly.com/X3Shxa

*icedtea-7.2.3.8 (12 Mar 2013)
*icedtea-7.2.2.7 (12 Mar 2013)
*icedtea-7.2.1.7 (12 Mar 2013)

  12 Mar 2013; Andrew John Hughes <andrew@gentoo.org> -icedtea-7.2.1.6.ebuild,
  +icedtea-7.2.1.7.ebuild, -icedtea-7.2.2.6.ebuild, +icedtea-7.2.2.7.ebuild,
  -icedtea-7.2.3.7.ebuild, +icedtea-7.2.3.8.ebuild:
  Add latest security releases for 7: http://bitly.com/ZGBdkA

*icedtea-7.2.3.7 (20 Feb 2013)
*icedtea-7.2.2.6 (20 Feb 2013)
*icedtea-7.2.1.6 (20 Feb 2013)

  20 Feb 2013; Andrew John Hughes <andrew@gentoo.org> -icedtea-7.2.1.5.ebuild,
  +icedtea-7.2.1.6.ebuild, -icedtea-7.2.2.5.ebuild, +icedtea-7.2.2.6.ebuild,
  -icedtea-7.2.3.6.ebuild, +icedtea-7.2.3.7.ebuild:
  Add latest security releases for 7: http://bitly.com/Yazvpb

*icedtea-6.1.12.3 (20 Feb 2013)
*icedtea-6.1.11.8 (20 Feb 2013)

  20 Feb 2013; Andrew John Hughes <andrew@gentoo.org>
  -icedtea-6.1.10.10.ebuild, -icedtea-6.1.11.7.ebuild,
  +icedtea-6.1.11.8.ebuild, -icedtea-6.1.12.2.ebuild, +icedtea-6.1.12.3.ebuild,
  icedtea-6.9999.ebuild, metadata.xml:
  Add latest 6 security releases (http://bitly.com/VH5Pn7) and fix live 6 build
  to support hs23. Remove unsupported 1.10 release.

*icedtea-7.2.2.5 (14 Feb 2013)
*icedtea-7.2.1.5 (14 Feb 2013)

  14 Feb 2013; Andrew John Hughes <andrew@gentoo.org> -icedtea-7.2.1.4.ebuild,
  +icedtea-7.2.1.5.ebuild, -icedtea-7.2.2.4.ebuild, +icedtea-7.2.2.5.ebuild:
  Update older 7 releases (http://bitly.com/12B0w62)

*icedtea-7.2.3.6 (13 Feb 2013)
*icedtea-6.1.12.2 (13 Feb 2013)
*icedtea-6.1.11.7 (13 Feb 2013)

  13 Feb 2013; Andrew John Hughes <andrew@gentoo.org> -icedtea-6.1.11.6.ebuild,
  +icedtea-6.1.11.7.ebuild, -icedtea-6.1.12.1.ebuild, +icedtea-6.1.12.2.ebuild,
  -icedtea-7.2.3.4.ebuild, +icedtea-7.2.3.6.ebuild:
  Add first IcedTea7 security fix (http://bitly.com/YWRXSU) and IcedTea6
  regression fix releases (http://bitly.com/WYUITn)

*icedtea-6.1.12.1 (05 Feb 2013)
*icedtea-6.1.11.6 (05 Feb 2013)

  05 Feb 2013; Andrew John Hughes <andrew@gentoo.org> -icedtea-6.1.11.5.ebuild,
  +icedtea-6.1.11.6.ebuild, -icedtea-6.1.12.0.ebuild, +icedtea-6.1.12.1.ebuild,
  icedtea-6.9999.ebuild:
  Latest security fixes for 6: http://bit.ly/TvxpkZ (1.11.6) &
  http://bit.ly/YyDX1e (1.12.1)

  31 Jan 2013; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.12.0.ebuild,
  icedtea-6.9999.ebuild:
  Add JamVM for use with EXTRA_ECONF

  31 Jan 2013; Ralph Sennhauser <sera@gentoo.org> icedtea-6.9999.ebuild:
  Need to generate build files for live ebuild.

  30 Jan 2013; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.12.0.ebuild:
  icedtea no longer uses eclipse-ecj on Gentoo, so drop workarounds for #392337
  and #392587

*icedtea-6.1.12.0 (29 Jan 2013)

  29 Jan 2013; Andrew John Hughes <andrew@gentoo.org> +icedtea-6.1.12.0.ebuild,
  icedtea-6.9999.ebuild:
  Support 1.12.0:
  http://blog.fuseyism.com/index.php/2013/01/29/icedtea6-1-12-released/
  and sync live ebuild with recent changes

  24 Jan 2013; Ralph Sennhauser <sera@gentoo.org> icedtea-6.9999.ebuild:
  icedtea no longer uses eclipse-ecj on Gentoo, so drop workarounds for #392337
  and #392587

*icedtea-6.9999 (23 Jan 2013)

  23 Jan 2013; Andrew John Hughes <andrew@gentoo.org> +icedtea-6.9999.ebuild:
  Add live ebuild for IcedTea6.

  23 Jan 2013; Andrew John Hughes <andrew@gentoo.org> icedtea-7.2.3.4.ebuild:
  Remove autotools inheritance from 2.3.4, as reommended by repoman.

  23 Jan 2013; Andrew John Hughes <andrew@gentoo.org> icedtea-6.1.10.10.ebuild,
  icedtea-6.1.11.5.ebuild:
  Remove unused JAMVM references in IcedTea6 ebuilds.

*icedtea-7.2.3.4 (15 Jan 2013)
*icedtea-7.2.2.4 (15 Jan 2013)
*icedtea-7.2.1.4 (15 Jan 2013)

  15 Jan 2013; Andrew John Hughes <andrew@gentoo.org>
  -files/icedtea-7.2.0-explicit-gthread.patch,
  -files/icedtea-7.2.0_pax_kernel_support.patch, -icedtea-7.2.1.3.ebuild,
  +icedtea-7.2.1.4.ebuild, +files/icedtea-7.2.1-pax_kernel_support.patch,
  +files/icedtea-7.2.1-pax_mark_rmic_java.patch,
  +files/icedtea-7.2.1-pr986-cacao_memory_fix.patch,
  -files/icedtea-7.2.1.3-pax_mark_rmic_java.patch,
  -files/icedtea-7.2.1.3-pr986-cacao_memory_fix.patch, -icedtea-7.2.2.3.ebuild,
  +files/icedtea-7.2.2-pr986-cacao_memory_fix_v2.patch,
  -files/icedtea-7.2.2.3-pax_mark_rmic_java.patch,
  -files/icedtea-7.2.2.3-pr986-cacao_memory_fix.patch,
  -files/icedtea-7.2.2.3-pr986-cacao_memory_fix_v2.patch,
  +icedtea-7.2.2.4.ebuild, -icedtea-7.2.3.3.ebuild,
  -files/icedtea-7.2.3.3-pax_mark_rmic_java.patch, +icedtea-7.2.3.4.ebuild:
  Latest security releases for 7:
  http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2013-January/021413.html

  18 Oct 2012; Ralph Sennhauser <sera@gentoo.org> icedtea-7.2.1.3.ebuild,
  icedtea-7.2.2.3.ebuild, icedtea-7.2.3.3.ebuild:
  x11-libs/libXp no longer required.
  Update jamvm tarball.

*icedtea-7.2.3.3 (18 Oct 2012)
*icedtea-7.2.2.3 (18 Oct 2012)
*icedtea-7.2.1.3 (18 Oct 2012)

  18 Oct 2012; Andrew John Hughes <andrew@gentoo.org> -icedtea-7.2.1.2.ebuild,
  -files/icedtea-7.2.1.2-pax_mark_rmic_java.patch,
  -files/icedtea-7.2.1.2-pr986-cacao_memory_fix.patch, +icedtea-7.2.1.3.ebuild,
  +files/icedtea-7.2.1.3-pax_mark_rmic_java.patch,
  +files/icedtea-7.2.1.3-pr986-cacao_memory_fix.patch, -icedtea-7.2.2.2.ebuild,
  -files/icedtea-7.2.2.2-pax_mark_rmic_java.patch,
  -files/icedtea-7.2.2.2-pr986-cacao_memory_fix.patch,
  -files/icedtea-7.2.2.2-pr986-cacao_memory_fix_v2.patch,
  +icedtea-7.2.2.3.ebuild, +files/icedtea-7.2.2.3-pax_mark_rmic_java.patch,
  +files/icedtea-7.2.2.3-pr986-cacao_memory_fix.patch,
  +files/icedtea-7.2.2.3-pr986-cacao_memory_fix_v2.patch,
  -icedtea-7.2.3.2.ebuild, -files/icedtea-7.2.3.2-pax_mark_rmic_java.patch,
  +icedtea-7.2.3.3.ebuild, +files/icedtea-7.2.3.3-pax_mark_rmic_java.patch:
  2012/10/16 security updates for 7:
  http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2012-October/020571.html

*icedtea-6.1.11.5 (17 Oct 2012)
*icedtea-6.1.10.10 (17 Oct 2012)

  17 Oct 2012; Andrew John Hughes <andrew@gentoo.org> -icedtea-6.1.10.9.ebuild,
  +icedtea-6.1.10.10.ebuild, -icedtea-6.1.11.4.ebuild,
  +icedtea-6.1.11.5.ebuild:
  2012/10/16 security update:
  http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2012-October/020556.html

*icedtea-7.2.1.2 (10 Oct 2012)

  10 Oct 2012; Andrew John Hughes <andrew@gentoo.org> -icedtea-7.2.1.1.ebuild,
  -files/icedtea-7.2.1.1-pax_mark_rmic_java.patch,
  -files/icedtea-7.2.1.1-pr986-cacao_memory_fix.patch, +icedtea-7.2.1.2.ebuild,
  +files/icedtea-7.2.1.2-pax_mark_rmic_java.patch,
  +files/icedtea-7.2.1.2-pr986-cacao_memory_fix.patch:
  Add 2.1.2 security update.

  28 Sep 2012; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.10.9.ebuild,
  icedtea-6.1.11.4.ebuild, icedtea-7.2.1.1.ebuild, icedtea-7.2.2.2.ebuild,
  icedtea-7.2.3.2.ebuild:
  Remove obsolete docompress workaround. #433685

  26 Sep 2012; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.10.9.ebuild,
  icedtea-6.1.11.4.ebuild, icedtea-7.2.1.1.ebuild, icedtea-7.2.2.2.ebuild,
  icedtea-7.2.3.2.ebuild:
  Fix package.env entry of rhino. #433283

*icedtea-7.2.2.2 (31 Aug 2012)

  31 Aug 2012; Andrew John Hughes <andrew@gentoo.org> -icedtea-7.2.2.1.ebuild,
  -files/icedtea-7.2.2.1-pax_mark_rmic_java.patch,
  -files/icedtea-7.2.2.1-pr986-cacao_memory_fix.patch,
  -files/icedtea-7.2.2.1-pr986-cacao_memory_fix_v2.patch,
  +icedtea-7.2.2.2.ebuild, +files/icedtea-7.2.2.2-pax_mark_rmic_java.patch,
  +files/icedtea-7.2.2.2-pr986-cacao_memory_fix.patch,
  +files/icedtea-7.2.2.2-pr986-cacao_memory_fix_v2.patch:
  IcedTea 2.2.2 security update:
  http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2012-August/020144.html

*icedtea-7.2.3.2 (31 Aug 2012)
*icedtea-6.1.11.4 (31 Aug 2012)
*icedtea-6.1.10.9 (31 Aug 2012)

  31 Aug 2012; Andrew John Hughes <andrew@gentoo.org> -icedtea-6.1.10.8.ebuild,
  +icedtea-6.1.10.9.ebuild, -icedtea-6.1.11.3.ebuild, +icedtea-6.1.11.4.ebuild,
  -icedtea-7.2.3.1.ebuild, -files/icedtea-7.2.3.1-pax_mark_rmic_java.patch,
  +icedtea-7.2.3.2.ebuild, +files/icedtea-7.2.3.2-pax_mark_rmic_java.patch:
  IcedTea6 1.10.9 & 1.11.4 & IcedTea 2.3.2 security releases: bitly.com/OzbMLs

*icedtea-7.2.3.1 (30 Aug 2012)

  30 Aug 2012; Andrew John Hughes <andrew@gentoo.org> +icedtea-7.2.3.1.ebuild,
  +files/icedtea-7.2.3.1-pax_mark_rmic_java.patch:
  IcedTea 2.3.1 Released: http://bitly.com/OKB0Xy

  25 Jul 2012; Ralph Sennhauser <sera@gentoo.org> icedtea-7.2.2.1.ebuild,
  files/icedtea-7.2.2.1-pr986-cacao_memory_fix.patch,
  +files/icedtea-7.2.2.1-pr986-cacao_memory_fix_v2.patch:
  Create separate cacao memory patch for fixes, revert original.

  24 Jun 2012; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.10.8.ebuild,
  icedtea-6.1.11.3.ebuild, files/icedtea-6_pax_kernel_support.patch,
  icedtea-7.2.1.1.ebuild, +files/icedtea-7.2.1.1-pax_mark_rmic_java.patch,
  icedtea-7.2.2.1.ebuild, +files/icedtea-7.2.2.1-pax_mark_rmic_java.patch:
  Fix building with PaX enabled kernels. #422525

  19 Jun 2012; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.10.8.ebuild,
  icedtea-6.1.11.3.ebuild, icedtea-7.2.1.1.ebuild, icedtea-7.2.2.1.ebuild,
  files/icedtea-7.2.2.1-pr986-cacao_memory_fix.patch:
  Make cacao and jamvm downloads unconditional, fixes SRC_URI in icedtea 6 for
  alternative arches.
  Backport simplifications in icedtea-7 jbootstrap to icedtea-6.
  Fix cacao_memory_fix.patch so resulting patch applies for builds using cacao.

*icedtea-7.2.2.1 (13 Jun 2012)
*icedtea-7.2.1.1 (13 Jun 2012)

  13 Jun 2012; Andrew John Hughes <andrew@gentoo.org>
  +files/icedtea-7-compile_for_7_cacao_mem.patch, -icedtea-7.2.1-r1.ebuild,
  +icedtea-7.2.1.1.ebuild, +files/icedtea-7.2.1.1-pr986-cacao_memory_fix.patch,
  -icedtea-7.2.2.ebuild, +icedtea-7.2.2.1.ebuild,
  +files/icedtea-7.2.2.1-pr986-cacao_memory_fix.patch,
  -files/icedtea-7.2.2-no_suffix.patch,
  +files/icedtea-7-compiler_detection_cleanup.patch,
  +files/icedtea-7-no_suffix.patch:
  Security updates 2.1.1 & 2.2.1 for 7 (http://bitly.com/MBnPEb). Fix PR986 so
  we can build using CACAO+IcedTea.

*icedtea-6.1.11.3 (13 Jun 2012)
*icedtea-6.1.10.8 (13 Jun 2012)

  13 Jun 2012; Andrew John Hughes <andrew@gentoo.org> -icedtea-6.1.10.7.ebuild,
  +icedtea-6.1.10.8.ebuild, -icedtea-6.1.11.2.ebuild, +icedtea-6.1.11.3.ebuild,
  +files/icedtea-6-pass_javac_memory_args_to_vm.patch:
  IcedTea6 1.10.8 & 1.11.3 security releases: http://bitly.com/MACPlQ
  Add patch so bootstrap works with CACAO as bootstrap VM.

  31 May 2012; Andrew John Hughes <andrew@gentoo.org> icedtea-7.2.2.ebuild:
  Allow bootstrap of 2.2 with IcedTea7.

*icedtea-7.2.2 (31 May 2012)

  31 May 2012; Andrew John Hughes <andrew@gentoo.org>
  -icedtea-6.1.8.13-r1.ebuild, -icedtea-6.1.9.13-r1.ebuild,
  -icedtea-7.2.0.1-r1.ebuild, +icedtea-7.2.2.ebuild,
  +files/icedtea-7.2.2-no_suffix.patch:
  IcedTea 2.2 released: http://bit.ly/JAWxBR
  Drop unsupported release series: 1.8, 1.9 & 2.0.

  12 May 2012; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.10.7.ebuild,
  icedtea-6.1.11.2.ebuild, icedtea-7.2.0.1-r1.ebuild, icedtea-7.2.1-r1.ebuild:
  Drop version restriction for autoconf-2.64, the eclass already adds
  >=autoconf-2.68.

  12 May 2012; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.11.2.ebuild,
  icedtea-7.2.1-r1.ebuild:
  Copy ~ia64 KEYWORD from main tree.

  11 May 2012; Andrew John Hughes <andrew@gentoo.org> -icedtea-6.1.10.6-r1.ebuild,
  -icedtea-6.1.11.1-r1.ebuild, icedtea-6.1.11.2.ebuild, icedtea-6.1.10.7.ebuild,
  -files/icedtea-6.1.11.1-cacao_jvm.cfg.patch:
  New releases: 1.10.7 & 1.11.2.

  08 May 2012; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.10.6-r1.ebuild,
  icedtea-6.1.11.1-r1.ebuild, icedtea-7.2.0.1-r1.ebuild,
  icedtea-7.2.1-r1.ebuild:
  dev-util/pkgconfig -> virtual/pkgconfig

  08 May 2012; Ralph Sennhauser <sera@gentoo.org>
  -files/icedtea-6.1.10.4_1-sharkllvm30-de-const-type-135375.patch,
  -files/icedtea-6.1.10.4_separate_shark_target.patch,
  -files/icedtea-6.1.10.4_shark_jvm_rpath.patch,
  -files/icedtea-7.2.0_1-sharkllvm30-de-const-type-135375.patch,
  -files/icedtea-7.2.0_shark_jvm_rpath.patch,
  -files/3-sharkllvm30-MCJIT-v3.patch,
  -files/icedtea-7.2.0_separate_shark_target.patch,
  -files/icedtea-7.2.0_shark_llvm_flags.patch,
  -files/2-sharkllvm30-PHI-128537-Call-ArrayRef-135265-v2.patch,
  -files/0-sharkllvm30-targetselect-138450.patch, -files/disable_werror.patch,
  metadata.xml:
  Remove unused patches, remove unused use flags from metadata.xml

*icedtea-7.2.1-r1 (20 Mar 2012)
*icedtea-7.2.0.1-r1 (20 Mar 2012)
*icedtea-6.1.11.1-r1 (20 Mar 2012)
*icedtea-6.1.10.6-r1 (20 Mar 2012)
*icedtea-6.1.9.13-r1 (20 Mar 2012)
*icedtea-6.1.8.13-r1 (20 Mar 2012)

  20 Mar 2012; Andrew John Hughes <andrew@gentoo.org> -icedtea-6.1.8.13.ebuild,
  +icedtea-6.1.8.13-r1.ebuild, -icedtea-6.1.9.13.ebuild,
  +icedtea-6.1.9.13-r1.ebuild, -icedtea-6.1.10.6.ebuild,
  +icedtea-6.1.10.6-r1.ebuild, -icedtea-6.1.11.1.ebuild,
  +icedtea-6.1.11.1-r1.ebuild, -icedtea-7.2.0.1.ebuild,
  +icedtea-7.2.0.1-r1.ebuild, -icedtea-7.2.1.ebuild, +icedtea-7.2.1-r1.ebuild:
  Don't compress the documentation symlink.

  20 Mar 2012; Andrew John Hughes <andrew@gentoo.org> icedtea-6.1.11.1.ebuild,
  +files/icedtea-6.1.11.1-cacao_jvm.cfg.patch:
  Allow CACAO to work on architectures other than x86, x86_64 and SPARC.

  15 Mar 2012; Vlastimil Babka <caster@gentoo.org> icedtea-7.2.0.1.ebuild,
  icedtea-7.2.1.ebuild:
  Simplify USE=jbootstrap logic for icedtea-7.

  14 Mar 2012; Ralph Sennhauser <sera@gentoo.org> icedtea-7.2.0.1.ebuild,
  +files/icedtea-7.2.0-explicit-gthread.patch, icedtea-7.2.1.ebuild:
  Fix building against >=glib-2.31. #402481
  Thanks to Marien Zwart <marienz@gentoo.org> for the patch.

  14 Mar 2012; Ralph Sennhauser <sera@gentoo.org> icedtea-7.2.0.1.ebuild,
  icedtea-7.2.1.ebuild:
  Add JamVM for alternative archs with IcedTea 7

  14 Mar 2012; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.8.13.ebuild,
  icedtea-6.1.9.13.ebuild, icedtea-6.1.10.6.ebuild, icedtea-6.1.11.1.ebuild,
  icedtea-7.2.0.1.ebuild, icedtea-7.2.1.ebuild:
  Use JAVA_PKG_WANT_BUILD_VM to limit build VM. This now respects system VM
  setting if usable and simplifies pkg_setup.
  Add missing handles for 1.8 and 1.9 branches to build with newer IcedTea.

  23 Feb 2012; Ralph Sennhauser <sera@gentoo.org> icedtea-7.2.0.1.ebuild,
  icedtea-7.2.1.ebuild:
  Fix tarballs and reenable pax support patch

*icedtea-6.1.11.1 (16 Feb 2012)

  16 Feb 2012; Andrew John Hughes <andrew@gentoo.org> -icedtea-6.1.11.ebuild,
  +icedtea-6.1.11.1.ebuild:
  Security release:
  http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2012-February/017233.ht
  ml

  15 Feb 2012; Andrew John Hughes <andrew@gentoo.org> icedtea-7.2.1.ebuild:
  Make working VMs clearer.

*icedtea-7.2.1 (15 Feb 2012)

  15 Feb 2012; Andrew John Hughes <andrew@gentoo.org> icedtea-7.2.0.1.ebuild,
  +icedtea-7.2.1.ebuild:
  Fix changeset identifiers.

*icedtea-7.2.0.1 (15 Feb 2012)
*icedtea-6.1.10.6 (15 Feb 2012)
*icedtea-6.1.9.13 (15 Feb 2012)
*icedtea-6.1.8.13 (15 Feb 2012)

  15 Feb 2012; Andrew John Hughes <andrew@gentoo.org> -icedtea-6.1.8.12.ebuild,
  +icedtea-6.1.8.13.ebuild, -icedtea-6.1.9.12.ebuild, +icedtea-6.1.9.13.ebuild,
  -icedtea-6.1.10.4-r3.ebuild, -icedtea-6.1.10.5.ebuild,
  +icedtea-6.1.10.6.ebuild, -icedtea-7.2.0-r3.ebuild, -icedtea-7.2.0-r4.ebuild,
  -icedtea-7.2.0-r5.ebuild, +icedtea-7.2.0.1.ebuild:
  Security updates: http://bit.ly/AbtG5v

  08 Feb 2012; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.8.12.ebuild,
  icedtea-6.1.9.12.ebuild, icedtea-6.1.10.5.ebuild, icedtea-6.1.11.ebuild,
  icedtea-7.2.0-r5.ebuild:
  Install sytem.lockfile and systemRootModFile for use of icedtea in sandboxed
  environments. #402507

  06 Feb 2012; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.8.12.ebuild,
  icedtea-6.1.9.12.ebuild, icedtea-6.1.10.5.ebuild, icedtea-6.1.11.ebuild,
  icedtea-7.2.0-r5.ebuild:
  Add missing DEPEND on unzip. #402353

  04 Feb 2012; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.11.ebuild:
  Uses xsltproc instead of xalan+xerces. Bug IcedTea #732.
  Raise ant dep to >=1.8.1 so xalan and xerces can be dropped.

*icedtea-7.2.0-r5 (03 Feb 2012)

  03 Feb 2012; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.10.5.ebuild,
  icedtea-6.1.11.ebuild, +files/icedtea-6_pax_kernel_support.patch,
  +icedtea-7.2.0-r5.ebuild:
  Add patch for building with PaX enabled kernels.
  Remove xawt library with USE=-X so HeadlessGraphicsEnvironment is used by
  default.
  Install revdep mask for when dependedcies are deliberately removed with
  USE=-X,-alsa,-cups.
  Clean out no longer used code.
  icedtea-7: drop building of additional vms.

*icedtea-6.1.11 (31 Jan 2012)

  31 Jan 2012; Andrew John Hughes <andrew@gentoo.org> +icedtea-6.1.11.ebuild:
  Add 1.11 release: http://bit.ly/xrkuRh

*icedtea-6.1.10.5 (12 Jan 2012)
*icedtea-6.1.9.12 (12 Jan 2012)
*icedtea-6.1.8.12 (12 Jan 2012)

  12 Jan 2012; Andrew John Hughes <andrew@gentoo.org> -icedtea-6.1.8.11.ebuild,
  +icedtea-6.1.8.12.ebuild, -icedtea-6.1.9.11.ebuild, +icedtea-6.1.9.12.ebuild,
  -icedtea-6.1.10.4-r5.ebuild, +icedtea-6.1.10.5.ebuild:
  Latest bugfix update: 1.8.12, 1.9.12 and 1.10.5 http://bit.ly/zGNr7r

*icedtea-6.1.10.4-r5 (20 Dec 2011)

  20 Dec 2011; Andrew John Hughes <andrew@gentoo.org>
  -icedtea-6.1.10.4-r4.ebuild, +icedtea-6.1.10.4-r5.ebuild:
  Remove unsupported addvm support. x86/x86_64/SPARC now on HotSpot,
  all others on CACAO.  Remove NIO2 support in preparation for it
  being dropped in 1.11.  Re-enable ppc64 support.

  18 Dec 2011; Ralph Sennhauser <sera@gentoo.org> files/icedtea.env,
  metadata.xml:
  Copy prefixified icedtea.env from main tree and fix typo in metadata.xml

  17 Dec 2011; Ralph Sennhauser <sera@gentoo.org>
  files/icedtea-6.1.10.4_separate_shark_target.patch:
  Reorder ADD_ZERO_CONFIGURE_ARGS to prevent leaking through of unfiltred
  options

  16 Dec 2011; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.10.4-r4.ebuild:
  Fix patch name

*icedtea-7.2.0-r4 (14 Dec 2011)
*icedtea-6.1.10.4-r4 (14 Dec 2011)

  14 Dec 2011; Ralph Sennhauser <sera@gentoo.org> +icedtea-6.1.10.4-r4.ebuild,
  +files/icedtea-6.1.10.4_1-sharkllvm30-de-const-type-135375.patch,
  +files/icedtea-6.1.10.4_pax_kernel_support.patch,
  +files/icedtea-6.1.10.4_separate_shark_target.patch,
  +files/icedtea-6.1.10.4_shark_jvm_rpath.patch, +icedtea-7.2.0-r4.ebuild,
  +files/icedtea-7.2.0_1-sharkllvm30-de-const-type-135375.patch,
  +files/icedtea-7.2.0_pax_kernel_support.patch,
  +files/icedtea-7.2.0_separate_shark_target.patch,
  +files/icedtea-7.2.0_shark_jvm_rpath.patch,
  +files/icedtea-7.2.0_shark_llvm_flags.patch,
  +files/2-sharkllvm30-PHI-128537-Call-ArrayRef-135265-v2.patch,
  +files/0-sharkllvm30-targetselect-138450.patch,
  +files/3-sharkllvm30-MCJIT-v3.patch, +files/disable_werror.patch:
  Add use flags zero and shark for builing them as additional vms.
  Add bs patch for PaX enabled kernels.
  Add bs patch for spliting out shark target.
  Explicitly add llvm lib dir to RPATH in sharks libjvm.so
  Add a series of patches to get shark to build with llvm-3.0
  Add missing llvm flags in openjdk7.
  Allow running the jtreg tests.
  Drop ppc64 KEYWORD for icedtea:6 due to missing sys-devel/llvm.

*icedtea-7.2.0-r3 (02 Dec 2011)
*icedtea-6.1.10.4-r3 (02 Dec 2011)

  02 Dec 2011; Ralph Sennhauser <sera@gentoo.org> -icedtea-6.1.10.4-r2.ebuild,
  +icedtea-6.1.10.4-r3.ebuild, -icedtea-7.2.0-r2.ebuild,
  +icedtea-7.2.0-r3.ebuild, metadata.xml:
  - Fix bootstrap build for PaX enabled kernels. #389751
  - Add missing dependency on ecj for use jbootstrap #392337
  - Don't use eclipse-ecj:3.7 for icedtea:6 #392587
  - Add various missing dependencies according to scanelf results.
  icedtea-7: dev-libs/atk sys-devel/gcc sys-libs/glibc x11-libs/cairo
  x11-libs/gdk-pixbuf x11-libs/pango nss? ( dev-libs/nss )
  icedtea-6: dev-libs/glib sys-devel/gcc sys-libs/glibc
  - Fix libffi dependency for non ppc archs.
  - Make dependencies optional at runtime as for icedtea-bin for installing via
  binpkg. Use flags are X alsa cups.
  - Allow building cacao and jamvm as additional VMs. To use run java -cacao
  respectively java -jamvm. Use flags are cacao and jamvm.

  28 Nov 2011; Miroslav Šulc <fordfrog@gentoo.org>
  +files/fontconfig.Gentoo.properties.src:
  Adding ommitted fontconfig file

*icedtea-7.2.0-r2 (28 Nov 2011)
*icedtea-6.1.10.4-r2 (28 Nov 2011)

  28 Nov 2011; Ralph Sennhauser <sera@gentoo.org> -icedtea-6.1.10.4.ebuild,
  -icedtea-6.1.10.4-r1.ebuild, +icedtea-6.1.10.4-r2.ebuild,
  -icedtea-7.2.0.ebuild, -icedtea-7.2.0-r1.ebuild, +icedtea-7.2.0-r2.ebuild,
  metadata.xml:
  Install Gentoo specific fontconfig properties file. #390663
  Add missing dependency on pkgconfig. #391987
  Add use flag X and cjk to install expected fonts. #349916
  Add use flag source and install src.zip conditionally.
  Add use flag jbootstrap and make bootstrap optional where possible.
  Remove use flag xrender and require libXrender for icedtea:6, icedtea:7 does
  this already. #382867
  Use @SLOT@ substitution in set_java_env.
  Prefixify.

  21 Nov 2011; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.10.4-r1.ebuild,
  icedtea-7.2.0-r1.ebuild:
  Use java-vm-2.eclass to set PaX markings

  18 Nov 2011; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.10.4-r1.ebuild,
  icedtea-7.2.0-r1.ebuild:
  Remove unneeded pkg_postinst

  18 Nov 2011; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.10.4-r1.ebuild,
  icedtea-7.2.0-r1.ebuild:
  Add missing cpio dep and remove the old libXext version variant, bug #389599.

  18 Nov 2011; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.10.4-r1.ebuild,
  icedtea-7.2.0-r1.ebuild:
  Remove 'cacao' and 'jamvm' USE flags. Also remove 'zero' flag and have it
  used only for ppc/ppc64. This functionality was experimental and brought more
  problems than benefits. Also remove the bootstrapping with cacao due to
  failures. Fixes numerous bugs.

  18 Nov 2011; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.10.4-r1.ebuild,
  icedtea-7.2.0-r1.ebuild:
  Add additional PaX markings to executables for x86. Bug 389751

  18 Nov 2011; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.10.4-r1.ebuild,
  icedtea-7.2.0-r1.ebuild:
  Fix detection of parallel jobs from MAKEOPTS to handle all syntax variants.
  Fixes bug #337827 and #389791. Using syntax from waf-utils.eclass

  18 Nov 2011; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.10.4-r1.ebuild,
  icedtea-7.2.0-r1.ebuild:
  Add --disable-bootstrap on PaX enabled hosts when building using IcedTea7.
  Bug #389751

  13 Nov 2011; Ralph Sennhauser <sera@gentoo.org> icedtea-7.2.0-r1.ebuild:
  Fix building with PaX enabled kernels. Bug #389751. Thanks to Daniel Kuehn
  <enhaisa@gmail.com> and Magnus Granberg <zorry@gentoo.org> for their help
  finding the patch

  12 Nov 2011; Ralph Sennhauser <sera@gentoo.org> icedtea-7.2.0-r1.ebuild:
  Use java-vm_sandbox-predict for installing the controle file

  11 Nov 2011; Vlastimil Babka <caster@gentoo.org> icedtea-7.2.0-r1.ebuild:
  Support building using icedtea-bin-7.

  10 Nov 2011; Ralph Sennhauser <sera@gentoo.org> icedtea-6.1.10.4-r1.ebuild,
  icedtea-7.2.0-r1.ebuild:
  Fix building with unusal locales, bug #330433 #389717

*icedtea-6.1.9.11 (08 Nov 2011)
*icedtea-6.1.8.11 (08 Nov 2011)

  08 Nov 2011; Andrew John Hughes <andrew@gentoo.org> -icedtea-6.1.8.10.ebuild,
  +icedtea-6.1.8.11.ebuild, -icedtea-6.1.9.10.ebuild, +icedtea-6.1.9.11.ebuild:
  Security update for releases with plugin & Web Start: http://bit.ly/uhvhLW

  08 Nov 2011; Ralph Sennhauser <sera@gentoo.org>
  icedtea-6.1.10.4-r1.ebuild, icedtea-7.2.0-r1.ebuild:
  Allow building of icedtea with icedtea-bin-6, bug 389885

  07 Nov 2011; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.10.4-r1.ebuild,
  icedtea-7.2.0-r1.ebuild:
  Prepare for icedtea-bin version and VMHANDLE migration.

  06 Nov 2011; Vlastimil Babka <caster@gentoo.org> icedtea-7.2.0-r1.ebuild:
  Fix build due to missing ant class when xalan and xerces are not installed,
  bug #389625.

  05 Nov 2011; Vlastimil Babka <caster@gentoo.org> icedtea-7.2.0-r1.ebuild:
  Relax lcms dep to allow the stable 2.0a satisfy it.

  05 Nov 2011; Vlastimil Babka <caster@gentoo.org> icedtea-7.2.0-r1.ebuild:
  Add missing cpio dep QA fix from main tree.

  04 Nov 2011; Vlastimil Babka <caster@gentoo.org> icedtea-7.2.0-r1.ebuild:
  Add ~x86 keyword.

  04 Nov 2011; Vlastimil Babka <caster@gentoo.org> icedtea-7.2.0-r1.ebuild:
  Remove unused autotools.

  02 Nov 2011; Vlastimil Babka <caster@gentoo.org> icedtea-7.2.0-r1.ebuild:
  Add sandbox.d file for bug #388127.

  30 Oct 2011; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.8.10.ebuild,
  icedtea-6.1.9.10.ebuild, icedtea-6.1.10.4.ebuild, icedtea-6.1.10.4-r1.ebuild,
  icedtea-7.2.0.ebuild, icedtea-7.2.0-r1.ebuild:
  Package move icedtea6-bin to icedtea-bin.

  30 Oct 2011; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.10.4-r1.ebuild,
  icedtea-7.2.0-r1.ebuild:
  Remove obsolete call to unset_vars, bug #380839.

*icedtea-7.2.0-r1 (30 Oct 2011)
*icedtea-6.1.10.4-r1 (30 Oct 2011)

  30 Oct 2011; Vlastimil Babka <caster@gentoo.org> +icedtea-6.1.10.4-r1.ebuild,
  +icedtea-7.2.0-r1.ebuild:
  Revbump to use EAPI=4 and change the VMHANDLE icedtea${SLOT} to the standard
  icedtea-${SLOT}.

  19 Oct 2011; Andrew John Hughes <andrew@gentoo.org> icedtea-7.2.0.ebuild:
  Remove dead USE flags and fix tarball locations.

  19 Oct 2011; Andrew John Hughes <andrew@gentoo.org> icedtea-7.2.0.ebuild:
  Remove references to removed patches.

*icedtea-7.2.0 (19 Oct 2011)

  19 Oct 2011; Andrew John Hughes <andrew@gentoo.org>
  -files/7.2.0_pre-bytecode_check.patch, -files/7.2.0_pre-cacao-01.patch,
  -files/7.2.0_pre-cacao-02.patch, -files/7.2.0_pre-cacao-03.patch,
  -files/7.2.0_pre-cacao-04.patch, -files/7.2.0_pre-no_werror.patch,
  -icedtea-7.2.0_pre.ebuild, +icedtea-7.2.0.ebuild:
  Add full release of IcedTea 2.0:
  http://blog.fuseyism.com/index.php/2011/10/19/icedtea-2-0-released/

*icedtea-6.1.10.4 (19 Oct 2011)
*icedtea-6.1.9.10 (19 Oct 2011)
*icedtea-6.1.8.10 (19 Oct 2011)

  19 Oct 2011; Andrew John Hughes <andrew@gentoo.org> -icedtea-6.1.8.9.ebuild,
  +icedtea-6.1.8.10.ebuild, -icedtea-6.1.9.9.ebuild, +icedtea-6.1.9.10.ebuild,
  -icedtea-6.1.10.3.ebuild, +icedtea-6.1.10.4.ebuild:
  Security update:
  http://blog.fuseyism.com/index.php/2011/10/18/security-icedtea6-1-8-10-1-9-10-and-1-10-4-released/

  04 Oct 2011; Andrew John Hughes <andrew@gentoo.org>
  +files/7.2.0_pre-cacao-01.patch, +files/7.2.0_pre-cacao-02.patch,
  +files/7.2.0_pre-cacao-03.patch, +files/7.2.0_pre-cacao-04.patch,
  icedtea-7.2.0_pre.ebuild:
  Apply recent CACAO fixes to fix build issues.

  30 Sep 2011; Andrew John Hughes <andrew@gentoo.org>
  +files/7.2.0_pre-bytecode_check.patch, -files/7.1.13-alsa-sane-headers.patch,
  -files/7.1.14-checksums.patch, icedtea-7.2.0_pre.ebuild,
  -files/7.1.14-forest.patch:
  Fix bootstrap build with IcedTea7 by detecting level of bytecode supported
  before applying patches.

  29 Sep 2011; Miroslav Šulc <fordfrog@gentoo.org> icedtea-7.2.0_pre.ebuild:
  Fixed issue with sandbox access violation

  29 Sep 2011; Andrew John Hughes <andrew@gentoo.org> icedtea-7.2.0_pre.ebuild:
  Temporarily disable bootstrapping with IcedTea7 until fixed.

*icedtea-7.2.0_pre (29 Sep 2011)

  29 Sep 2011; Andrew John Hughes <andrew@gentoo.org>
  -icedtea-6.1.7.10-r1.ebuild, -icedtea-7.1.13-r1.ebuild,
  -icedtea-7.1.14.ebuild, +icedtea-7.2.0_pre.ebuild:
  Add support for IcedTea7 2.0 pre-release. Remove unsupported versions.

  09 Sep 2011; Vlastimil Babka <caster@gentoo.org>
  icedtea-6.1.7.10-r1.ebuild, -icedtea-6.1.8.7-r1.ebuild,
  icedtea-6.1.8.9.ebuild, -icedtea-6.1.9.7-r1.ebuild,
  icedtea-6.1.9.9.ebuild, -icedtea-6.1.10.1.ebuild, icedtea-6.1.10.3.ebuild:
  Use /usr/lib instead of get_libdir for the vmhome path, bug #380853. Prune
  old versions.

  09 Sep 2011; Andrew John Hughes <andrew@gentoo.org> icedtea-7.1.14.ebuild:
  Keyword 1.14 temporarily until 2.0 is released.

*icedtea-6.1.10.3 (21 Jul 2011)

  21 Jul 2011; Andrew John Hughes <andrew@gentoo.org> -icedtea-6.1.10.2.ebuild,
  +icedtea-6.1.10.3.ebuild:
  IcedTea6 1.10.3 update:
  http://blog.fuseyism.com/index.php/2011/07/21/icedtea6-1103-released/

*icedtea-6.1.9.9 (20 Jul 2011)
*icedtea-6.1.8.9 (20 Jul 2011)

  20 Jul 2011; Andrew John Hughes <andrew@gentoo.org> -icedtea-6.1.8.8.ebuild,
  +icedtea-6.1.8.9.ebuild, -icedtea-6.1.9.8.ebuild, +icedtea-6.1.9.9.ebuild:
  Security update:
  http://blog.fuseyism.com/index.php/2011/07/20/security-icedtea6-189-199-released/

  06 Jul 2011; Andrew John Hughes <andrew@gentoo.org> icedtea-7.1.14.ebuild:
  Update dependencies to include lcms2 and replace xalan/xerces with libxslt.

  21 Jun 2011; Andrew John Hughes <andrew@gentoo.org>
  files/6.1.10.2-371405-linux_version.patch:
  Match any kernel version beginning with 3 rather than just 3.0*.

  13 Jun 2011; Andrew John Hughes <andrew@gentoo.org> icedtea-6.1.10.2.ebuild,
  +files/6.1.10.2-371405-linux_version.patch:
  Fix Bug #371405 so IcedTea6 1.10.2 can be built on Linux 3.0.

*icedtea-7.1.14 (08 Jun 2011)
*icedtea-6.1.10.2 (08 Jun 2011)
*icedtea-6.1.9.8 (08 Jun 2011)
*icedtea-6.1.8.8 (08 Jun 2011)

  08 Jun 2011; Andrew John Hughes <andrew@gentoo.org>
  +files/7.1.14-checksums.patch, +icedtea-6.1.8.8.ebuild,
  +icedtea-6.1.9.8.ebuild, +icedtea-6.1.10.2.ebuild,
  +files/7.1.14-forest.patch, +icedtea-7.1.14.ebuild:
  Add support for IcedTea7 1.14 and IcedTea6 1.8.8, 1.9.8 and 1.10.2.
  http://blog.fuseyism.com/index.php/2011/06/08/icedtea6-188-198-and-1102-released/
  http://blog.fuseyism.com/index.php/2011/05/25/icedtea7-114-released/

*icedtea-6.1.10.1 (04 Apr 2011)

  04 Apr 2011; Andrew John Hughes <andrew@gentoo.org> -icedtea-6.1.10.ebuild,
  +icedtea-6.1.10.1.ebuild:
  http://blog.fuseyism.com/index.php/2011/04/04/icedtea6-1101-released/

  30 Mar 2011; Vlastimil Babka <caster@gentoo.org> icedtea-7.1.13-r1.ebuild:
  Remove files (javaws binaries) colliding with icedtea-web in the ebuild,
  until there's upstream version with --disable-webstart for icedtea7. Bug
  #355849.

  28 Mar 2011; Andrew John Hughes <andrew@gentoo.org>
  icedtea-6.1.7.10-r1.ebuild, icedtea-6.1.8.7-r1.ebuild,
  icedtea-6.1.9.7-r1.ebuild, icedtea-6.1.10.ebuild, icedtea-7.1.13-r1.ebuild:
  Add slot dependency for gtk+.

  28 Mar 2011; Andrew John Hughes <andrew@gentoo.org> -icedtea-6.1.7.10.ebuild,
  -icedtea-6.1.8.7.ebuild, -icedtea-6.1.9.7.ebuild, -icedtea-7.1.13.ebuild:
  Remove old versions of ebuilds.

  05 Mar 2011; <caster@gentoo.org> metadata.xml:
  Update maintainer info from the main tree. Describe the hs20 and jamvm USE
  flags.

*icedtea-6.1.10 (02 Mar 2011)

  02 Mar 2011; Andrew John Hughes <andrew@gentoo.org> +icedtea-6.1.10.ebuild:
  New IcedTea6 1.10 release:
  http://blog.fuseyism.com/index.php/2011/03/02/icedtea6-110-released/

  17 Feb 2011; Vlastimil Babka <caster@gentoo.org>
  icedtea-6.1.7.10-r1.ebuild, icedtea-6.1.8.7-r1.ebuild,
  icedtea-6.1.9.7-r1.ebuild, +icedtea-7.1.13-r1.ebuild:
  Use slot deps for icedtea-web, port the changes to icedtea7 as well (uses
  separate slot of icedtea-web).

  17 Feb 2011; Vlastimil Babka <caster@gentoo.org>
  +icedtea-6.1.7.10-r1.ebuild, +icedtea-6.1.8.7-r1.ebuild,
  icedtea-6.1.9.7-r1.ebuild:
  Revbump the remaining icedtea6 branches to use icedtea-web

  17 Feb 2011; Vlastimil Babka <caster@gentoo.org>
  +icedtea-6.1.9.7-r1.ebuild:
  Revbump to PDEPEND on icedtea-web instead of building webstart/nsplugin as
  part of the whole icedtea build. Fixes bug #355175.

*icedtea-6.1.9.7 (15 Feb 2011)
*icedtea-6.1.8.7 (15 Feb 2011)
*icedtea-6.1.7.10 (15 Feb 2011)

  15 Feb 2011; Andrew John Hughes <andrew@gentoo.org>
  -files/6.1.9.6-sparc.patch, -icedtea-6.1.7.9.ebuild,
  +icedtea-6.1.7.10.ebuild, -icedtea-6.1.8.6.ebuild, +icedtea-6.1.8.7.ebuild,
  -icedtea-6.1.9.6.ebuild, +icedtea-6.1.9.7.ebuild:
  Security update:
  http://blog.fuseyism.com/index.php/2011/02/15/security-icedtea6-1710-187-and-197-released/
  Fix for SPARC issue (#344659) included upstream.

*icedtea-6.1.9.6 (09 Feb 2011)
*icedtea-6.1.8.6 (09 Feb 2011)
*icedtea-6.1.7.9 (09 Feb 2011)

  09 Feb 2011; Andrew John Hughes <andrew@gentoo.org>
  +files/6.1.9.6-sparc.patch, -files/6.1.9.5-sparc.patch,
  -icedtea-6.1.7.8.ebuild, +icedtea-6.1.7.9.ebuild, -icedtea-6.1.8.5.ebuild,
  +icedtea-6.1.8.6.ebuild, -icedtea-6.1.9.5.ebuild, +icedtea-6.1.9.6.ebuild:
  Security update for floating point issue:
  http://blog.fuseyism.com/index.php/2011/02/09/security-icedtea6-179-186-196-released/

*icedtea-6.1.9.5 (01 Feb 2011)
*icedtea-6.1.8.5 (01 Feb 2011)
*icedtea-6.1.7.8 (01 Feb 2011)

  01 Feb 2011; Andrew John Hughes <andrew@gentoo.org>
  +files/6.1.9.5-sparc.patch, -files/6.1.9.4-sparc.patch,
  -icedtea-6.1.7.7.ebuild, +icedtea-6.1.7.8.ebuild, -icedtea-6.1.8.4.ebuild,
  +icedtea-6.1.8.5.ebuild, -icedtea-6.1.9.4.ebuild, +icedtea-6.1.9.5.ebuild:
  Security update:
  http://blog.fuseyism.com/index.php/2011/02/01/security-icedtea6-178-185-195-released/
  RH672262, CVE-2011-0025: IcedTea jarfile signature verification bypass

  21 Jan 2011; Andrew John Hughes <andrew@gentoo.org> files/icedtea.env:
  Revert @ROOT@ additions in icedtea.env.

  21 Jan 2011; Andrew John Hughes <andrew@gentoo.org> icedtea-6.1.7.7.ebuild,
  icedtea-6.1.8.4.ebuild, icedtea-6.1.9.4.ebuild, icedtea-7.1.13.ebuild:
  Replace ${ROOT} with "/"; only should be used in
  preinst/postinst/prerm/postrm.

  21 Jan 2011; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.7.7.ebuild,
  icedtea-6.1.8.4.ebuild, icedtea-6.1.9.4.ebuild, icedtea-7.1.13.ebuild:
  Use virtual/jpeg, bug #347953.

  20 Jan 2011; Andrew John Hughes <andrew@gentoo.org> icedtea-6.1.7.7.ebuild,
  icedtea-6.1.8.4.ebuild, icedtea-6.1.9.4.ebuild, icedtea-7.1.13.ebuild,
  files/icedtea.env:
  Pass ${ROOT} and $(get_libdir) to IcedTea environment rather than hardcoding
  /usr/lib.

*icedtea-6.1.9.4 (18 Jan 2011)
*icedtea-6.1.8.4 (18 Jan 2011)
*icedtea-6.1.7.7 (18 Jan 2011)

  18 Jan 2011; Andrew John Hughes <andrew@gentoo.org>
  +files/6.1.9.4-sparc.patch, -files/6.1.9.3-sparc.patch,
  -icedtea-6.1.7.6.ebuild, +icedtea-6.1.7.7.ebuild, -icedtea-6.1.8.3.ebuild,
  +icedtea-6.1.8.4.ebuild, -icedtea-6.1.9.3.ebuild, +icedtea-6.1.9.4.ebuild:
  New security releases:
  http://blog.fuseyism.com/index.php/2011/01/18/security-icedtea6-177-184-194-r
  eleased/
  * Security updates
    - RH663680, CVE-2010-4351: IcedTea JNLP SecurityManager bypass
  * Backports
    - S4356282: RFE: JDK should support OpenType/CFF fonts
    - S6954424, RH525870: Support OpenType/CFF fonts in JDK 7
    - S6795356, PR590: Leak caused by javax.swing.UIDefaults.ProxyLazyValue.acc
    - S6967436, RH597227: lines longer than 2^15 can fill window.
    - S6967433: dashed lines broken when using scaling transforms.
    - S6976265: No STROKE_CONTROL
    - S6967434, PR450, RH530642: Round joins/caps of scaled up lines have poor quality.
    - S6438179, RH569121: XToolkit.isTraySupported() result has nothing to do with the system tray
  * Fixes
    - S7003777, RH647674: JTextPane produces incorrect content after parsing the html text

  07 Dec 2010; Andrew John Hughes <andrew@gentoo.org>
  +files/6.1.9.3-sparc.patch, icedtea-6.1.9.3.ebuild, icedtea-7.1.13.ebuild:
  Apply patch from #344659

  07 Dec 2010; Andrew John Hughes <andrew@gentoo.org>
  +files/7.1.13-alsa-sane-headers.patch, icedtea-7.1.13.ebuild:
  Fix failure in IcedTea7 with make 3.82.

  07 Dec 2010; Andrew John Hughes <andrew@gentoo.org> icedtea-7.1.13.ebuild:
  Fix plugin dependency. Move to IcedTea server for drops.

  02 Dec 2010; Vlastimil Babka <caster@gentoo.org> metadata.xml:
  Document the nsplugin flag in metadata.xml

  02 Dec 2010; Andrew John Hughes <andrew@gentoo.org> icedtea-6.1.7.6.ebuild,
  icedtea-6.1.8.3.ebuild, icedtea-6.1.9.3.ebuild:
  Fail early if the user tries to build the plugin without webstart enabled.

  02 Dec 2010; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.9.3.ebuild:
  Inherit versionator eclass directly to be safe.

  01 Dec 2010; Andrew John Hughes <andrew@gentoo.org> icedtea-6.1.9.3.ebuild:
  Add Caster's change to the 1.9.3 ebuild.

*icedtea-6.1.9.3 (01 Dec 2010)

  01 Dec 2010; Andrew John Hughes <andrew@gentoo.org> -icedtea-6.1.9.2.ebuild,
  +icedtea-6.1.9.3.ebuild:
  Bump to 1.9.3, which fixes and re-enables compressed oops, increasing performance:
  http://blog.fuseyism.com/index.php/2010/12/01/icedtea6-193-released/

  26 Nov 2010; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.7.6.ebuild,
  icedtea-6.1.8.3.ebuild, icedtea-6.1.9.2.ebuild, icedtea-7.1.13.ebuild:
  Derive ICEDTEA_VER from PV by versionator's get_version_component_range to
  avoid manual updates on version bumps.

*icedtea-6.1.9.2 (24 Nov 2010)
*icedtea-6.1.8.3 (24 Nov 2010)
*icedtea-6.1.7.6 (24 Nov 2010)

  24 Nov 2010; Andrew John Hughes <andrew@gentoo.org> -icedtea-6.1.7.5.ebuild,
  +icedtea-6.1.7.6.ebuild, -icedtea-6.1.8.2.ebuild, +icedtea-6.1.8.3.ebuild,
  -icedtea-6.1.9.1.ebuild, +icedtea-6.1.9.2.ebuild, metadata.xml:
  Latest security updates:
  http://blog.fuseyism.com/index.php/2010/11/24/icedtea6-176-183-and-192-releas
  ed/

  14 Nov 2010; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.7.5.ebuild,
  icedtea-6.1.8.2.ebuild:
  Fix eselect-ecj dep

  13 Nov 2010; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.9.1.ebuild:
  Fix eselect-ecj dep

  13 Oct 2010; Vlastimil Babka <caster@gentoo.org> metadata.xml:
  Describe hs19 flag.

*icedtea-6.1.9.1 (12 Oct 2010)
*icedtea-6.1.8.2 (12 Oct 2010)
*icedtea-6.1.7.5 (12 Oct 2010)

  12 Oct 2010; Andrew John Hughes <andrew@gentoo.org>
  -icedtea-6.1.7.4-r1.ebuild, +icedtea-6.1.7.5.ebuild,
  -icedtea-6.1.8.1-r1.ebuild, +icedtea-6.1.8.2.ebuild,
  -icedtea-6.1.9-r1.ebuild, +icedtea-6.1.9.1.ebuild,
  -files/6.1.8.1-244901.patch, -files/6.1.7.4-244901.patch,
  -files/6.1.8.1-266295.patch, -files/hs19.patch,
  -files/6.1.7.4-266295.patch:
  IcedTea6 security updates.
  http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2010-October/010478.html

*icedtea-6.1.9-r1 (20 Sep 2010)

  20 Sep 2010; Andrew John Hughes <andrew@gentoo.org> +files/hs19.patch,
  -icedtea-6.1.9.ebuild, +icedtea-6.1.9-r1.ebuild:
  Backport support for HotSpot 19.

  09 Sep 2010; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.9.ebuild,
  icedtea-7.1.13.ebuild, metadata.xml:
  Remove autotools from inherit where not used. Remove unused USE flags
  descriptions.

  07 Sep 2010; Andrew John Hughes <andrew@gentoo.org> icedtea-6.1.9.ebuild:
  Fix missing arch value for plugin builds.

*icedtea-6.1.9 (07 Sep 2010)

  07 Sep 2010; Andrew John Hughes <andrew@gentoo.org> +icedtea-6.1.9.ebuild:
  Add new major release:
  http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2010-September/01018
  6.html

  06 Sep 2010; Andrew John Hughes <andrew@gentoo.org>
  icedtea-6.1.7.4-r1.ebuild, icedtea-6.1.8.1-r1.ebuild,
  icedtea-7.1.13.ebuild:
  Provide a version-independent documentation symlink based on slot (e.g.
  /usr/share/doc/icedtea6)

*icedtea-6.1.8.1-r1 (11 Aug 2010)

  11 Aug 2010; Andrew John Hughes <andrew@gentoo.org>
  -icedtea-6.1.8.1.ebuild, +icedtea-6.1.8.1-r1.ebuild,
  +files/6.1.8.1-244901.patch, +files/6.1.8.1-266295.patch:
  Revision bump. Add patches to 1.8.1 to fix bug #244901 and #266295.

*icedtea-6.1.7.4-r1 (06 Aug 2010)

  06 Aug 2010; Andrew John Hughes <andrew@gentoo.org>
  -files/6.1.7.3-systemtap-gcc-4.5.patch, -icedtea-6.1.7.4.ebuild,
  +icedtea-6.1.7.4-r1.ebuild, +files/6.1.7.4-244901.patch,
  +files/6.1.7.4-266295.patch:
  Revision bump. Add patches to fix bug #244901 and #266295. Remove unused
  patch.

*icedtea-7.1.13 (29 Jul 2010)

  29 Jul 2010; Andrew John Hughes <andrew@gentoo.org>
  -files/1.12-shmproto.patch, -icedtea-7.1.12-r1.ebuild,
  +icedtea-7.1.13.ebuild:
  Move to IcedTea7 1.13 release.

  See http://blog.fuseyism.com/index.php/2010/07/29/icedtea7-113-released/

*icedtea-6.1.8.1 (28 Jul 2010)
*icedtea-6.1.7.4 (28 Jul 2010)

  28 Jul 2010; Andrew John Hughes <andrew@gentoo.org>
  -files/6.1.8.0-systemtap-gcc-4.5.patch, -icedtea-6.1.7.3.ebuild,
  +icedtea-6.1.7.4.ebuild, -icedtea-6.1.8.0.ebuild, +icedtea-6.1.8.1.ebuild:
  Bump to new 1.7.4 and 1.8.1 security releases.

  New in release 1.7.4 (2010-07-28):

  * NetX security issues:
  - (CVE-2010-2783, RH616895): IcedTea 'Extended JNLP Services' arbitrary
  file access
  - (CVE-2010-2548, RH616893): IcedTea Incomplete property access check for
  unsigned applications
  * Backport --with-tzdata-dir support from IcedTea6 1.8 to ensure
  that external timezone data works again.
  * Restore icedtea-override-metacity.patch to allow full screen apps and
  other expected behavioral improvements.
  * S6678385, RH551835: Fixes JVM crashes when window is resized.
  * S6668231: Presence of a critical subjectAltName causes JSSE's SunX509 to
  fail trusted checks.
  * S6963870: Eliminate NullPointerEx in swing class CompoundBorder method
  getBorderInsets.
  * S4891262: API spec, javax/accessibility: few invalid javadoc tags.
  * S6737212: Fixed javadoc warning messages in RowSet classes.
  * S6875861: javadoc build warning on java.util.Properites from
  unconventional @see ordering.
  * S6909563: Javadoc build warnings in rmi, security, management.
  * S6879689: Fix warning about ignored return value when compiling with -O2
  * S6917485: Corba doc warnings.
  * S6921068: Remove javadoc build warnings from specdefault tag.
  * PR453, OJ100142: Fix policy evaluation to match the proprietary JDK.
  * Make the new plugin the default. This is now the main supported
  plugin. Use --disable-npplugin to use the old one.
  * New plugin:
  - Added support for JSObject.finalize()
  - Liveconnect message processing design changes.
  - Message protocol overhaul to fix race conditions
  - PR166: Create FIFO pies in temp dir instead of ~/.icedteaplugin
  - Profiled memory usage and implemented proper cleanup for C++ side.
  - Update debug output string and function/structure names to
  change 'GCJ' references to ITNP/IcedTea NP Plugin
  - PR461: plugin working for NSS enabled builds with firefox including a
  private NSS copy
  - Removed unncessary debug and trace output
  - PR474: Patch from Paulo Cesar Pereira de Andrade, incrementing malloc
 size to account for NULL terminator.
  - RH524387: javax.net.ssl.SSLKeyException: RSA premaster secret error
  - Set context classloader for all threads in an applet's threadgroup
  - PR436: Close all applet threads on exit
  - PR480: NPPlugin with NoScript extension.
  - PR488: Question mark changing into underscore in URL.
  - RH592553: Fix bug causing 100% CPU usage.
  - Don't generate a random pointer from a pthread_t in the debug output.
  - Add ForbiddenTargetException for legacy support.
  - Use variadic macro for plugin debug message printing.
  - Don't link the plugin with libxul libraries.
  - Fix race conditions in plugin initialization code that were causing
 hangs.
  - RH506730: BankID (Norwegian common online banking authentication system)
 applet fails to load.
  - PR491: pass java_{code,codebase,archive} parameters to Java.
  - Adds javawebstart.version property and give user permission to read that
 property.
 * NetX:
  - Make path sanitization consistent; use a blacklisting approach.
  - Make the SingleInstanceServer thread a daemon thread.
  - Handle JNLP files which use native libraries but do not indicate it
  - Allow JNLP classloaders to share native libraries
  - Added encoding support
 * PulseAudio provider:
  - Eliminate spurious exception throwing.
 * SystemTap support:
  - PR476: Enable building SystemTap support on GCC 4.5.
  - Fix HotSpot tapset object_alloc size variable.
 * NIO2 support:
  - Fix UnixNativeDispatcher to build on all systems, not just x86 and
 x86_64.

  New in release 1.8.1 (2010-07-28):

 * OpenJDK:
  - 6678385: Fixes jvm crashes when window is resized.
  - Produces the "expected" behavior for full screen applications, when
  running the Metacity window manager.
 * IcedTeaNPPlugin.
  - RH524387: javax.net.ssl.SSLKeyException: RSA premaster secret error
  - Set context classloader for all threads in an applet's threadgroup
  - PR436: Close all applet threads on exit
  - PR480: NPPlugin with NoScript extension.
  - PR488: Question mark changing into underscore in URL.
  - RH592553: Fix bug causing 100% CPU usage.
  - Don't generate a random pointer from a pthread_t in the debug output.
  - Add ForbiddenTargetException for legacy support.
  - Use variadic macro for plugin debug message printing.
  - Don't link the plugin with libxul libraries.
  - Fix race conditions in plugin initialization code that were causing
 hangs.
  - RH506730: BankID (Norwegian common online banking authentication system)
 applet fails to load.
  - Fix policy evaluation to match the proprietary JDK.
  - PR491: pass java_{code,codebase,archive} parameters to Java.
  - Adds javawebstart.version property and give user permission to read that
 property.
 * NetX:
  - Fix security flaw in NetX that allows arbitrary unsigned apps to set
  any java property.
  - Fix a flaw that allows unsigned code to access any file on the
  machine (accessible to the user) and write to it.
  - Make path sanitization consistent; use a blacklisting approach.
  - Make the SingleInstanceServer thread a daemon thread.
  - Handle JNLP files which use native libraries but do not indicate it
  - Allow JNLP classloaders to share native libraries
  - Added encoding support
 - PulseAudio:
  - Eliminate spurious exception throwing.
 - Zero/Shark:
  - PR shark/483: Fix miscompilation of sun.misc.Unsafe::getByte.
  - PR PR icedtea/324, icedtea/481: Fix Shark VM crash.
  - Fix Zero build on Hitachi SH.
 * SystemTap support:
  - PR476: Enable building SystemTap support on GCC 4.5.

	28 Apr 2010; Andrew John Hughes <andrew@gentoo.org>

	+files/6.1.8.0-systemtap-gcc-4.5.patch,
 +files/6.1.7.3-systemtap-gcc-4.5.patch, icedtea-6.1.7.3.ebuild,
  -icedtea-6.1.8.0.ebuild:
  PR146: Fix build with GCC 4.5 & SystemTap

  15 Apr 2010; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.8.0.ebuild:
  Add ant-nodeps to DEPEND since it's used in ANT_TASKS variable. Bug
  #315457.

  14 Apr 2010; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.8.0.ebuild:
  Restore keywords and redigest for the final 1.8 release. Remove the
  npplugin flag as upstream removed to old plugin - the npplugin is now
  installed always with USE=nsplugin.

*icedtea-6.1.8.0 (12 Apr 2010)

  12 Apr 2010; Andrew John Hughes <andrew@gentoo.org>
  +icedtea-6.1.8.0.ebuild:
  Add ebuild for upcoming 1.8 release of IcedTea6. To be enabled on release.

  01 Apr 2010; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.7.3.ebuild,
  icedtea-7.1.12-r1.ebuild:
  Remove dep on >=virtual/jdk to prevent circular deps. Replaced by more
  eclass-hack variables to allow VM switching to still work. Needs recent
  java-utils-2.eclass, so update the main gentoo tree!

  01 Apr 2010; Andrew John Hughes <andrew@gentoo.org>
  icedtea-6.1.7.3.ebuild:
  Depend on new eselect-ecj for ecj.jar, not a specific ecj.

*icedtea-6.1.7.3 (31 Mar 2010)

  31 Mar 2010; Andrew John Hughes <andrew@gentoo.org>
  -files/1.7.2-free.patch, -icedtea-6.1.7.2-r1.ebuild,
  +icedtea-6.1.7.3.ebuild:
  Bump to 1.7.3; same as 1.7.2-r1 i.e. 1.7.2 with
  https://bugzilla.mozilla.org/show_bug.cgi?id=555342 fix.

*icedtea-6.1.7.2-r1 (31 Mar 2010)

  31 Mar 2010; Andrew John Hughes <andrew@gentoo.org>
  +files/1.7.2-free.patch, -icedtea-6.1.7.2.ebuild,
  +icedtea-6.1.7.2-r1.ebuild:
  Fix buffer overflow bug in plugin.

*icedtea-6.1.7.2 (31 Mar 2010)

  31 Mar 2010; Andrew John Hughes <andrew@gentoo.org>
  -icedtea-6.1.7.1.ebuild, +icedtea-6.1.7.2.ebuild:
   Bump to 1.7.2.

  - Latest security updates and hardening patches:
	- (CVE-2010-0837): JAR "unpack200" must verify input parameters (6902299)
	- (CVE-2010-0845): No ClassCastException for HashAttributeSet constructors
	if run with -Xcomp (6894807)
	- (CVE-2010-0838): CMM readMabCurveData Buffer Overflow Vulnerability
	(6899653)
	- (CVE-2010-0082): Loader-constraint table allows arrays instead of only
	the base-classes (6626217)
	- (CVE-2010-0095): Subclasses of InetAddress may incorrectly interpret
	network addresses (6893954)
	- (CVE-2010-0085): File TOCTOU deserialization vulnerability (6736390)
	- (CVE-2010-0091): Unsigned applet can retrieve the dragged information
	before drop action occurs (6887703)
	- (CVE-2010-0088): Inflater/Deflater clone issues (6745393)
	- (CVE-2010-0084): Policy/PolicyFile leak dynamic ProtectionDomains.
	(6633872)
	- (CVE-2010-0092): AtomicReferenceArray causes SIGSEGV -> SEGV_MAPERR
	error (6888149)
	- (CVE-2010-0094): Deserialization of RMIConnectionImpl objects should
	enforce stricter checks (6893947)
	- (CVE-2010-0093): System.arraycopy unable to reference elements beyond
	Integer.MAX_VALUE bytes (6892265)
	- (CVE-2010-0840): Applet Trusted Methods Chaining Privilege Escalation
	Vulnerability (6904691)
	- (CVE-2010-0848): AWT Library Invalid Index Vulnerability (6914823)
	- (CVE-2010-0847): ImagingLib arbitrary code execution vulnerability
	(6914866)
	- (CVE-2009-3555): TLS: MITM attacks via session renegotiation
	- 6639665: ThreadGroup finalizer allows creation of false root
	ThreadGroups
	- 6898622: ObjectIdentifer.equals is not capable of detecting incorrectly
	encoded CommonName OIDs
	- 6910590: Application can modify command array in ProcessBuilder
	- 6909597: JPEGImageReader stepX Integer Overflow Vulnerability
	- 6932480: Crash in CompilerThread/Parser. Unloaded array klass?
  - Backport of 6822370:
	ReentrantReadWriteLock: threads hung when there are no threads holding
	onto the lock
  - Increase ThreadStackSize by 512kb on 32-bit Zero platforms
  - Check cacerts database is valid

  04 Mar 2010; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.7.1.ebuild,
  icedtea-7.1.12-r1.ebuild:
  Depend on gcj-jdk or cacao directly instead of gnu-classpath-jdk, as
  gnu-classpath-jdk could pull jamvm which the ebuild no longer supports.
  Sync the recent ant changes in icedtea:6 to icedtea:7

  01 Mar 2010; Vlastimil Babka <caster@gentoo.org> ChangeLog:
  Put xerces and xalan in ANT_TASK unconditionally since they are always in
  DEPEND anyway.

  01 Mar 2010; Andrew John Hughes <andrew@gentoo.org>
  icedtea-6.1.7.1.ebuild:
  No need to depend on Xerces and Xalan twice.

  01 Mar 2010; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.7.1.ebuild:
  Add workaround for ant 1.8.0 which needs xerces and xalan for ant
  -diagnostics to work.

  26 Feb 2010; Andrew John Hughes <andrew@gentoo.org>
  icedtea-6.1.7.1.ebuild, metadata.xml:
  Provide USE flag for enabling NSS security provider.

*icedtea-6.1.7.1 (26 Feb 2010)

  26 Feb 2010; Andrew John Hughes <andrew@gentoo.org>
  -icedtea-6.1.7-r1.ebuild, +icedtea-6.1.7.1.ebuild:
  Bump to 1.7.1 release.

  24 Feb 2010; Andrew John Hughes <andrew@gentoo.org>
  icedtea-6.1.7-r1.ebuild, icedtea-7.1.12-r1.ebuild:
  Remove THANKYOU as not distributed by IcedTea (upstream bug rectified in
  new releases)

  24 Feb 2010; Andrew John Hughes <andrew@gentoo.org>
  icedtea-6.1.7-r1.ebuild, icedtea-7.1.12-r1.ebuild:
  Add an die clause to the new dodoc invocation.

*icedtea-7.1.12-r1 (23 Feb 2010)
*icedtea-6.1.7-r1 (23 Feb 2010)

  23 Feb 2010; Andrew John Hughes <andrew@gentoo.org> -icedtea-6.1.7.ebuild,
  +icedtea-6.1.7-r1.ebuild, -icedtea-7.1.12.ebuild,
  +icedtea-7.1.12-r1.ebuild:
  Bump. Install README, NEWS, AUTHORS and THANKYOU from IcedTea.

  09 Feb 2010; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.7.ebuild,
  icedtea-7.1.12.ebuild:
  Add missing app-arch/zip dependency for #258423 and fix some repoman warnings.

  06 Feb 2010; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.7.ebuild,
  icedtea-7.1.12.ebuild:
  Add missing package-list files - bug #302654.

  05 Feb 2010; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.7.ebuild,
  icedtea-7.1.12.ebuild:
  Honor user-set JAVA_PKG_FORCE_VM for easier troubleshooting as suggested by
  Dennis Schridde <devurandom@gmx.net> in bug #294027.

  05 Feb 2010; Vlastimil Babka <caster@gentoo.org> icedtea-7.1.12.ebuild:
  Restrict autoconf dependency to avoid 2.64 for bug #257596.

  05 Feb 2010; Vlastimil Babka <caster@gentoo.org> icedtea-7.1.12.ebuild:
  Restrict xulrunner dependency to <1.9.2 for bug #303535.

  04 Feb 2010; Vlastimil Babka <caster@gentoo.org> icedtea-7.1.12.ebuild:
  Reorder VM forcing to place icedtea:6 last (seems not work, might kill it
  completely), fix checking for rebuild with icedtea:7, remove double
  java-*_pkg_setup calls.

  04 Feb 2010; Vlastimil Babka <caster@gentoo.org> icedtea-6.1.7.ebuild,
  icedtea-7.1.12.ebuild:
  Depend on virtual/libffi - bug #302692. For icedtea:6, use slot deps where
  appropriate, block on icedtea6 due to file collisions, and add more
  information in postinst message about plugins. or icedtea:7, also use slot
  deps, block on icedtea:0 and add missing slot variants to the VM choosing
  logic.

29 Jan 2010; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea-6.1.7.ebuild:
	Lower jpeg requirement; 1.7 works with 6b, 7 and 8 properly.

29 Jan 2010; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea-6.1.7.ebuild icedtea-7.1.12.ebuild:
	Fix LICENSE to include all licenses used by OpenJDK.

29 Jan 2010; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea-6.1.7.ebuild icedtea-7.1.12.ebuild:
	Combine IcedTea6 and IcedTea ebuilds, prefixing 6 or 7 to version number.

28 Jan 2010; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.7.ebuild
	Add hs16 USE flag so HotSpot 16 can be turned off.
	
28 Jan 2010; Vlastimil Babka <caster@gentoo.org> icedtea6-1.7.ebuild:
	Fix issue with merging binpkg as mentioned in bug #258423.

* icedtea6-1.7 (27 01 2010)

27 Jan 2010; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.7.ebuild
	icedtea6-1.5.3-r1.ebuild icedtea6-1.6.2-r1.ebuild files/splitdebug.patch
	files/1.5-cacao-gcc-4.4.patch files/1.6.1-shmproto.patch files/1.6.1-jpeg7.patch
	files/1.6.2-jpeg8.patch:
	Bump to new release.  Drop old releases.
	
22 Jan 2010; Vlastimil Babka <caster@gentoo.org> +files/1.6.2-jpeg8.patch,
  icedtea6-1.6.2-r1.ebuild, +icedtea6-1.6.2-r2.ebuild:
  Revbump that builds against jpeg-8.

* icedtea6-1.6.2-r1 (11 12 2009)
* icedtea6-1.5.3-r1 (11 12 2009)

11 Dec 2009; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.6.2-r1.ebuild
	icedtea6-1.5.3-r1.ebuild:
	Bump.  Include Andrew Haley's debuginfo patch so that jmap works when the
	splitdebug feature is enabled.

10 Dec 2009; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea-1.12.ebuild:
	Support building using IcedTea7.
	
10 Dec 2009; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.6.2.ebuild
	icedtea6-1.5.3.ebuild:
	Don't use IcedTea7 to build.  Using a later version is not supported.

20 Nov 2009; Vlastimil Babka <caster@gentoo.org> icedtea-1.12.ebuild,
  +files/1.12-shmproto.patch:
  Fix building with new X headers - bug #288855.

* icedtea-1.12 (17 11 2009)

17 Nov 2009; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea-1.12.ebuild:
	Bump.
	
* icedtea6-1.6.2 (09 11 2009)
* icedtea6-1.5.3 (09 11 2009)

09 Nov 2009; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.6.2.ebuild
	icedtea6-1.5.3.ebuild:
	New security releases (1.5.3, 1.6.2):
	- (CVE-2009-3728) ICC_Profile file existence detection information leak (6631533)
	- (CVE-2009-3885) BMP parsing DoS with UNC ICC links (6632445)
	- (CVE-2009-3881) resurrected classloaders can still have children (6636650) 
	- (CVE-2009-3882) Numerous static security flaws in Swing (findbugs) (6657026)
	- (CVE-2009-3883) Mutable statics in Windows PL&F (findbugs) (6657138)
	- (CVE-2009-3880) UI logging information leakage (6664512)
	- (CVE-2009-3879) GraphicsConfiguration information leak (6822057)
	- (CVE-2009-3884) zoneinfo file existence information leak (6824265)
	- (CVE-2009-2409) deprecate MD2 in SSL cert validation (Kaminsky) (6861062)
	- (CVE-2009-3873) JPEG Image Writer quantization problem (6862968)
	- (CVE-2009-3875) MessageDigest.isEqual introduces timing attack vulnerabilities (6863503)
	- (CVE-2009-3876, CVE-2009-3877) OpenJDK ASN.1/DER input stream parser denial of service (6864911)
	- (CVE-2009-3869) JRE AWT setDifflCM stack overflow (6872357)
	- (CVE-2009-3874) ImageI/O JPEG heap overflow (6874643
	- (CVE-2009-3871) JRE AWT setBytePixels heap overflow (6872358)
	Drop 1.2, 1.3 and 1.4 releases and associated patches.
	
29 Oct 2009; Vlastimil Babka <caster@gentoo.org>
  +files/1.6.1-shmproto.patch, icedtea6-1.6.1-r1.ebuild:
  Fix building with new libXext - bug #288855.

11 Oct 2009; Vlastimil Babka <caster@gentoo.org> +files/1.6.1-jpeg7.patch,
  +icedtea6-1.6.1-r1.ebuild, +files/generate-cacerts.pl:
  Revbump that fixes issues with jpeg-7 (bug #283248), generates cacerts file
  from ca-certificates so that SSL works (bug #273306) and adds postinst info
  about nsplugin compatibility (bug #251344).

* icedtea6-1.6.1 (21 09 2009)

21 Sep 2009; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.6.1.ebuild:
	New major release (1.6):
	- Added java method tracing using systemtap version 0.9.9+.
	- Security fixes for:
	CVE-2009-2670 - OpenJDK Untrusted applet System properties access
	CVE-2009-2671 CVE-2009-2672 - OpenJDK Proxy mechanism information leaks
	CVE-2009-2673 - OpenJDK proxy mechanism allows non-authorized socket connections
	CVE-2009-2674 - Java Web Start Buffer JPEG processing integer overflow
	CVE-2009-2675 - Java Web Start Buffer unpack200 processing integer overflow
	CVE-2009-2625 - OpenJDK XML parsing Denial-Of-Service
	CVE-2009-2475 - OpenJDK information leaks in mutable variables
	CVE-2009-2476 - OpenJDK OpenType checks can be bypassed
	CVE-2009-2689 - OpenJDK JDK13Services grants unnecessary privileges
	CVE-2009-2690 - OpenJDK private variable information disclosure
	- FAST interpreter for ARM
	- Timezone fix: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=377
	- Stackoverflow error fix: 
	http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=381
	- Backport regression (NPE) fix for AccessControlContext fix
	- Bump to hs14b16
	- The plugin has been updated to improve stability and cookie support.
	Support for certificates with mismatched CNs has been added as well.
	Bug fix update (1.6.1):
	- Fix no-plugin build
	- JAR performance improvement (http://hg.openjdk.java.net/jdk6/jdk6/jdk/rev/b35f1e5075a4)
	
08 Sep 2009; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea-1.11.ebuild:
	CACAO should be a tar.bz2 not a tar.gz
	
* icedtea6-1.5.2 (04 09 2009)

04 Sep 2009; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.5.2.ebuild:
	Bug fix update:
	- Timezone fix: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=377
	- Stackoverflow error fix: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=381
	- Backport regression (NPE) fix for AccessControlContext fix:
	  http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=364
	- Bump to hs14b16

* icedtea-1.11 (26 08 2009)

26 Aug 2009; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea-1.11.ebuild:
	Bump.  Thanks to Ruediger Gad for reporting the GCC warning failure.

12 Aug 2009; Petteri Räty <betelgeuse@gentoo.org> icedtea6-1.5.1.ebuild:
  Prefer icedtea6-bin over icedtea6 to avoid circular deps.

* icedtea6-1.5.1 (07 08 2009)

07 Aug 2009; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.5.1.ebuild:
	Security update.

20 Jul 2009; Petteri Räty <betelgeuse@gentoo.org> icedtea6-1.5.ebuild:
  Make JAVA_PKG_STRICT happy by adding a DEPEND atom on either ecj or
  icedtea.

16 Jun 2009; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.5.ebuild files/1.5-cacao-gcc-4.4.patch:
	Fix issue with CACAO and GCC 4.4.

* icedtea-1.10 (02 06 2009)

02 Jun 2009; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea-1.10.ebuild:
	Bump.

* icedtea6-1.5 (02 06 2009)

02 Jun 2009; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.5.ebuild:
	Bump.

18 May 2009; Vlastimil Babka <caster@gentoo.org> icedtea6-1.4.1-r1.ebuild,
  +files/1.4.1-xulrunner-1.9.1.patch:
  Add support for API changes in xulrunner 1.9.1_beta4. Backported patch from
  upstream trunk.

03 May 2009; Vlastimil Babka <caster@gentoo.org> icedtea6-1.4.1-r1.ebuild:
  Remove unintentional pkgversion change.

18 Apr 2009; Vlastimil Babka <caster@gentoo.org>
  +files/1.4.1-plugin.patch, +icedtea6-1.4.1-r1.ebuild:
  Revbump to fix nsplugin. Patch from upstream that was supposed to be in 1.4.1.

* icedtea6-1.4.1 (02 04 2009)
	
02 Apr 2009; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.4.1.ebuild:
	Bump.
	
14 Feb 2009; Petteri Räty <betelgeuse@gentoo.org> icedtea6-1.4.ebuild:
  unset vars in src_compile too so that paludis users don't come asking why
  it does not work

04 Feb 2009; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.3.1-r2.ebuild icedtea6-1.4.ebuild:
	Add HotSpot tarball to sources, only unpack icedtea6 (regression from 1.2).
	
* icedtea6-1.4 (03 02 2009)

03 Feb 2009; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.4.ebuild:
	Added.
	
28 Jan 2009; Petteri Räty <betelgeuse@gentoo.org> icedtea6-1.3.1-r2.ebuild:
	Add slot deps to xerces and xalan atoms.

18 Dec 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.3.1-r2.ebuild icedtea6-1.2-r1.ebuild:
	Remove ~sparc from 1.3, correct copyright headers.
	
18 Dec 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.3.1-r2.ebuild icedtea6-1.2-r1.ebuild:
	Fix find used in permission fixing to not include symbolic links.
	
12 Jan 2009; Petteri Räty <betelgeuse@gentoo.org> icedtea6-1.3.1-r2.ebuild:
	Move configure from src_compile to src_configure as should be done in EAPI 2.

11 Jan 2009; Petteri Räty <betelgeuse@gentoo.org> icedtea6-1.3.1-r2.ebuild:
	Migrate to EAPI 2.

18 Dec 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.3.1-r2.ebuild:
	Drop JamVM as it doesn't support -XX.

*icedtea6-1.2-r1 (18 12 2008)

18 Dec 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.2-r1.ebuild files/security-20081202-1.2.patch:
	Backport security updates to 1.2.

*icedtea6-1.3.1-r2 (18 12 2008)

18 Dec 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.3.1-r2.ebuild files/security-20081202.patch:
	Security update; bumping revision to ensure this gets out.
	Also adding support for icedtea6-bin.
	
11 Dec 2008; Vlastimil Babka <caster@gentoo.org> icedtea6-1.2.ebuild,
	icedtea6-1.3.1-r1.ebuild:
	Add missing libXtst dep.

03 Dec 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.3.1-r1.ebuild files/arch-prefix.patch:
	Prefix 32-bit builds with 'linux32'.
	
01 Dec 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.3.1-r1.ebuild files/cacao-alias.patch:
	Remove javac.in patch (gcj's java is now fixed) and add
	support for building CACAO on mixed architectures (e.g. ppc64 with 32bit ul).
	
01 Dec 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.3.1-r1.ebuild icedtea6-1.2.ebuild:
	Add missing X11 dependencies (libXp, libXt, libXau, libXdmcp)
	
30 Nov 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.3.1-r1.ebuild files/javac.in.patch:
        Ensure the native version of ecj is used if available by passing the gcj
	database to java in javac.in.
	
10 Nov 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.3.1-r1.ebuild:
	Bug 245428;
	Work with the hack added to the newer Ant builds to properly support environment
	variables.
	
10 Nov 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.3.1-r1.ebuild:
	Depend on xulrunner only; apparently firefox 3 doesn't always provide
	enough for the XPCOM plugin.
	
10 Nov 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.3.1-r1.ebuild:
	Restore jdk 1.5 dependency for VM 'magic'.
	
08 Nov 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.3.1-r1.ebuild:
	Move Rhino to runtime dependencies.
	
08 Nov 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.3.1-r1.ebuild:
	Restore libXp fix

07 Nov 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.3.1-r1.ebuild:
	Remove broken modifications again!
	
30 Oct 2008; Vlastimil Babka <caster@gentoo.org> icedtea6-1.3.1-r1.ebuild:
	Restore my 1.3.1 modifications in 1.3.1-r1.

30 Oct 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.3.1-r1.ebuild:
	Add missing libXp dependency.
	
30 Oct 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.3.1-r1.ebuild:
	Add back Caster's JAVA_PKG_FORCE_VM hack.
	
*icedtea6-1.3.1-r1 (29 10 2008)

29 Oct 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.3.1-r1.ebuild:
	Switch to new plugin, cleanup ecj dependency, remove --with-gcj in favour
	of new ecj ebuild and bump to revision 1.

29 Oct 2008; Vlastimil Babka <caster@gentoo.org> icedtea6-1.3.1.ebuild:
	Change virtual/icedtea-jdk dep to dev-java/icedtea6 dependency to
	workaround situations where the virtual is not yet installed although
	icedtea6 is, and portage tries to satisfy the gnu-classpath instead. Hack
	around with JAVA_PKG_FORCE_VM to select appropriate jdk for building
	without need to set it as system vm or in jdk.conf. Put rhino also in
	RDEPEND to fix building with java-strict until I get to know if it's
	build-only dep or not.

28 Oct 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.3.1.ebuild icedtea6-1.2.ebuild:
	Add x11-proto/xineramaproto.

*icedtea6-1.3.1 (27 10 2008)

27 Oct 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.3.1.ebuild files/hotspot-1.3.1.patch:
	Bump to new IcedTea6 1.3.1 release.
	
20 Oct 2008; Petteri Räty <betelgeuse@gentoo.org> +files/icedtea6-1.3-autoconf.patch, icedtea6-1.3-r1.ebuild:
	Add patch for autoconf. Fixes bug #242746. Thanks to Alon Bar-Lev
	<alon.barlev@gmail.com>.

19 Oct 2008; Petteri Räty <betelgeuse@gentoo.org> icedtea6-1.3-r1.ebuild:
	Fix pulseaudio dependency atom.

19 Oct 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.3-r1.ebuild:
	Drop out if trying to bootstrap due to the broken tarball issue.
	Add PulseAudio support.
	
16 Oct 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> files/icedtea6.env:
	Fixed naming of icedtea6 install directory.
	
16 Oct 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.3-r1.ebuild:
	Allow a CACAO build to build a normal IcedTea.

*icedtea6-1.3-r1 (16 10 2008)

15 Oct 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.3-r1.ebuild:
	Fixed naming of icedtea6 install directory and added cacao and shark options.

15 Oct 2008; Vlastimil Babka <caster@gentoo.org> icedtea6-1.3.ebuild:
	Prefer ecj 3.3 over 3.2

*icedtea6-1.3 (15 10 2008)

15 Oct 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.3.ebuild:
	Added (based on icedtea6-9999).

13 Oct 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.2.ebuild:
	Fix use of zero flag.
	
12 Oct 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.2.ebuild:
	Remove Gentoo-specific patches and force java, javac and javah with
	locations from GENTOO_VM.
	
09 Oct 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.2.ebuild:
	Port back debug fix from 9999 ebuild and add JDK check.
	
08 Oct 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.2.ebuild:
	Depend on gnu-classpath-jdk and icedtea-jdk.
	
14 Sep 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> files/enable_fix-1.2.patch:
	Remove prefix on left file in patch; epatch no longer seems to like this.
	
14 Sep 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> files/security_and_versioning.patch:
        Correct placement of version.
	
14 Sep 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.2.ebuild files/security_and_versioning.patch:
	Backport security fixes and include the version number and 'gentoo' in
	the versioning.
	
15 Aug 2008; Petteri Räty <betelgeuse@gentoo.org> icedtea6-9999.ebuild:
        Remove KEYWORDS from the live ebuild so that users get 1.2 by default.

07 Aug 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-9999.ebuild:
        Fix rhino_jar declaration.
	
01 Aug 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> metadata.xml:
	Document zero USE flag.

01 Aug 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea-1.7.ebuild icedtea-9999.ebuild:
        Use dest not ddest for examples directory creation.

31 Jul 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.2.ebuild icedtea6-9999.ebuild:
        Create directory for examples.

29 Jul 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-9999.ebuild:
        Only check for Rhino jar when enabled.
	
28 Jul 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-9999.ebuild:
        Remove >= from Rhino dependency following previous change.
	
27 Jul 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-9999.ebuild:
        Use slots for Rhino dependency.
	
24 Jul 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-9999.ebuild:
	Fixing naming of directory from Mercurial eclass.

24 Jul 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-9999.ebuild:
    Fix Mercurial ebuild to use (undocumented) Mercurial eclass.
	
*icedtea6-9999 (24 07 2008)

24 Jul 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-9999.ebuild:
	New ebuild for current Mercurial version.
	
12 Jul 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.1.ebuild icedtea6-1.2.ebuild
	files/motif.patch files/motif-config.patch files/motif-make.patch:
        Remove motif dependency and 1.1 ebuild.

19 Jul 2008; James Le Cuirot <chewi@aura-online.co.uk>
  icedtea6-1.1.ebuild, icedtea6-1.2.ebuild:
  Add missing inputproto dependency.

17 Jul 2008; James Le Cuirot <chewi@aura-online.co.uk>
  icedtea6-1.1.ebuild, icedtea6-1.2.ebuild:
  Make sure ecj 3.4 isn't used because it doesn't work. Also remove duplicate
  ant-core dependency.

14 Jul 2008; James Le Cuirot <chewi@aura-online.co.uk>
  icedtea6-1.1.ebuild, icedtea6-1.2.ebuild:
  Make sure only one version of ecj is passed to configure.

12 Jul 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> metadata.xml:
	Fix reference to OpenJDK to say OpenJDK6.

12 Jul 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.1.ebuild icedtea6-1.2.ebuild:
        Fix ecj building, cleanups and port changes to 1.1.
	
12 Jul 2008; James Le Cuirot <chewi@aura-online.co.uk> icedtea6-1.2.ebuild:
	Add IcedTea upgrade functionality, cleanups and break ecj.

02 Jul 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.1.ebuild icedtea6-1.2.ebuild:
        x86 architecture should be i586 for build directory, and i386 for plugin (!?!?)
	
30 Jun 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.1.ebuild icedtea6-1.2.ebuild:
	x86 architecture should be 'i386' apparently

30 Jun 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> files/javac.in.patch:
        Remove the -J from the memory option.
	
30 Jun 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.1.ebuild icedtea6-1.2.ebuild files/javac.in.patch:
	Patch javac.in as well so it also gets the benefit of the new memory option.

30 Jun 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.1.ebuild icedtea6-1.2.ebuild:
	Supply ecj.jar directly to configure.

30 Jun 2008: Andrew John Hughes <gnu_andrew@member.fsf.org> files/icedtea6-1.1.env files/icedtea6-1.2.env files/icedtea6.env:
        Removed version-specific environments (which are identical anyway).

29 Jun 2008: Andrew John Hughes <gnu_andrew@member.fsf.org> files/javac_fix-1.1.patch files/javac_fix-1.2.patch icedtea6-1.1.ebuild icedtea6-1.2.ebuild:
        Use Classpath's javac detection.

26 Jun 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.1.ebuild icedtea6-1.2.ebuild:

	Remove slot allocation, making both 0.
	
01 Jun 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> files/gjar-1.1.patch files/gjar-1.2.patch icedtea6-1.1.ebuild icedtea6-1.2.ebuild:
        Fix gjar patches for both versions of icedtea6 and note source of each patch.
	
30 May 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> files/gjar.patch icedtea6-1.1.ebuild icedtea6-1.2.ebuild:
	Add fix for jar cfm@ issue and revert icedtea6-1.2 to depending on virtual/jdk-1.5.
	
*icedtea6-1.2 (29 05 2008)

29 May 2008; Andrew John Hughes <gnu_andrew@member.fsf.org> icedtea6-1.2.ebuild:
	Added.