summaryrefslogtreecommitdiff
blob: 5d9a0f04e40eed2ed4acb3bdf03ff46ead53ab79 (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
# ChangeLog for www-client/chromium
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/www-client/chromium/ChangeLog,v 1.730 2012/10/09 02:55:25 floppym Exp $

*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.