summaryrefslogtreecommitdiff
blob: f50be3422409fc9e03b7e2edf4c3f6b9375f9ae3 (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
2608
2609
2610
2611
2612
2613
# ChangeLog for www-client/chromium
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/www-client/chromium/ChangeLog,v 1.1020 2014/02/04 17:39:33 phajdan.jr Exp $

  04 Feb 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-32.0.1700.102.ebuild:
  x86 stable wrt security bug #499502

*chromium-32.0.1700.107 (04 Feb 2014)

  04 Feb 2014; Mike Gilbert <floppym@gentoo.org> +chromium-32.0.1700.107.ebuild:
  Stable channel bump.

*chromium-33.0.1750.58 (01 Feb 2014)

  01 Feb 2014; Mike Gilbert <floppym@gentoo.org> +chromium-33.0.1750.58.ebuild,
  -chromium-33.0.1750.29.ebuild:
  Beta channel bump.

  30 Jan 2014; Richard Freeman <rich0@gentoo.org>
  chromium-32.0.1700.102.ebuild:
  amd64 stable - 499502

*chromium-34.0.1809.0 (29 Jan 2014)

  29 Jan 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +chromium-34.0.1809.0.ebuild, +files/chromium-depot-tools-r0.patch,
  +files/chromium-system-jinja-r3.patch:
  Dev channel bump. Aura is now default. Use bundled icu.

*chromium-32.0.1700.102 (28 Jan 2014)

  28 Jan 2014; Mike Gilbert <floppym@gentoo.org> +chromium-32.0.1700.102.ebuild:
  Stable channel bump.

*chromium-33.0.1750.46 (23 Jan 2014)

  23 Jan 2014; Mike Gilbert <floppym@gentoo.org> +chromium-33.0.1750.46.ebuild,
  -chromium-33.0.1750.18.ebuild:
  Beta channel bump.

*chromium-33.0.1750.29 (18 Jan 2014)

  18 Jan 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +chromium-33.0.1750.29.ebuild, -chromium-33.0.1750.3.ebuild, metadata.xml:
  Beta channel bump. Use system libvpx again. Remove old.

*chromium-34.0.1788.0 (17 Jan 2014)

  17 Jan 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-gn-r1.patch, -chromium-31.0.1650.63.ebuild,
  -chromium-32.0.1700.72.ebuild, +chromium-34.0.1788.0.ebuild,
  +files/chromium-system-libjpeg-r0.patch:
  Dev channel bump. Use system libvpx again. Remove old.

  16 Jan 2014; Agostino Sarubbo <ago@gentoo.org> chromium-32.0.1700.77.ebuild:
  Stable for x86, wrt bug #498168

  16 Jan 2014; Agostino Sarubbo <ago@gentoo.org> chromium-32.0.1700.77.ebuild:
  Stable for amd64, wrt bug #498168

*chromium-32.0.1700.77 (16 Jan 2014)

  16 Jan 2014; Mike Gilbert <floppym@gentoo.org> +chromium-32.0.1700.77.ebuild,
  -chromium-32.0.1700.68.ebuild:
  Stable channel bump.

*chromium-32.0.1700.72 (09 Jan 2014)

  09 Jan 2014; Mike Gilbert <floppym@gentoo.org> +chromium-32.0.1700.72.ebuild,
  -chromium-32.0.1700.55.ebuild:
  Beta channel bump.

*chromium-33.0.1750.18 (08 Jan 2014)

  08 Jan 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-32.0.1700.68.ebuild, -chromium-33.0.1734.0.ebuild,
  +chromium-33.0.1750.18.ebuild:
  Dev channel bump. Use system libwebp again. Drop system-sqlite flag, it
  doesn't work (bug #466266 by Alphat-PC). Remove old.

  02 Jan 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-32.0.1700.68.ebuild, chromium-33.0.1750.3.ebuild:
  Correctly handle python dependencies, bug #496326 by nzqr.

*chromium-32.0.1700.68 (20 Dec 2013)

  20 Dec 2013; Mike Gilbert <floppym@gentoo.org> +chromium-32.0.1700.68.ebuild,
  -chromium-32.0.1700.41.ebuild:
  Beta channel bump.

*chromium-33.0.1750.3 (18 Dec 2013)

  18 Dec 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-33.0.1726.0.ebuild, +chromium-33.0.1750.3.ebuild:
  Dev channel bump. Remove old.

*chromium-32.0.1700.55 (13 Dec 2013)

  13 Dec 2013; Mike Gilbert <floppym@gentoo.org> +chromium-32.0.1700.55.ebuild,
  -chromium-32.0.1700.39.ebuild:
  Beta channel bump.

*chromium-33.0.1734.0 (11 Dec 2013)

  11 Dec 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-gn-r0.patch, -chromium-31.0.1650.57.ebuild,
  -chromium-33.0.1711.3.ebuild, +chromium-33.0.1734.0.ebuild:
  Dev channel bump. Remove old.

  08 Dec 2013; Mike Gilbert <floppym@gentoo.org> chromium-33.0.1726.0.ebuild:
  Refactor ninja option processing into eninja function. Add load average
  support, thanks to M.B. in bug 490624.

  06 Dec 2013; Agostino Sarubbo <ago@gentoo.org> chromium-31.0.1650.63.ebuild:
  Stable for x86, wrt bug #493364

*chromium-32.0.1700.41 (06 Dec 2013)

  06 Dec 2013; Mike Gilbert <floppym@gentoo.org> +chromium-32.0.1700.41.ebuild,
  -chromium-32.0.1700.19.ebuild:
  Beta channel bump.

  05 Dec 2013; Richard Freeman <rich0@gentoo.org> chromium-31.0.1650.63.ebuild:
  amd64 stable - 493364

*chromium-31.0.1650.63 (05 Dec 2013)

  05 Dec 2013; Mike Gilbert <floppym@gentoo.org> +chromium-31.0.1650.63.ebuild:
  Stable channel bump.

*chromium-32.0.1700.39 (04 Dec 2013)

  04 Dec 2013; Mike Gilbert <floppym@gentoo.org> +chromium-32.0.1700.39.ebuild,
  -chromium-32.0.1700.14.ebuild:
  Beta channel bump.

*chromium-33.0.1726.0 (04 Dec 2013)

  04 Dec 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-33.0.1707.0.ebuild, +chromium-33.0.1726.0.ebuild:
  Dev channel bump. Remove old.

  03 Dec 2013; Mike Gilbert <floppym@gentoo.org> chromium-31.0.1650.57.ebuild,
  chromium-32.0.1700.19.ebuild, chromium-33.0.1711.3.ebuild:
  Set python version and libdir so that python_arch.sh can find libpython. Bug
  492864 by Yannick Schaeffer. Thanks to John Keeping for the helpful hint.

  27 Nov 2013; Mike Gilbert <floppym@gentoo.org> chromium-32.0.1700.19.ebuild,
  chromium-33.0.1711.3.ebuild:
  Override TMPDIR to prevent grsec TPE failures in ffmpeg configure script, bug
  491582.

  23 Nov 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-32.0.1700.19.ebuild, chromium-33.0.1711.3.ebuild:
  Prepare for unmasking tcmalloc USE flag, add blocker on old nvidia-drivers.
  Thanks to Julien Sanchez and Pavel Volkov for testing (bug #413637).

  22 Nov 2013; Mike Gilbert <floppym@gentoo.org> chromium-32.0.1700.19.ebuild,
  chromium-33.0.1711.3.ebuild, files/chromium-build_ffmpeg-r0.patch:
  Fix ffmpeg configuration on ARM, thanks to Michael Kurinnov on bug 491466.
  Enable gold linker for ffmpeg, bug 491850 by mgorny.

*chromium-32.0.1700.19 (21 Nov 2013)

  21 Nov 2013; Mike Gilbert <floppym@gentoo.org> +chromium-32.0.1700.19.ebuild,
  -chromium-32.0.1700.6.ebuild:
  Beta channel bump.

*chromium-33.0.1711.3 (20 Nov 2013)

  20 Nov 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +chromium-33.0.1711.3.ebuild, metadata.xml:
  Dev channel bump. Fix bug #491230 by Andrew Waters. Add aura USE flag.

  17 Nov 2013; Mike Gilbert <floppym@gentoo.org>
  +files/chromium-build_ffmpeg-r0.patch, chromium-32.0.1700.14.ebuild,
  chromium-33.0.1707.0.ebuild:
  Fix detection of x86 HOST_OS when configuring ffmpeg, bug 491466. Thanks to
  megabaks for the the solution.

  16 Nov 2013; Agostino Sarubbo <ago@gentoo.org> -chromium-31.0.1650.48.ebuild:
  Remove old

  16 Nov 2013; Agostino Sarubbo <ago@gentoo.org> chromium-31.0.1650.57.ebuild:
  Stable for x86, wrt bug #491326

  16 Nov 2013; Agostino Sarubbo <ago@gentoo.org> chromium-31.0.1650.57.ebuild:
  Stable for amd64, wrt bug #491326

  16 Nov 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-32.0.1700.14.ebuild, chromium-33.0.1707.0.ebuild:
  Reconfigure bundled ffmpeg to enable build with gcc-4.5, bug #491378 by
  Ulrich Fieseler.

*chromium-31.0.1650.57 (16 Nov 2013)

  16 Nov 2013; Mike Gilbert <floppym@gentoo.org> +chromium-31.0.1650.57.ebuild:
  Stable channel bump.

*chromium-32.0.1700.14 (15 Nov 2013)

  15 Nov 2013; Mike Gilbert <floppym@gentoo.org> +chromium-32.0.1700.14.ebuild,
  -chromium-32.0.1700.2.ebuild:
  Beta channel bump.

  15 Nov 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-32.0.1700.6.ebuild, chromium-33.0.1707.0.ebuild:
  Add dependency on sys-libs/libcap, bug #491236 by Michael Kurinnoy.

*chromium-33.0.1707.0 (13 Nov 2013)

  13 Nov 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-gnome-keyring-r0.patch, -chromium-30.0.1599.101.ebuild,
  -chromium-31.0.1650.39.ebuild, +chromium-33.0.1707.0.ebuild:
  Dev channel bump. Remove old.

  13 Nov 2013; Agostino Sarubbo <ago@gentoo.org> chromium-31.0.1650.48.ebuild:
  Stable for amd64, wrt bug #491128

  13 Nov 2013; Agostino Sarubbo <ago@gentoo.org> chromium-31.0.1650.48.ebuild:
  Stable for x86, wrt bug #491128

  12 Nov 2013; Mike Gilbert <floppym@gentoo.org> chromium-30.0.1599.101.ebuild,
  chromium-31.0.1650.48.ebuild, chromium-32.0.1700.6.ebuild:
  Add dependency on >=x11-libs/libXi-1.6.0, bug 490810 by Zeno Davatz.

*chromium-31.0.1650.48 (12 Nov 2013)

  12 Nov 2013; Mike Gilbert <floppym@gentoo.org> +chromium-31.0.1650.48.ebuild,
  -chromium-31.0.1650.34.ebuild:
  Bump (probably for stable channel).

*chromium-32.0.1700.6 (12 Nov 2013)

  12 Nov 2013; Mike Gilbert <floppym@gentoo.org> +chromium-32.0.1700.6.ebuild,
  -chromium-32.0.1678.0.ebuild:
  Beta channel bump.

  08 Nov 2013; Mike Gilbert <floppym@gentoo.org> chromium-30.0.1599.101.ebuild,
  chromium-31.0.1650.39.ebuild, chromium-32.0.1700.2.ebuild:
  Update nss dependency, bug 490756.

*chromium-32.0.1700.2 (08 Nov 2013)

  08 Nov 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-blink-crash-r0.patch, -chromium-30.0.1599.66.ebuild,
  -chromium-32.0.1671.3.ebuild, +chromium-32.0.1700.2.ebuild,
  +files/chromium-system-jinja-r2.patch:
  Dev channel bump. Remove old.

*chromium-31.0.1650.39 (04 Nov 2013)

  04 Nov 2013; Mike Gilbert <floppym@gentoo.org> +chromium-31.0.1650.39.ebuild,
  -chromium-31.0.1650.26.ebuild:
  Beta channel bump.

*chromium-31.0.1650.34 (26 Oct 2013)

  26 Oct 2013; Mike Gilbert <floppym@gentoo.org> +chromium-31.0.1650.34.ebuild,
  -chromium-31.0.1650.0.ebuild, -chromium-31.0.1650.12-r1.ebuild:
  Beta channel bump.

*chromium-32.0.1678.0 (23 Oct 2013)

  23 Oct 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-32.0.1664.3-r1.ebuild, +chromium-32.0.1678.0.ebuild:
  Dev channel bump. Use readme.gentoo eclass (bug #487136 by pacho; patch by
  floppym based on pacho's original patch). Remove old.

  20 Oct 2013; Mike Gilbert <floppym@gentoo.org> chromium-32.0.1671.3.ebuild:
  Re-enable V8 snapshot on PaX systems.

*chromium-31.0.1650.26 (20 Oct 2013)

  20 Oct 2013; Mike Gilbert <floppym@gentoo.org> +chromium-31.0.1650.26.ebuild,
  -chromium-31.0.1650.12.ebuild:
  Beta channel bump.

  18 Oct 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-31.0.1650.12-r1.ebuild, chromium-32.0.1671.3.ebuild:
  Require >=jinja-2.7, bug #487422 by jlec.

*chromium-32.0.1671.3 (17 Oct 2013)

  17 Oct 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-system-jinja-r1.patch, -chromium-32.0.1664.3.ebuild,
  +chromium-32.0.1671.3.ebuild:
  Dev channel bump. Remove old.

  16 Oct 2013; Agostino Sarubbo <ago@gentoo.org> chromium-30.0.1599.101.ebuild:
  Stable for x86, wrt bug #488148

  16 Oct 2013; Agostino Sarubbo <ago@gentoo.org> chromium-30.0.1599.101.ebuild:
  Stable for amd64, wrt bug #488148

*chromium-30.0.1599.101 (16 Oct 2013)

  16 Oct 2013; Mike Gilbert <floppym@gentoo.org> +chromium-30.0.1599.101.ebuild,
  -chromium-30.0.1599.66-r1.ebuild:
  Stable channel bump.

*chromium-32.0.1664.3-r1 (15 Oct 2013)
*chromium-31.0.1650.12-r1 (15 Oct 2013)
*chromium-30.0.1599.66-r1 (15 Oct 2013)

  15 Oct 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +chromium-30.0.1599.66-r1.ebuild, +chromium-31.0.1650.12-r1.ebuild,
  +chromium-32.0.1664.3-r1.ebuild:
  Fix vp9 support by switching to bundled libvpx (bug #487926 by Paul Marks).

*chromium-32.0.1664.3 (10 Oct 2013)

  10 Oct 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +chromium-32.0.1664.3.ebuild:
  Dev channel bump.

  10 Oct 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-9999-r1.ebuild:
  Remove live ebuild now that we have weekly dev channel releases.

  09 Oct 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-29.0.1547.57.ebuild, -chromium-29.0.1547.65.ebuild,
  -chromium-30.0.1599.65.ebuild, -chromium-31.0.1626.0.ebuild,
  chromium-31.0.1650.12.ebuild, chromium-9999-r1.ebuild:
  Fix bug #487144 by wbrana. Remove old.

*chromium-31.0.1650.12 (08 Oct 2013)

  08 Oct 2013; Mike Gilbert <floppym@gentoo.org> +chromium-31.0.1650.12.ebuild:
  Beta channel bump.

  02 Oct 2013; Agostino Sarubbo <ago@gentoo.org> chromium-30.0.1599.66.ebuild:
  Stable for x86, wrt bug #486742

  02 Oct 2013; Agostino Sarubbo <ago@gentoo.org> chromium-30.0.1599.66.ebuild:
  Stable for amd64, wrt bug #486742

*chromium-30.0.1599.66 (02 Oct 2013)

  02 Oct 2013; Mike Gilbert <floppym@gentoo.org> +chromium-30.0.1599.66.ebuild,
  -chromium-30.0.1599.47.ebuild:
  Stable channel bump.

  28 Sep 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  files/chromium-system-icu-r0.patch, chromium-31.0.1650.0.ebuild:
  Fix the patch and apply it, bug #486342 by floppym.

*chromium-30.0.1599.65 (28 Sep 2013)

  28 Sep 2013; Mike Gilbert <floppym@gentoo.org> +chromium-30.0.1599.65.ebuild,
  -chromium-30.0.1599.37.ebuild:
  Beta channel bump.

  28 Sep 2013; Mike Gilbert <floppym@gentoo.org> chromium-31.0.1650.0.ebuild:
  Drop failing patch, bug 486290 by Albert W. Hopkins.

*chromium-31.0.1650.0 (28 Sep 2013)

  28 Sep 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-chromedriver-r0.patch, +files/chromium-system-icu-r0.patch,
  +files/chromium-system-jinja-r0.patch, -chromium-31.0.1622.0.ebuild,
  +chromium-31.0.1650.0.ebuild, chromium-9999-r1.ebuild:
  Dev channel bump. Fix bug #481812 by floppym. Back to bundled v8 (frequent
  API/ABI breaks, recent gentoo-dev discussions). Remove old.

*chromium-30.0.1599.47 (25 Sep 2013)

  25 Sep 2013; Mike Gilbert <floppym@gentoo.org> +chromium-30.0.1599.47.ebuild,
  -chromium-30.0.1599.22.ebuild, -chromium-30.0.1599.28.ebuild:
  Beta channel bump.

*chromium-31.0.1626.0 (20 Sep 2013)

  20 Sep 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-31.0.1612.0.ebuild, +chromium-31.0.1626.0.ebuild,
  chromium-9999-r1.ebuild:
  Dev channel bump. Remove no longer needed test exclusions (bug #350347, bug
  #394883, bug #398591, bug #399269, bug #425764, bug #426630, bug #459614, bug
  #461286, bug #465444, bug #465724). Remove old.

*chromium-30.0.1599.37 (14 Sep 2013)

  14 Sep 2013; Mike Gilbert <floppym@gentoo.org> +chromium-30.0.1599.37.ebuild:
  Beta channel bump.

  13 Sep 2013; Patrick Lauer <patrick@gentoo.org> metadata.xml:
  Remove unneeded useflag description from metadata.xml

  13 Sep 2013; Mike Gilbert <floppym@gentoo.org>
  -files/chromium-bug471198.patch, -files/chromium-nss-3.15.patch,
  -files/chromium-pnacl-r0.patch, -files/chromium-smhasher-r0.patch,
  -files/chromium-system-ffmpeg-r4.patch,
  -files/chromium-system-ffmpeg-r5.patch,
  -files/chromium-system-ffmpeg-r7.patch,
  -files/chromium-system-harfbuzz-r0.patch, -files/chromium-system-icu-r0.patch,
  -files/chromium-system-libusb-r0.patch,
  -files/chromium-system-libvpx-r0.patch, -files/chromium-system-v8-r0.patch,
  -files/chromium-system-v8-r1.patch, -files/chromium-system-zlib-r0.patch:
  Drop obsolete patches.

*chromium-30.0.1599.28 (12 Sep 2013)

  12 Sep 2013; Mike Gilbert <floppym@gentoo.org> +chromium-30.0.1599.28.ebuild,
  -chromium-30.0.1599.15.ebuild:
  Beta channel bump.

  11 Sep 2013; Markus Meier <maekke@gentoo.org> chromium-29.0.1547.57.ebuild,
  chromium-29.0.1547.65.ebuild:
  mark chromium-29 -arm as it's broken on arm, chromium-30 is okay (see bug
  #473260)

*chromium-31.0.1622.0 (10 Sep 2013)

  10 Sep 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-system-ply-r1.patch, +chromium-31.0.1622.0.ebuild,
  chromium-9999-r1.ebuild:
  Dev channel bump. Fix bug #483482 by Julien Sanchez.

  05 Sep 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-29.0.1547.57.ebuild, chromium-29.0.1547.65.ebuild,
  chromium-30.0.1599.22.ebuild, chromium-31.0.1612.0.ebuild,
  chromium-9999-r1.ebuild:
  Remove support for system ffmpeg. Directly fixes bug #483518 by fuzzyray. See
  also bug #480936 by floppym and bug #466010 by cmuelle8.

*chromium-29.0.1547.65 (04 Sep 2013)

  04 Sep 2013; Mike Gilbert <floppym@gentoo.org> +chromium-29.0.1547.65.ebuild:
  Stable channel bump.

*chromium-30.0.1599.22 (02 Sep 2013)

  02 Sep 2013; Mike Gilbert <floppym@gentoo.org> +chromium-30.0.1599.22.ebuild,
  -chromium-30.0.1599.0-r1.ebuild:
  Beta channel bump.

*chromium-31.0.1612.0 (31 Aug 2013)

  31 Aug 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +chromium-31.0.1612.0.ebuild, chromium-9999-r1.ebuild:
  Dev channel bump.

  23 Aug 2013; Mike Gilbert <floppym@gentoo.org> -chromium-28.0.1500.95.ebuild,
  -chromium-29.0.1547.32.ebuild, -chromium-29.0.1547.41.ebuild:
  Remove old.

*chromium-30.0.1599.15 (23 Aug 2013)

  23 Aug 2013; Mike Gilbert <floppym@gentoo.org> +chromium-30.0.1599.15.ebuild,
  -chromium-30.0.1588.0.ebuild:
  Bump.

  21 Aug 2013; Agostino Sarubbo <ago@gentoo.org> chromium-29.0.1547.57.ebuild:
  Stable for x86, wrt bug #481990

  21 Aug 2013; Agostino Sarubbo <ago@gentoo.org> chromium-29.0.1547.57.ebuild:
  Stable for amd64, wrt bug #481990

*chromium-29.0.1547.57 (21 Aug 2013)

  21 Aug 2013; Mike Gilbert <floppym@gentoo.org> +chromium-29.0.1547.57.ebuild:
  Stable channel bump.

  18 Aug 2013; Mike Gilbert <floppym@gentoo.org> chromium-9999-r1.ebuild:
  Apply previous change to the live ebuild.

*chromium-30.0.1599.0-r1 (18 Aug 2013)

  18 Aug 2013; Mike Gilbert <floppym@gentoo.org>
  +chromium-30.0.1599.0-r1.ebuild, -chromium-30.0.1599.0.ebuild:
  Install the chrome_sandbox binary as chrome-sandbox due to change in code
  upstream. Drop the linux_sandbox_path gyp option as well.

*chromium-30.0.1599.0 (17 Aug 2013)

  17 Aug 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-28.0.1500.71.ebuild, -chromium-28.0.1500.89.ebuild,
  -chromium-30.0.1581.2.ebuild, +chromium-30.0.1599.0.ebuild,
  chromium-9999-r1.ebuild:
  Dev channel bump. Bump ffmpeg dependency (bug #480936 by floppym). Disable
  nacl (http://crbug.com/269560). Remove old.

  14 Aug 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-29.0.1547.41.ebuild:
  Switch back to make build (ninja build has issues like bug #471272). Also do
  not use system mesa, bug #475444 .

*chromium-30.0.1588.0 (13 Aug 2013)

  13 Aug 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-30.0.1568.0.ebuild, +chromium-30.0.1588.0.ebuild,
  chromium-9999-r1.ebuild:
  Dev channel bump. Fix bug #479418 by floppym. Fix bug #473260 by Vladimir.
  Exclude a failing test (bug #478168). Stop using system mesa. Temporarily use
  bundled openssl. Remove old.

  11 Aug 2013; Alexis Ballier <aballier@gentoo.org>
  chromium-28.0.1500.71.ebuild, chromium-28.0.1500.89.ebuild,
  chromium-28.0.1500.95.ebuild, chromium-29.0.1547.32.ebuild,
  chromium-29.0.1547.41.ebuild, chromium-30.0.1568.0.ebuild,
  chromium-30.0.1581.2.ebuild, chromium-9999-r1.ebuild:
  depend on ffmpeg:0

*chromium-29.0.1547.41 (09 Aug 2013)

  09 Aug 2013; Mike Gilbert <floppym@gentoo.org> +chromium-29.0.1547.41.ebuild,
  -chromium-29.0.1547.22.ebuild, chromium-30.0.1581.2.ebuild,
  chromium-9999-r1.ebuild:
  Beta channel bump. Tweak src_test to output each failed test command.

  31 Jul 2013; Mike Gilbert <floppym@gentoo.org> chromium-9999-r1.ebuild:
  Apply src_test change to live ebuild.

  31 Jul 2013; Mike Gilbert <floppym@gentoo.org> chromium-29.0.1547.32.ebuild,
  chromium-30.0.1581.2.ebuild:
  Adjust src_test so that we always run all tests instead of dying on the first
  failure.

*chromium-30.0.1581.2 (31 Jul 2013)

  31 Jul 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-system-icu-r0.patch, +files/chromium-system-ply-r0.patch,
  +chromium-30.0.1581.2.ebuild, chromium-9999-r1.ebuild:
  Dev channel bump.

  31 Jul 2013; Agostino Sarubbo <ago@gentoo.org> chromium-28.0.1500.95.ebuild:
  Stable for x86, wrt bug #479048

  31 Jul 2013; Agostino Sarubbo <ago@gentoo.org> chromium-28.0.1500.95.ebuild:
  Stable for amd64, wrt bug #479048

*chromium-28.0.1500.95 (31 Jul 2013)

  31 Jul 2013; Mike Gilbert <floppym@gentoo.org> +chromium-28.0.1500.95.ebuild:
  Stable channel bump.

  30 Jul 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-28.0.1500.89.ebuild:
  Add an upper bound for nacl-toolchain-newlib dependency, bug #478460 by
  Johannes Hirte.

  26 Jul 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  files/chromium-nss-3.15.patch:
  Update the nss-3.15 patch to also work for gcc-4.5, bug #476832 by Matteo
  'The Peach' Pescarin.

*chromium-29.0.1547.32 (26 Jul 2013)

  26 Jul 2013; Mike Gilbert <floppym@gentoo.org> +chromium-29.0.1547.32.ebuild,
  -chromium-29.0.1547.0.ebuild, -chromium-29.0.1547.15.ebuild:
  Beta channel bump.

*chromium-30.0.1568.0 (25 Jul 2013)

  25 Jul 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-system-libusb-r0.patch,
  +files/chromium-system-libvpx-r0.patch, +files/chromium-system-v8-r1.patch,
  +chromium-30.0.1568.0.ebuild, +files/chromium-system-zlib-r0.patch,
  chromium-9999-r1.ebuild:
  Dev channel bump.

*chromium-29.0.1547.22 (18 Jul 2013)

  18 Jul 2013; Mike Gilbert <floppym@gentoo.org> +chromium-29.0.1547.22.ebuild:
  Bump.

  17 Jul 2013; Mike Gilbert <floppym@gentoo.org> chromium-28.0.1500.71.ebuild,
  chromium-28.0.1500.89.ebuild:
  Skip CertVerifyProcTest.EVVerification, bug 474642.

  17 Jul 2013; Mike Gilbert <floppym@gentoo.org>
  +files/chromium-bug471198.patch, chromium-28.0.1500.71.ebuild,
  chromium-28.0.1500.89.ebuild:
  Apply upstream fix for bug 471198.

  14 Jul 2013; Mike Gilbert <floppym@gentoo.org> chromium-28.0.1500.89.ebuild,
  chromium-29.0.1547.15.ebuild, chromium-9999-r1.ebuild:
  Fix multilib path for plugins, bug 476778.

  12 Jul 2013; Mike Gilbert <floppym@gentoo.org> -chromium-27.0.1453.110.ebuild:
  Remove old.

  10 Jul 2013; Agostino Sarubbo <ago@gentoo.org> chromium-28.0.1500.71.ebuild:
  Stable for x86, wrt bug #476344

  10 Jul 2013; Agostino Sarubbo <ago@gentoo.org> chromium-28.0.1500.71.ebuild:
  Stable for amd64, wrt bug #476344

*chromium-29.0.1547.15 (10 Jul 2013)

  10 Jul 2013; Mike Gilbert <floppym@gentoo.org> +chromium-29.0.1547.15.ebuild,
  -chromium-29.0.1541.2.ebuild:
  Dev channel bump.

*chromium-28.0.1500.71 (04 Jul 2013)

  04 Jul 2013; Mike Gilbert <floppym@gentoo.org> +chromium-28.0.1500.71.ebuild,
  -chromium-28.0.1500.52.ebuild, -chromium-28.0.1500.63.ebuild:
  Bump.

*chromium-28.0.1500.89 (04 Jul 2013)

  04 Jul 2013; Mike Gilbert <floppym@gentoo.org> +chromium-28.0.1500.89.ebuild:
  Beta channel bump.

  03 Jul 2013; Mike Gilbert <floppym@gentoo.org> chromium-27.0.1453.110.ebuild:
  Place upper-bound on nss dependency, bug 474982.

*chromium-28.0.1500.63 (29 Jun 2013)

  29 Jun 2013; Mike Gilbert <floppym@gentoo.org> +chromium-28.0.1500.63.ebuild,
  -chromium-28.0.1500.45.ebuild:
  Beta channel bump.

  27 Jun 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org> chromium-9999-r1.ebuild,
  files/dot-gclient:
  Generate LASTCHANGE.blink (bug #474576 by Julien Sanchez). Also switch to
  https repos.

  27 Jun 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-28.0.1500.52.ebuild, chromium-29.0.1547.0.ebuild,
  chromium-9999-r1.ebuild:
  Filter out -g* from CFLAGS on x86, to prevent linker from running out of
  address space, bug #471810 by hasufell, x86 issue reported by zerochaos.

*chromium-29.0.1547.0 (26 Jun 2013)

  26 Jun 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-29.0.1521.3.ebuild, +chromium-29.0.1547.0.ebuild,
  chromium-9999-r1.ebuild:
  Dev channel bump. Remove old.

  21 Jun 2013; Mike Gilbert <floppym@gentoo.org>
  -files/chromium-jsoncpp-path-r0.patch, -files/chromium-ppapi-r0.patch,
  -files/chromium-shim-headers-r0.patch,
  -files/chromium-speech-dispatcher-0.8-r0.patch,
  -files/chromium-system-ffmpeg-r2a.patch,
  -files/chromium-system-ffmpeg-r6.patch, -files/chromium-system-icu-r0.patch,
  -files/chromium-system-libvpx-r0.patch, -files/chromium-system-v8-r1.patch,
  -files/chromium-system-zlib-r0.patch:
  Remove obsolete patches.

*chromium-28.0.1500.52 (21 Jun 2013)

  21 Jun 2013; Mike Gilbert <floppym@gentoo.org> +chromium-28.0.1500.52.ebuild,
  +files/chromium-nss-3.15.patch, -chromium-28.0.1500.36.ebuild:
  Beta channel bump. Backport nss-3.15 compatibility patch.

*chromium-29.0.1541.2 (20 Jun 2013)

  20 Jun 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-29.0.1516.3.ebuild, +chromium-29.0.1541.2.ebuild,
  chromium-9999-r1.ebuild:
  Dev channel bump. Fix bug #473766 by floppym . Remove old.

  17 Jun 2013; Mike Gilbert <floppym@gentoo.org> chromium-28.0.1500.45.ebuild:
  Allow speech-dispatcher-0.7* to be used for chromium-28.

*chromium-28.0.1500.45 (13 Jun 2013)

  13 Jun 2013; Mike Gilbert <floppym@gentoo.org> +chromium-28.0.1500.45.ebuild,
  -chromium-28.0.1500.20.ebuild:
  Beta channel bump.

  07 Jun 2013; Mike Gilbert <floppym@gentoo.org> -chromium-27.0.1453.93.ebuild,
  chromium-27.0.1453.110.ebuild:
  Place upper-bound on harfbuzz dep, bug 472416. Remove old.

*chromium-28.0.1500.36 (07 Jun 2013)

  07 Jun 2013; Mike Gilbert <floppym@gentoo.org> +chromium-28.0.1500.36.ebuild,
  -chromium-28.0.1500.11.ebuild:
  Beta channel bump.

  06 Jun 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-system-harfbuzz-r0.patch, chromium-28.0.1500.20.ebuild,
  chromium-29.0.1521.3.ebuild, chromium-9999-r1.ebuild:
  Fix build with system harfbuzz-0.9.18, bug #472416 by Ivan Atienza.

  05 Jun 2013; Agostino Sarubbo <ago@gentoo.org> chromium-27.0.1453.110.ebuild:
  Stable for x86, wrt bug #472350

  05 Jun 2013; Agostino Sarubbo <ago@gentoo.org> chromium-27.0.1453.110.ebuild:
  Stable for amd64, wrt bug #472350

*chromium-27.0.1453.110 (05 Jun 2013)

  05 Jun 2013; Mike Gilbert <floppym@gentoo.org> +chromium-27.0.1453.110.ebuild:
  Stable channel bump.

  02 Jun 2013; Markus Meier <maekke@gentoo.org> chromium-28.0.1500.11.ebuild,
  chromium-28.0.1500.20.ebuild, chromium-29.0.1516.3.ebuild,
  chromium-29.0.1521.3.ebuild:
  readd ~arm, bug #372155

*chromium-29.0.1521.3 (29 May 2013)

  29 May 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-system-ffmpeg-r7.patch, +chromium-29.0.1521.3.ebuild,
  chromium-9999-r1.ebuild:
  Dev channel bump. Fix bug #471292 by Dan Douglas.

*chromium-29.0.1516.3 (25 May 2013)

  25 May 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-system-ffmpeg-r6.patch, +chromium-29.0.1516.3.ebuild,
  chromium-9999-r1.ebuild:
  Dev channel bump. Switch from make-based to ninja-based build. Fix bug
  #469144 by Alphat-PC.

  24 May 2013; Agostino Sarubbo <ago@gentoo.org> -chromium-26.0.1410.43.ebuild,
  -chromium-26.0.1410.63.ebuild, -chromium-27.0.1453.81.ebuild:
  Remove old

  24 May 2013; Agostino Sarubbo <ago@gentoo.org> chromium-27.0.1453.93.ebuild:
  Stable for x86, wrt bug #470920

  24 May 2013; Agostino Sarubbo <ago@gentoo.org> chromium-27.0.1453.93.ebuild:
  Stable for amd64, wrt bug #470920

  22 May 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-27.0.1453.93.ebuild:
  Prepare for security stabilization (bug #470920): only require
  speech-dispatcher-0.7; also note bug #470934 and bug #463550 .

*chromium-28.0.1500.20 (21 May 2013)

  21 May 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-28.0.1500.5.ebuild, +chromium-28.0.1500.20.ebuild:
  Dev channel bump. Remove old.

*chromium-27.0.1453.93 (21 May 2013)

  21 May 2013; Mike Gilbert <floppym@gentoo.org> +chromium-27.0.1453.93.ebuild,
  -chromium-27.0.1453.73.ebuild:
  Beta channel bump.

*chromium-28.0.1500.11 (13 May 2013)

  13 May 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-28.0.1500.3.ebuild, +chromium-28.0.1500.11.ebuild:
  Dev channel bump. Remove old.

  10 May 2013; Mike Gilbert <floppym@gentoo.org> chromium-28.0.1500.5.ebuild:
  Pass host toolchain via the environment to gyp.

*chromium-28.0.1500.5 (09 May 2013)

  09 May 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-system-ffmpeg-r5.patch, -chromium-28.0.1496.0.ebuild,
  +chromium-28.0.1500.5.ebuild, chromium-9999-r1.ebuild:
  Dev channel bump. Make it possible to compile against system libav (bug
  #464676 by Nikos Chantziaras). Fix build with system ffmpeg (bug #466866 by
  jlec). Remove old.

  09 May 2013; Mike Gilbert <floppym@gentoo.org>
  -files/chromium-icu50-tests-r0.patch, -files/chromium-mesa-r0.patch,
  -files/chromium-mesa-r1.patch, -files/chromium-no-pnacl-r0.patch,
  -files/chromium-system-ffmpeg-r0.patch,
  -files/chromium-system-ffmpeg-r1.patch,
  -files/chromium-system-ffmpeg-r2.patch,
  -files/chromium-system-ffmpeg-r3.patch,
  -files/chromium-system-libpng-r0.patch,
  -files/chromium-system-minizip-r0.patch, -files/chromium-system-opus-r0.patch:
  Remove obsolete patches.

*chromium-27.0.1453.81 (09 May 2013)

  09 May 2013; Mike Gilbert <floppym@gentoo.org> +chromium-27.0.1453.81.ebuild,
  -chromium-27.0.1453.65.ebuild:
  Beta channel bump.

*chromium-28.0.1500.3 (08 May 2013)

  08 May 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-system-icu-r0.patch, +files/chromium-system-libvpx-r0.patch,
  +files/chromium-system-v8-r1.patch, -chromium-28.0.1490.2.ebuild,
  +files/chromium-system-zlib-r0.patch, +chromium-28.0.1500.3.ebuild,
  chromium-9999-r1.ebuild:
  Dev channel bump. Use system snappy. Remove old.

*chromium-28.0.1496.0 (03 May 2013)

  03 May 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-28.0.1485.0.ebuild, +chromium-28.0.1496.0.ebuild,
  chromium-9999-r1.ebuild:
  Dev channel bump. Temporarily use bundled snappy. Fix bug #460404 by ago.
  Remove old.

*chromium-27.0.1453.73 (03 May 2013)

  03 May 2013; Mike Gilbert <floppym@gentoo.org> +chromium-27.0.1453.73.ebuild,
  -chromium-27.0.1453.56.ebuild:
  Beta channel bump.

  01 May 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-27.0.1453.65.ebuild, chromium-28.0.1490.2.ebuild,
  chromium-9999-r1.ebuild:
  Disable unmaintained upstream SELinux mode, bug #465574 by swift, bug #467954
  by Dominik Kriegner.

*chromium-28.0.1490.2 (01 May 2013)

  01 May 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-shim-headers-r0.patch, -chromium-28.0.1478.0.ebuild,
  +chromium-28.0.1490.2.ebuild, chromium-9999-r1.ebuild:
  Dev channel bump. Remove old.

*chromium-27.0.1453.65 (27 Apr 2013)

  27 Apr 2013; Mike Gilbert <floppym@gentoo.org> +chromium-27.0.1453.65.ebuild,
  -chromium-27.0.1453.47.ebuild:
  Beta channel bump.

*chromium-28.0.1485.0 (23 Apr 2013)

  23 Apr 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +chromium-28.0.1485.0.ebuild, chromium-9999-r1.ebuild:
  Dev channel bump. Fixes bug #466010 by cmuelle8 and bug #466180 by floppym
  (with helpful patches by Ionut Leonte and Paul Zander).

*chromium-27.0.1453.56 (18 Apr 2013)

  18 Apr 2013; Mike Gilbert <floppym@gentoo.org> +chromium-27.0.1453.56.ebuild,
  -chromium-27.0.1453.12.ebuild, -chromium-27.0.1453.3.ebuild:
  Beta channel bump.

*chromium-28.0.1478.0 (16 Apr 2013)

  16 Apr 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-system-minizip-r0.patch, +chromium-28.0.1478.0.ebuild:
  Dev channel bump.

*chromium-27.0.1453.47 (13 Apr 2013)

  13 Apr 2013; Mike Gilbert <floppym@gentoo.org> +chromium-27.0.1453.47.ebuild:
  Beta channel bump.

  11 Apr 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-27.0.1453.12.ebuild, chromium-9999-r1.ebuild:
  Restore system-ffmpeg USE flag, bug #464676 by Nikos Chantziaras .

*chromium-26.0.1410.63 (11 Apr 2013)

  11 Apr 2013; Mike Gilbert <floppym@gentoo.org> +chromium-26.0.1410.63.ebuild:
  Stable channel bump.

  10 Apr 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-27.0.1453.12.ebuild, chromium-9999-r1.ebuild:
  Improve src_test: run content_unittests; exclude failing net_unittests
  (http://crbug.com/224612 , bug #465444); exclude failing sql_unittests (bug
  #461286 by Alphat-PC).

  10 Apr 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-26.0.1410.43.ebuild, chromium-27.0.1453.12.ebuild:
  Use stricter v8 dependencies, bug #465302 by mr_bones_ .

  10 Apr 2013; Mike Gilbert <floppym@gentoo.org> chromium-26.0.1410.43.ebuild:
  Put an upper bound on the speech-dispatcher dependency, bug 465358.

  05 Apr 2013; Mike Gilbert <floppym@gentoo.org> chromium-26.0.1410.43.ebuild,
  chromium-27.0.1453.12.ebuild, chromium-27.0.1453.3.ebuild,
  chromium-9999-r1.ebuild:
  Fixup slot-operater deps on libpng.

  05 Apr 2013; Mike Gilbert <floppym@gentoo.org> -chromium-25.0.1364.160.ebuild,
  -chromium-25.0.1364.172.ebuild, -chromium-26.0.1410.40.ebuild:
  Remove old.

  04 Apr 2013; Agostino Sarubbo <ago@gentoo.org> chromium-26.0.1410.43.ebuild:
  Stable for x86, wrt bug #463426

  04 Apr 2013; Agostino Sarubbo <ago@gentoo.org> chromium-26.0.1410.43.ebuild:
  Stable for amd64, wrt bug #463426

  04 Apr 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-26.0.1410.43.ebuild:
  Conditional patching is bad. Keep ebuild to be stabilized in good shape. This
  reverts patrick's change below.

  04 Apr 2013; Patrick Lauer <patrick@gentoo.org> chromium-26.0.1410.43.ebuild:
  Apply fix for #463550 to all relevant versions

  03 Apr 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-26.0.1410.33.ebuild, -chromium-26.0.1410.33-r1.ebuild,
  chromium-26.0.1410.43.ebuild:
  Remove dependency on mesa, bug #463430 . Remove old.

*chromium-27.0.1453.12 (03 Apr 2013)

  03 Apr 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-speech-dispatcher-0.8-r0.patch, -chromium-27.0.1448.0.ebuild,
  +chromium-27.0.1453.12.ebuild, chromium-9999-r1.ebuild:
  Dev channel bump. Fix build with speech-dispatcher-0.8 (bug #463550 by Denis
  M. "Phr33d0m"). Remove old.

*chromium-27.0.1453.3 (27 Mar 2013)

  27 Mar 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-pnacl-r0.patch, -chromium-27.0.1444.3.ebuild,
  +chromium-27.0.1453.3.ebuild:
  Dev channel bump. Remove old.

*chromium-26.0.1410.43 (27 Mar 2013)

  27 Mar 2013; Mike Gilbert <floppym@gentoo.org> +chromium-26.0.1410.43.ebuild:
  Bump.

*chromium-27.0.1448.0 (23 Mar 2013)

  23 Mar 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-27.0.1438.7.ebuild, +chromium-27.0.1448.0.ebuild,
  chromium-9999-r1.ebuild:
  Dev channel bump. Download a testdata tarball for tests. Optional pulseaudio.
  Remove old.

*chromium-26.0.1410.40 (22 Mar 2013)

  22 Mar 2013; Mike Gilbert <floppym@gentoo.org> +chromium-26.0.1410.40.ebuild,
  -chromium-26.0.1410.28.ebuild:
  Beta channel bump.

*chromium-27.0.1444.3 (19 Mar 2013)

  19 Mar 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-27.0.1430.0.ebuild, +chromium-27.0.1444.3.ebuild,
  chromium-9999-r1.ebuild:
  Dev channel bump. Remove old.

*chromium-26.0.1410.33-r1 (19 Mar 2013)

  19 Mar 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +chromium-26.0.1410.33-r1.ebuild:
  Back to bundled libsrtp (bug #459932 by Andrius Stikonas). USe system libvpx.

  17 Mar 2013; Mike Gilbert <floppym@gentoo.org> files/chromium-launcher-r3.sh:
  Don't set nullglob since that makes it difficult to pass wildcards in
  CHROMIUM_FLAGS. Bug 461864.

*chromium-26.0.1410.33 (14 Mar 2013)

  14 Mar 2013; Mike Gilbert <floppym@gentoo.org> +chromium-26.0.1410.33.ebuild,
  -chromium-26.0.1410.19.ebuild:
  Beta channel bump.

  14 Mar 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-smhasher-r0.patch, chromium-25.0.1364.172.ebuild,
  chromium-26.0.1410.28.ebuild, chromium-27.0.1438.7.ebuild:
  Fix build issues with _mm_crc32_u64, bug #459126 by Nuno.

  13 Mar 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-26.0.1410.28.ebuild, chromium-27.0.1438.7.ebuild,
  chromium-9999-r1.ebuild:
  Fix build with SELinux, bug #460892 by swift.

*chromium-27.0.1438.7 (13 Mar 2013)

  13 Mar 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-27.0.1425.0.ebuild, +chromium-27.0.1438.7.ebuild,
  chromium-9999-r1.ebuild:
  Dev channel bump. Remove old.

*chromium-25.0.1364.172 (13 Mar 2013)

  13 Mar 2013; Mike Gilbert <floppym@gentoo.org> +chromium-25.0.1364.172.ebuild,
  -chromium-25.0.1364.152.ebuild:
  Stable channel bump.

*chromium-26.0.1410.28 (11 Mar 2013)

  11 Mar 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-system-ffmpeg-r2a.patch, -chromium-26.0.1410.12.ebuild,
  +chromium-26.0.1410.28.ebuild:
  Beta channel bump. Update system ffmpeg patch (bug #460846 by floppym).
  Remove old.

  09 Mar 2013; Mike Gilbert <floppym@gentoo.org>
  +files/chromium-jsoncpp-path-r0.patch, chromium-26.0.1410.19.ebuild:
  Backport phajdan's jsoncpp include path patch to M26, bug 452234.

  09 Mar 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-25.0.1364.160.ebuild, chromium-26.0.1410.19.ebuild,
  chromium-27.0.1430.0.ebuild, chromium-9999-r1.ebuild:
  Revert -mno-sse4 change, it breaks systems (reported by tetromino).

  08 Mar 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-25.0.1364.160.ebuild, chromium-26.0.1410.19.ebuild,
  chromium-27.0.1430.0.ebuild, chromium-9999-r1.ebuild:
  Work around a compile issue by using -mno-sse4, bug #459126 by Nuno.

  08 Mar 2013; Agostino Sarubbo <ago@gentoo.org> chromium-25.0.1364.160.ebuild:
  Stable for amd64, wrt bug #460776

  08 Mar 2013; Agostino Sarubbo <ago@gentoo.org> chromium-25.0.1364.160.ebuild:
  Stable for x86, wrt bug #460776

*chromium-25.0.1364.160 (08 Mar 2013)

  08 Mar 2013; Mike Gilbert <floppym@gentoo.org> +chromium-25.0.1364.160.ebuild,
  -chromium-25.0.1364.97.ebuild:
  Stable channel bump.

  07 Mar 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-27.0.1430.0.ebuild, chromium-9999-r1.ebuild, metadata.xml:
  Add experimental system-sqlite flag. Bump required v8 version.

  07 Mar 2013; Mike Gilbert <floppym@gentoo.org> chromium-27.0.1430.0.ebuild,
  chromium-9999-r1.ebuild:
  Add slot operators to live ebuild.

  07 Mar 2013; Mike Gilbert <floppym@gentoo.org> chromium-27.0.1430.0.ebuild:
  Add slot-operators for most library dependencies.

*chromium-27.0.1430.0 (06 Mar 2013)

  06 Mar 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-27.0.1423.0.ebuild, +chromium-27.0.1430.0.ebuild:
  Dev channel bump. Remove old.

  06 Mar 2013; Mike Gilbert <floppym@gentoo.org> chromium-25.0.1364.152.ebuild,
  chromium-26.0.1410.19.ebuild, chromium-27.0.1425.0.ebuild:
  Add slot operator dep for protobuf.

  05 Mar 2013; Agostino Sarubbo <ago@gentoo.org> chromium-25.0.1364.152.ebuild:
  Stable for x86, wrt bug #460318

  05 Mar 2013; Agostino Sarubbo <ago@gentoo.org> chromium-25.0.1364.152.ebuild:
  Stable for amd64, wrt bug #460318

  05 Mar 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-27.0.1425.0.ebuild, chromium-9999-r1.ebuild:
  Enable system ffmpeg by default.

*chromium-25.0.1364.152 (04 Mar 2013)

  04 Mar 2013; Mike Gilbert <floppym@gentoo.org> +chromium-25.0.1364.152.ebuild:
  Stable channel bump. Use bundled libsrtp for bug 459932.

  04 Mar 2013; Mike Gilbert <floppym@gentoo.org> files/chromium-mesa-r0.patch,
  files/chromium-mesa-r1.patch:
  Remove CVS keywords from mesa patches. Thanks to Ben Kohler for reporting on
  bug 455762.

  03 Mar 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-mesa-r0.patch, chromium-26.0.1410.19.ebuild,
  chromium-27.0.1425.0.ebuild, chromium-9999-r1.ebuild,
  +files/chromium-mesa-r1.patch:
  Fix build with mesa-9.1, bug #455762 by Anthony Parsons.

  01 Mar 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-system-ffmpeg-r4.patch:
  Add missing patch, reported by Andrei Frunza.

*chromium-27.0.1425.0 (01 Mar 2013)

  01 Mar 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +chromium-27.0.1425.0.ebuild, chromium-9999-r1.ebuild:
  Dev channel bump. Back to system libvpx.

  01 Mar 2013; Mike Gilbert <floppym@gentoo.org> chromium-26.0.1410.19.ebuild:
  Disable SecurityTest.CallocOverflow for M26, bug 458396.

*chromium-26.0.1410.19 (01 Mar 2013)

  01 Mar 2013; Mike Gilbert <floppym@gentoo.org> +chromium-26.0.1410.19.ebuild,
  +files/chromium-launcher-r3.sh, -chromium-26.0.1410.5.ebuild,
  chromium-27.0.1423.0.ebuild, chromium-9999-r1.ebuild, files/chromium.default:
  Beta channel bump. Modify chromium-launcher to source all files in
  /etc/chromium, bug 459734.

  01 Mar 2013; Mike Gilbert <floppym@gentoo.org>
  -files/chromium-alignment-r0.patch, -files/chromium-arm-r0.patch,
  -files/chromium-bison-2.6-r0.patch, -files/chromium-dbus-glib-r0.patch,
  -files/chromium-expat-r0.patch, -files/chromium-glib-r0.patch,
  -files/chromium-gyp-settings-r0.patch,
  -files/chromium-libyuv-system-libjpeg-r0.patch,
  -files/chromium-media-no-sse-r0.patch,
  -files/chromium-revert-jpeg-swizzle-r2.patch,
  -files/chromium-selinux-r0.patch, -files/chromium-svnversion-r0.patch,
  -files/chromium-system-icu-r0.patch, -files/chromium-system-nspr-r0.patch,
  -files/chromium-system-speex-r0.patch, -files/chromium-tcmalloc-r0.patch,
  -files/chromium-tcmalloc-r1.patch, -files/chromium-unistd-r0.patch,
  -files/chromium-webkit-zlib-r0.patch, -files/chromium-zlib-r0.patch:
  Remove obsolete patches.

  28 Feb 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-26.0.1410.5.ebuild, chromium-26.0.1410.12.ebuild,
  chromium-27.0.1423.0.ebuild:
  Update jsoncpp dependency, bug #452234.

  27 Feb 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-26.0.1410.12.ebuild, chromium-27.0.1423.0.ebuild,
  chromium-9999-r1.ebuild:
  Add QA_FLAGS_IGNORED for Native Client binaries, bug #452066 by Alphat-PC.

*chromium-27.0.1423.0 (27 Feb 2013)

  27 Feb 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-system-ffmpeg-r3.patch, +chromium-27.0.1423.0.ebuild,
  chromium-9999-r1.ebuild:
  Dev channel bump.

*chromium-26.0.1410.12 (26 Feb 2013)

  26 Feb 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-system-ffmpeg-r2.patch, -chromium-26.0.1403.0.ebuild,
  +chromium-26.0.1410.12.ebuild, chromium-9999-r1.ebuild:
  Dev channel bump. Remove old.

  25 Feb 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-26.0.1410.5.ebuild, chromium-9999-r1.ebuild:
  Fixes for ARM, bug #372155. Used parts of Vladimir's patch.

  22 Feb 2013; Agostino Sarubbo <ago@gentoo.org> -chromium-24.0.1312.56.ebuild,
  -chromium-25.0.1364.68.ebuild, -chromium-25.0.1364.84.ebuild:
  Remove old

  22 Feb 2013; Agostino Sarubbo <ago@gentoo.org> chromium-25.0.1364.97.ebuild:
  Stable for x86, wrt bug #458644

  22 Feb 2013; Agostino Sarubbo <ago@gentoo.org> chromium-25.0.1364.97.ebuild:
  Stable for amd64, wrt bug #458644

*chromium-25.0.1364.97 (21 Feb 2013)

  21 Feb 2013; Mike Gilbert <floppym@gentoo.org> +chromium-25.0.1364.97.ebuild:
  Stable channel bump.

*chromium-26.0.1410.5 (18 Feb 2013)

  18 Feb 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-26.0.1384.2.ebuild, -chromium-26.0.1386.0.ebuild,
  +chromium-26.0.1410.5.ebuild, chromium-9999-r1.ebuild:
  Dev channel bump. Remove old. Back to bundled mesa on x86 (bug #457130).

  18 Feb 2013; Mike Gilbert <floppym@gentoo.org> chromium-26.0.1403.0.ebuild,
  chromium-9999-r1.ebuild:
  Add missing PYTHON_DEPS.

  17 Feb 2013; Mike Gilbert <floppym@gentoo.org> chromium-26.0.1403.0.ebuild,
  chromium-9999-r1.ebuild:
  Use python-any-r1 eclass.

  17 Feb 2013; Mike Gilbert <floppym@gentoo.org> chromium-26.0.1403.0.ebuild,
  chromium-9999-r1.ebuild:
  Use the correct values for *.host as suggested by vapier in bug 410883. Move
  tc-export from pkg_setup to src_configure.

*chromium-25.0.1364.84 (15 Feb 2013)

  15 Feb 2013; Mike Gilbert <floppym@gentoo.org> +chromium-25.0.1364.84.ebuild,
  -chromium-25.0.1364.58.ebuild:
  Beta channel bump.

  06 Feb 2013; Mike Gilbert <floppym@gentoo.org> -chromium-24.0.1312.52.ebuild,
  chromium-24.0.1312.56.ebuild:
  Add an upper bound on v8 due to API change. Reported by Mr_Bones_.

*chromium-25.0.1364.68 (06 Feb 2013)

  06 Feb 2013; Mike Gilbert <floppym@gentoo.org> +chromium-25.0.1364.68.ebuild,
  -chromium-25.0.1364.45.ebuild:
  Beta channel bump.

*chromium-26.0.1403.0 (05 Feb 2013)

  05 Feb 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-gpsd-r0.patch, +files/chromium-system-v8-r0.patch,
  +chromium-26.0.1403.0.ebuild, chromium-9999-r1.ebuild:
  Dev channel bump. Back to bundled libvpx and bigger tarball. Use system mesa
  and re2. Add optional support for libgps. Remove old.

*chromium-25.0.1364.58 (31 Jan 2013)

  31 Jan 2013; Mike Gilbert <floppym@gentoo.org> +chromium-25.0.1364.58.ebuild,
  -chromium-25.0.1364.29.ebuild:
  Beta channel bump.

  26 Jan 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-26.0.1386.0.ebuild, chromium-9999-r1.ebuild:
  Always enable support for proprietary codecs.

*chromium-25.0.1364.45 (24 Jan 2013)

  24 Jan 2013; Mike Gilbert <floppym@gentoo.org> +chromium-25.0.1364.45.ebuild,
  -chromium-25.0.1364.26.ebuild:
  Beta channel bump.

  23 Jan 2013; Tomáš Chvátal <scarabeus@gentoo.org> chromium-9999-r1.ebuild:
  Add sublsots from icu to live ebuild.

  23 Jan 2013; Agostino Sarubbo <ago@gentoo.org> chromium-24.0.1312.56.ebuild:
  Stable for x86, wrt bug #453610

  23 Jan 2013; Agostino Sarubbo <ago@gentoo.org> chromium-24.0.1312.56.ebuild:
  Stable for amd64, wrt bug #453610

*chromium-24.0.1312.56 (23 Jan 2013)

  23 Jan 2013; Mike Gilbert <floppym@gentoo.org> +chromium-24.0.1312.56.ebuild:
  Stable channel bump.

*chromium-26.0.1386.0 (20 Jan 2013)

  20 Jan 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-system-nspr-r0.patch, +chromium-26.0.1386.0.ebuild,
  chromium-9999-r1.ebuild:
  Dev channel bump.

  17 Jan 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-system-ffmpeg-r1.patch, chromium-26.0.1384.2.ebuild,
  chromium-9999-r1.ebuild:
  Do not needlessly tar nacl toolchain. More system ffmpeg compatibility.
  Remove more bundled libraries.

*chromium-26.0.1384.2 (16 Jan 2013)

  16 Jan 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +chromium-26.0.1384.2.ebuild, chromium-9999-r1.ebuild:
  Dev channel bump.

*chromium-25.0.1364.29 (15 Jan 2013)

  15 Jan 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-25.0.1364.5.ebuild, +chromium-25.0.1364.29.ebuild:
  Dev channel bump. Remove old.

  14 Jan 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-icu50-tests-r0.patch, chromium-25.0.1364.26.ebuild:
  Fix tests with icu-50, bug #444886 by floppym.

  11 Jan 2013; Agostino Sarubbo <ago@gentoo.org> -chromium-23.0.1271.97.ebuild,
  -chromium-24.0.1312.45.ebuild, -chromium-24.0.1312.49.ebuild:
  Remove old

  11 Jan 2013; Agostino Sarubbo <ago@gentoo.org> chromium-24.0.1312.52.ebuild:
  Stable for x86, wrt bug #451334

  11 Jan 2013; Agostino Sarubbo <ago@gentoo.org> chromium-24.0.1312.52.ebuild:
  Stable for amd64, wrt bug #451334

*chromium-24.0.1312.52 (09 Jan 2013)

  09 Jan 2013; Mike Gilbert <floppym@gentoo.org> +chromium-24.0.1312.52.ebuild:
  Beta channel bump.

*chromium-25.0.1364.26 (09 Jan 2013)

  09 Jan 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-system-opus-r0.patch, -chromium-25.0.1364.2.ebuild,
  +chromium-25.0.1364.26.ebuild, chromium-9999-r1.ebuild:
  Dev channel bump. Fix build with system opus (bug #439884 by Magnus
  Helmersson; patch by Elan Ruusamae). Remove old.

  08 Jan 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org> chromium-9999-r1.ebuild:
  Drop patch applied upstream, bug #450276 by Octavio Ruiz.

*chromium-24.0.1312.49 (07 Jan 2013)

  07 Jan 2013; Mike Gilbert <floppym@gentoo.org> +chromium-24.0.1312.49.ebuild,
  -chromium-24.0.1312.40-r1.ebuild, -chromium-24.0.1312.40.ebuild:
  Beta channel bump.

*chromium-25.0.1364.5 (27 Dec 2012)

  27 Dec 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-25.0.1359.3.ebuild, +chromium-25.0.1364.5.ebuild:
  Dev channel bump. Remove old.

  26 Dec 2012; Mike Gilbert <floppym@gentoo.org> metadata.xml:
  Describe the bindist flag in metadata.

*chromium-25.0.1364.2 (20 Dec 2012)

  20 Dec 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-system-libpng-r0.patch, -chromium-25.0.1354.0.ebuild,
  +chromium-25.0.1364.2.ebuild, chromium-9999-r1.ebuild:
  Dev channel bump. Use a smaller tarball and https for downloads. Remove old.

*chromium-24.0.1312.45 (20 Dec 2012)

  20 Dec 2012; Mike Gilbert <floppym@gentoo.org> +chromium-24.0.1312.45.ebuild,
  -chromium-24.0.1312.35.ebuild:
  Beta channel bump.

*chromium-24.0.1312.40-r1 (17 Dec 2012)

  17 Dec 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +chromium-24.0.1312.40-r1.ebuild:
  Also re-enable nacl (but not pnacl) for 24.x.

*chromium-25.0.1359.3 (15 Dec 2012)

  15 Dec 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-no-pnacl-r0.patch, -chromium-25.0.1349.2.ebuild,
  +chromium-25.0.1359.3.ebuild, chromium-9999-r1.ebuild:
  Dev channel bump. Use system harfbuzz. Re-enable nacl (no pnacl yet). Remove
  old.

  13 Dec 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-24.0.1312.40.ebuild:
  Add Gentoo Google API keys to 24.x so that we can get a better estimate of
  usage and needed quota (and more testing).

*chromium-24.0.1312.40 (13 Dec 2012)

  13 Dec 2012; Mike Gilbert <floppym@gentoo.org> +chromium-24.0.1312.40.ebuild,
  -chromium-23.0.1271.95.ebuild, -chromium-24.0.1312.27.ebuild,
  -chromium-24.0.1312.32.ebuild:
  Beta channel bump.

  12 Dec 2012; Agostino Sarubbo <ago@gentoo.org> chromium-23.0.1271.97.ebuild:
  Stable for x86, wrt bug #446944

  12 Dec 2012; Agostino Sarubbo <ago@gentoo.org> chromium-23.0.1271.97.ebuild:
  Stable for amd64, wrt bug #446944

*chromium-23.0.1271.97 (12 Dec 2012)

  12 Dec 2012; Mike Gilbert <floppym@gentoo.org> +chromium-23.0.1271.97.ebuild,
  -chromium-23.0.1271.91.ebuild:
  Stable channel bump.

*chromium-25.0.1354.0 (12 Dec 2012)

  12 Dec 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-25.0.1323.1.ebuild, +chromium-25.0.1354.0.ebuild,
  chromium-9999-r1.ebuild:
  Dev channel bump. Remove old.

  10 Dec 2012; Mike Gilbert <floppym@gentoo.org> chromium-25.0.1349.2.ebuild,
  chromium-9999-r1.ebuild:
  Move webkit-gtk from RDEPEND to DEPEND since we don't actually install
  anything that uses it (for now).

  10 Dec 2012; Mike Gilbert <floppym@gentoo.org> chromium-25.0.1349.2.ebuild,
  chromium-9999-r1.ebuild:
  Add slot to webkit-gtk dependency, bug 446440.

  09 Dec 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-25.0.1349.2.ebuild, chromium-9999-r1.ebuild:
  Depend on webkit-gtk, bug #446440 by octoploid. Remove unused bundled libva.

*chromium-25.0.1349.2 (08 Dec 2012)

  08 Dec 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +chromium-25.0.1349.2.ebuild, chromium-9999-r1.ebuild:
  Dev channel bump. EAPI 5, slot-operator deps for v8 (bug #436422 by floppym).
  Use system protobuf, bug #350250 by nelchael.

*chromium-24.0.1312.35 (08 Dec 2012)

  08 Dec 2012; Mike Gilbert <floppym@gentoo.org> +chromium-24.0.1312.35.ebuild:
  Beta channel bump.

*chromium-24.0.1312.32 (05 Dec 2012)

  05 Dec 2012; Mike Gilbert <floppym@gentoo.org> +chromium-24.0.1312.32.ebuild,
  -chromium-24.0.1312.14.ebuild, -chromium-24.0.1312.25.ebuild:
  Beta channel bump.

  02 Dec 2012; Samuli Suominen <ssuominen@gentoo.org>
  chromium-23.0.1271.91.ebuild, chromium-23.0.1271.95.ebuild,
  chromium-24.0.1312.14.ebuild, chromium-24.0.1312.25.ebuild,
  chromium-24.0.1312.27.ebuild, chromium-25.0.1323.1.ebuild,
  chromium-9999-r1.ebuild:
  Use virtual/udev instead of sys-fs/udev wrt #444398

  02 Dec 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  files/chromium-system-ffmpeg-r0.patch:
  Fix build with USE="-system-ffmpeg", bug #444432 by victor2008.

*chromium-24.0.1312.27 (30 Nov 2012)

  30 Nov 2012; Mike Gilbert <floppym@gentoo.org> +chromium-24.0.1312.27.ebuild:
  Beta channel bump.

  30 Nov 2012;  <ago@gentoo.org> chromium-23.0.1271.95.ebuild:
  Stable for x86, wrt bug #445246

  30 Nov 2012; <ago@gentoo.org> chromium-23.0.1271.95.ebuild:
  Stable for amd64, wrt bug #445246

*chromium-23.0.1271.95 (30 Nov 2012)

  30 Nov 2012; Mike Gilbert <floppym@gentoo.org> +chromium-23.0.1271.95.ebuild,
  -chromium-23.0.1271.64.ebuild:
  Stable channel bump.

*chromium-24.0.1312.25 (27 Nov 2012)

  27 Nov 2012; Mike Gilbert <floppym@gentoo.org> +chromium-24.0.1312.25.ebuild,
  -chromium-24.0.1312.5.ebuild:
  Beta channel bump. EAPI=5. Add slot-operator dep for v8.

  27 Nov 2012; Agostino Sarubbo <ago@gentoo.org> chromium-23.0.1271.91.ebuild:
  Stable for x86, wrt bug #444826

  27 Nov 2012; Agostino Sarubbo <ago@gentoo.org> chromium-23.0.1271.91.ebuild:
  Stable for amd64, wrt bug #444826

*chromium-23.0.1271.91 (27 Nov 2012)

  27 Nov 2012; Mike Gilbert <floppym@gentoo.org> +chromium-23.0.1271.91.ebuild:
  Stable channel bump.

  26 Nov 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-25.0.1323.1.ebuild, chromium-9999-r1.ebuild:
  Link libpci directly (and depend on it).

  16 Nov 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-system-ffmpeg-r0.patch, chromium-25.0.1323.1.ebuild,
  chromium-9999-r1.ebuild:
  Add experimental support to build wih system ffmpeg.

*chromium-25.0.1323.1 (15 Nov 2012)

  15 Nov 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +chromium-25.0.1323.1.ebuild, chromium-9999-r1.ebuild:
  Dev channel bump. Use system libsrtp (bug #348600 by jlec). Back to bundled
  opus. Use Gentoo-specific Google API keys.

*chromium-24.0.1312.14 (15 Nov 2012)

  15 Nov 2012; Mike Gilbert <floppym@gentoo.org> +chromium-24.0.1312.14.ebuild,
  -chromium-24.0.1312.1.ebuild, -chromium-24.0.1312.2.ebuild:
  Beta channel bump.

*chromium-24.0.1312.5 (08 Nov 2012)

  08 Nov 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-24.0.1305.3.ebuild, +chromium-24.0.1312.5.ebuild:
  Dev channel bump. Remove old.

  07 Nov 2012; Agostino Sarubbo <ago@gentoo.org> -chromium-22.0.1229.94.ebuild,
  -chromium-23.0.1271.40.ebuild, -chromium-23.0.1271.60.ebuild:
  Remove old

  07 Nov 2012; Agostino Sarubbo <ago@gentoo.org> chromium-23.0.1271.64.ebuild:
  Stable for x86, wrt bug #442096

  07 Nov 2012; Agostino Sarubbo <ago@gentoo.org> chromium-23.0.1271.64.ebuild:
  Stable for amd64, wrt bug #442096

*chromium-23.0.1271.64 (07 Nov 2012)

  07 Nov 2012; Mike Gilbert <floppym@gentoo.org> +chromium-23.0.1271.64.ebuild:
  Stable channel bump.

*chromium-24.0.1312.2 (02 Nov 2012)

  02 Nov 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-24.0.1297.0.ebuild, +chromium-24.0.1312.2.ebuild:
  Dev channel bump. Remove old.

*chromium-24.0.1312.1 (02 Nov 2012)

  02 Nov 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-24.0.1284.2.ebuild, +chromium-24.0.1312.1.ebuild,
  chromium-9999-r1.ebuild:
  Dev channel bump. Fix bug #439884 by Magnus Helmersson. Remove old.

*chromium-23.0.1271.60 (31 Oct 2012)

  31 Oct 2012; Mike Gilbert <floppym@gentoo.org> +chromium-23.0.1271.60.ebuild,
  -chromium-23.0.1271.26.ebuild:
  Beta channel bump.

  29 Oct 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-arm-r0.patch, chromium-24.0.1305.3.ebuild,
  chromium-9999-r1.ebuild:
  Experimental ARM fixes. Now compiles on ARM.

*chromium-24.0.1305.3 (25 Oct 2012)

  25 Oct 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +chromium-24.0.1305.3.ebuild, chromium-9999-r1.ebuild:
  Dev channel bump.

*chromium-24.0.1297.0 (17 Oct 2012)

  17 Oct 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +chromium-24.0.1297.0.ebuild, chromium-9999-r1.ebuild:
  Dev channel bump.

*chromium-23.0.1271.40 (17 Oct 2012)

  17 Oct 2012; Mike Gilbert <floppym@gentoo.org> +chromium-23.0.1271.40.ebuild,
  -chromium-23.0.1271.17.ebuild, -chromium-23.0.1271.22.ebuild:
  Beta channel bump.

*chromium-23.0.1271.26 (13 Oct 2012)

  13 Oct 2012; Mike Gilbert <floppym@gentoo.org> +chromium-23.0.1271.26.ebuild:
  Beta channel bump.

  11 Oct 2012; Agostino Sarubbo <ago@gentoo.org> -chromium-22.0.1229.92.ebuild:
  Remove old

  11 Oct 2012; Agostino Sarubbo <ago@gentoo.org> chromium-22.0.1229.94.ebuild:
  Stable for X86, wrt bug #437984

  11 Oct 2012; Agostino Sarubbo <ago@gentoo.org> chromium-22.0.1229.94.ebuild:
  Stable for amd64, wrt bug #437984

  11 Oct 2012; Mike Gilbert <floppym@gentoo.org> -chromium-22.0.1229.79.ebuild,
  -chromium-22.0.1229.91.ebuild:
  Remove old.

*chromium-22.0.1229.94 (11 Oct 2012)

  11 Oct 2012; Mike Gilbert <floppym@gentoo.org> +chromium-22.0.1229.94.ebuild:
  Stable channel bump.

  09 Oct 2012; Agostino Sarubbo <ago@gentoo.org> chromium-22.0.1229.92.ebuild:
  Stable for amd64, wrt bug #437664

  09 Oct 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-22.0.1229.92.ebuild:
  x86 stable wrt security bug #437664

*chromium-23.0.1271.22 (09 Oct 2012)

  09 Oct 2012; Mike Gilbert <floppym@gentoo.org> +chromium-23.0.1271.22.ebuild,
  -chromium-23.0.1271.10-r1.ebuild, -chromium-23.0.1271.10.ebuild:
  Beta channel bump.

*chromium-22.0.1229.92 (09 Oct 2012)

  09 Oct 2012; Mike Gilbert <floppym@gentoo.org> +chromium-22.0.1229.92.ebuild:
  Stable channel bump.

  08 Oct 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-22.0.1229.79.ebuild, chromium-22.0.1229.91.ebuild:
  Skip SpdyFramer tests, bug #436370 by floppym.

  07 Oct 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-22.0.1229.79.ebuild, chromium-22.0.1229.91.ebuild,
  chromium-23.0.1271.17.ebuild, chromium-24.0.1284.2.ebuild,
  chromium-9999-r1.ebuild:
  Add dependency on SELinux policy.

*chromium-23.0.1271.17 (04 Oct 2012)

  04 Oct 2012; Mike Gilbert <floppym@gentoo.org> +chromium-23.0.1271.17.ebuild:
  Beta channel bump.

  03 Oct 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-22.0.1229.79.ebuild, chromium-22.0.1229.91.ebuild,
  chromium-23.0.1271.10-r1.ebuild, chromium-24.0.1284.2.ebuild,
  chromium-9999-r1.ebuild:
  Add explicit dependency on dbus, bug #434346 by Hans.

*chromium-24.0.1284.2 (03 Oct 2012)

  03 Oct 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +chromium-24.0.1284.2.ebuild, chromium-9999-r1.ebuild:
  Dev channel bump. NaCl disabled again (pnacl-related build failures).

*chromium-23.0.1271.10-r1 (02 Oct 2012)

  02 Oct 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-system-speex-r0.patch, -chromium-23.0.1271.6.ebuild,
  +chromium-23.0.1271.10-r1.ebuild, chromium-9999-r1.ebuild:
  Re-enable NaCl. Build with system speex (bug #432748 by floppym). Remove old.

*chromium-23.0.1271.10 (28 Sep 2012)

  28 Sep 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-23.0.1271.1.ebuild, +chromium-23.0.1271.10.ebuild,
  chromium-9999-r1.ebuild, metadata.xml:
  Dev channel bump. Add experimental tcmalloc USE flag. Remove old.

*chromium-23.0.1271.6 (27 Sep 2012)

  27 Sep 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-dbus-glib-r0.patch, -chromium-23.0.1262.0.ebuild,
  +chromium-23.0.1271.6.ebuild, chromium-9999-r1.ebuild,
  +files/chromium-system-icu-r0.patch:
  Dev channel bump. Drop unneeded dependency on dbus-glib, bug #434346 by Hans.
  Remove old.

*chromium-22.0.1229.91 (27 Sep 2012)

  27 Sep 2012; Mike Gilbert <floppym@gentoo.org> +chromium-22.0.1229.91.ebuild:
  Beta channel bump.

  26 Sep 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-22.0.1229.79.ebuild:
  Skip ChunkDemuxerTest.TestDurationChangeTimestampOffset, bug #431042.

  26 Sep 2012; Agostino Sarubbo <ago@gentoo.org> -chromium-21.0.1180.89.ebuild,
  -chromium-22.0.1229.64.ebuild:
  Remove old

  26 Sep 2012; Agostino Sarubbo <ago@gentoo.org> chromium-22.0.1229.79.ebuild:
  Stable for x86, wrt bug #436234

  26 Sep 2012; Agostino Sarubbo <ago@gentoo.org> chromium-22.0.1229.79.ebuild:
  Stable for amd64, wrt bug #436234

*chromium-22.0.1229.79 (25 Sep 2012)

  25 Sep 2012; Mike Gilbert <floppym@gentoo.org> +chromium-22.0.1229.79.ebuild,
  -chromium-22.0.1229.56.ebuild:
  Stable channel bump.

*chromium-23.0.1271.1 (23 Sep 2012)

  23 Sep 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-23.0.1255.0.ebuild, +chromium-23.0.1271.1.ebuild,
  chromium-9999-r1.ebuild:
  Dev channel bump. Temporarily disable NaCl (build failures). Skip some tests
  (bug #426630 by marienz). Remove old.

*chromium-22.0.1229.64 (22 Sep 2012)

  22 Sep 2012; Mike Gilbert <floppym@gentoo.org> +chromium-22.0.1229.64.ebuild,
  -chromium-22.0.1229.52.ebuild:
  Beta channel bump.

*chromium-22.0.1229.56 (15 Sep 2012)

  15 Sep 2012; Mike Gilbert <floppym@gentoo.org> +chromium-22.0.1229.56.ebuild,
  -chromium-22.0.1229.39.ebuild:
  Beta channel bump.

*chromium-22.0.1229.52 (13 Sep 2012)

  13 Sep 2012; Mike Gilbert <floppym@gentoo.org> +chromium-22.0.1229.52.ebuild,
  -chromium-22.0.1229.36.ebuild:
  Beta channel bump.

*chromium-23.0.1262.0 (12 Sep 2012)

  12 Sep 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-22.0.1229.26.ebuild, -chromium-23.0.1251.2.ebuild,
  +chromium-23.0.1262.0.ebuild, chromium-9999-r1.ebuild:
  Dev channel bump. Remove old.

*chromium-22.0.1229.39 (08 Sep 2012)

  08 Sep 2012; Mike Gilbert <floppym@gentoo.org> +chromium-22.0.1229.39.ebuild,
  -chromium-22.0.1229.14.ebuild:
  Beta channel bump.

*chromium-22.0.1229.36 (07 Sep 2012)

  07 Sep 2012; Mike Gilbert <floppym@gentoo.org> +chromium-22.0.1229.36.ebuild:
  Beta channel bump. Bundles zlib.

*chromium-23.0.1255.0 (05 Sep 2012)

  05 Sep 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-23.0.1246.0.ebuild, +chromium-23.0.1255.0.ebuild:
  Dev channel bump. Remove old.

  02 Sep 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-21.0.1180.57.ebuild, -chromium-21.0.1180.81.ebuild,
  chromium-21.0.1180.89.ebuild, -chromium-22.0.1229.12.ebuild:
  x86 stable wrt security bug #433551. Remove old.

  01 Sep 2012; Agostino Sarubbo <ago@gentoo.org> chromium-21.0.1180.89.ebuild:
  Stable for amd64, wrt bug #433551

*chromium-23.0.1251.2 (01 Sep 2012)

  01 Sep 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-23.0.1243.2.ebuild, +chromium-23.0.1251.2.ebuild,
  chromium-9999-r1.ebuild:
  Version bump for dev channel release. Incomplete fixes for arm. Remove old.

*chromium-21.0.1180.89 (31 Aug 2012)

  31 Aug 2012; Mike Gilbert <floppym@gentoo.org> +chromium-21.0.1180.89.ebuild:
  Version bump for stable channel release. Fails gpu_unittests.

*chromium-22.0.1229.26 (30 Aug 2012)

  30 Aug 2012; Mike Gilbert <floppym@gentoo.org> +chromium-22.0.1229.26.ebuild:
  Version bump for beta channel release.

*chromium-23.0.1246.0 (28 Aug 2012)

  28 Aug 2012; Mike Gilbert <floppym@gentoo.org> +chromium-23.0.1246.0.ebuild,
  chromium-9999-r1.ebuild:
  Version bump for dev channel release.

*chromium-23.0.1243.2 (25 Aug 2012)

  25 Aug 2012; Mike Gilbert <floppym@gentoo.org> +chromium-23.0.1243.2.ebuild,
  chromium-9999-r1.ebuild:
  Version bump for dev channel release. New bundled javascript library "flot".
  Use bundled speex (bug 432748). Use bundled zlib (bug 432746).

*chromium-22.0.1229.14 (23 Aug 2012)

  23 Aug 2012; Mike Gilbert <floppym@gentoo.org> +chromium-22.0.1229.14.ebuild,
  -chromium-21.0.1180.77-r1.ebuild, -chromium-21.0.1180.77.ebuild,
  -chromium-22.0.1229.8.ebuild:
  Version bump for beta channel release.

*chromium-22.0.1229.12 (21 Aug 2012)

  21 Aug 2012; Mike Gilbert <floppym@gentoo.org> +chromium-22.0.1229.12.ebuild,
  -chromium-22.0.1229.6.ebuild:
  Version bump for dev channel release.

*chromium-21.0.1180.81 (17 Aug 2012)

  17 Aug 2012; Mike Gilbert <floppym@gentoo.org> +chromium-21.0.1180.81.ebuild,
  -chromium-21.0.1180.75.ebuild:
  Version bump for beta channel release.

*chromium-22.0.1229.8 (17 Aug 2012)

  17 Aug 2012; Mike Gilbert <floppym@gentoo.org> +chromium-22.0.1229.8.ebuild,
  -chromium-22.0.1229.2-r1.ebuild, -chromium-22.0.1229.2.ebuild:
  Version bump for dev channel release.

  16 Aug 2012; Mike Gilbert <floppym@gentoo.org> chromium-22.0.1229.6.ebuild,
  chromium-9999-r1.ebuild:
  Array elements undergo file glob expansion; quote them to avoid this.

*chromium-22.0.1229.6 (16 Aug 2012)

  16 Aug 2012; Mike Gilbert <floppym@gentoo.org> +chromium-22.0.1229.6.ebuild,
  -chromium-22.0.1229.0.ebuild:
  Version bump for dev channel release.

  16 Aug 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-22.0.1229.2-r1.ebuild, chromium-9999-r1.ebuild:
  Use bash arrays so that comments about excluded tests can be inline.

  13 Aug 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-21.0.1180.57.ebuild, chromium-21.0.1180.77-r1.ebuild,
  chromium-22.0.1229.2-r1.ebuild, chromium-9999-r1.ebuild:
  Update dependency on elfutils, bug #431162 by Honza.

  13 Aug 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +chromium-21.0.1180.57.ebuild:
  Restore stable ebuild, was removed by mistake.

*chromium-22.0.1229.2-r1 (13 Aug 2012)
*chromium-21.0.1180.77-r1 (13 Aug 2012)

  13 Aug 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-21.0.1180.57.ebuild, +chromium-21.0.1180.77-r1.ebuild,
  -chromium-22.0.1221.1.ebuild, +chromium-22.0.1229.2-r1.ebuild,
  chromium-9999-r1.ebuild:
  Use system libwebp. Link gsettings directly instead of using dlopen. Remove
  old.

*chromium-22.0.1229.2 (10 Aug 2012)
*chromium-21.0.1180.77 (10 Aug 2012)

  10 Aug 2012; Mike Gilbert <floppym@gentoo.org> +chromium-21.0.1180.77.ebuild,
  +chromium-22.0.1229.2.ebuild, -chromium-21.0.1180.64.ebuild:
  Version bumps for beta and dev channels.

*chromium-22.0.1229.0 (08 Aug 2012)

  08 Aug 2012; Mike Gilbert <floppym@gentoo.org> +chromium-22.0.1229.0.ebuild,
  -chromium-22.0.1215.0.ebuild, chromium-9999-r1.ebuild:
  Version bump for dev channel release.

*chromium-21.0.1180.75 (08 Aug 2012)

  08 Aug 2012; Mike Gilbert <floppym@gentoo.org> +chromium-21.0.1180.75.ebuild:
  Version bump for beta channel release.

*chromium-21.0.1180.64 (06 Aug 2012)

  06 Aug 2012; Mike Gilbert <floppym@gentoo.org> +chromium-21.0.1180.64.ebuild:
  Version bump for beta channel release.

  03 Aug 2012; Agostino Sarubbo <ago@gentoo.org> -chromium-20.0.1132.57.ebuild:
  Remove old

  03 Aug 2012; Richard Freeman <rich0@gentoo.org> chromium-21.0.1180.57.ebuild:
  x86 stable - 429174

*chromium-22.0.1221.1 (02 Aug 2012)

  02 Aug 2012; Mike Gilbert <floppym@gentoo.org> +chromium-22.0.1221.1.ebuild,
  -chromium-22.0.1207.1.ebuild:
  Version bump for dev channel release. This version builds with gcc-4.7.1,
  resolving bug 412615.

  01 Aug 2012; Agostino Sarubbo <ago@gentoo.org> chromium-21.0.1180.57.ebuild:
  Stable for AMD64, wrt bug #429174

  01 Aug 2012; Mike Gilbert <floppym@gentoo.org> chromium-21.0.1180.57.ebuild:
  Apply bison fix here as well.

  01 Aug 2012; Mike Gilbert <floppym@gentoo.org>
  +files/chromium-bison-2.6-r0.patch, chromium-22.0.1215.0.ebuild:
  Fix build with bison-2.6, bug 427438 by Mark Nowiasz.

*chromium-21.0.1180.57 (31 Jul 2012)

  31 Jul 2012; Mike Gilbert <floppym@gentoo.org> +chromium-21.0.1180.57.ebuild,
  -chromium-21.0.1180.49.ebuild, -chromium-21.0.1180.55.ebuild:
  Version bump for stable channel release.

*chromium-21.0.1180.55 (26 Jul 2012)

  26 Jul 2012; Mike Gilbert <floppym@gentoo.org> +chromium-21.0.1180.55.ebuild,
  -chromium-21.0.1180.41.ebuild, -chromium-22.0.1201.0.ebuild:
  Version bump for beta channel release.

*chromium-22.0.1215.0 (24 Jul 2012)

  24 Jul 2012; Mike Gilbert <floppym@gentoo.org> +chromium-22.0.1215.0.ebuild,
  +files/chromium-libyuv-system-libjpeg-r0.patch, chromium-9999-r1.ebuild:
  Version bump for dev channel release.

  22 Jul 2012; Mike Gilbert <floppym@gentoo.org> chromium-20.0.1132.57.ebuild,
  chromium-21.0.1180.41.ebuild, chromium-21.0.1180.49.ebuild,
  chromium-22.0.1201.0.ebuild, chromium-22.0.1207.1.ebuild:
  Depend on <sys-devel/bison-2.6 to work around bug 427438.

*chromium-21.0.1180.49 (19 Jul 2012)

  19 Jul 2012; Mike Gilbert <floppym@gentoo.org> +chromium-21.0.1180.49.ebuild,
  -chromium-21.0.1180.11.ebuild:
  Version bump for beta channel release.

  17 Jul 2012; Mike Gilbert <floppym@gentoo.org> -chromium-20.0.1132.43.ebuild:
  Remove old.

  17 Jul 2012; Jeff Horelick <jdhore@gentoo.org> chromium-20.0.1132.57.ebuild:
  marked x86 per bug 426204

*chromium-22.0.1207.1 (17 Jul 2012)

  17 Jul 2012; Mike Gilbert <floppym@gentoo.org> +chromium-22.0.1207.1.ebuild,
  chromium-9999-r1.ebuild:
  Version bump for dev channel release.

*chromium-21.0.1180.41 (13 Jul 2012)

  13 Jul 2012; Mike Gilbert <floppym@gentoo.org> +chromium-21.0.1180.41.ebuild,
  -chromium-21.0.1180.0.ebuild:
  Version bump for beta channel release.

  12 Jul 2012; Richard Freeman <rich0@gentoo.org> chromium-20.0.1132.57.ebuild:
  amd64 stable - 426204

*chromium-20.0.1132.57 (11 Jul 2012)

  11 Jul 2012; Mike Gilbert <floppym@gentoo.org> +chromium-20.0.1132.57.ebuild:
  Version bump for stable channel release.

  11 Jul 2012; Mike Gilbert <floppym@gentoo.org> chromium-9999-r1.ebuild:
  Populate LASTCHANGE directly. Bug 422923 by Joe Kappus.

*chromium-22.0.1201.0 (11 Jul 2012)

  11 Jul 2012; Mike Gilbert <floppym@gentoo.org> +chromium-22.0.1201.0.ebuild,
  chromium-9999-r1.ebuild:
  Version bump for dev channel release. Resolve bug 424023 by Mathieu Zhang.

  11 Jul 2012; Mike Gilbert <floppym@gentoo.org>
  files/chromium-alignment-r0.patch:
  Convert to UNIX line endings, bug 425632 by Igor Franchuck.

  28 Jun 2012; Agostino Sarubbo <ago@gentoo.org> -chromium-19.0.1084.52.ebuild,
  -chromium-19.0.1084.56-r1.ebuild, -chromium-20.0.1132.42.ebuild:
  Remove old

  28 Jun 2012; Agostino Sarubbo <ago@gentoo.org> chromium-20.0.1132.43.ebuild:
  Stable for X86, wrt bug #423719

  27 Jun 2012; Richard Freeman <rich0@gentoo.org> chromium-20.0.1132.43.ebuild:
  amd64 stable - 423719

*chromium-20.0.1132.43 (26 Jun 2012)
*chromium-21.0.1180.11 (26 Jun 2012)

  26 Jun 2012; Mike Gilbert <floppym@gentoo.org> +chromium-20.0.1132.43.ebuild,
  +chromium-21.0.1180.11.ebuild, -chromium-20.0.1132.39.ebuild,
  -chromium-21.0.1171.0.ebuild:
  Version bumps for beta and dev channel releases.

*chromium-20.0.1132.42 (23 Jun 2012)

  23 Jun 2012; Mike Gilbert <floppym@gentoo.org> +chromium-20.0.1132.42.ebuild,
  -chromium-20.0.1132.34.ebuild:
  Version bump for beta channel release.

*chromium-20.0.1132.39 (21 Jun 2012)

  21 Jun 2012; Mike Gilbert <floppym@gentoo.org> +chromium-20.0.1132.39.ebuild,
  -chromium-20.0.1132.27-r1.ebuild:
  Version bump for beta channel release.

*chromium-21.0.1180.0 (20 Jun 2012)

  20 Jun 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-19.0.1084.56.ebuild, -chromium-20.0.1132.27.ebuild,
  -chromium-21.0.1163.0.ebuild, +chromium-21.0.1180.0.ebuild,
  chromium-9999-r1.ebuild:
  Dev channel bump. Remove old.

*chromium-20.0.1132.34 (14 Jun 2012)

  14 Jun 2012; Mike Gilbert <floppym@gentoo.org> +chromium-20.0.1132.34.ebuild:
  Version bump for beta channel release.

*chromium-21.0.1171.0 (12 Jun 2012)

  12 Jun 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-ppapi-r0.patch, -chromium-21.0.1155.2.ebuild,
  +chromium-21.0.1171.0.ebuild, chromium-9999-r1.ebuild:
  Version bump for dev channel release. Remove old.

*chromium-20.0.1132.27-r1 (09 Jun 2012)
*chromium-19.0.1084.56-r1 (09 Jun 2012)

  09 Jun 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-alignment-r0.patch, +chromium-19.0.1084.56-r1.ebuild,
  -chromium-20.0.1132.21.ebuild, +chromium-20.0.1132.27-r1.ebuild:
  Backport upstream crash fix, bug #420357 by Bkmz.

  09 Jun 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-19.0.1084.52.ebuild, chromium-19.0.1084.56.ebuild,
  chromium-20.0.1132.21.ebuild, chromium-20.0.1132.27.ebuild,
  chromium-21.0.1155.2.ebuild, chromium-21.0.1163.0.ebuild,
  chromium-9999-r1.ebuild:
  Use einfo instead of elog to display V8 version. Bug #419397 by pacho.

*chromium-19.0.1084.56 (09 Jun 2012)

  09 Jun 2012; Mike Gilbert <floppym@gentoo.org> +chromium-19.0.1084.56.ebuild:
  Version bump for stable channel release.

*chromium-21.0.1163.0 (08 Jun 2012)

  08 Jun 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-21.0.1145.0-r1.ebuild, +chromium-21.0.1163.0.ebuild:
  Version bump for dev channel release. Remove old.

*chromium-20.0.1132.27 (07 Jun 2012)

  07 Jun 2012; Mike Gilbert <floppym@gentoo.org> +chromium-20.0.1132.27.ebuild,
  -chromium-20.0.1132.17.ebuild:
  Version bump for beta channel release.

  03 Jun 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-expat-r0.patch, chromium-21.0.1155.2.ebuild:
  Remove bundled copy of expat, bug #384773 by Julien Sanchez.

*chromium-20.0.1132.21 (31 May 2012)

  31 May 2012; Mike Gilbert <floppym@gentoo.org> +chromium-20.0.1132.21.ebuild,
  -chromium-20.0.1132.11.ebuild:
  Version bump for beta channel release.

*chromium-21.0.1155.2 (30 May 2012)

  30 May 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-21.0.1145.0.ebuild, +chromium-21.0.1155.2.ebuild,
  chromium-9999-r1.ebuild:
  Version bump for dev channel release. Remove old.

*chromium-21.0.1145.0-r1 (27 May 2012)

  27 May 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +chromium-21.0.1145.0-r1.ebuild, chromium-9999-r1.ebuild:
  Re-enable Native Client (bug #417019 by Julien Sanchez, solution by Egor
  Pasko from Google). Also build and run sql_unittests.

  26 May 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-19.0.1084.46-r2.ebuild, chromium-19.0.1084.52.ebuild:
  x86 stable wrt security bug #417321. Remove old.

*chromium-20.0.1132.17 (25 May 2012)

  25 May 2012; Mike Gilbert <floppym@gentoo.org> +chromium-20.0.1132.17.ebuild,
  -chromium-20.0.1132.8.ebuild:
  Version bump for beta channel release.

  24 May 2012; Richard Freeman <rich0@gentoo.org> chromium-19.0.1084.52.ebuild:
  amd64 stable - 417321

*chromium-19.0.1084.52 (23 May 2012)

  23 May 2012; Mike Gilbert <floppym@gentoo.org> +chromium-19.0.1084.52.ebuild:
  Version bump for stable channel release.

  23 May 2012; Mike Gilbert <floppym@gentoo.org> chromium-21.0.1145.0.ebuild,
  chromium-9999-r1.ebuild:
  Define OF macro in minizip headers instead of each individual source file. Bug
  417219 by jlec.

*chromium-21.0.1145.0 (22 May 2012)

  22 May 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-zlib-r0.patch, +chromium-21.0.1145.0.ebuild,
  chromium-9999-r1.ebuild:
  Version bump for dev channel release. Use system libusb (bug #413251 by
  Julien Sanchez). Temporarily disable NaCl (bug #417019 by Julien Sanchez).

*chromium-20.0.1132.11 (21 May 2012)

  21 May 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-20.0.1132.3.ebuild, +chromium-20.0.1132.11.ebuild,
  chromium-9999-r1.ebuild:
  Version bump for dev channel release. Fix bug #416393 by Alexander E.
  Patrakov. Remove old.

  19 May 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-20.0.1132.8.ebuild, chromium-9999-r1.ebuild:
  Remove more bundled code.

  19 May 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-19.0.1084.46-r1.ebuild, chromium-19.0.1084.46-r2.ebuild:
  Roll stable keywords. Remove old.

*chromium-19.0.1084.46-r2 (19 May 2012)

  19 May 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  files/chromium-tcmalloc-r1.patch, +chromium-19.0.1084.46-r2.ebuild:
  Backport fix for bug #413637 correctly.

  19 May 2012; Agostino Sarubbo <ago@gentoo.org> -chromium-18.0.1025.168.ebuild,
  -chromium-19.0.1084.46.ebuild:
  Remove old

  19 May 2012; Agostino Sarubbo <ago@gentoo.org>
  chromium-19.0.1084.46-r1.ebuild:
  Stable for amd64, wrt bug #416119

  17 May 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-tcmalloc-r1.patch, chromium-19.0.1084.46-r1.ebuild:
  Add missing patch and stabilize 19.x with fixed bug #413637 on x86.

*chromium-19.0.1084.46-r1 (17 May 2012)

  17 May 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-19.0.1084.41.ebuild, +chromium-19.0.1084.46-r1.ebuild:
  Also apply the fix for bug #413637 to 19.x. Remove old.

*chromium-20.0.1132.8 (16 May 2012)

  16 May 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-tcmalloc-r0.patch, -chromium-20.0.1130.1.ebuild,
  +chromium-20.0.1132.8.ebuild, chromium-9999-r1.ebuild:
  Version bump for dev channel release. Disable tcmalloc (fixes bug #413637 by
  Paul Volkov; helpful feedback by Julien Sanchez, Mike Gilbert, Gerard Neil,
  and especially Ambroz Bizjak who suggested the fix). Remove old.

  15 May 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-19.0.1084.46.ebuild:
  x86 stable wrt security bug #416119

  15 May 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-unistd-r0.patch, chromium-19.0.1084.46.ebuild,
  chromium-20.0.1132.3.ebuild:
  Backport upstream patch to fix bug #415601 by Baptiste Wicht.

*chromium-20.0.1132.3 (14 May 2012)

  14 May 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-20.0.1123.4.ebuild, +chromium-20.0.1132.3.ebuild,
  chromium-9999-r1.ebuild:
  Version bump for dev channel release. Remove old.

*chromium-19.0.1084.46 (10 May 2012)

  10 May 2012; Mike Gilbert <floppym@gentoo.org> +chromium-19.0.1084.46.ebuild,
  -chromium-19.0.1084.36.ebuild:
  Version bump for beta channel release.

*chromium-20.0.1130.1 (09 May 2012)

  09 May 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-20.0.1123.2.ebuild, +chromium-20.0.1130.1.ebuild,
  chromium-9999-r1.ebuild:
  Version bump for dev channel release. Remove old.

  07 May 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-18.0.1025.168.ebuild:
  Fix 18.x dependencies, noticed by floppym and Arfrever.

  07 May 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-18.0.1025.168.ebuild, chromium-19.0.1084.36.ebuild,
  chromium-19.0.1084.41.ebuild, chromium-20.0.1123.2.ebuild,
  chromium-20.0.1123.4.ebuild, chromium-9999-r1.ebuild:
  Adjust dependencies for fixed dev-libs/icu (bug #410777 by biohazrd). Thanks
  to Heiko Przybyl for finding relevant ICU bug report and patch, Arfrever
  Frehtes Taifersar Arahesis for providing updated dev-libs/icu ebuild, Markos
  Chandras for committing the icu ebuild, Mike Gilbert (floppym) for initial
  bug response and testing the fix.

*chromium-20.0.1123.4 (05 May 2012)

  05 May 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-svnversion-r0.patch, -chromium-20.0.1115.1.ebuild,
  +chromium-20.0.1123.4.ebuild, chromium-9999-r1.ebuild:
  Version bump for dev channel release. Fix build when subversion is not
  installed. Ebuild cleanups. Remove old.

*chromium-20.0.1123.2 (03 May 2012)

  03 May 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-18.0.1025.151.ebuild, -chromium-18.0.1025.162.ebuild,
  -chromium-20.0.1105.0.ebuild, +chromium-20.0.1123.2.ebuild:
  Version bump for dev channel release. Remove old.

  03 May 2012; Jeff Horelick <jdhore@gentoo.org> chromium-18.0.1025.151.ebuild,
  chromium-18.0.1025.162.ebuild, chromium-18.0.1025.168.ebuild,
  chromium-19.0.1084.36.ebuild, chromium-19.0.1084.41.ebuild,
  chromium-20.0.1105.0.ebuild, chromium-20.0.1115.1.ebuild,
  chromium-9999-r1.ebuild:
  dev-util/pkgconfig -> virtual/pkgconfig

*chromium-19.0.1084.41 (03 May 2012)

  03 May 2012; Mike Gilbert <floppym@gentoo.org> +chromium-19.0.1084.41.ebuild,
  -chromium-19.0.1084.30.ebuild:
  Version bump for beta channel release.

  02 May 2012; Agostino Sarubbo <ago@gentoo.org> chromium-18.0.1025.168.ebuild:
  Stable for X86, wrt bug #414199

  01 May 2012; Agostino Sarubbo <ago@gentoo.org> chromium-18.0.1025.168.ebuild:
  Stable for AMD64, wrt bug #414199

*chromium-18.0.1025.168 (01 May 2012)

  01 May 2012; Mike Gilbert <floppym@gentoo.org> +chromium-18.0.1025.168.ebuild:
  Version bump for stable channel release.

*chromium-20.0.1115.1 (26 Apr 2012)

  26 Apr 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-20.0.1096.1.ebuild, +chromium-20.0.1115.1.ebuild,
  chromium-9999-r1.ebuild:
  Version bump for dev channel release. Add ftp mime handling (bug #412185 by
  pacho). Temporarily allow bundled libusb (bug #413251 by Julien Sanchez).

*chromium-19.0.1084.36 (26 Apr 2012)

  26 Apr 2012; Mike Gilbert <floppym@gentoo.org> +chromium-19.0.1084.36.ebuild,
  -chromium-19.0.1084.24.ebuild:
  Version bump for beta channel bump.

  23 Apr 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> chromium-9999-r1.ebuild:
  Apply the latest two updates to the live ebuild.

  22 Apr 2012; Mike Gilbert <floppym@gentoo.org> chromium-19.0.1084.24.ebuild,
  chromium-19.0.1084.30.ebuild, chromium-20.0.1096.1.ebuild,
  chromium-20.0.1105.0.ebuild:
  Depend on <dev-libs/icu-49 in beta and dev channel.

  22 Apr 2012; Mike Gilbert <floppym@gentoo.org> chromium-20.0.1105.0.ebuild:
  Update v8 dependency per bug 413127.

*chromium-19.0.1084.30 (19 Apr 2012)

  19 Apr 2012; Mike Gilbert <floppym@gentoo.org> +chromium-19.0.1084.30.ebuild,
  -chromium-19.0.1084.15.ebuild:
  Version bump for beta channel release.

*chromium-20.0.1105.0 (18 Apr 2012)

  18 Apr 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +chromium-20.0.1105.0.ebuild:
  Version bump for dev channel release.

*chromium-19.0.1084.24 (14 Apr 2012)

  14 Apr 2012; Mike Gilbert <floppym@gentoo.org> +chromium-19.0.1084.24.ebuild,
  -chromium-19.0.1084.1.ebuild:
  Version bump for beta channel release.

*chromium-18.0.1025.162 (13 Apr 2012)

  13 Apr 2012; Mike Gilbert <floppym@gentoo.org> +chromium-18.0.1025.162.ebuild:
  Version bump for stable channel release.

  11 Apr 2012; Mike Gilbert <floppym@gentoo.org> -files/chromium-cups-r0.patch,
  -files/chromium-dev-shm-r0.patch, -files/chromium-icu-compatibility-r0.patch,
  -files/chromium-kerberos-r0.patch,
  -files/chromium-revert-jpeg-swizzle-r0.patch,
  -files/chromium-revert-jpeg-swizzle-r1.patch,
  -files/chromium-system-libevent-r0.patch, -files/extract_v8_version.py,
  -files/nacl.gypi:
  Remove unused files.

*chromium-20.0.1096.1 (11 Apr 2012)

  11 Apr 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-selinux-r0.patch, +chromium-20.0.1096.1.ebuild,
  chromium-9999-r1.ebuild:
  Version bump for dev channel release. Experimental SELinux sandbox support
  (no policy yet).

*chromium-19.0.1084.15 (10 Apr 2012)

  10 Apr 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-18.0.1025.142.ebuild, -chromium-19.0.1081.2.ebuild,
  +chromium-19.0.1084.15.ebuild, chromium-9999-r1.ebuild:
  Version bump for dev channel release. Attempt to fix bug #410883 by Str4nger.
  Remove old.

  07 Apr 2012; Andreas Schuerch <nativemad@gentoo.org>
  chromium-18.0.1025.151.ebuild:
  x86 stable, see bug 410963

  05 Apr 2012; Richard Freeman <rich0@gentoo.org>
  chromium-18.0.1025.151.ebuild:
  amd64 stable - 410963

*chromium-18.0.1025.151 (05 Apr 2012)

  05 Apr 2012; Mike Gilbert <floppym@gentoo.org> +chromium-18.0.1025.151.ebuild:
  Version bump for stable channel release.

  04 Apr 2012; Mike Gilbert <floppym@gentoo.org> -chromium-17.0.963.83.ebuild,
  -chromium-18.0.1025.140.ebuild, chromium-18.0.1025.142.ebuild:
  Depend on <dev-libs/icu-49 for bug 410777. Remove old.

*chromium-19.0.1084.1 (02 Apr 2012)

  02 Apr 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-19.0.1077.3.ebuild, +chromium-19.0.1084.1.ebuild:
  Version bump for dev channel release.

  01 Apr 2012; Mike Gilbert <floppym@gentoo.org> chromium-18.0.1025.140.ebuild,
  chromium-18.0.1025.142.ebuild, chromium-19.0.1077.3.ebuild,
  chromium-19.0.1081.2.ebuild, chromium-9999-r1.ebuild:
  Fix typo in death hook check.

*chromium-19.0.1081.2 (29 Mar 2012)

  29 Mar 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-19.0.1068.1.ebuild, +chromium-19.0.1081.2.ebuild,
  chromium-9999-r1.ebuild:
  Version bump for dev channel release. Remove old.

  28 Mar 2012; Richard Freeman <rich0@gentoo.org>
  chromium-18.0.1025.142.ebuild:
  amd64 stable - 410045

  28 Mar 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-18.0.1025.142.ebuild:
  x86 stable wrt security bug #410045.

*chromium-18.0.1025.142 (28 Mar 2012)

  28 Mar 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-17.0.963.79.ebuild, -chromium-18.0.1025.113.ebuild,
  +chromium-18.0.1025.142.ebuild:
  Version bump for stable channel release. Remove old.

*chromium-18.0.1025.140 (27 Mar 2012)

  27 Mar 2012; Mike Gilbert <floppym@gentoo.org> +chromium-18.0.1025.140.ebuild,
  -chromium-18.0.1025.108.ebuild:
  Version bump for beta channel release.

*chromium-19.0.1077.3 (24 Mar 2012)

  24 Mar 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-19.0.1068.0.ebuild, +chromium-19.0.1077.3.ebuild:
  Version bump for dev channel release. Remove old.

  23 Mar 2012; Mike Gilbert <floppym@gentoo.org> chromium-18.0.1025.108.ebuild,
  chromium-18.0.1025.113.ebuild, chromium-19.0.1068.0.ebuild,
  chromium-19.0.1068.1.ebuild, chromium-9999-r1.ebuild:
  Move IUSE=custom-cflags to chromium.eclass.

  23 Mar 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-17.0.963.83.ebuild:
  x86 stable wrt security bug #409251

  22 Mar 2012; Richard Freeman <rich0@gentoo.org> chromium-17.0.963.83.ebuild:
  amd64 stable - 409251

*chromium-17.0.963.83 (22 Mar 2012)

  22 Mar 2012; Mike Gilbert <floppym@gentoo.org> +chromium-17.0.963.83.ebuild:
  Version bump for stable channel release.

*chromium-18.0.1025.113 (19 Mar 2012)

  19 Mar 2012; Mike Gilbert <floppym@gentoo.org> +chromium-18.0.1025.113.ebuild,
  -chromium-18.0.1025.100.ebuild:
  Version bump for beta channel release.

*chromium-18.0.1025.108 (17 Mar 2012)

  17 Mar 2012; Mike Gilbert <floppym@gentoo.org> +chromium-18.0.1025.108.ebuild,
  -chromium-18.0.1025.58.ebuild:
  Version bump for beta channel release.

*chromium-19.0.1068.1 (16 Mar 2012)

  16 Mar 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-19.0.1061.1.ebuild, +chromium-19.0.1068.1.ebuild:
  Version bump for dev channel release. Remove old.

*chromium-18.0.1025.100 (16 Mar 2012)

  16 Mar 2012; Mike Gilbert <floppym@gentoo.org> +chromium-18.0.1025.100.ebuild,
  -chromium-18.0.1025.54.ebuild, -chromium-18.0.1025.56.ebuild:
  Version bump for beta channel release.

*chromium-18.0.1025.58 (15 Mar 2012)

  15 Mar 2012; Mike Gilbert <floppym@gentoo.org> +chromium-18.0.1025.58.ebuild,
  chromium-19.0.1068.0.ebuild, chromium-9999-r1.ebuild:
  Version bump for beta channel release. Use chromium eclass.

*chromium-19.0.1068.0 (14 Mar 2012)

  14 Mar 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-19.0.1055.1.ebuild, +chromium-19.0.1068.0.ebuild,
  chromium-9999-r1.ebuild:
  Version bump for dev channel release. Remove old.

*chromium-18.0.1025.56 (12 Mar 2012)

  12 Mar 2012; Mike Gilbert <floppym@gentoo.org> +chromium-18.0.1025.56.ebuild,
  -chromium-17.0.963.66.ebuild, -chromium-17.0.963.78.ebuild,
  -chromium-18.0.1025.45.ebuild:
  Version bump for beta channel release.

  11 Mar 2012; Richard Freeman <rich0@gentoo.org> chromium-17.0.963.79.ebuild:
  amd64 stable - 407755

  11 Mar 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-17.0.963.79.ebuild:
  x86 stable wrt security bug #407755

*chromium-17.0.963.79 (11 Mar 2012)

  11 Mar 2012; Mike Gilbert <floppym@gentoo.org> +chromium-17.0.963.79.ebuild:
  Version bump for stable channel release.

  09 Mar 2012; Mike Gilbert <floppym@gentoo.org> chromium-17.0.963.78.ebuild:
  Stable on amd64 per ago. Bug 407465.

*chromium-19.0.1061.1 (09 Mar 2012)

  09 Mar 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-19.0.1049.3.ebuild, +chromium-19.0.1061.1.ebuild,
  chromium-9999-r1.ebuild:
  Version bump for dev channel release. Fix bug #407397 by Julien Sanchez. Use
  bundled tlslite again, otherwise net_unittests fail. Remove old.

*chromium-18.0.1025.54 (08 Mar 2012)

  08 Mar 2012; Mike Gilbert <floppym@gentoo.org> +chromium-18.0.1025.54.ebuild,
  -chromium-18.0.1025.39.ebuild:
  Version bump for beta channel release.

*chromium-17.0.963.78 (08 Mar 2012)

  08 Mar 2012; Mike Gilbert <floppym@gentoo.org> +chromium-17.0.963.78.ebuild,
  -chromium-17.0.963.56.ebuild, -chromium-17.0.963.65.ebuild:
  Version bump for stable channel release.

  07 Mar 2012; Thomas Kahle <tomka@gentoo.org> chromium-17.0.963.66.ebuild:
  marked x86 per bug 406975

  07 Mar 2012; Agostino Sarubbo <ago@gentoo.org> chromium-17.0.963.66.ebuild:
  Stable for amd64, wrt bug #406975

*chromium-17.0.963.66 (07 Mar 2012)

  07 Mar 2012; Mike Gilbert <floppym@gentoo.org> +chromium-17.0.963.66.ebuild:
  Version bump for stable channel release.

*chromium-17.0.963.65 (05 Mar 2012)

  05 Mar 2012; Mike Gilbert <floppym@gentoo.org> +chromium-17.0.963.65.ebuild:
  Version bump for stable channel release. Security bug 406975. Filtered
  KeygenHandlerTest, bug 407001.

  03 Mar 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-19.0.1055.1.ebuild, chromium-9999-r1.ebuild:
  Use system tlslite instead of the bundled one.

  03 Mar 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-glib-r0.patch:
  Add missing patch, reported by floppym.

  02 Mar 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-18.0.1025.45.ebuild:
  Backport fix for bug #395773 by Oschtan, patch by Alphat-PC. Suppress test
  failure (bug #399269).

*chromium-18.0.1025.45 (01 Mar 2012)

  01 Mar 2012; Mike Gilbert <floppym@gentoo.org> +chromium-18.0.1025.45.ebuild,
  -chromium-18.0.1025.33.ebuild:
  Version bump for beta channel release.

*chromium-19.0.1055.1 (29 Feb 2012)

  29 Feb 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-19.0.1041.0.ebuild, +chromium-19.0.1055.1.ebuild:
  Version bump for dev channel release. Remove old.

*chromium-19.0.1049.3 (24 Feb 2012)

  24 Feb 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-19.0.1036.7.ebuild, +chromium-19.0.1049.3.ebuild,
  chromium-9999-r1.ebuild:
  Version bump for dev channel release. Fix bug #405515 by Julien Sanchez.
  Remove old.

*chromium-18.0.1025.39 (22 Feb 2012)

  22 Feb 2012; Mike Gilbert <floppym@gentoo.org> +chromium-18.0.1025.39.ebuild,
  -chromium-18.0.1025.11.ebuild:
  Version bump for beta channel release.

*chromium-19.0.1041.0 (17 Feb 2012)

  17 Feb 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +chromium-19.0.1041.0.ebuild, chromium-9999-r1.ebuild:
  Version bump for dev channel release. Fix bug #393471 by depending on
  >=libjpeg-turbo-1.2.0. Suppress test failure (bug #399269).

  17 Feb 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-17.0.963.46-r1.ebuild, chromium-17.0.963.56.ebuild:
  x86 stable wrt security bug #404067; suppress test failure (bug #399269);
  remove old

  16 Feb 2012; Agostino Sarubbo <ago@gentoo.org> chromium-17.0.963.56.ebuild:
  Stable for AMD64, wrt security bug #404067

*chromium-18.0.1025.33 (16 Feb 2012)

  16 Feb 2012; Mike Gilbert <floppym@gentoo.org> +chromium-18.0.1025.33.ebuild,
  -chromium-18.0.1025.1-r1.ebuild, -chromium-18.0.1025.1.ebuild:
  Version bump for beta channel release.

*chromium-17.0.963.56 (16 Feb 2012)

  16 Feb 2012; Mike Gilbert <floppym@gentoo.org> +chromium-17.0.963.56.ebuild:
  Version bump for stable channel release.

  13 Feb 2012; Mike Gilbert <floppym@gentoo.org> chromium-18.0.1025.11.ebuild,
  chromium-19.0.1036.7.ebuild, chromium-9999-r1.ebuild:
  Per dberkholz, depend on >=libwebp-0.1.3 for WEBP_MAX_DIMENSION.

*chromium-19.0.1036.7 (11 Feb 2012)

  11 Feb 2012; Mike Gilbert <floppym@gentoo.org> +chromium-19.0.1036.7.ebuild:
  Version bump for dev channel release. Disable gold linker flags. Depend on
  >=v8-3.9.4. Drop patches applied upstream.

  11 Feb 2012; Mike Gilbert <floppym@gentoo.org> chromium-9999-r1.ebuild:
  Do not use gold linker flags. Depend on >=v8-3.9.4.

  11 Feb 2012; Mike Gilbert <floppym@gentoo.org> chromium-9999-r1.ebuild:
  Obey ESVN_UMASK when syncing.

  09 Feb 2012; Mike Gilbert <floppym@gentoo.org> -chromium-16.0.912.77.ebuild,
  -chromium-17.0.963.46.ebuild:
  Actually remove old this time.

*chromium-18.0.1025.11 (09 Feb 2012)

  09 Feb 2012; Mike Gilbert <floppym@gentoo.org> +chromium-18.0.1025.11.ebuild:
  Version bump for beta channel release. Remove old.

  09 Feb 2012; Agostino Sarubbo <ago@gentoo.org> chromium-17.0.963.46-r1.ebuild:
  Stable for X86/AMD64, wrt security bug #402841

*chromium-18.0.1025.1-r1 (02 Feb 2012)
*chromium-17.0.963.46-r1 (02 Feb 2012)

  02 Feb 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-media-no-sse-r0.patch, -chromium-17.0.963.44.ebuild,
  -chromium-17.0.963.44-r1.ebuild, +chromium-17.0.963.46-r1.ebuild,
  -chromium-18.0.1017.2.ebuild, +chromium-18.0.1025.1-r1.ebuild,
  chromium-9999-r1.ebuild:
  Experimental patch to remove unconditional -msse3 -mssse3 CFLAGS (bug #401537
  by Sylvain BERTRAND). 18.x now has Malay (ms) LINGUA. Remove old.

*chromium-18.0.1025.1 (01 Feb 2012)

  01 Feb 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-gyp-settings-r0.patch,
  +files/chromium-revert-jpeg-swizzle-r2.patch,
  +files/chromium-webkit-zlib-r0.patch, -chromium-18.0.1010.0.ebuild,
  +chromium-18.0.1025.1.ebuild, chromium-9999-r1.ebuild:
  Version bump for dev channel release. Remove old.

  31 Jan 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-17.0.963.46.ebuild:
  Apply changes lost on recent bump.

*chromium-17.0.963.46 (31 Jan 2012)

  31 Jan 2012; Mike Gilbert <floppym@gentoo.org> +chromium-17.0.963.46.ebuild:
  Version bump for beta channel release.

*chromium-17.0.963.44-r1 (30 Jan 2012)

  30 Jan 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-dev-shm-r0.patch, -chromium-17.0.963.38.ebuild,
  +chromium-17.0.963.44-r1.ebuild:
  Backport upstream fix for Gentoo bug #389479, and suppress net_unittests
  failure that doesn't occur in 18.x. Remove old.

*chromium-17.0.963.44 (26 Jan 2012)

  26 Jan 2012; Mike Gilbert <floppym@gentoo.org> +chromium-17.0.963.44.ebuild,
  -chromium-17.0.963.33.ebuild:
  Version bump for beta channel release.

  25 Jan 2012; Mike Gilbert <floppym@gentoo.org> chromium-18.0.1017.2.ebuild:
  Bump v8 dep to 3.8.7.1.

*chromium-18.0.1017.2 (25 Jan 2012)

  25 Jan 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-16.0.912.75.ebuild, -chromium-18.0.1003.1.ebuild,
  +chromium-18.0.1017.2.ebuild:
  Version bump for dev channel release. Remove old.

  24 Jan 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-16.0.912.77.ebuild:
  x86 stable wrt security bug #400551, suppressed test failures wrt bug #398501

  24 Jan 2012; Agostino Sarubbo <ago@gentoo.org> chromium-16.0.912.77.ebuild:
  Stable for AMD64, wrt security bug #400551

*chromium-16.0.912.77 (24 Jan 2012)

  24 Jan 2012; Mike Gilbert <floppym@gentoo.org> +chromium-16.0.912.77.ebuild:
  Version bump for stable channel release.

  22 Jan 2012; Mike Gilbert <floppym@gentoo.org> chromium-18.0.1010.0.ebuild:
  Revert accidental change to src_test.

  22 Jan 2012; Mike Gilbert <floppym@gentoo.org> chromium-18.0.1010.0.ebuild,
  chromium-9999-r1.ebuild:
  Depend on >=dev-lang/v8-3.8.7.1. Dev channel probably needs an update on the
  next bump as well.

*chromium-17.0.963.38 (19 Jan 2012)

  19 Jan 2012; Mike Gilbert <floppym@gentoo.org> +chromium-17.0.963.38.ebuild,
  -chromium-17.0.963.26.ebuild:
  Version bump for beta channel release.

*chromium-18.0.1010.0 (18 Jan 2012)

  18 Jan 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  -chromium-16.0.912.63.ebuild, +chromium-18.0.1010.0.ebuild:
  Version bump for dev channel release. Remove old.

  13 Jan 2012; Mike Gilbert <floppym@gentoo.org> chromium-9999-r1.ebuild:
  Depend on sys-fs/udev in live ebuild.

  13 Jan 2012; Mike Gilbert <floppym@gentoo.org> chromium-18.0.1003.1.ebuild:
  Depend on sys-fs/udev.

*chromium-17.0.963.33 (12 Jan 2012)

  12 Jan 2012; Mike Gilbert <floppym@gentoo.org> +chromium-17.0.963.33.ebuild,
  -chromium-17.0.963.12-r1.ebuild, -chromium-17.0.963.12.ebuild:
  Version bump for beta channel release.

*chromium-18.0.1003.1 (11 Jan 2012)

  11 Jan 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +files/chromium-revert-jpeg-swizzle-r1.patch, chromium-17.0.963.26.ebuild,
  +chromium-18.0.1003.1.ebuild, chromium-9999-r1.ebuild:
  Version bump for dev channel release. Disable
  DnsConfigServiceTest.GetSystemConfig test, bug #394883 by Jonathan Lovelace.
  Disable MessagePumpLibeventTest.DeleteWatcher test, bug #398501. NaCl
  binaries should work now, bug #389479 by Tatsh fixed upstream.

  06 Jan 2012; Richard Freeman <rich0@gentoo.org> chromium-16.0.912.75.ebuild:
  amd64 stable - 397907

  06 Jan 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  chromium-16.0.912.75.ebuild:
  x86 stable wrt security bug #397907

*chromium-16.0.912.75 (06 Jan 2012)

  06 Jan 2012; Mike Gilbert <floppym@gentoo.org> +chromium-16.0.912.75.ebuild:
  Version bump for stable channel release.

*chromium-17.0.963.26 (05 Jan 2012)

  05 Jan 2012; Mike Gilbert <floppym@gentoo.org> +chromium-17.0.963.26.ebuild:
  Version bump for dev channel release.

  01 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org> +ChangeLog-2011:
  Split ChangeLog.

  01 Jan 2012; Mike Gilbert <floppym@gentoo.org> chromium-17.0.963.12-r1.ebuild,
  chromium-9999-r1.ebuild:
  Add die message for custom-cflags.

  01 Jan 2012; Mike Gilbert <floppym@gentoo.org> chromium-17.0.963.12-r1.ebuild,
  chromium-9999-r1.ebuild:
  Add custom-clags USE flag to prevent complaints.

  For previous entries, please see ChangeLog-2011.