summaryrefslogtreecommitdiff
blob: a3b3f9b361a3facd91b093289df9cca093355ea0 (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
# ChangeLog for www-plugins/adobe-flash
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v 1.264 2014/09/09 17:14:40 jer Exp $

*adobe-flash-11.2.202.406 (09 Sep 2014)

  09 Sep 2014; Jeroen Roovers <jer@gentoo.org>
  +adobe-flash-11.2.202.406.ebuild:
  Version bump.

  13 Aug 2014; Jeroen Roovers <jer@gentoo.org>
  -adobe-flash-11.2.202.394.ebuild:
  Old.

  13 Aug 2014; Mikle Kolyada <zlogene@gentoo.org>
  adobe-flash-11.2.202.400.ebuild:
  amd64/x86 stable wrt bug #519790

*adobe-flash-11.2.202.400 (13 Aug 2014)

  13 Aug 2014; Jeroen Roovers <jer@gentoo.org>
  +adobe-flash-11.2.202.400.ebuild:
  Version bump (bug #519790).

  08 Aug 2014; Jeroen Roovers <jer@gentoo.org> adobe-flash-11.2.202.394.ebuild:
  Add extra HOMEPAGE.

  09 Jul 2014; Jeroen Roovers <jer@gentoo.org>
  -adobe-flash-11.2.202.378.ebuild:
  Old.

  09 Jul 2014; Mikle Kolyada <zlogene@gentoo.org>
  adobe-flash-11.2.202.394.ebuild:
  amd64/x86 stable wrt bug #516750

*adobe-flash-11.2.202.394 (09 Jul 2014)

  09 Jul 2014; Jeroen Roovers <jer@gentoo.org>
  +adobe-flash-11.2.202.394.ebuild:
  Version bump.

  25 Jun 2014; Michał Górny <mgorny@gentoo.org> adobe-flash-11.2.202.378.ebuild:
  Lower dev-libs/glib dep to first known EAPI=5 version, requested by Funtoo for
  GNOME 3.6.

  18 Jun 2014; Michał Górny <mgorny@gentoo.org> adobe-flash-11.2.202.378.ebuild:
  Update dependencies to require guaranteed EAPI=5 or multilib ebuilds, bug
  #513718.

  10 Jun 2014; Jeroen Roovers <jer@gentoo.org> -adobe-flash-11.2.202.359.ebuild:
  Old.

  10 Jun 2014; Mikle Kolyada <zlogene@gentoo.org>
  adobe-flash-11.2.202.378.ebuild:
  amd64/x86 stable wrt bug #512888

*adobe-flash-11.2.202.378 (10 Jun 2014)

  10 Jun 2014; Jeroen Roovers <jer@gentoo.org>
  +adobe-flash-11.2.202.378.ebuild:
  Version bump.

  14 May 2014; Jeroen Roovers <jer@gentoo.org>
  -adobe-flash-11.2.202.356.ebuild:
  Old.

  14 May 2014; Mikle Kolyada <zlogene@gentoo.org>
  adobe-flash-11.2.202.359.ebuild:
  amd64/x86 stable wrt bug #510278

*adobe-flash-11.2.202.359 (14 May 2014)

  14 May 2014; Jeroen Roovers <jer@gentoo.org>
  +adobe-flash-11.2.202.359.ebuild:
  Version bump (bug #510278).

  30 Apr 2014; Jeroen Roovers <jer@gentoo.org>
  -adobe-flash-11.2.202.350.ebuild, adobe-flash-11.2.202.356.ebuild:
  Stable for AMD64 x86 (bug #508986).

  28 Apr 2014; Michał Górny <mgorny@gentoo.org> adobe-flash-11.2.202.350.ebuild,
  adobe-flash-11.2.202.356.ebuild:
  Replace multilib_build_binaries with multilib_is_native_abi, in order to put
  an end to the confusion introduced by having two functions, the proper one
  suggesting it is just for binaries.

*adobe-flash-11.2.202.356 (28 Apr 2014)

  28 Apr 2014; Jeroen Roovers <jer@gentoo.org>
  +adobe-flash-11.2.202.356.ebuild:
  Version bump.

  10 Apr 2014; Jeroen Roovers <jer@gentoo.org>
  -adobe-flash-11.2.202.346.ebuild, adobe-flash-11.2.202.350.ebuild:
  Stable for AMD64 x86 (bug #507176).

*adobe-flash-11.2.202.350 (08 Apr 2014)

  08 Apr 2014; Jeroen Roovers <jer@gentoo.org>
  +adobe-flash-11.2.202.350.ebuild:
  Version bump (bug #507176).

  15 Mar 2014; Jeroen Roovers <jer@gentoo.org> -adobe-flash-11.2.202.341.ebuild:
  Old.

  15 Mar 2014; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.346.ebuild:
  Stable for x86, wrt bug #504286

  15 Mar 2014; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.346.ebuild:
  Stable for amd64, wrt bug #504286

*adobe-flash-11.2.202.346 (12 Mar 2014)

  12 Mar 2014; Jeroen Roovers <jer@gentoo.org>
  +adobe-flash-11.2.202.346.ebuild:
  Version bump (bug #504286).

  22 Feb 2014; Jeroen Roovers <jer@gentoo.org> -adobe-flash-11.2.202.336.ebuild:
  Old.

  22 Feb 2014; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.341.ebuild:
  Stable for x86, wrt bug #501960

  22 Feb 2014; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.341.ebuild:
  Stable for amd64, wrt bug #501960

*adobe-flash-11.2.202.341 (21 Feb 2014)

  21 Feb 2014; Jeroen Roovers <jer@gentoo.org>
  +adobe-flash-11.2.202.341.ebuild:
  Version bump (bug #501960 by Mike Limansky).

  06 Feb 2014; Jeroen Roovers <jer@gentoo.org> -adobe-flash-11.2.202.335.ebuild:
  Old.

  06 Feb 2014; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.336.ebuild:
  Stable for x86, wrt bug #500313

  06 Feb 2014; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.336.ebuild:
  Stable for amd64, wrt bug #500313

*adobe-flash-11.2.202.336 (04 Feb 2014)

  04 Feb 2014; Jeroen Roovers <jer@gentoo.org> +adobe-flash-11.2.202.336.ebuild:
  Version bump (bug #500313).

  17 Jan 2014; Jeroen Roovers <jer@gentoo.org> -adobe-flash-11.2.202.332.ebuild:
  Old.

  16 Jan 2014; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.335.ebuild:
  Stable for x86, wrt bug #498170

  16 Jan 2014; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.335.ebuild:
  Stable for amd64, wrt bug #498170

*adobe-flash-11.2.202.335 (14 Jan 2014)

  14 Jan 2014; Jeroen Roovers <jer@gentoo.org> +adobe-flash-11.2.202.335.ebuild:
  Version bump.

  11 Dec 2013; Jeroen Roovers <jer@gentoo.org>
  -adobe-flash-11.2.202.327.ebuild, adobe-flash-11.2.202.332.ebuild:
  Stable for x86 (bug #493894).

  11 Dec 2013; Agostino Sarubbo <ago@gentoo.org> Manifest:
  Stable for x86, wrt bug #493894

  11 Dec 2013; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.332.ebuild:
  Stable for amd64, wrt bug #493894

  10 Dec 2013; Jeroen Roovers <jer@gentoo.org> metadata.xml:
  Remove deprecated comments.

*adobe-flash-11.2.202.332 (10 Dec 2013)

  10 Dec 2013; Jeroen Roovers <jer@gentoo.org>
  +adobe-flash-11.2.202.332.ebuild:
  Version bump.

  14 Nov 2013; Jeroen Roovers <jer@gentoo.org>
  -adobe-flash-11.2.202.310-r1.ebuild, -adobe-flash-11.2.202.310.ebuild,
  metadata.xml:
  Old.

  13 Nov 2013; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.327.ebuild:
  Stable for x86, wrt bug #491148

  13 Nov 2013; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.327.ebuild:
  Stable for amd64, wrt bug #491148

*adobe-flash-11.2.202.327 (13 Nov 2013)

  13 Nov 2013; Jeroen Roovers <jer@gentoo.org>
  +adobe-flash-11.2.202.327.ebuild:
  Version bump.

  02 Oct 2013; Ian Stakenvicius <axs@gentoo.org>
  adobe-flash-11.2.202.310-r1.ebuild:
  adjusted nspluginwrapper dependency to match previous versions of ebuilds, so
  that it is only required on amd64 systems when not installing a 64bit flash

  28 Sep 2013; Jeroen Roovers <jer@gentoo.org>
  adobe-flash-11.2.202.310-r1.ebuild:
  Oops, the glob is needed.

  28 Sep 2013; Jeroen Roovers <jer@gentoo.org>
  adobe-flash-11.2.202.310-r1.ebuild:
  Remove unneeded glob.

  28 Sep 2013; Jeroen Roovers <jer@gentoo.org>
  adobe-flash-11.2.202.310-r1.ebuild:
  Remove unused variable INSTALL_BASE. Set QA_PREBUILT appropriately.

*adobe-flash-11.2.202.310-r1 (27 Sep 2013)

  27 Sep 2013; Michał Górny <mgorny@gentoo.org>
  +adobe-flash-11.2.202.310-r1.ebuild:
  Introduce a simplified, multilib-friendly ebuild by me, AxS and iamnr3.

  11 Sep 2013; Jeroen Roovers <jer@gentoo.org>
  -adobe-flash-11.2.202.297.ebuild, -files/memcpy-to-memmove.sh:
  Old.

  11 Sep 2013; Sergey Popov <pinkbyte@gentoo.org>
  adobe-flash-11.2.202.310.ebuild:
  Stable on amd64 and x86, wrt bug #484512

*adobe-flash-11.2.202.310 (11 Sep 2013)

  11 Sep 2013; Jeroen Roovers <jer@gentoo.org> +adobe-flash-11.2.202.310.ebuild,
  -adobe-flash-11.2.202.297-r1.ebuild:
  Version bump (bug #484512).

*adobe-flash-11.2.202.297-r1 (21 Jul 2013)

  21 Jul 2013; Jeroen Roovers <jer@gentoo.org>
  +adobe-flash-11.2.202.297-r1.ebuild:
  Remove USE=vdpau and related deps because nothing needs it.

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

  10 Jul 2013; Jeroen Roovers <jer@gentoo.org> -adobe-flash-10.3.183.90.ebuild,
  -adobe-flash-11.2.202.291-r1.ebuild, -adobe-flash-11.2.202.291.ebuild:
  Old.

  10 Jul 2013; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.297.ebuild:
  Stable for x86, wrt bug #476328

  10 Jul 2013; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.297.ebuild:
  Stable for amd64, wrt bug #476328

*adobe-flash-11.2.202.297 (09 Jul 2013)

  09 Jul 2013; Jeroen Roovers <jer@gentoo.org> +adobe-flash-11.2.202.297.ebuild:
  Version bump.

  18 Jun 2013; Jeroen Roovers <jer@gentoo.org>
  adobe-flash-11.2.202.291-r1.ebuild:
  Replace IUSE=sse2check with IUSE=sse2 and add REQUIRED_USE=sse2 by Matt
  Turner (bug #410547).

  13 Jun 2013; Jeroen Roovers <jer@gentoo.org>
  adobe-flash-11.2.202.291-r1.ebuild:
  Return to PV_M.

  13 Jun 2013; Zac Medico <zmedico@gentoo.org>
  adobe-flash-11.2.202.291-r1.ebuild:
  Fix SRC_URI more.

  12 Jun 2013; Jeroen Roovers <jer@gentoo.org>
  adobe-flash-11.2.202.291-r1.ebuild:
  Fix SRC_URI for i386/non-debug (bug #473138 by Fred Krogh).

*adobe-flash-11.2.202.291-r1 (12 Jun 2013)

  12 Jun 2013; Jeroen Roovers <jer@gentoo.org>
  +adobe-flash-11.2.202.291-r1.ebuild:
  Whitespace cleanup. Add USE=debug for 32-bit (bug #357321 by Fabio Rossi).

  12 Jun 2013; Jeroen Roovers <jer@gentoo.org> -adobe-flash-11.2.202.285.ebuild:
  Old.

  12 Jun 2013; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.291.ebuild:
  Stable for x86, wrt bug #473038

  12 Jun 2013; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.291.ebuild:
  Stable for amd64, wrt bug #473038

*adobe-flash-11.2.202.291 (12 Jun 2013)
*adobe-flash-10.3.183.90 (12 Jun 2013)

  12 Jun 2013; Jeroen Roovers <jer@gentoo.org> -adobe-flash-10.3.183.86.ebuild,
  +adobe-flash-10.3.183.90.ebuild, +adobe-flash-11.2.202.291.ebuild:
  Version bump (bug #473038).

  01 Jun 2013; Jeroen Roovers <jer@gentoo.org> metadata.xml:
  Whitespace.

  01 Jun 2013; Jeroen Roovers <jer@gentoo.org> metadata.xml:
  Maintainer.

  01 Jun 2013; Pacho Ramos <pacho@gentoo.org> metadata.xml:
  Cleanup due bug #144305

  19 May 2013; Jeroen Roovers <jer@gentoo.org> -adobe-flash-11.2.202.280.ebuild:
  Old.

  19 May 2013; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.285.ebuild:
  Stable for x86, wrt bug #469870

  15 May 2013; Sergey Popov <pinkbyte@gentoo.org>
  adobe-flash-11.2.202.285.ebuild:
  Stable on amd64, wrt bug #469870

*adobe-flash-11.2.202.285 (14 May 2013)
*adobe-flash-10.3.183.86 (14 May 2013)

  14 May 2013; Jeroen Roovers <jer@gentoo.org> +adobe-flash-10.3.183.86.ebuild,
  +adobe-flash-11.2.202.285.ebuild, -adobe-flash-10.3.183.75.ebuild:
  Version bump (bug #469870).

  21 Apr 2013; Michał Górny <mgorny@gentoo.org> adobe-flash-10.3.183.75.ebuild,
  adobe-flash-11.2.202.280.ebuild:
  Support multilib libraries alternatively to emul-linux-x86-xlibs.

  12 Apr 2013; Jeroen Roovers <jer@gentoo.org> -adobe-flash-11.2.202.275.ebuild:
  Old.

  11 Apr 2013; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.280.ebuild:
  Stable for amd64, wrt bug #465534

  11 Apr 2013; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.280.ebuild:
  Stable for x86, wrt bug #465534

  11 Apr 2013; Jeroen Roovers <jer@gentoo.org> adobe-flash-10.3.183.75.ebuild:
  Remove pointless elog.

  11 Apr 2013; Jeroen Roovers <jer@gentoo.org> -adobe-flash-10.3.183.68.ebuild:
  Old.

*adobe-flash-11.2.202.280 (11 Apr 2013)
*adobe-flash-10.3.183.75 (11 Apr 2013)

  11 Apr 2013; Jeroen Roovers <jer@gentoo.org> +adobe-flash-10.3.183.75.ebuild,
  +adobe-flash-11.2.202.280.ebuild:
  Version bump (bug #465534).

  15 Mar 2013; Jeroen Roovers <jer@gentoo.org> -adobe-flash-11.2.202.273.ebuild:
  Old.

  15 Mar 2013; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.275.ebuild:
  Stable for x86, wrt bug #461598

  15 Mar 2013; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.275.ebuild:
  Stable for amd64, wrt bug #461598

*adobe-flash-11.2.202.275 (14 Mar 2013)
*adobe-flash-10.3.183.68 (14 Mar 2013)

  14 Mar 2013; Jeroen Roovers <jer@gentoo.org> -adobe-flash-10.3.183.67.ebuild,
  +adobe-flash-10.3.183.68.ebuild, +adobe-flash-11.2.202.275.ebuild:
  Version bump (bug #461598).

  27 Feb 2013; Jeroen Roovers <jer@gentoo.org>
  -adobe-flash-11.2.202.270.ebuild:
  Old.

  27 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.273.ebuild:
  Stable for x86, wrt bug #459368

  27 Feb 2013; Sergey Popov <pinkbyte@gentoo.org>
  adobe-flash-11.2.202.273.ebuild:
  Stable on amd64, wrt bug #459368

*adobe-flash-11.2.202.273 (27 Feb 2013)
*adobe-flash-10.3.183.67 (27 Feb 2013)

  27 Feb 2013; Jeroen Roovers <jer@gentoo.org> -adobe-flash-10.3.183.61.ebuild,
  +adobe-flash-10.3.183.67.ebuild, +adobe-flash-11.2.202.273.ebuild:
  Version bump (bug #459368).

  17 Feb 2013; Jeroen Roovers <jer@gentoo.org> -adobe-flash-11.2.202.262.ebuild:
  Old.

  17 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.270.ebuild:
  Stable for x86, wrt bug #457066

  14 Feb 2013; Richard Freeman <rich0@gentoo.org>
  adobe-flash-11.2.202.270.ebuild:
  amd64 stable - 457066

  13 Feb 2013; Jeroen Roovers <jer@gentoo.org>
  -adobe-flash-11.2.202.261.ebuild:
  Old.

  13 Feb 2013; Jeroen Roovers <jer@gentoo.org> adobe-flash-11.2.202.261.ebuild,
  adobe-flash-11.2.202.262.ebuild, adobe-flash-11.2.202.270.ebuild:
  Change LICENSE to AdobeFlash-11.x.

*adobe-flash-10.3.183.61 (13 Feb 2013)

  13 Feb 2013; Jeroen Roovers <jer@gentoo.org> -adobe-flash-10.3.183.51.ebuild,
  +adobe-flash-10.3.183.61.ebuild:
  Version bump (bug #457066).

  13 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.262.ebuild:
  Stable for x86, wrt to bug #456132

*adobe-flash-11.2.202.270 (12 Feb 2013)

  12 Feb 2013; Tim Harder <radhermit@gentoo.org>
  +adobe-flash-11.2.202.270.ebuild:
  Version bump.

  09 Feb 2013; Sergey Popov <pinkbyte@gentoo.org>
  adobe-flash-11.2.202.262.ebuild:
  Stable on amd64, wrt bug #456132

*adobe-flash-11.2.202.262 (09 Feb 2013)
*adobe-flash-10.3.183.51 (09 Feb 2013)

  09 Feb 2013; Jeroen Roovers <jer@gentoo.org> -adobe-flash-10.3.183.50.ebuild,
  +adobe-flash-10.3.183.51.ebuild, +adobe-flash-11.2.202.262.ebuild:
  Version bump (bug #456132).

  16 Jan 2013; Jeroen Roovers <jer@gentoo.org>
  -adobe-flash-11.2.202.258.ebuild:
  Old.

  16 Jan 2013; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.261.ebuild:
  Stable for x86, wrt bug #452104

  15 Jan 2013; Sergey Popov <pinkbyte@gentoo.org>
  adobe-flash-11.2.202.261.ebuild:
  Stable on amd64, wrt bug #452104

*adobe-flash-10.3.183.50 (14 Jan 2013)

  14 Jan 2013; Jeroen Roovers <jer@gentoo.org> -adobe-flash-10.3.183.48.ebuild,
  +adobe-flash-10.3.183.50.ebuild:
  Version bump.

*adobe-flash-11.2.202.261 (14 Jan 2013)

  14 Jan 2013; Jeroen Roovers <jer@gentoo.org>
  +adobe-flash-11.2.202.261.ebuild:
  Version bump.

  03 Jan 2013; Sven Vermeulen <swift@gentoo.org>
  adobe-flash-10.3.183.48.ebuild, adobe-flash-11.2.202.258.ebuild:
  Adding SELinux dependency towards selinux-flash

  13 Dec 2012; Jeroen Roovers <jer@gentoo.org>
  -adobe-flash-11.2.202.251.ebuild:
  Old.

  13 Dec 2012; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.258.ebuild:
  Stable for X86, wrt security bug #446984

  12 Dec 2012; Sergey Popov <pinkbyte@gentoo.org>
  adobe-flash-11.2.202.258.ebuild:
  Stable on amd64, wrt bug #446984

*adobe-flash-11.2.202.258 (12 Dec 2012)
*adobe-flash-10.3.183.48 (12 Dec 2012)

  12 Dec 2012; Jeroen Roovers <jer@gentoo.org> -adobe-flash-10.3.183.43.ebuild,
  +adobe-flash-10.3.183.48.ebuild, +adobe-flash-11.2.202.258.ebuild:
  Version bump (bug #446984).

  26 Nov 2012; Tomáš Chvátal <scarabeus@gentoo.org> metadata.xml:
  Update to global useflag.

  07 Nov 2012; Jeroen Roovers <jer@gentoo.org>
  -adobe-flash-11.2.202.243.ebuild:
  Old.

  07 Nov 2012; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.251.ebuild:
  Stable for x86, wrt bug #442084

  07 Nov 2012; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.251.ebuild:
  Stable for amd64, wrt bug #442084

*adobe-flash-11.2.202.251 (06 Nov 2012)
*adobe-flash-10.3.183.43 (06 Nov 2012)

  06 Nov 2012; Jeroen Roovers <jer@gentoo.org> -adobe-flash-10.3.183.18.ebuild,
  +adobe-flash-10.3.183.43.ebuild, +adobe-flash-11.2.202.251.ebuild:
  Version bump (bug #442084).

  22 Oct 2012; Jeroen Roovers <jer@gentoo.org>
  -adobe-flash-11.2.202.238.ebuild:
  Old.

  22 Oct 2012; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.243.ebuild:
  Stable for amd64, wrt bug #437808

  22 Oct 2012; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.243.ebuild:
  Stable for x86, wrt bug #437808

  22 Oct 2012; Jeroen Roovers <jer@gentoo.org> adobe-flash-11.2.202.243.ebuild:
  Shorten two long lines.

*adobe-flash-11.2.202.243 (22 Oct 2012)

  22 Oct 2012; Jeroen Roovers <jer@gentoo.org>
  +adobe-flash-11.2.202.243.ebuild:
  Version bump (bug #437808).

  17 Aug 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  -adobe-flash-11.2.202.236.ebuild:
  Drop security affected.

  17 Aug 2012; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.238.ebuild:
  Stable for amd64, wrt bug #431432

  17 Aug 2012; Johannes Huber <johu@gentoo.org>
  adobe-flash-11.2.202.238.ebuild:
  Stable for x86, wrt bug #431432

*adobe-flash-11.2.202.238 (17 Aug 2012)

  17 Aug 2012; Tim Harder <radhermit@gentoo.org>
  +adobe-flash-11.2.202.238.ebuild:
  Security bump (bug #431432).

  19 Jun 2012; Jim Ramsay <lack@gentoo.org>
  adobe-flash-10.3.183.18.ebuild, -adobe-flash-11.2.202.228.ebuild,
  -adobe-flash-11.2.202.233.ebuild, -adobe-flash-11.2.202.235.ebuild,
  adobe-flash-11.2.202.236.ebuild:
  Version cleanup; removed extra elog output (Bug #416769)

  11 Jun 2012; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.236.ebuild:
  Stable for amd64, wrt bug #420311

  11 Jun 2012; Johannes Huber <johu@gentoo.org>
  adobe-flash-11.2.202.236.ebuild:
  Stable for x86, wrt bug #420311

*adobe-flash-11.2.202.236 (10 Jun 2012)

  10 Jun 2012; Tim Harder <radhermit@gentoo.org>
  +adobe-flash-11.2.202.236.ebuild:
  Security bump bug #420311.

  06 May 2012; Andreas Schuerch <nativemad@gentoo.org>
  adobe-flash-11.2.202.235.ebuild:
  x86 stable, see bug 414603. Thanks Mikle

  05 May 2012; Markos Chandras <hwoarang@gentoo.org>
  adobe-flash-11.2.202.235.ebuild:
  Stable on amd64 wrt bug #414603

*adobe-flash-11.2.202.235 (05 May 2012)

  05 May 2012; Jim Ramsay <lack@gentoo.org> +adobe-flash-11.2.202.235.ebuild:
  Security bump bug #414603

*adobe-flash-11.2.202.233 (02 May 2012)

  02 May 2012; Jim Ramsay <lack@gentoo.org>
  +adobe-flash-11.2.202.233.ebuild:
  Version bump (Bug #414039)

  24 Apr 2012; Diego E. Pettenò <flameeyes@gentoo.org>
  adobe-flash-11.2.202.228.ebuild:
  Unbreak the check for SSE2. Beside, should this actually be performed for
  AMD64?

  24 Apr 2012; Jim Ramsay <lack@gentoo.org>
  adobe-flash-11.2.202.228.ebuild, metadata.xml:
  On darkside's suggestion, providing a USE flag (IUSE=+sse2check) that can be
  turned off to allow binpkg users to override this check (or at least reduce
  its fatality)

  24 Apr 2012; Jim Ramsay <lack@gentoo.org>
  adobe-flash-11.2.202.228.ebuild:
  Bug #410547: Fail pkg_pretend if any CPU on the local machine does not
  support SSE2, and recommend falling back to 10.3 instead

  24 Apr 2012; Jim Ramsay <lack@gentoo.org>
  -adobe-flash-11.0.1.152.ebuild, -adobe-flash-11.1.102.55.ebuild,
  -adobe-flash-11.1.102.62.ebuild, -adobe-flash-11.1.102.63.ebuild,
  -adobe-flash-11.2.202.223.ebuild:
  Removing security-vulnerable versions of adobe-flash

*adobe-flash-10.3.183.18 (24 Apr 2012)

  24 Apr 2012; Jim Ramsay <lack@gentoo.org>
  -adobe-flash-10.3.183.10.ebuild, +adobe-flash-10.3.183.18.ebuild:
  Bug #410547: Security bump of 10.3 to allow workaround for some AMD Athalon
  XP users

  05 Apr 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  adobe-flash-11.2.202.228.ebuild:
  x86 stable wrt bug #410005

  29 Mar 2012; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.2.202.228.ebuild:
  Stable for amd64, wrt bug #410005

*adobe-flash-11.2.202.228 (28 Mar 2012)

  28 Mar 2012; Jim Ramsay <lack@gentoo.org>
  +adobe-flash-11.2.202.228.ebuild:
  Latest version bump

*adobe-flash-11.2.202.223 (28 Mar 2012)

  28 Mar 2012; Jim Ramsay <lack@gentoo.org>
  +adobe-flash-11.2.202.223.ebuild:
  Version bump for security bug #410005

  07 Mar 2012; Thomas Kahle <tomka@gentoo.org> adobe-flash-11.1.102.63.ebuild:
  marked x86 per bug 407023

  07 Mar 2012; Agostino Sarubbo <ago@gentoo.org>
  adobe-flash-11.1.102.63.ebuild:
  Stable for amd64, wrt bug #407023

*adobe-flash-11.1.102.63 (06 Mar 2012)

  06 Mar 2012; Tim Harder <radhermit@gentoo.org>
  +adobe-flash-11.1.102.63.ebuild:
  Version bump for security (bug #407023).

  20 Feb 2012; Jeff Horelick <jdhore@gentoo.org> adobe-flash-11.1.102.62.ebuild:
  x86 stable wrt security bug 404101

  20 Feb 2012; Agostino Sarubbo <ago@gentoo.org> adobe-flash-11.1.102.62.ebuild:
  Stable for AMD64, wrt security bug #404101

*adobe-flash-11.1.102.62 (20 Feb 2012)

  20 Feb 2012; Tim Harder <radhermit@gentoo.org>
  +adobe-flash-11.1.102.62.ebuild:
  Version bump (bug #404101).

  02 Dec 2011; Steve Dibb <beandog@gentoo.org> adobe-flash-11.1.102.55.ebuild:
  amd64 stable, bug 390149

  01 Dec 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  adobe-flash-11.1.102.55.ebuild:
  x86 stable wrt bug #390149

  28 Nov 2011; Jim Ramsay <lack@gentoo.org>
  -adobe-flash-10.3.183.7.ebuild, adobe-flash-10.3.183.10.ebuild,
  adobe-flash-11.1.102.55.ebuild:
  Bug #390405: Adjusting new SRC_URI. Also changing 11.1 to drop the rpm in
  favour of .tar.gz distribution, and cleaning up an old version.

*adobe-flash-11.1.102.55 (28 Nov 2011)

  28 Nov 2011; Jim Ramsay <lack@gentoo.org>
  +adobe-flash-11.1.102.55.ebuild:
  Bug #390149: Flash player 11.1.102.55 is released

  05 Oct 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  adobe-flash-11.0.1.152.ebuild:
  Unpack the uri properly, This was supposed to be in previous commit, dunno
  why it didn't get there.

*adobe-flash-11.0.1.152 (05 Oct 2011)

  05 Oct 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  -adobe-flash-11.0.1.129_rc201109061.ebuild, +adobe-flash-11.0.1.152.ebuild:
  Add flash-11 final release because RCs are again unfetchable. Non-maintainer
  commit.

  25 Sep 2011; Tony Vroon <chainsaw@gentoo.org> adobe-flash-10.3.183.10.ebuild:
  Marked stable on AMD64 based on arch testing by Elijah "Armageddon" El
  Lazkani & Agostino "Ago" Sarubbo in bug #384017.

  25 Sep 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  adobe-flash-10.3.183.10.ebuild:
  x86 stable wrt security bug #384017

*adobe-flash-10.3.183.10 (23 Sep 2011)

  23 Sep 2011; Jim Ramsay <lack@gentoo.org> +adobe-flash-10.3.183.10.ebuild:
  Bug #384017: Version bump for security

*adobe-flash-11.0.1.129_rc201109061 (08 Sep 2011)

  08 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  -adobe-flash-11.0.1.60_beta201107131-r1.ebuild,
  -adobe-flash-11.0.1.60_beta201108082.ebuild,
  +adobe-flash-11.0.1.129_rc201109061.ebuild:
  Add latest 11 release (RC). Drop older unfetchable versions of 11beta.

*adobe-flash-10.3.183.7 (02 Sep 2011)

  02 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  -adobe-flash-10.3.181.26.ebuild, -adobe-flash-10.3.181.34.ebuild,
  -adobe-flash-10.3.183.5.ebuild, +adobe-flash-10.3.183.7.ebuild:
  Non-maintainer commit: add new 10.3 version that has fetchable sources.
  Remove unfetchable versions. Also this release fixes security issues in older
  10.3.

  31 Aug 2011; Jim Ramsay <lack@gentoo.org>
  adobe-flash-11.0.1.60_beta201108082.ebuild:
  Bug #380269: Fix invocation of dosym

  12 Aug 2011; Thomas Kahle <tomka@gentoo.org> adobe-flash-10.3.183.5.ebuild:
  x86 stable per bug 378637

  11 Aug 2011; Tony Vroon <chainsaw@gentoo.org> adobe-flash-10.3.183.5.ebuild:
  Marked 10.3.183.5 stable on AMD64 based on arch testing by Agostino "ago"
  Sarubbo in security bug #378637.

  11 Aug 2011; Jim Ramsay <lack@gentoo.org>
  adobe-flash-11.0.1.60_beta201107131-r1.ebuild,
  adobe-flash-11.0.1.60_beta201108082.ebuild:
  Fixed unpack for 32-bit-only on amd64 (Bug #376091)

  11 Aug 2011; Jim Ramsay <lack@gentoo.org> adobe-flash-10.3.181.26.ebuild,
  adobe-flash-10.3.181.34.ebuild, adobe-flash-10.3.183.5.ebuild,
  adobe-flash-11.0.1.60_beta201107131-r1.ebuild,
  adobe-flash-11.0.1.60_beta201108082.ebuild:
  Fixing all QA warnings in all versions by adding all prebuild binaries to
  QA_PREBUILT

*adobe-flash-11.0.1.60_beta201108082 (11 Aug 2011)
*adobe-flash-10.3.183.5 (11 Aug 2011)

  11 Aug 2011; Jim Ramsay <lack@gentoo.org> +adobe-flash-10.3.183.5.ebuild,
  +adobe-flash-11.0.1.60_beta201108082.ebuild:
  Version 10.3.183.5 released for security bug #378637, and a new beta of 11
  just for fun

  23 Jul 2011; Markus Meier <maekke@gentoo.org> adobe-flash-10.3.181.34.ebuild:
  x86 stable, bug #375239

*adobe-flash-11.0.1.60_beta201107131-r1 (18 Jul 2011)

  18 Jul 2011; Jim Ramsay <lack@gentoo.org>
  -adobe-flash-11.0.1.60_beta201107131.ebuild,
  +adobe-flash-11.0.1.60_beta201107131-r1.ebuild:
  Now installs flash-player-properties.desktop (Bug #375509)

  17 Jul 2011; Jim Ramsay <lack@gentoo.org> adobe-flash-10.3.181.34.ebuild:
  Marking amd64 stable (Bug #375239)

  17 Jul 2011; Jim Ramsay <lack@gentoo.org> adobe-flash-10.3.181.26.ebuild,
  adobe-flash-10.3.181.34.ebuild, adobe-flash-11.0.1.60_beta201107131.ebuild:
  Fixing KDE install in 11.1 (Bug #375283), plus fixing up QA warnings as
  mentioned in bug #375239.

  15 Jul 2011; Jim Ramsay <lack@gentoo.org>
  adobe-flash-11.0.1.60_beta201107131.ebuild:
  Updating license for flash 11

  15 Jul 2011; Jim Ramsay <lack@gentoo.org> -adobe-flash-10.2.159.1.ebuild,
  -adobe-flash-10.2.159.1_p201011173.ebuild:
  Removing security-vulnerable 10.2 from the tree, especially since there is a
  new beta with 64-bit support.

*adobe-flash-11.0.1.60_beta201107131 (14 Jul 2011)

  14 Jul 2011; Jim Ramsay <lack@gentoo.org>
  +adobe-flash-11.0.1.60_beta201107131.ebuild:
  Version bump: Flash player 11 beta is out, and 64-bit support is back!

*adobe-flash-10.3.181.34 (13 Jul 2011)

  13 Jul 2011; Jim Ramsay <lack@gentoo.org> +adobe-flash-10.3.181.34.ebuild:
  Version bump: 10.3.181.34 is released (Bug #373463)

  17 Jun 2011; Alex Legler <a3li@gentoo.org>
  -adobe-flash-10.3.181.14-r1.ebuild, adobe-flash-10.3.181.26.ebuild:
  amd64 stable for security bug 370215; removing vulnerable version

  16 Jun 2011; Thomas Kahle <tomka@gentoo.org> adobe-flash-10.3.181.26.ebuild:
  x86 stable per bug 370215

*adobe-flash-10.3.181.26 (15 Jun 2011)

  15 Jun 2011; Alex Legler <a3li@gentoo.org> -adobe-flash-10.3.181.22.ebuild,
  +adobe-flash-10.3.181.26.ebuild:
  Non-maintainer commit: Version bump for security bug 370215, removing
  unneeded ~arch version

*adobe-flash-10.3.181.22 (14 Jun 2011)

  14 Jun 2011; Alex Legler <a3li@gentoo.org> +adobe-flash-10.3.181.22.ebuild:
  Non-maintainer commit: Version bump for security bug 370215

  01 Jun 2011; Jim Ramsay <lack@gentoo.org> metadata.xml:
  Added local USE flag description for 'bindist' (Bug #369257)

  27 May 2011; Markos Chandras <hwoarang@gentoo.org>
  adobe-flash-10.3.181.14-r1.ebuild:
  Stable on amd64 wrt bug #367031

  26 May 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  adobe-flash-10.3.181.14-r1.ebuild:
  x86 stable wrt security bug #367031

*adobe-flash-10.3.181.14-r1 (14 May 2011)

  14 May 2011; Jim Ramsay <lack@gentoo.org> -adobe-flash-10.3.181.14.ebuild,
  +adobe-flash-10.3.181.14-r1.ebuild:
  Fix nspluginwrapper auto-install logic for amd64

  14 May 2011; Jim Ramsay <lack@gentoo.org> -adobe-flash-9.0.289.0.ebuild,
  -adobe-flash-10.1.102.64.ebuild, -adobe-flash-10.2.152.27.ebuild,
  -adobe-flash-10.2.152.27_p201011173-r1.ebuild,
  -adobe-flash-10.2.152.27_p201011173-r2.ebuild,
  -adobe-flash-10.2.153.1.ebuild, -adobe-flash-10.2.153.1_p201011173.ebuild,
  adobe-flash-10.3.181.14.ebuild, metadata.xml:
  Cleaning up many old, unfetchable, and security-vulnerable versions of Adobe
  flash (Bugs #360529,#354207,#359019 to name a few)
  Also updated the elog text in 10.3.181.14.

*adobe-flash-10.3.181.14 (14 May 2011)

  14 May 2011; Jim Ramsay <lack@gentoo.org> +adobe-flash-10.3.181.14.ebuild,
  metadata.xml:
  Version bump: 10.3.181.14 is released. This does not include a 64-bit native
  version (again), but does include a small gtk utility (and a Kde4 kcm add-on)
  to manage some user settings. (Bug #367031)

  20 Apr 2011; Christoph Mende <angelos@gentoo.org>
  adobe-flash-10.2.159.1.ebuild:
  Stable on amd64 wrt bug #363179

  17 Apr 2011; Thomas Kahle <tomka@gentoo.org> adobe-flash-10.2.159.1.ebuild:
  x86 stable per bug 363179

*adobe-flash-10.2.159.1_p201011173 (17 Apr 2011)
*adobe-flash-10.2.159.1 (17 Apr 2011)

  17 Apr 2011; Jim Ramsay <lack@gentoo.org> +adobe-flash-10.2.159.1.ebuild,
  +adobe-flash-10.2.159.1_p201011173.ebuild:
  Version bump for security bug #363179

  14 Apr 2011; Jim Ramsay <lack@gentoo.org> adobe-flash-10.2.153.1.ebuild:
  Bug #324365: 32-bit flash player doesn't seem to have the same problems as
  earlier versions, so removing warnings for 64-bit users.

  28 Mar 2011; Jim Ramsay <lack@gentoo.org> adobe-flash-10.2.153.1.ebuild,
  adobe-flash-10.2.153.1_p201011173.ebuild:
  Removing nspluginwrapper USE flag, bug #360235

  24 Mar 2011; Christoph Mende <angelos@gentoo.org>
  adobe-flash-10.2.153.1.ebuild:
  Stable on amd64 wrt bug #359019

  23 Mar 2011; Jim Ramsay <lack@gentoo.org> adobe-flash-10.2.153.1.ebuild,
  adobe-flash-10.2.153.1_p201011173.ebuild, metadata.xml:
  Defaulting USE=+nspluginwrapper since most amd64 users will be using this
  (probably)

  23 Mar 2011; Thomas Kahle <tomka@gentoo.org> adobe-flash-10.2.153.1.ebuild:
  x86 stable per bug 359019

*adobe-flash-10.2.153.1_p201011173 (22 Mar 2011)
*adobe-flash-10.2.153.1 (22 Mar 2011)

  22 Mar 2011; Jim Ramsay <lack@gentoo.org> +adobe-flash-10.2.153.1.ebuild,
  +adobe-flash-10.2.153.1_p201011173.ebuild:
  Version bump for security bug #359019

  02 Mar 2011; Kevin McCarthy <signals@gentoo.org>
  adobe-flash-9.0.289.0.ebuild:
  Changed gtk+ dep to slot 2 and bump EAPI for slot dep support.

  21 Feb 2011; Jim Ramsay <lack@gentoo.org>
  adobe-flash-10.2.152.27_p201011173-r2.ebuild:
  memcpy-to-memmove.sh requires bash, no just any sh (Bug #354073)

*adobe-flash-10.2.152.27_p201011173-r2 (17 Feb 2011)

  17 Feb 2011; Jim Ramsay <lack@gentoo.org>
  +adobe-flash-10.2.152.27_p201011173-r2.ebuild, +files/memcpy-to-memmove.sh:
  Bug #354073: Patch 64-bit flash to fix memcpy issue with glibc-2.13

  13 Feb 2011; Christian Faulhammer <fauli@gentoo.org>
  adobe-flash-10.2.152.27.ebuild:
  stable x86, security bug 354207

  12 Feb 2011; Markos Chandras <hwoarang@gentoo.org>
  adobe-flash-10.2.152.27.ebuild:
  Stable on amd64 wrt bug #354207

*adobe-flash-10.2.152.27_p201011173-r1 (11 Feb 2011)

  11 Feb 2011; Jim Ramsay <lack@gentoo.org>
  -adobe-flash-10.2.152.27_p201011173.ebuild,
  +adobe-flash-10.2.152.27_p201011173-r1.ebuild:
  Revbump for last fix to ensure it gets out there quickly and fixes
  potentially half-broken installs

  11 Feb 2011; Jim Ramsay <lack@gentoo.org>
  adobe-flash-10.2.152.27_p201011173.ebuild:
  Fixed 32-bit install which I horribly broke

*adobe-flash-10.2.152.27_p201011173 (10 Feb 2011)
*adobe-flash-10.2.152.27 (10 Feb 2011)

  10 Feb 2011; Jim Ramsay <lack@gentoo.org> +adobe-flash-10.2.152.27.ebuild,
  +adobe-flash-10.2.152.27_p201011173.ebuild,
  -adobe-flash-10.2.161.23_pre20100927.ebuild,
  -adobe-flash-10.2.161.23_pre20101117.ebuild, metadata.xml:
  Version 10.2.152.27 is released (Security bug #354207)

  Note: This also does a bit of a shuffle in where you may expect to see the
  64-bit beta "square" release. Though the version number of the 64-bit plugin
  is technically 10.3.162.29, this is part of the ebuild named
  "adobe-flash-10.2.152.27_p201011173" This is mostly due to the fact that Adobe
  does not have a corresponding 32-bit 10.3 beta release at this time, so I have
  decided that until they do the main version number will correspond to the
  32-bit release and the "patchlevel" will correspond to the date-tag of the
  square beta release.

  So while this may *look* like a downgrade, it's really an upgrade of the
  32-bit plugin and a no-op for the 64-bit plugin.

*adobe-flash-10.2.161.23_pre20101117 (01 Dec 2010)

  01 Dec 2010; Jim Ramsay <lack@gentoo.org>
  +adobe-flash-10.2.161.23_pre20101117.ebuild:
  Next prerelease is ready (11-17-2010). Unfortunately Adobe has split up
  the versions so the 32-bit version is actually internally versioned as
  10.2.151.49 (went down) while the 64-bit version is now 10.3.162.29 (went
  way up). So I'm keeping the ebulid version number the same (10.2.161.23)
  and just bumping the prerelease version number for this one.

*adobe-flash-9.0.289.0 (15 Nov 2010)

  15 Nov 2010; Jim Ramsay <lack@gentoo.org> -adobe-flash-9.0.283.0.ebuild,
  +adobe-flash-9.0.289.0.ebuild, -adobe-flash-10.1.85.3.ebuild:
  New release of 9.0 bug #344803, plus old version cleanup

  05 Nov 2010; Christian Faulhammer <fauli@gentoo.org>
  adobe-flash-10.1.102.64.ebuild:
  stable x86, security bug 343089

  05 Nov 2010; Markos Chandras <hwoarang@gentoo.org>
  adobe-flash-10.1.102.64.ebuild:
  Stable on amd64 wrt bug #343089

*adobe-flash-10.1.102.64 (05 Nov 2010)

  05 Nov 2010; Jim Ramsay <lack@gentoo.org> +adobe-flash-10.1.102.64.ebuild:
  Version bump: adobe-flash-10.1.102.64 is released (Security Bug #343089)

  13 Oct 2010; Jim Ramsay <lack@gentoo.org>
  adobe-flash-10.1.85.3.ebuild:
  nsplugin should be in RDEPEND too (Bug #334377)

  13 Oct 2010; Jim Ramsay <lack@gentoo.org>
  -adobe-flash-10.0.45.2-r2.ebuild, -adobe-flash-10.1.82.76.ebuild,
  -adobe-flash-10.1.82.76-r1.ebuild:
  Version cleanup: Removing 10.0 since 10.2 is the new more-secure release
  with native 64-bit code, and removing 10.1.82.76 now that 10.1.85.3 is
  stable

  13 Oct 2010; Markos Chandras <hwoarang@gentoo.org>
  adobe-flash-10.1.85.3.ebuild:
  Stable on amd64 wrt bug #337204

  13 Oct 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  adobe-flash-10.1.85.3.ebuild:
  x86 stable wrt security bug #337204

*adobe-flash-10.1.85.3 (13 Oct 2010)
*adobe-flash-9.0.283.0 (13 Oct 2010)

  13 Oct 2010; Jim Ramsay <lack@gentoo.org> -adobe-flash-9.0.280.0.ebuild,
  +adobe-flash-9.0.283.0.ebuild, +adobe-flash-10.1.85.3.ebuild:
  Bump legacy 9.0 and release 10.1 for Security bug #337204 (Current preview
  release of 10.2 is not affected)

  09 Oct 2010; Jim Ramsay <lack@gentoo.org>
  adobe-flash-10.2.161.23_pre20100927.ebuild:
  Fixed some logic and messages in pkg_postinst, thanks to report in Bug
  #338050

*adobe-flash-10.2.161.23_pre20100927 (09 Oct 2010)

  09 Oct 2010; Jim Ramsay <lack@gentoo.org>
  -adobe-flash-10.2.161.22_pre20100915.ebuild,
  +adobe-flash-10.2.161.23_pre20100927.ebuild:
  Next Square preview release is out, and the previous release now fails to
  fetch. Bug #339551

  17 Sep 2010; Jim Ramsay <lack@gentoo.org>
  adobe-flash-10.2.161.22_pre20100915.ebuild:
  Minor QA bug (trying to install readme.txt where there is no such file in
  the Square release)

*adobe-flash-10.2.161.22_pre20100915 (17 Sep 2010)

  17 Sep 2010; Jim Ramsay <lack@gentoo.org>
  +adobe-flash-10.2.161.22_pre20100915.ebuild:
  Adobe Square (10.2 now with 64-bit support!) pre-release (Bug #337542)

*adobe-flash-9.0.280.0 (15 Aug 2010)

  15 Aug 2010; Jim Ramsay <lack@gentoo.org> -adobe-flash-9.0.208.0.ebuild,
  +adobe-flash-9.0.280.0.ebuild:
  Oops, transposed 9.0.280 into 9.0.208 (Bug #332205)

  13 Aug 2010; Jim Ramsay <lack@gentoo.org>
  adobe-flash-10.1.82.76-r1.ebuild:
  Fix nswrapper install issue and clean up ewarn/elog messages a bit

  12 Aug 2010; Jim Ramsay <lack@gentoo.org> -adobe-flash-10.1.53.64.ebuild,
  -adobe-flash-10.1.53.64-r1.ebuild:
  Version cleanup

*adobe-flash-10.1.82.76-r1 (12 Aug 2010)

  12 Aug 2010; Jim Ramsay <lack@gentoo.org> +adobe-flash-10.1.82.76-r1.ebuild,
  metadata.xml:
  Bring back nspluginwrapper for amd64, with warnings and a USE flag.

  12 Aug 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  adobe-flash-9.0.208.0.ebuild, adobe-flash-10.1.82.76.ebuild:
  x86 stable wrt security bug #332205

  11 Aug 2010; Markos Chandras <hwoarang@gentoo.org>
  adobe-flash-9.0.208.0.ebuild, adobe-flash-10.1.82.76.ebuild:
  Stable on amd64. Security bug #332205

*adobe-flash-10.1.82.76 (11 Aug 2010)
*adobe-flash-9.0.208.0 (11 Aug 2010)

  11 Aug 2010; Jim Ramsay <lack@gentoo.org> +adobe-flash-9.0.208.0.ebuild,
  -adobe-flash-9.0.277.0.ebuild, -adobe-flash-9.0.277.0-r1.ebuild,
  -adobe-flash-10.0.45.2.ebuild, -adobe-flash-10.0.45.2-r1.ebuild,
  +adobe-flash-10.1.82.76.ebuild:
  Version/security bump: Adobe flash 10.1.82.76 and 9.0.208.0 is released,
  bug #332205.

  26 Jul 2010; Pacho Ramos <pacho@gentoo.org>
  adobe-flash-10.1.53.64-r1.ebuild:
  amd64 stable, bug 329913

  26 Jul 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  adobe-flash-10.1.53.64-r1.ebuild:
  x86 stable wrt bug #329913

  25 Jul 2010; Nirbheek Chauhan <nirbheek@gentoo.org>
  adobe-flash-9.0.277.0.ebuild, adobe-flash-9.0.277.0-r1.ebuild:
  Fix references for pkgmove from www-client/mozilla-firefox ->
  www-client/firefox

*adobe-flash-10.1.53.64-r1 (20 Jul 2010)
*adobe-flash-10.0.45.2-r2 (20 Jul 2010)
*adobe-flash-9.0.277.0-r1 (20 Jul 2010)

  20 Jul 2010; Jim Ramsay <lack@gentoo.org>
  +adobe-flash-9.0.277.0-r1.ebuild, +adobe-flash-10.0.45.2-r2.ebuild,
  +adobe-flash-10.1.53.64-r1.ebuild:
  Move plugin install path to /opt/Adobe/flash-plugin (Bug #328639)

  11 Jul 2010; Fabio Erculiani <lxnay@gentoo.org>
  adobe-flash-10.1.53.64.ebuild:
  fix EMUL_DEPS, just list direct dependencies

  28 Jun 2010; Jim Ramsay <lack@gentoo.org> files/mms.cfg:
  Fix typo in /etc/adobe/mms.cfg file header

  20 Jun 2010; Tobias Heinlein <keytoaster@gentoo.org>
  adobe-flash-10.0.45.2.ebuild, adobe-flash-10.0.45.2-r1.ebuild,
  adobe-flash-10.1.53.64.ebuild:
  Use proper security terms.

  20 Jun 2010; Markos Chandras <hwoarang@gentoo.org>
  adobe-flash-10.1.53.64.ebuild:
  Stable on amd64 wrt bug #322855

  19 Jun 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  adobe-flash-10.1.53.64.ebuild:
  x86 stable wrt security bug #322855

  18 Jun 2010; Jim Ramsay <lack@gentoo.org> adobe-flash-10.1.53.64.ebuild:
  Reintroduce ~amd64 for 10.1, but do not automatically invoke
  nspluginwrapper (Bug #324365)

*adobe-flash-9.0.277.0 (17 Jun 2010)

  17 Jun 2010; Jim Ramsay <lack@gentoo.org> -adobe-flash-9.0.262.0.ebuild,
  +adobe-flash-9.0.277.0.ebuild:
  Version 9 was also bumped (Bug #254011)

  16 Jun 2010; Jim Ramsay <lack@gentoo.org> adobe-flash-10.1.53.64.ebuild:
  New license for version 10.1 (Bug #323837)

  13 Jun 2010; Jim Ramsay <lack@gentoo.org> adobe-flash-10.1.53.64.ebuild:
  Updating dependencies to >=app-emulation/emul-linux-x86-baselibs-20100409
  (Bug #323709)

  11 Jun 2010; Jim Ramsay <lack@gentoo.org> adobe-flash-10.0.45.2.ebuild,
  adobe-flash-10.0.45.2-r1.ebuild, adobe-flash-10.1.53.64.ebuild:
  Major issues for amd64 with nspluginwrapper for 10.1: Removing ~amd64 from
  that version until a better solution presents itself. Note: This means
  that the 10.0 version for amd64 users has a known security bug.

*adobe-flash-10.1.53.64 (11 Jun 2010)

  11 Jun 2010; Jim Ramsay <lack@gentoo.org> +adobe-flash-10.1.53.64.ebuild:
  Adobe-flash 10.1.53.64 is released, and fixes security vulnerability
  CVE-2010-1297 (Bug #322855). Unfortunately there is no native 64bit
  version, so amd64 users are going back to a 32bit plugin plus
  nspluginwrapper.

  03 May 2010; Jim Ramsay <lack@gentoo.org> adobe-flash-10.0.45.2.ebuild:
  Removing libflashsupport block (Bug #300294)

  03 May 2010; Jim Ramsay <lack@gentoo.org> adobe-flash-10.0.45.2-r1.ebuild:
  Removing libflashsupport block (Bug #300294)

  03 May 2010; Jim Ramsay <lack@gentoo.org> adobe-flash-10.0.45.2.ebuild,
  adobe-flash-10.0.45.2-r1.ebuild:
  Clean up RDEPEND a bit

  30 Apr 2010; Jim Ramsay <lack@gentoo.org> adobe-flash-9.0.262.0.ebuild,
  adobe-flash-10.0.45.2.ebuild, adobe-flash-10.0.45.2-r1.ebuild:
  freefont-ttf should have been liberation-fonts instead, bug #302176

*adobe-flash-10.0.45.2-r1 (27 Mar 2010)

  27 Mar 2010; Jim Ramsay <lack@gentoo.org>
  +adobe-flash-10.0.45.2-r1.ebuild:
  Revbump to address bug #286159 (Ensure *all* processors support the
  lahf_lm instruction) and bug #311575 (No more flash-libcompat needed
  thanks to >=app-emulation/emul-linux-x86-baselibs-20100220)

  04 Mar 2010; Jim Ramsay <lack@gentoo.org> -adobe-flash-10.0.42.34.ebuild:
  Version cleanup (Secury bug #307749)

  04 Mar 2010; Pacho Ramos <pacho@gentoo.org> adobe-flash-10.0.45.2.ebuild:
  stable amd64, security bug 307749

  04 Mar 2010; Christian Faulhammer <fauli@gentoo.org>
  adobe-flash-10.0.45.2.ebuild:
  stable x86, security bug 307749

*adobe-flash-10.0.45.2 (12 Feb 2010)
*adobe-flash-9.0.262.0 (12 Feb 2010)

  12 Feb 2010; Jim Ramsay <lack@gentoo.org> -adobe-flash-9.0.260.0.ebuild,
  +adobe-flash-9.0.262.0.ebuild, +adobe-flash-10.0.45.2.ebuild:
  Version bump: 10.0.45.2 is released (security/stability fix)

  28 Dec 2009; Jim Ramsay <lack@gentoo.org> -adobe-flash-10.0.32.18.ebuild:
  Version Cleanup: 10.0.32.18 has security holes, bug 296407

  28 Dec 2009; Jim Ramsay <lack@gentoo.org> adobe-flash-10.0.42.34.ebuild:
  Block www-plugins/libflashsupport which is only required for adobe-flash-9

  27 Dec 2009; Christian Faulhammer <fauli@gentoo.org>
  adobe-flash-10.0.42.34.ebuild:
  stable x86, security bug 296407

  18 Dec 2009; Pacho Ramos <pacho@gentoo.org> adobe-flash-10.0.42.34.ebuild:
  amd64 stable, bug 296407

*adobe-flash-10.0.42.34 (09 Dec 2009)
*adobe-flash-9.0.260.0 (09 Dec 2009)

  09 Dec 2009; Jim Ramsay <lack@gentoo.org> -adobe-flash-9.0.246.0.ebuild,
  +adobe-flash-9.0.260.0.ebuild, +adobe-flash-10.0.42.34.ebuild:
  Version bump: 10.0.42.34 is released

  08 Dec 2009; Jim Ramsay <lack@gentoo.org> adobe-flash-9.0.246.0.ebuild,
  adobe-flash-10.0.32.18.ebuild:
  Removing reference to kde-flash.xml since it is no longer needed

*adobe-flash-9.0.246.0 (04 Aug 2009)

  04 Aug 2009; Jim Ramsay <lack@gentoo.org> -adobe-flash-9.0.159.0.ebuild,
  +adobe-flash-9.0.246.0.ebuild, -adobe-flash-10.0.22.87.ebuild,
  -adobe-flash-10.0.22.87-r1.ebuild, -adobe-flash-10.0.22.87-r2.ebuild:
  Version cleanup

  03 Aug 2009; Markus Meier <maekke@gentoo.org>
  adobe-flash-10.0.32.18.ebuild:
  x86 stable, bug #278819

  02 Aug 2009; Olivier Crête <tester@gentoo.org>
  adobe-flash-10.0.32.18.ebuild:
  Stable on amd64, security bug #278819

*adobe-flash-10.0.32.18 (02 Aug 2009)

  02 Aug 2009; Jeroen Roovers <jer@gentoo.org>
  +adobe-flash-10.0.32.18.ebuild:
  Version bump (bug #278819).

  20 Jul 2009; Jim Ramsay <lack@gentoo.org>
  adobe-flash-10.0.22.87-r2.ebuild:
  Use ^C-getCC for compiling the wrapper

*adobe-flash-10.0.22.87-r2 (20 Jul 2009)

  20 Jul 2009; Jim Ramsay <lack@gentoo.org>
  +adobe-flash-10.0.22.87-r2.ebuild, +files/flashplugin-lahf-fix.c:
  Bug #268336 continued -> Use Maks Verver's clever sighandler solution to
  emulate the missing lahf instruction on affected platforms

  15 Jul 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  adobe-flash-10.0.22.87-r1.ebuild:
  Set QA_DT_HASH to avoid QA warning about ignoring of LDFLAGS.

*adobe-flash-10.0.22.87-r1 (14 Jul 2009)

  14 Jul 2009; Jim Ramsay <lack@gentoo.org> -adobe-flash-10.0.15.3.ebuild,
  +adobe-flash-10.0.22.87-r1.ebuild, metadata.xml:
  Bug #268336 -> Check for the lahf_lm flag in /proc/cpuinfo. If it is not
  present, instruct the user to install the 32-bit version only.

*adobe-flash-10.0.22.87 (10 Apr 2009)
*adobe-flash-10.0.15.3 (10 Apr 2009)
*adobe-flash-9.0.159.0 (10 Apr 2009)

  10 Apr 2009; Ulrich Mueller <ulm@gentoo.org> +files/mms.cfg,
  +metadata.xml, +adobe-flash-9.0.159.0.ebuild,
  +adobe-flash-10.0.15.3.ebuild, +adobe-flash-10.0.22.87.ebuild:
  Package moved from net-www/netscape-flash to www-plugins/adobe-flash,
  bug 265569.

  09 Apr 2009; Ulrich Mueller <ulm@gentoo.org>
  netscape-flash-10.0.22.87.ebuild:
  Update reference to nspluginwrapper, reflecting its move to www-plugins,
  bug 265569.

  08 Mar 2009; Markus Meier <maekke@gentoo.org>
  netscape-flash-10.0.22.87.ebuild:
  amd64 stable, bug #260264

  08 Mar 2009; Christian Faulhammer <fauli@gentoo.org>
  netscape-flash-10.0.22.87.ebuild:
  stable x86, security bug 260264

  26 Feb 2009; Jim Ramsay <lack@gentoo.org> metadata.xml,
  netscape-flash-10.0.22.87.ebuild:
  Added new '32-bit' local USE flag which specifies whether amd64-multilib
  platforms get both 32- and 64-bit plugins, or just the 64-bit one.

*netscape-flash-9.0.159.0 (25 Feb 2009)

  25 Feb 2009; Jim Ramsay <lack@gentoo.org>
  -netscape-flash-9.0.152.0.ebuild, +netscape-flash-9.0.159.0.ebuild:
  Bumped security fix for flash-player-9: 9.0.159.0

*netscape-flash-10.0.22.87 (25 Feb 2009)

  25 Feb 2009; Jim Ramsay <lack@gentoo.org>
  -netscape-flash-10.0.21.1_alpha.ebuild, +netscape-flash-10.0.22.87.ebuild:
  Version bump: 10.0.22.87 is released, for both 32-bit and 64-bit. Enjoy
  the first multilib flash plugin ebuild.

*netscape-flash-9.0.152.0 (07 Jan 2009)

  07 Jan 2009; Jim Ramsay <lack@gentoo.org>
  -netscape-flash-9.0.151.0.ebuild, +netscape-flash-9.0.152.0.ebuild,
  -netscape-flash-10.0.12.36-r1.ebuild:
  Version bump for netscape-flash-9 (Bug #254011), and version cleanup

  23 Dec 2008; Markus Meier <maekke@gentoo.org>
  netscape-flash-10.0.15.3.ebuild:
  amd64/x86 stable, bug #251496

*netscape-flash-10.0.21.1_alpha (21 Dec 2008)
*netscape-flash-10.0.15.3 (21 Dec 2008)

  21 Dec 2008; Jim Ramsay <lack@gentoo.org>
  +netscape-flash-10.0.15.3.ebuild, +netscape-flash-10.0.21.1_alpha.ebuild,
  -netscape-flash-10.0.20.7_alpha.ebuild:
  Version bumps to both stable 32-bit and alpha 64-bit releases
  Bug #251454 Bug #239543

  01 Dec 2008; Jim Ramsay <lack@gentoo.org>
  netscape-flash-10.0.20.7_alpha.ebuild:
  Bug 249135 - Added warning to 'firefox-bin' users

  26 Nov 2008; Jim Ramsay <lack@gentoo.org>
  netscape-flash-10.0.12.36-r1.ebuild,
  netscape-flash-10.0.20.7_alpha.ebuild:
  Oops, removed wrong 'inherit rpm'

  25 Nov 2008; Jim Ramsay <lack@gentoo.org>
  netscape-flash-10.0.12.36-r1.ebuild:
  Removed unneeded rpm dep (Bug #247311)

  19 Nov 2008; Jim Ramsay <lack@gentoo.org>
  netscape-flash-10.0.20.7_alpha.ebuild:
  Dependency and typo fixes from nightmorph, plus a note to nspluginwrapper
  people

  19 Nov 2008; Jim Ramsay <lack@gentoo.org>
  netscape-flash-10.0.20.7_alpha.ebuild:
  Dependency and typo fixes from nightmorph, plus a note to nspluginwrapper
  people

*netscape-flash-10.0.20.7_alpha (17 Nov 2008)

  17 Nov 2008; Jim Ramsay <lack@gentoo.org>
  +netscape-flash-10.0.20.7_alpha.ebuild:
  Adding alpha release of 64-bit native flash player

*netscape-flash-9.0.151.0 (06 Nov 2008)

  06 Nov 2008; Jim Ramsay <lack@gentoo.org>
  -netscape-flash-9.0.124.0.ebuild, +netscape-flash-9.0.151.0.ebuild:
  New version 9.0.151.0 is released (security fixes)

  23 Oct 2008; Markus Meier <maekke@gentoo.org>
  netscape-flash-10.0.12.36-r1.ebuild:
  x86 stable, bug #239543

  18 Oct 2008; Dawid Węgliński <cla@gentoo.org>
  netscape-flash-10.0.12.36-r1.ebuild:
  Stable on amd64 - security bug #239543

*netscape-flash-10.0.12.36-r1 (17 Oct 2008)

  17 Oct 2008; Jim Ramsay <lack@gentoo.org> files/mms.cfg,
  -netscape-flash-10.0.12.36.ebuild, +netscape-flash-10.0.12.36-r1.ebuild:
  Defaulting AutoUpdateDisable=1 in the config file, and updated elog output
  to help firefox and konqueror users.

  17 Oct 2008; Jim Ramsay <lack@gentoo.org> -netscape-flash-7.0.68.ebuild:
  Removing legacy version 7, which is known to have major vulnerabilities
  (Bug 239543)

*netscape-flash-10.0.12.36 (15 Oct 2008)

  15 Oct 2008; Jim Ramsay <lack@gentoo.org>
  -netscape-flash-10_rc20080915.ebuild, +netscape-flash-10.0.12.36.ebuild:
  Adobe Flash 10.0.12.36 is released (Bug #242210)

*netscape-flash-10_rc20080915 (17 Sep 2008)

  17 Sep 2008; Jim Ramsay <lack@gentoo.org> files/mms.cfg,
  -netscape-flash-10_beta20080702.ebuild,
  -netscape-flash-10_beta20080811.ebuild,
  +netscape-flash-10_rc20080915.ebuild:
  Next RC is released, and I reorganized the dependencies a bit: x86 no
  longer needs 'flash-libcompat', and amd64 no longer needs xulrunner-bin

  09 Sep 2008; Jim Ramsay <lack@gentoo.org> +files/mms.cfg,
  netscape-flash-10_beta20080811.ebuild:
  Added magic 'mms.cfg' file for system-wide security configuration. Also,
  this file allows 'Windowless' mode to be disabled, which makes things much
  more stable pre-firefox-3.02

  25 Aug 2008; Jim Ramsay <lack@gentoo.org>
  netscape-flash-10_beta20080811.ebuild:
  Use a custom 'flash-libcompat' tarball which contains the libraries
  previously used from app-text/acroread, to remove that dependency.

*netscape-flash-10_beta20080811 (22 Aug 2008)

  22 Aug 2008; Jim Ramsay <lack@gentoo.org>
  +netscape-flash-10_beta20080811.ebuild:
  Version bump (Bug #234542)

*netscape-flash-10_beta20080702 (03 Jul 2008)

  03 Jul 2008; Jim Ramsay <lack@gentoo.org>
  -netscape-flash-9.0.115.0.ebuild, -netscape-flash-10_beta20080515.ebuild,
  +netscape-flash-10_beta20080702.ebuild:
  New beta version released (Bug #230598), and cleaning up a couple older
  versions

  17 Jun 2008; Krzysiek Pawlik <nelchael@gentoo.org>
  netscape-flash-7.0.68.ebuild, netscape-flash-9.0.115.0.ebuild,
  netscape-flash-9.0.124.0.ebuild, netscape-flash-10_beta20080515.ebuild:
  Add missing media-fonts/corefonts to DEPEND, see bug #227217.

*netscape-flash-10_beta20080515 (15 May 2008)

  15 May 2008; Jim Ramsay <lack@gentoo.org>
  +netscape-flash-10_beta20080515.ebuild:
  New beta version of FlashPlayer-10 is released (Bug #222231)

  17 Apr 2008; Markus Meier <maekke@gentoo.org>
  netscape-flash-9.0.124.0.ebuild:
  x86 stable, security bug #204344

  15 Apr 2008; Jim Ramsay <lack@gentoo.org> -netscape-flash-9.0.48.0.ebuild,
  -netscape-flash-9.0.48.0-r1.ebuild:
  Removing old (and broken ala bug #217799) versions

  15 Apr 2008; Jim Ramsay <lack@gentoo.org> netscape-flash-9.0.124.0.ebuild:
  Stable on amd64 as per security #204344

*netscape-flash-9.0.124.0 (09 Apr 2008)

  09 Apr 2008; Jim Ramsay <lack@gentoo.org>
  +netscape-flash-9.0.124.0.ebuild:
  New version released with security fixes (Bug 204344)

  17 Jan 2008; Jim Ramsay <lack@gentoo.org>
  -netscape-flash-9.0.60.0_beta082207.ebuild,
  -netscape-flash-9.0.60.0_beta100107.ebuild:
  Upstream source no longer available for these beta versions (Bug #206210)

  01 Jan 2008; Raúl Porcel <armin76@gentoo.org>
  netscape-flash-9.0.115.0.ebuild:
  x86 stable wrt security #193519

  30 Dec 2007; Richard Freeman <rich0@gentoo.org>
  netscape-flash-9.0.115.0.ebuild:
  amd64 stable - #193519

*netscape-flash-9.0.115.0 (04 Dec 2007)

  04 Dec 2007; Jim Ramsay <lack@gentoo.org>
  +netscape-flash-9.0.115.0.ebuild:
  New version released (bug 201231)

*netscape-flash-9.0.60.0_beta100107 (02 Oct 2007)

  02 Oct 2007; Jim Ramsay <lack@gentoo.org>
  +netscape-flash-9.0.60.0_beta100107.ebuild:
  New beta version released (Bug 194427)

  06 Sep 2007; Jeroen Roovers <jer@gentoo.org>
  netscape-flash-9.0.60.0_beta082207.ebuild:
  Fix HOMEPAGE for the new beta version.

*netscape-flash-9.0.60.0_beta082207 (05 Sep 2007)

  05 Sep 2007; Jim Ramsay <lack@gentoo.org>
  +netscape-flash-9.0.60.0_beta082207.ebuild:
  Adding the beta release with h.264 support (bug 189833)

*netscape-flash-9.0.48.0-r1 (19 Jul 2007)

  19 Jul 2007; Jim Ramsay <lack@gentoo.org> metadata.xml,
  +netscape-flash-9.0.48.0-r1.ebuild:
  Adding rpm-based ebuild since the RPM is the only versioned download
  available at this time. See bug 185141 for more details

  14 Jul 2007; <tester@gentoo.org> netscape-flash-9.0.48.0.ebuild:
  Remove file that no longer exists

  13 Jul 2007; Olivier Crête <tester@gentoo.org>
  files/digest-netscape-flash-9.0.48.0, Manifest:
  Seems like the files were changed upstream

*netscape-flash-9.0.48.0 (13 Jul 2007)

  13 Jul 2007; Olivier Crête <tester@gentoo.org>
  -netscape-flash-9.0.31.0.ebuild, +netscape-flash-9.0.48.0.ebuild:
  Security update, bugs #185141 and #185044

  18 Feb 2007; Steve Dibb <beandog@gentoo.org>
  netscape-flash-9.0.31.0.ebuild:
  amd64 stable, bug 167483

  18 Feb 2007; Raúl Porcel <armin76@gentoo.org>
  netscape-flash-9.0.31.0.ebuild:
  x86 stable wrt bug 167483

  31 Jan 2007; Raúl Porcel <armin76@gentoo.org>
  netscape-flash-7.0.68.ebuild, netscape-flash-9.0.31.0.ebuild:
  Remove net-www/gplflash blocker from DEPEND, bug 132922

  27 Jan 2007; Olivier Crête <tester@gentoo.org>
  netscape-flash-9.0.31.0.ebuild:
  Add warning on installation of debug version

  19 Jan 2007; Olivier Crête <tester@gentoo.org>
  -netscape-flash-9.0.21.78.ebuild, netscape-flash-9.0.31.0.ebuild:
  Add debug version and standalone player, thanks to Jakub, closes bug #162600

  17 Jan 2007; Alec Warner <antarus@gentoo.org>
  netscape-flash-7.0.68.ebuild, netscape-flash-9.0.21.78.ebuild,
  netscape-flash-9.0.31.0.ebuild:
  QA Fixes: deps should be -* arch arch not randomly -arch on some arches,
  it's an x86 binary, also nostrip is deprecated in favor of strip.

*netscape-flash-9.0.31.0 (17 Jan 2007)

  17 Jan 2007; Olivier Crête <tester@gentoo.org>
  +netscape-flash-9.0.31.0.ebuild, -netscape-flash-9.0.21.55.ebuild,
  -netscape-flash-7.0.63.ebuild:
  New release (non-beta)

*netscape-flash-9.0.21.78 (21 Nov 2006)

  21 Nov 2006; Olivier Crête <tester@gentoo.org>
  +netscape-flash-9.0.21.78.ebuild:
  New beta of flashplayer

  01 Nov 2006; Olivier Crête <tester@gentoo.org>
  netscape-flash-9.0.21.55.ebuild:
  Remove meaninless use flag, bug #153185

  23 Oct 2006; Patrick McLean <chutzpah@gentoo.org>
  netscape-flash-9.0.21.55.ebuild:
  Add dep on app-emulation/emul-linux-x86-soundlibs for amd64.

  21 Oct 2006; Stefan Schweizer <genstef@gentoo.org>
  netscape-flash-9.0.21.55.ebuild:
  Readd gtk useflag for the standalone player thanks to Serkan Kaba
  <serkan_kaba@yahoo.com> and Rick Harris <rickfharris@yahoo.com.au> in bug
  152068

*netscape-flash-9.0.21.55 (19 Oct 2006)

  19 Oct 2006; Olivier Crête <tester@gentoo.org>
  +netscape-flash-9.0.21.55.ebuild:
  New beta version

  30 Sep 2006; Daniel Gryniewicz <dang@gentoo.org>
  netscape-flash-7.0.68.ebuild:
  Marked stable on amd64 for bug #147421

  27 Sep 2006; Joshua Jackson <tsunam@gentoo.org>
  netscape-flash-7.0.68.ebuild:
  Stable x86; security bug #147421

*netscape-flash-7.0.68 (27 Sep 2006)

  27 Sep 2006; Chris White <chriswhite@gentoo.org>
  +netscape-flash-7.0.68.ebuild:
  Security bump for bug #147421.

  05 Aug 2006; Chris White <chriswhite@gentoo.org>
  -netscape-flash-6.0.79.ebuild, -netscape-flash-6.0.81.ebuild,
  -netscape-flash-7.0.25.ebuild, -netscape-flash-7.0.61.ebuild:
  Security punts for bug #140498.

  20 Mar 2006; Michele Noberasco <s4t4n@gentoo.org> netscape-flash-7.0.63.ebuild:
  Stable for x86 per security bug #102777. Added missing metadata.xml.

  20 Mar 2006; Olivier Crête <tester@gentoo.org>
  netscape-flash-7.0.63.ebuild:
  Stable on amd64 per security bug #102777

*netscape-flash-7.0.63 (19 Mar 2006)

  19 Mar 2006; Petteri Räty <betelgeuse@gentoo.org>
  +netscape-flash-7.0.63.ebuild:
  Version bump for bug #102777. Added stricter to RESTRICT because upstream
  binaries contain text relocations and there isn't much we can do about it.

  25 Nov 2005; Mark Loeser <halcy0n@gentoo.org>
  netscape-flash-7.0.61.ebuild:
  Stable on x86; bug #112251

  23 Nov 2005; <dang@gentoo.org> netscape-flash-7.0.61.ebuild:
  Marked stable on amd64

*netscape-flash-7.0.61 (23 Nov 2005)

  23 Nov 2005; Tavis Ormandy <taviso@gentoo.org>
  +netscape-flash-7.0.61.ebuild:
  security bump, security flaw found in the previous versions. 
  a secure gflashplayer is no longer available, and has therefore been dropped.

  11 Aug 2005; Diego Pettenò <flameeyes@gentoo.org>
  netscape-flash-6.0.79.ebuild, netscape-flash-6.0.81.ebuild,
  netscape-flash-7.0.25.ebuild:
  Call has_multilib_profile from pkg_setup instead of global scope.

  03 May 2005; Herbie Hopkins <herbs@gentoo.org>
  netscape-flash-7.0.25.ebuild:
  Fixed amd64 DEPEND wrt bug #91324

  04 Apr 2005; Danny van Dyk <kugelfang@gentoo.org>
  netscape-flash-7.0.25.ebuild:
  Fixed BUG #82060.

  27 Mar 2005; Danny van Dyk <kugelfang@gentoo.org>
  netscape-flash-7.0.25.ebuild:
  Marked stable on amd64.

  11 Feb 2005; Daniel Black <dragonheart@gentoo.org>
  netscape-flash-7.0.25.ebuild:
  x86 keyword as per bug #81355 thanks to Pablo Trabajos <guaje1985@hotmail.com>

  09 Jan 2005; Sven Wegener <swegener@gentoo.org>
  netscape-flash-6.0.79.ebuild, netscape-flash-6.0.81.ebuild,
  netscape-flash-7.0.25.ebuild:
  Added missing parentheses in SRC_URI/*DEPEND/LICENSE.

*netscape-flash-7.0.25 (30 May 2004)

  30 May 2004; Daniel Ahlberg <aliz@gentoo.org> netscape-flash-7.0.25.ebuild:
  Version bump, found by Alexandru Toma <flash3001@yahoo.com> in #52120.
  Fix readme.txt installation, closing #51017.

  13 May 2004; Daniel Ahlberg <aliz@gentoo.org> netscape-flash-6.0.81.ebuild:
  x86 and amd64 unmask.

*netscape-flash-6.0.81 (16 Mar 2004)

  16 Mar 2004; Daniel Ahlberg <aliz@gentoo.org> netscape-flash-6.0.81.ebuild:
  Version bump

  04 Oct 2003; Joel Hill <hillster@gentoo.org> netscape-flash-6.0.79.ebuild:
  added RDEPEND to block it from being installed with net-www/gplflash

*netscape-flash-6.0.79 (09 Mar 2003)

  09 Mar 2003; Daniel Ahlberg <aliz@gentoo.org> :
  Security update.

*netscape-flash-6.0.69-r2 (07 Jan 2003)

  07 Jan 2003; J Robert Ray <jrray@gentoo.org> netscape-flash-6.0.69-r2 :
  Changed the ebuild to not strip the binaries, stripping causes the
  gflashplayer program to segfault.  Fixes bug 12672.

*netscape-flash-6.0.69-r1 (13 Feb 2003)
 
  13 Jul 2003; Daniel Ahlberg <aliz@gentoo.org> :
  Added missing changelog entry.

*netscape-flash-6.0.68 (18 Dec 2002)

  19 Dec 2002; Seemant Kulleen <seemant@gentoo.org> netscape-flash-6.0.69-r1 :

  Moved to stable, as the lib-compat upgrade fixes this nicely.

  18 Dec 2002; Seemant Kulleen <seemant@gentoo.org>
  netscape-flash-6.0.69-r1.ebuild files/digest-netscape-flash-6.0.69-r1 :

  Added lib-compat-1.1 (with gcc2's libstdc++) as a DEPEND

*netscape-flash-6.0.69 (16 Dec 2002)

  16 Dec 2002; Seemant Kulleen <seemant@gentoo.org>
  netscape-flash-6.0.69.ebuild files/digest-netscape-flash-6.0.69 :

  Version bump, and removed all the other versions.  Many thanks to:
  warren@togami.com (Warren Togami) for providing mirrors and properly
  versioned tarballs :) (see bug #11757)  Also added the optional standalone
  GTK (1.2) flash player, with the "gtk" use flag enabled.

*netscape-flash-6.0b-r1 (21 Nov 2002)

  06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
 
  21 Nov 2002; phoen][x <phoenix@gentoo.org> netscape-flash-6.0b-r1.ebuild,
  files/digest-netscape-flash-6.0b-r1 :
  Switched to the new nsplugins layout.

*netscape-flash-6.0b (21 Oct 2002)

  21 Oct 2002; Mike Frysinger <vapier@gentoo.org> :
  Semi-new ebuild per #9435 ... finally flash works in moz/konq on 3.x ;D

*netscape-flash-5.0.51 (21 Oct 2002)

  21 Oct 2002; Mike Frysinger <vapier@gentoo.org> :
  Version bump per #9422

*netscape-flash-5.0.50 (19 Aug 2002)

  19 Aug 2002; Sascha Schwabbauer <cybersystem@gentoo.org> ChangeLog, netscape-flash-5.0.50.ebuild :
  Added -ppc to the keywords.

  12 Aug 2002; Seemant Kulleen <seemant@gentoo.org>
  netscape-flash-5.0.50.ebuild files/digest-netscape-flash-5.0.50 :
  Version bump. This is a security fix.

*netscape-flash-5.0.48 (29 Apr 2002)

  29 Apr 2002; Bart Verwilst <verwilst@gentoo.org> ChangeLog :
  New version, removed older 5.0.x version.

*netscape-flash-5.0.47-r4 (17 Feb 2002)

  17 Feb 2002; Dan Armak <danarmak@gentoo.org> ChangeLog :
  The ebuild now correctly fetches the source archive, instead of asking the
  user to manually download it.

*netscape-flash-5.0.47-r3 (1 Feb 2002)

  1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :
  Added initial ChangeLog which should be updated whenever the package is
  updated in any way. This changelog is targetted to users. This means that the
  comments should well explained and written in clean English. The details about
  writing correct changelogs are explained in the skel.ChangeLog file which you
  can find in the root directory of the portage repository.