summaryrefslogtreecommitdiff
blob: 67fc34956411bc1b980352448217a62a90a95f9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
# ChangeLog for profile directory
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9644 2014/12/26 19:23:55 ulm Exp $
#
# This ChangeLog should include records for all changes in profiles directory.
# Only typo fixes which don't affect portage/repoman behaviour could be avoided
# here. If in doubt put a record here!

  26 Dec 2014; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add VTK license to the MISC-FREE group. This is a variant of the BSD license.

  26 Dec 2014; Michael Palimaka <kensington@gentoo.org> package.mask:
  Mask dev-libs/grantlee:5 due to masked Qt 5 dependency.

  25 Dec 2014; Gilles Dartiguelongue <eva@gentoo.org> package.mask:
  Unmask libmediaart-0.7 and friends.

  25 Dec 2014; Gilles Dartiguelongue <eva@gentoo.org> package.mask:
  Gnome 3.14 is complete in tree, remove mask.

  25 Dec 2014; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask sci-physics/camfr.

  25 Dec 2014; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add CLX license to MISC-FREE group, bug 533400.

  24 Dec 2014; Mart Raudsepp <leio@gentoo.org> thirdpartymirrors:
  Update gnome mirror to current upstream preferred location, which actually
  ends up using upstream geolocation powered mirroring system

  24 Dec 2014; Michael Orlitzky <mjo@gentoo.org> package.mask:
  Mask net-analyzer/nagios-imagepack for removal in 30 days.

  24 Dec 2014; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Adjust mask for dev-libs/boost and dev-util/boost-build

  24 Dec 2014; Ian Delaney <idella4@gentoo.org> package.mask:
  masking dev-python/orm, dev-python/testoob for removal in 'usual' time

  24 Dec 2014; Gilles Dartiguelongue <eva@gentoo.org> package.mask:
  Add gitg (webkit:4) and farstream (glib) to Gnome 3.14 mask.

  23 Dec 2014; Gilles Dartiguelongue <eva@gentoo.org> package.mask:
  Add tracker and nautilus-tracker-tags to libmediaart mask.

  23 Dec 2014; Gilles Dartiguelongue <eva@gentoo.org> package.mask:
  Add mask for newer rygel releases.

  23 Dec 2014; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask app-misc/fixdos for removal. Bug #533222

  22 Dec 2014; Tim Harder <radhermit@gentoo.org> package.mask:
  Drop old dev-util/freshmeat-submit and dev-util/freecode-submit masks, pkgs
  removed from the tree.

  22 Dec 2014; Michael Palimaka <kensington@gentoo.org> package.mask:
  Mask >=kde-misc/about-distro-2.0.0 due to masked Qt5 dependency.

  22 Dec 2014; Lars Wendler <polynomial-c@gentoo.org> package.mask:
  Removed app-arch/xz-utils mask.

  20 Dec 2014; Matthias Maier <tamiko@gentoo.org> package.mask:
  mask mate 1.6* for removal

  20 Dec 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Mask further ruby-1.9 only packages.

  20 Dec 2014; Ben de Groot <yngwin@gentoo.org> categories:
  Remove razorqt-base category

  16 Dec 2014; Pacho Ramos <pacho@gentoo.org>
  arch/amd64/no-emul-linux-x86/package.use.stable.mask,
  arch/amd64/package.use.stable.mask:
  Mask is not really needed, the deps were wrong (Thanks a lot to Arfrever for
  pointing the issue

  16 Dec 2014; Pacho Ramos <pacho@gentoo.org>
  arch/amd64/no-emul-linux-x86/package.use.stable.mask,
  arch/amd64/package.use.stable.mask:
  Update multilib masks

  16 Dec 2014; Pacho Ramos <pacho@gentoo.org>
  arch/amd64/no-emul-linux-x86/package.mask,
  arch/amd64/no-emul-linux-x86/package.use.stable.mask,
  arch/amd64/package.use.stable.mask:
  Update multilib masks for wine

  15 Dec 2014; Ruud Koolen <redlizard@gentoo.org> profiles.desc:
  Added linux prefix-standalone profiles.

  15 Dec 2014; Pacho Ramos <pacho@gentoo.org> package.mask:
  Drop now obsoleted mask

  15 Dec 2014; Pacho Ramos <pacho@gentoo.org> package.mask:
  There is no need to hardmask folks at this point

  15 Dec 2014; Ben de Groot <yngwin@gentoo.org> package.mask:
  Add x11-misc/kaqaz to Qt5 mask

  15 Dec 2014; Alexis Ballier <aballier@gentoo.org> package.mask:
  unmask >=media-video/mplayer-1.2_pre20141011 as 2 months have passed and
  there does not seem to be any improvement for libav support while it starts
  to cause issues to users, see bug #532562 and
  https://bugs.gentoo.org/show_bug.cgi?id=525070#c14

  15 Dec 2014; Ben de Groot <yngwin@gentoo.org> updates/4Q-2014, package.mask:
  Add media-gfx/phototonic to Qt5 mask

  15 Dec 2014; Ben de Groot <yngwin@gentoo.org> updates/4Q-2014:
  Package move media-gfx/photo to media-gfx/photoqt

  15 Dec 2014; Ben de Groot <yngwin@gentoo.org> package.mask:
  Add >=media-gfx/photoqt-1.1 to Qt5 mask

  15 Dec 2014; Mike Gilbert <floppym@gentoo.org> package.mask:
  Restore Gnome 3.14 mask, without the unrelated noise.

  15 Dec 2014; Mike Gilbert <floppym@gentoo.org> package.mask:
  Revert previous change.

  14 Dec 2014; Gilles Dartiguelongue <eva@gentoo.org> package.mask:
  Add mask for Gnome 3.14.

  14 Dec 2014; Tim Harder <radhermit@gentoo.org> package.mask:
  Mask inkscape pre-releases.

  14 Dec 2014; Ulrich Müller <ulm@gentoo.org> -updates/1Q-2009,
  -updates/2Q-2009, -updates/3Q-2009, -updates/4Q-2009:
  Clean up updates/*-2009 files. Removing them a few days early, since 2009
  files were recently touched which would cause a replay of all updates.

  14 Dec 2014; Tim Harder <radhermit@gentoo.org> package.mask:
  Mask app-vim/cvscommand and app-vim/svncommand for removal.

  13 Dec 2014; Michael Palimaka <kensington@gentoo.org> package.mask:
  Add dev-qt/qtwayland to Qt5 mask.

  13 Dec 2014; Ben de Groot <yngwin@gentoo.org> base/package.use.mask:
  Unmask harfbuzz use on freetype, bug #517442

  12 Dec 2014; Michał Górny <mgorny@gentoo.org> updates/3Q-2009,
  updates/4Q-2009, updates/4Q-2014:
  Move net-zope/zc-buildout and net-zope/zope-interface into dev-python/.

  12 Dec 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Lastrite net-zope/zope-fixers.

  12 Dec 2014; Michael Palimamka <kensington@gentoo.org> package.mask:
  Add 5.4.0 to Qt5 mask.

  12 Dec 2014; Jeroen Roovers <jer@gentoo.org> package.mask:
  Mask <x11-drivers/nvidia-drivers-304 (bug #532342).

  12 Dec 2014; Sergey Popov <pinkbyte@gentoo.org> use.desc:
  Make 'vaapi' USE flag global as discussed in gentoo-dev maillist

  11 Dec 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Update eselect-opengl mask.

  10 Dec 2014; Matthias Maier <tamiko@gentoo.org> package.mask:
  Remove obsolete mask for app-emulation/virtinst

  09 Dec 2014; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Mask vulnerable versions of app-antivirus/clamav

  09 Dec 2014; Matt Turner <mattst88@gentoo.org> package.mask:
  Mask sys-apps/kmscon for removal.

  08 Dec 2014; Matt Turner <mattst88@gentoo.org> package.mask:
  Mask only mesa-10.3.{4,5}-r1.

  08 Dec 2014; Matt Turner <mattst88@gentoo.org> package.mask:
  Mask mesa-10.3.5-r1 for eselect-opengl testing.

  08 Dec 2014; Tim Harder <radhermit@gentoo.org> license_groups:
  Add Coherent-Graphics license to EULA group.

  08 Dec 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask new eselect-opengl for testing.

  07 Dec 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Remove old masks

  06 Dec 2014; Andreas K. Huettel <dilfridge@gentoo.org> license_groups:
  Add Time-Format license to MISC-FREE

  05 Dec 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Unmask PulseAudio after reaching a compromise.

  05 Dec 2014; Pacho Ramos <pacho@gentoo.org>
  arch/amd64/no-emul-linux-x86/package.use.stable.mask,
  arch/amd64/package.use.stable.mask:
  Update multilib masks

  05 Dec 2014; Pacho Ramos <pacho@gentoo.org> package.mask:
  Hardmask due bug #519530, read mask comment for more explanations

  04 Dec 2014; Fabian Groffen <grobian@gentoo.org> package.mask:
  Extend upcoming Exim RC mask

  04 Dec 2014; Ian Stakenvicius (_AxS_) <axs@gentoo.org>
  arch/amd64/no-emul-linux-x86/package.mask, package.mask:
  added media-libs/openh264 to the tree, masking for testing for now

  04 Dec 2014; Ian Stakenvicius (_AxS_) <axs@gentoo.org>
  arch/amd64/no-emul-linux-x86/package.mask, hardened/linux/package.use.mask:
  mask gmp-autoupdate use flag for firefox on hardened, since random binary
  blobs may be unsafe

  03 Dec 2014; Michael Palimaka <kensington@gentoo.org> package.mask:
  Mask media-sound/drumstick and media-sound/kmetronome due to Qt5 dependency.

  02 Dec 2014; Ultrabug <ultrabug@gentoo.org> package.mask:
  drop sys-cluster/corosync-2.x mask wrt #518880

  02 Dec 2014; Pacho Ramos <pacho@gentoo.org>
  arch/amd64/no-emul-linux-x86/package.use.stable.mask,
  arch/amd64/package.use.stable.mask:
  Update masks for multilib stuff

  02 Dec 2014; Justin Lecher <jlec@gentoo.org> package.mask:
  Mask net-analyzer/openvas-administrator, #531392

  01 Dec 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Cleanup package.mask

  01 Dec 2014; Alexis Ballier <aballier@gentoo.org> package.mask:
  unmask ocaml 4.02.1

  01 Dec 2014; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask packages for removal

  01 Dec 2014; Alexis Ballier <aballier@gentoo.org> package.mask:
  lastrite dev-ml/obrowser

  01 Dec 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Mask packages that don't run with later rubies.

  30 Nov 2014; Gilles Dartiguelongue <eva@gentoo.org> updates/4Q-2014:
  Move gstreamermm-0.10 to 0.10 slot.

  30 Nov 2014; Andreas K. Huettel <dilfridge@gentoo.org> license_groups:
  Add File-MMagic to MISC-FREE license group

  30 Nov 2014; Michał Górny <mgorny@gentoo.org> profiles.desc:
  Update the amd64 no-emul-linux-x86 profile list.

  29 Nov 2014; Mikle Kolyada <zlogene@gentoo.org> package.mask:
  Update media-video/mpv mask due to new version

  29 Nov 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove obsolete mask of mail-filter/spamassassin-fuzzyocr

  28 Nov 2014; Alexis Ballier <aballier@gentoo.org> package.mask:
  mask dev-ml/camlp4 with ocaml 4.02

  28 Nov 2014; Alexis Ballier <aballier@gentoo.org> package.mask:
  mask findlib requiring ocaml 4.02

  28 Nov 2014; Alexis Ballier <aballier@gentoo.org> package.mask:
  mask labltk along with ocaml 4.02

  28 Nov 2014; Alexis Ballier <aballier@gentoo.org> package.mask:
  mask ocaml 4.02

  27 Nov 2014; Tim Harder <radhermit@gentoo.org> package.mask:
  Remove old mask on msp430 toolchain pkgs.

  27 Nov 2014; Alexis Ballier <aballier@gentoo.org> package.mask:
  remove now unneeded ocamlduce mask, bug #518876

  27 Nov 2014; Alexis Ballier <aballier@gentoo.org> updates/4Q-2014:
  move www-servers/ocsigen www-servers/ocsigenserver; it should have been done
  a looong time ago and the former no longer builds

  26 Nov 2014; Aaron W. Swenson <titanofold@gentoo.org> package.mask:
  Masked dev-perl/pgperl for removal.

  25 Nov 2014; Ian Stakenvicius (_AxS_) <axs@gentoo.org>
  arch/amd64/no-emul-linux-x86/package.mask, default/bsd/package.use.mask:
  mask sysfs flag on bsd for mesa, since bsd has no sysfs

  24 Nov 2014; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Unmask libgit2-glib, gitg-0.3.3 is out.

  24 Nov 2014; Patrick Lauer <patrick@gentoo.org> package.mask:
  Mask trac-related packages that are no longer installable

  24 Nov 2014; Tim Harder <radhermit@gentoo.org> package.mask:
  Mask dev-util/{freshmeat,freecode}-submit for removal.

  24 Nov 2014; Tim Harder <radhermit@gentoo.org> package.mask:
  Drop old dev-util/cmockery and dev-python/pry masks, pkgs removed from the
  tree.

  23 Nov 2014; Rémi Cardona <remi@gentoo.org> package.mask:
  Remove xorg-server 1.16.2 from p.mask, x11 team agrees on binary slot

  23 Nov 2014; Pacho Ramos <pacho@gentoo.org>
  arch/amd64/no-emul-linux-x86/package.use.stable.mask,
  arch/amd64/package.use.stable.mask:
  Update masks

  21 Nov 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Roll dev channel mask for chromium-41.

  21 Nov 2014; Pacho Ramos <pacho@gentoo.org> package.mask:
  Cleanup obsolete masks

  21 Nov 2014; Tim Harder <radhermit@gentoo.org> updates/4Q-2014:
  Rename app-shells/zsh-completion to app-shells/gentoo-zsh-completions.

  20 Nov 2014; Davide Pesavento <pesa@gentoo.org> package.mask:
  Move Qt 4.8.6 mask from global package.mask to arch profiles, except for
  amd64/hppa/x86 which already keyworded qtchooser.

  19 Nov 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Remove mask for app-emacs/csharp-mode. Package is fixed and won't be removed.

  19 Nove 2014; Rick Farina <zerochaos@gentoo.org> package.mask:
  Remove net-misc/ieee-oui mask as it has been removed.

  18 Nov 2014; Fabian Groffen <grobian@gentoo.org> package.mask:
  Mask upcoming Exim RC

  18 Nov 2014; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Reword lightdm mask message

  18 Nov 2014; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Update lightdm mask

  18 Nov 2014; Anthony G. Basile <blueness@gentoo.org> profiles.desc:
  Add hardened musl profiles for ppc to profiles.desc

  18 Nov 2014; Jeroen Roovers <jer@gentoo.org> base/package.use.mask:
  Rename external-lua => system-lua.

  17 Nov 2014; Jeroen Roovers <jer@gentoo.org> base/package.use.mask,
  package.mask:
  Mask USE=external-lua for net-analyzer/nmap and drop package.mask entry (bug
  #253269).

  15 Nov 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Cleanup old masks.

  15 Nov 2014; Mike Frysinger <vapier@gentoo.org> use.desc:
  Start USE=pie for network/set*id programs to respect on non-hardened systems.

  15 Nov 2014; Pacho Ramos <pacho@gentoo.org> arch/amd64-fbsd/package.use.mask:
  package.use.mask due missing keywords (#523854)

  15 Nov 2014; Rémi Cardona <remi@gentoo.org> package.mask:
  Mask upcoming xorg-server 1.16.2 release

  13 Nov 2014; Pacho Ramos <pacho@gentoo.org> package.mask:
  Gnome2 stuff was finally removed (#508854)

  13 Nov 2014; Tomáš Chvátal <scarabeus@gentoo.org>
  arch/amd64/no-multilib/package.use.mask,
  features/64bit-native/package.use.mask:
  Mask the apulse useflag on skype for no-multilib

  13 Nov 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Unmask app-editors/emacs-vcs live git ebuilds.

  13 Nov 2014; Davide Pesavento <pesa@gentoo.org> package.mask:
  Mask Qt 4.8.6 multilib ebuilds.

  12 Nov 2014; Julian Ospald <hasufell@gentoo.org> package.mask:
  rm testing mask on net-misc/teamviewer

  12 Nov 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  poppler-0.28 seems to be unproblematic, unmasking

  12 Nov 2014; Ian Stakenvicius (_AxS_) <axs@gentoo.org>
  arch/amd64/no-emul-linux-x86/package.mask:
  no-emul-linux-x86 sub-profiles: unmasked java emul packages as they will not
  be multilib capable any time soon, added masks for libSM that hard depend on
  emul-linux-x860-baselibs, removed mask for app-emulation/crossover-bin as
  it's deps have been adjusted

  12 Nov 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Temporary mask for app-editors/emacs-vcs live git ebuilds.

  11 Nov 2014; Pacho Ramos <pacho@gentoo.org> arch/alpha/package.use.mask,
  arch/ia64/package.use.mask, arch/sparc/package.use.mask:
  use.mask due missing keywords

  11 Nov 2014; Eray Aslan <eras@gentoo.org> package.mask:
  Mask beta software - net-proxy/squid-3.5 releases

  10 Nov 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask poppler-0.28 for an initial testing period

  08 Nov 2014; William Hubbs <williamh@gentoo.org> package.mask:
  qa: removed testing mask from >=sys-devel/distcc-3.2_rc1 wrt #518884

  08 Nov 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove obsolete Perl 5.16 mask

  08 Nov 2014; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Update lightdm mask

  08 Nov 2014; Ben de Groot <yngwin@gentoo.org> updates/4Q-2014, package.mask:
  Move libqtxdg to dev-libs category since razorqt-base is last-rited

  08 Nov 2014; Patrick Lauer <patrick@gentoo.org> package.mask:
  Keep razorqt-base/libqtxdg unmasked as it's needed by lxqt

  08 Nov 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove obsolete mask of dev-perl/Lucene

  08 Nov 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove obsolete mask of sys-devel/libperl

  07 Nov 2014; Ian Stakenvicius (_AxS_) <axs@gentoo.org>
  +default/linux/amd64/13.0/no-emul-linux-x86/desktop/eapi,
  +default/linux/amd64/13.0/no-emul-linux-x86/desktop/parent, profiles.desc:
  added desktop variant to the amd64 no-emul-linux-x86 profile to support more
  real-world type testing

  07 Nov 2014; Ben de Groot <yngwin@gentoo.org> package.mask:
  Mask razorqt-base packages. They are unmaintained, unsupported, and are
  starting to throw compilation errors.

  06 Nov 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Mask dev-ruby/prawn:0

  06 Nov 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Mask media-fonts/oxygen-fonts

  06 Nov 2014; Julian Ospald <hasufell@gentoo.org> package.mask:
  unmask dev-games/ogre-1.9.0

  06 Nov 2014; Michał Górny <mgorny@gentoo.org>
  desc/python_single_target.desc, desc/python_targets.desc:
  Describe flags for PyPy3.

  06 Nov 2014; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Unmask net-im/qutim, it builds now.

  05 Nov 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask app-emacs/csharp-mode for removal.

  05 Nov 2014; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask "ConsoleKit2" for testing.

  4 Nov 2014; Matthias Maier <tamiko@gentoo.org> package.mask:
  Mask app-emulation/virtinst for removal, #482472

  03 Nov 2014; Aaron W. Swenson <titanofold@gentoo.org> package.mask:
  Remove PostgreSQL masks

  02 Nov 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove obsolete app-text/pastebin mask

  02 Nov 2014; Ben de Groot <yngwin@gentoo.org> package.mask:
  Add app-i18n/fcitx-qt5 to Qt5 package mask

  02 Nov 2014; Alexis Ballier <aballier@gentoo.org> package.mask:
  unmask kpathsea from tl 2014 since it is compatible

  31 Oct 2014; Pacho Ramos <pacho@gentoo.org>
  arch/powerpc/ppc32/package.use.stable.mask:
  Update mask for webkit moving to testing on ppc

  31 Oct 2014; Pacho Ramos <pacho@gentoo.org>
  arch/powerpc/ppc32/package.use.stable.mask:
  package.use.stable.mask updated for #525258

  31 Oct 2014; Pacho Ramos <pacho@gentoo.org>
  arch/powerpc/ppc64/package.use.stable.mask:
  package.use.stable.mask updated for #525236

  31 Oct 2014; Pacho Ramos <pacho@gentoo.org>
  arch/alpha/package.use.stable.mask:
  package.use.stable.mask updated for #525196

  31 Oct 2014; Pacho Ramos <pacho@gentoo.org>
  arch/alpha/package.use.stable.mask,
  arch/powerpc/ppc32/package.use.stable.mask:
  package.use.stable.mask updated for #524382

  31 Oct 2014; Tim Harder <radhermit@gentoo.org> package.mask:
  Mask the msp430 toolchain for removal.

  30 Oct 2014; Alexis Ballier <aballier@gentoo.org> updates/4Q-2014:
  move dev-ml/async_core dev-ml/async_kernel; it was actually a rename

  30 Oct 2014; Jauhien Piatlicki <jauhien@gentoo.org> package.mask:
  mask ebuilds for LXQt-0.8.0 release testing

  30 Oct 2014; Ian Delaney <idella4@gentoo.org> (30 Oct 2014):
  Unmask dev-python/blaze-0.6.5, dep is satisfied

  29 Oct 2014; Ian Delaney <idella4@gentoo.org> (29 Oct 2014):
  Mask dev-python/blaze-0.6.5 until dep is satisfied

  28 Oct 2014; Jeroen Roovers <jer@gentoo.org> desc/linguas.desc:
  Add linguas_es_419. Keep it sorted.

  27 Oct 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask mail-filter/spamassassin-fuzzyocr for removal

  27 Oct 2014; Mikle Kolyada <zlogene@gentoo.org> package.mask:
  Mask dev-perl/Mail-ClamAV for removal.

  27 Oct 2014; Michael Palimaka <kensington@gentoo.org> package.mask:
  Unmask kde-frameworks/kf-env which was accidentally masked - it has no deps.

  26 Oct 2014; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Move xinit mask to base/ in order to be able to properly unmask in systemd
  target.

  26 Oct 2014; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  targets/systemd/package.mask:
  Unmask x11-apps/xinit-1.3.4 in systemd profiles

  26 Oct 2014; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Mask >=x11-apps/xinit-1.3.4 due to startx breakage, bugs #526762 and #526802.

  26 Oct 2014; Mart Raudsepp <leio@gentoo.org> package.mask:
  Unmask clutter-gst:1.0 as dependency of pinpoint (#526868)

  25 Oct 2014; Pacho Ramos <pacho@gentoo.org> package.mask:
  Unmask pinpoint (#508854#c58 by Ferenc Erki)

  25 Oct 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Mask net-print/foomatic-filters-ppds

  25 Oct 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Unleash new bash-completion on ~arch so that users do not get bored.

  25 Oct 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask sys-kernel/genkernel-next for bashcomp update, and use >= atoms for all
  packages.

  25 Oct 2014; Tim Harder <radhermit@gentoo.org> package.mask:
  Mask dev-util/cmockery for removal.

  25 Oct 2014; Tim Harder <radhermit@gentoo.org> package.mask:
  Mask dev-python/pry for removal.

  24 Oct 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask new sys-apps/pacman for bashcomp collision.

  24 Oct 2014; Ian Stakenvicius <axs@gentoo.org> package.mask:
  Added =app-text/calibre-2* to the QT5 mask list

  24 Oct 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask dev-perl/DateTime-Format-DateManip for removal

  24 Oct 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask dev-perl/SVN-Mirror for removal

  24 Oct 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask bashcomp update of app-misc/booh.

  24 Oct 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask bashcomp update of app-i18n/pology.

  23 Oct 2014; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Remove mask on recent xf86-input-synaptics and xf86-input-evdev, bug #487944.

  23 Oct 2014; Pacho Ramos <pacho@gentoo.org>
  arch/amd64/no-emul-linux-x86/package.use.stable.mask,
  arch/amd64/package.use.stable.mask:
  update abi_x86_32 masks

  22 Oct 2014; Ian Stakenvicius <axs@gentoo.org>
  default/linux/uclibc/amd64/package.mask:
  Duplicate package.mask from features/64bit-native to
  uclibc/amd64 with blessings of blueness

  21 Oct 2014; Pacho Ramos <pacho@gentoo.org>
  arch/amd64/no-emul-linux-x86/package.use.stable.mask,
  arch/amd64/package.use.stable.mask:
  Update mask

  20 Oct 2014; Pacho Ramos <pacho@gentoo.org>
  arch/amd64/no-emul-linux-x86/package.use.stable.mask,
  arch/amd64/package.use.stable.mask:
  Update mask

  20 Oct 2014; Davide Pesavento <pesa@gentoo.org> package.mask:
  Mask net-im/qutim for removal.

  19 Oct 2014; Rick Farina <zerochaos@gentoo.org> package.mask:
  mask net-misc/ieee-oui for removal on 19 Nov 2014

  19 Oct 2014; Pacho Ramos <pacho@gentoo.org> base/package.use.mask:
  swfdec is masked for removal, bug #525834

  18 Oct 2014; Michael Orlitzky <mjo@gentoo.org> package.mask:
  Remove package.mask for app-text/unix2dos (removed from tree).

  18 Oct 2014; Mike Frysinger <vapier@gentoo.org> package.mask:
  Drop DirectFB mask.

  18 Oct 2014; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask rb_libtorrent-1* since rdeps are broken

  18 Oct 2014; Pacho Ramos <pacho@gentoo.org>
  arch/amd64/no-emul-linux-x86/package.use.stable.mask,
  arch/amd64/package.use.stable.mask:
  Update package.use.stable.mask for abi_x86_32

  18 Oct 2014; Jauhien Piatlicki <jauhien@gentoo.org> package.mask:
  mask >=x11-misc/sddm-0.10.0 because it needs Qt-5, restrict security mask to
  <x11-misc/sddm-0.10.0

  18 Oct 2014; Pacho Ramos <pacho@gentoo.org> base/package.use.mask:
  package.use.mask not needed anymore (#525564 by bwcknr)

  16 Oct 2014; Justin Lecher <jlec@gentoo.org> package.mask:
  mask aufs-sources for kernel 3.17.0 has broken ATA blacklist, #525548

  16 Oct 2014; Mike Pagano <mpagano@gentoo.org> package.mask:
  Adding vanilla and gentoo kernel sources 3.17.0 to mask for file system
  corruption.

  16 Oct 2014; Pacho Ramos <pacho@gentoo.org>
  arch/amd64/no-emul-linux-x86/package.use.stable.mask:
  Add missing line

  16 Oct 2014; Pacho Ramos <pacho@gentoo.org> package.mask:
  x11-themes/gtk-engines-flat is still use, thanks to Mathieu Zouaoua for
  noticing

  15 Oct 2014; Michael Palimaka <kensington@gentoo.org> package.mask:
  Mask app-dicts/gnuvd for removal wrt bug #451868.

  15 Oct 2014; Michael Palimaka <kensington@gentoo.org> package.mask:
  Add KDE Frameworks to Qt 5 mask.

  15 Oct 2014; Michael Palimaka <kensington@gentoo.org> categories:
  Add kde-frameworks category.

  15 Oct 2014; Pacho Ramos <pacho@gentoo.org>
  arch/sparc/package.use.stable.mask:
  webkit-gtk:2 is being moved to testing on sparc (#525232)

  15 Oct 2014; Pacho Ramos <pacho@gentoo.org>
  arch/amd64/package.use.stable.mask:
  Add mask for abi_x86_32

  15 Oct 2014; Michael Orlitzky <mjo@gentoo.org> package.mask:
  Remove app-doc/djbdns-man from package.mask (gone from tree).

  14 Oct 2014; Davide Pesavento <pesa@gentoo.org> package.mask:
  Unmask dev-qt/qt-creator-3*

  14 Oct 2014; Michał Górny <mgorny@gentoo.org> profiles.desc:
  Add a no-emul-linux-x86 amd64 subprofile for testing emul-linux-x86-free
  system.

  14 Oct 2014; Pacho Ramos <pacho@gentoo.org>
  arch/ia64/package.use.stable.mask:
  webkit-gtk:2 will be moved to testing on ia64 (#525194)

  14 Oct 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Remove mask for app-emulation/emul-linux-x86-compat, package has been
  removed.

  13 Oct 2014; Andreas K. Huettel <dilfridge@gentoo.org> updates/4Q-2014:
  Follow upstream rename from dev-perl/Template-Latex to
  dev-perl/Template-Plugin-Latex

  13 Oct 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask dev-perl/Lucene for removal

  13 Oct 2014; Davide Pesavento <pesa@gentoo.org> package.mask:
  Add PyQt5 to Qt5 mask.

  12 Oct 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Seems like Template::Latex is still needed, unmask it again (bump and pkgmove
  to follow)

  12 Oct 2014; Alexis Ballier <aballier@gentoo.org> package.mask:
  mask newest mplayer for bug #525070 along with newest ffmpeg: it is needed
  for latest ffmpeg but doesnt build with libav...

  11 Oct 2014; Pacho Ramos <pacho@gentoo.org> arch/arm/package.use.stable.mask:
  webkit-gtk will be moved to testing on arm (#524386)

  11 Oct 2014; Aaron W. Swenson <titanofold@gentoo.org> package.mask:
  Mask PostgreSQL beta package.

  11 Oct 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask dev-perl/Template-Latex for removal

  11 Oct 2014; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask Gnome 2 for removal (#508854)

  11 Oct 2014; Andreas K. Huettel <dilfridge@gentoo.org> +updates/4Q-2014:
  IO::Socket::IP is part of core Perl since 5.20

  11 Oct 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Roll dev channel mask for chromium-40.

  11 Oct 2014; Anthony G. Basile <blueness@gentoo.org> profiles.desc:
  Update profiles.desc for the restructured mips profiles

  11 Oct 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask dev-vcs/subversion revbump for new bash-completion.

  11 Oct 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Mask kde-misc/kcm_touchpad.

  10 Oct 2014; Hans de Graaff <graaff@gentoo.org> base/use.mask, package.mask:
  Remove jruby 1.6 mask now that the packages are removed.

  09 Oct 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask sys-devel/libperl for removal

  09 Oct 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Re-add Perl 5.16 mask, with blessing from Jorge

  09 Oct 2014; Maxim Koltsov <maksbotan@gentoo.org> package.mask:
  Add 0.6 series to mpv mask

  09 Oct 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Unmasking net-libs/libotr-4.0.0 and x11-plugins/pidgin-otr. See bug #478052.

  08 Oct 2014; Robin H. Johnson <robbat2@gentoo.org> license_groups:
  Add LastPass to @EULA.

  08 Oct 2014; Brian Evans <grknight@gentoo.org> package.mask:
  Change mask message for dev-php/suhosin

  08 Oct 2014; Bernard Cafarelli <voyageur@gentoo.org> package.mask:
  Remove mask on x11-plugins/msn-pecan and x11-plugins/pidgin-facebookchat
  after last rites

  08 Oct 2014; Ultrabug <ultrabug@gentoo.org> desc/uwsgi_plugins.desc,
  profiles.desc:
  add rados plugin description to uwsgi_plugins.desc

  07 Oct 2014; Sebastian Pipping <sping@gentoo.org> package.mask:
  Veto to dev-php/suhosin removal

  06 Oct 2014; Diego E. Pettenò <flameeyes@gentoo.org> package.mask:
  Remove mask for sudo.

  05 Oct 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Mask texlive-2014

  05 Oct 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  [QA] Package mask =app-admin/sudo-1.8.11, bug 524074.

  05 Oct 2014; Mikle Kolyada <zlogene@gentoo.org> info_pkgs:
  Add dev-lang/perl atom to the emerge --info output.

  05 Oct 2014; Jauhien Piatlicki <jauhien@gentoo.org> base/package.use.mask,
  package.mask:
  mask x11-misc/sddm because of bug 524390 until it is solved

  04 Oct 2014; Ulrich Müller <ulm@gentoo.org> license_groups:
  Remove skype-4.0.0.7-third-party_attributions.txt from MISC-FREE license
  group, license has been removed, bug 523948.

  03 Oct 2014; Pacho Ramos <pacho@gentoo.org> arch/powerpc/package.use.mask,
  arch/sparc/package.use.mask:
  use.mask due missing keywords (#524352)

  02 Oct 2014; Michael Palimaka <kensington@gentoo.org>
  Mask dev-php/{adodb-ext,eaccelerator,pecl-apc,pecl-id3,pecl-mogilefs,
  pecl-sca_sdo,suhosin} for removal, Bug 524310.

  02 Oct 2014; Michael Palimaka <kensington@gentoo.org>
  -targets/desktop/kde/package.use.force:
  Remove obsolete file containing entries only for package versions that no
  longer exist.

  02 Oct 2014; Ulrich Müller <ulm@gentoo.org>
  arch/amd64/no-multilib/package.mask, arch/amd64/package.use.stable.mask,
  default/linux/uclibc/amd64/package.mask, features/64bit-native/package.mask,
  hardened/linux/amd64/no-multilib/package.mask,
  hardened/linux/musl/amd64/package.mask, package.mask:
  Revert masking of app-emulation/emul-linux-x86-motif, bug 461916.

  02 Oct 2014; Ben de Groot <yngwin@gentoo.org> desc/linguas.desc:
  Add hr_HR locale

  01 Oct 2014; Ulrich Müller <ulm@gentoo.org> license_groups:
  The IPAfont license has been approved by the FSF, so add it to the
  FSF-APPROVED-OTHER group. Thanks to bernalex for pointing this out.

  30 Sep 2014; Ulrich Müller <ulm@gentoo.org>
  arch/amd64/no-multilib/package.mask, arch/amd64/package.use.stable.mask,
  default/linux/uclibc/amd64/package.mask, features/64bit-native/package.mask,
  hardened/linux/amd64/no-multilib/package.mask,
  hardened/linux/musl/amd64/package.mask:
  Remove obsolete masks for app-emulation/emul-linux-x86-motif, package is
  slated for removal.

  30 Sep 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask app-emulation/emul-linux-x86-motif for removal.

  30 Sep 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Mask dev-libs/protobuf-2.6.0 for testing, bug #521406 .

  29 Sep 2014; Jeroen Roovers <jer@gentoo.org> arch/amd64/package.use.mask,
  arch/x86/package.use.mask, base/package.use.mask:
  Drop USE=g-sorcery mask for app-portage/layman (bug #524040).

  29 Sep 2014; Justin Lecher <jlec@gentoo.org> updates/3Q-2014:
  qcustomplot pkg move

  28 Sep 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Temporarily remove the Perl 5.16 mask again, so people have more time for
  upgrading. Seems like the mask makes the upgrade even harder.

  28 Sep 2014; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add bh-luxi license to BINARY-REDISTRIBUTABLE group, bug 420025.

  28 Sep 2014; Davide Pesavento <pesa@gentoo.org> package.mask:
  Add qtpositioning to the Qt5 mask.

  27 Sep 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Version::Requirements to Perl 5.16 mask

  27 Sep 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask Perl 5.16 for removal in 30 days

  27 Sep 2014; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask latest libmediaart (#523838)

  26 Sep 2014; Davide Pesavento <pesa@gentoo.org> package.mask:
  Add qtsensors to the Qt5 mask.

  26 Sep 2014; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  removed pmask =media-tv/gentoo-vdr-scripts-2.5_rc5
  =media-plugins/vdr-permashift-1.0.0
  =media-video/vdr-2.0.6

  26 Sep 2014; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  mask media-video/vdr-2.0.6 temp

  26 Sep 2014; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  masked media-plugins/vdr-permashift-1.0.0, need new patch in media-video/vdr

  23 Sep 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Unmask Perl 5.20 and related

  23 Sep 2014; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  =media-tv/gentoo-vdr-scripts-2.5_rc5 temp masked

  22 Sep 2014; Julian Ospald <hasufell@gentoo.org> license_groups:
  clean up obsolete ArxFatalis-EULA-GOG entry

  22 Sep 2014; Julian Ospald <hasufell@gentoo.org> license_groups:
  add GOG-EULA to EULA license group

  21 Sep 2014; Julian Ospald <hasufell@gentoo.org>
  hardened/linux/amd64/no-multilib/package.mask:
  mask games-rpg/wasteland2 for no-multilib

  21 Sep 2014; Brian Evans <grknight@gentoo.org> package.mask:
  Remove obsolete mask of virtual/mysql-5.{2,3} and dev-db/mariadb-5.{2,3}*

  19 Sep 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove obsolete mask of www-apps/swish-e

  19 Sep 2014; Michael Palimaka <kensington@gentoo.org> updates/1Q-2014:
  Fix slotmove - the old slot was 0 and there never was a 2.

  19 Sep 2014; Patrick Lauer <patrick@gentoo.org> thirdpartymirrors:
  Add metacpan mirror to cpan thirdpartymirrors

  18 Sep 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove LO-4.3 mask

  18 Sep 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Temporarily mask >=dev-libs/lib{ixion,orcus}-0.7, pending libreoffice update.

  17 Sep 2014; Bernard Cafarelli <voyageur@gentoo.org> package.mask:
  Unmask llvm/clang 3.5

  17 Sep 2014; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  targets/desktop/package.use:
  Disable glamor for xf86-video-intel in the desktop profile

  16 Sep 2014; Ulrich Müller <ulm@gentoo.org>
  arch/amd64/no-multilib/package.mask, arch/amd64/package.use.stable.mask,
  default/linux/uclibc/amd64/package.mask, features/64bit-native/package.mask,
  hardened/linux/amd64/no-multilib/package.mask,
  hardened/linux/musl/amd64/package.mask:
  Remove obsolete masks for app-emulation/emul-linux-x86-glibc-errno-compat and
  app-emulation/emul-linux-x86-compat, packages removed or slated for removal.

  16 Sep 2014; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  targets/desktop/make.defaults:
  Enable glamor by default in desktop profiles

  16 Sep 2014; Michael Orlitzky <mjo@gentoo.org> package.mask:
  Mask app-text/unix2dos for removal in 30 days.

  16 Sep 2014; Davide Pesavento <pesa@gentoo.org> package.mask:
  Update Qt 5.3 mask.

  16 Sep 2014; Samuli Suominen <ssuominen@gentoo.org> desc/xfce_plugins.desc:
  New description for xfce_plugins_power to replace xfce_plugins_battery and
  xfce_plugins_brightness

  16 Sep 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask LibreOffice 4.3 for an initial short testing period

  16 Sep 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add virtual versions from Perl 5.20.1 to Perl 5.20 mask

  15 Sep 2014; Johannes Huber <johu@gentoo.org> package.mask:
  Unmask >=dev-util/cmake-3.0.0 for further testing.

  15 Sep 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask zrtpcpp-4 since it is screwed up.

  15 Sep 2014; Lars Wendler <polynomial-c@gentoo.org> package.mask:
  Adjusted wording in comment for xz-utils mask.

  15 Sep 2014; Jeroen Roovers <jer@gentoo.org> package.mask:
  Remove www-client/opera-next mask.

  14 Sep 2014; Dion Moult <moult@gentoo.org> package.mask:
  net-misc/netcomics-cvs added to package.mask

  14 Sep 2014; Dion Moult <moult@gentoo.org> package.mask:
  Add app-text/pastebin to package mask

  14 Sep 2014; Maxim Koltsov <maksbotan@gentoo.org> package.mask:
  Improve mpv mask message

  14 Sep 2014; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask dev-php/PEAR-MDB2_Driver_ibase (#522346)

  13 Sep 2014; Jeroen Roovers <jer@gentoo.org> package.mask:
  Add www-client/otter to dev-qt/*:5 mask.

  12 Sep 2014; Maxim Koltsov <maksbotan@gentoo.org> package.mask:
  Mask mpv-0.{4,5} again

  11 Sep 2014; Michał Górny <mgorny@gentoo.org> desc/python_targets.desc:
  Restore python2_6 and pypy2_0 in desc/, since they are still used by old
  versions of sys-apps/portage.

  11 Sep 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask new version of gentoo-bashcomp aside bash-completion-2.1-r90.

  11 Sep 2014; Patrick Lauer <patrick@gentoo.org> package.mask:
  Mask dev-libs/ibpp as it has unsatisfied dependencies

  11 Sep 2014; Patrick Lauer <patrick@gentoo.org> package.mask:
  Mask dev-python/kinterbasdb as it has unsatisfied dependencies

  11 Sep 2014; Davide Pesavento <pesa@gentoo.org> package.mask:
  Mask Qt 5.3.1

  10 Sep 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Update comment for app-emulation/emul-linux-x86-compat, it is slated for
  removal now.

  08 Sep 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask app-emulation/emul-linux-x86-compat.

  07 Sep 2014; Pacho Ramos <pacho@gentoo.org> base/package.use.mask,
  base/use.mask:
  Cleanup more firebird entries (#460780)

  07 Sep 2014; Pacho Ramos <pacho@gentoo.org> package.mask:
  Update masks

  07 Sep 2014; Tiziano Müller <dev-zero@gentoo.org> package.mask:
  Remove mask for dev-python/amara, package has been removed.

  07 Sep 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Update masks for reverse dependencies of sys-libs/lib-compat.

  06 Sep 2014; Michał Górny <mgorny@gentoo.org>
  desc/python_single_target.desc, desc/python_targets.desc:
  Wipe out references to removed Python targets.

  06 Sep 2014; Michał Górny <mgorny@gentoo.org>
  desc/python_single_target.desc, desc/python_targets.desc:
  Update Python target descriptions.

  05 Sep 2014; Michael Orlitzky <mjo@gentoo.org> package.mask:
  Mask app-doc/djbdns-man for removal in 30 days.

  05 Sep 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask clang along with llvm.

  05 Sep 2014; Bernard Cafarelli <voyageur@gentoo.org> package.mask:
  Add x11-plugins/msn-pecan to MSN mask, mask x11-plugins/pidgin-facebookchat
  for removal

  05 Sep 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask new llvm before committing.

  05 Sep 2014; Lars Wendler <polynomial-c@gentoo.org> package.mask:
  Removed util-linux mask.

  04 Sep 2014; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Unmask dev-lang/gforth, build-time bugs are fixed now

  04 Sep 2014; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Security masking of MySQL, MariaDB and its virtual

  04 Sep 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask games-action/mutantstorm-demo, reverse dependency of lib-compat.

  03 Sep 2014; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask only the latest LTP version

  03 Sep 2014; Ian Stakenvicius (_AxS_) <axs@gentoo.org>
  hardened/linux/make.defaults:
  add a var to hardened profiles to help ebuilds tell end-users about things
  that are bad to do on hardened, reviewed by Zero_Chaos and OKed by Zorry

  03 Sep 2014; Hans de Graaff <graaff@gentoo.org> base/use.mask, package.mask:
  Add jruby-only packages to the jruby 1.7 mask for now.

  02 Sep 2014; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Update kmess, amsn removal message

  02 Sep 2014; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Update ltp message

  02 Sep 2014; <fauli@gentoo.org> package.mask:
  last rite app-admin/hwreport

  02 Sep 2014; Hans de Graaff <graaff@gentoo.org> package.mask:
  Use the correct slots for the jruby mask and add missing virtual/rubygems.

  02 Sep 2014; Pacho Ramos <pacho@gentoo.org> package.mask:
  Update gforth message to postpone its removal a bit more

  02 Sep 2014; Hans de Graaff <graaff@gentoo.org> base/use.mask, package.mask:
  Mask jruby 1.6 and its RUBY_TARGETS USE flag.

  02 Sep 2014; Brian Dolbec <dolsen@gentoo.org> package.mask:
  Mask NON-MAINTAINER commit for testing and review

  01 Sep 2014; Sebastian Pipping <sping@gentoo.org> thirdpartymirrors:
  Update gimp mirrors: Move out of sync gwdg.de near the end, remove two
  unconnectable ones, add those listed on http://www.gimp.org/downloads/ .

  01 Sep 2014; Julian Ospald <hasufell@gentoo.org> package.mask:
  rm mask on >=media-video/mpv-0.4.2 wrt #521808

  30 Aug 2014; Ulrich Müller <ulm@gentoo.org> license_groups:
  The AdobeFlash-10.3, GBuffy, IBM-J1.5, Livestation-EULA, and skype-eula
  licenses are gone, so remove them from their respective groups.

  29 Aug 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Roll dev channel mask for chromium-39.

  29 Aug 2014; Julian Ospald <hasufell@gentoo.org>
  base/package.use.stable.mask:
  rm 'media-video/mpv sdl' mask since libsdl2 is stable

  29 Aug 2014; Ole Markus With <olemarkus@gentoo.org> base/use.mask,
  package.mask:
  Remove mask of php 5.6

  28 Aug 2014; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Remove mask for removed version of the libopenraw git snapshot.

  28 Aug 2014; Jeroen Roovers <jer@gentoo.org> package.mask:
  Update net-analyzer/nmap mask.

  28 Aug 2014; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Mask old vulnerable versions of net-dialup/ppp

  27 Aug 2014; Lars Wendler <polynomial-c@gentoo.org> thirdpartymirrors:
  Added another download location for gimp.

  27 Aug 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask new bash-completion for testing, documentation work and bugfixing.

  27 Aug 2014; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Mask games-server/halflife-steam, wrt bug #520858

  26 Aug 2014; Kristian Fiskerstrand <k_f@gentoo.org> package.mask:
  Add mask for media-sound/cowbell for removal in 30 days

  26 Aug 2014; Lars Wendler <polynomial-c@gentoo.org> package.mask:
  Removed git mask.

  26 Aug 2014; Christoph Junghans <ottxor@gentoo.org> package.mask:
  dev-lang/libcilkrts got removed (bug #514644)

  26 Aug 2014; Hans de Graaff <graaff@gentoo.org> package.mask:
  Update rubinius mask message.

  26 Aug 2014; Hans de Graaff <graaff@gentoo.org> package.mask:
  Obsolete slots have been removed from the tree, removing masks.

  25 Aug 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask util-linux because of cfdisk breakage, bug #520838.

  24 Aug 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask www-apps/swish-e for removal

  24 Aug 2014; Sergei Trofimovich <slyfox@gentoo.org> package.mask:
  Unmask dev-vcs/cvsps-3 (bug #518868).

  22 Aug 2014; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Temporarily mask new OpenEXR while solving build errors.

  22 Aug 2014; Sergei Trofimovich <slyfox@gentoo.org> package.mask:
  Unmask '>=dev-util/re2c-0.13.7.2' as upstream fixed PHP lexer bug.

  22 Aug 22 2014; Ian Delaney <idella4@gentoo.org> package.mask:
  Unmask old reviewboard-1.7.12

  21 Aug 2014; Brian Evans <grknight@gentoo.org> package.mask:
  Remove old mask on =dev-db/mariadb-5.1.67. Add masks for virtual/mysql-5{2,3}
  and dev-db/mariadb-5.{2,3}* for 30 day removal to allow migration time

  21 Aug 2014; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Unmask media-libs/jpeg >= 9a wrt Tracker #479818 because it doesn't have any
  bugs left open.

  20 Aug 2014; Hans de Graaff <graaff@gentoo.org> package.mask:
  Remove mask now that virtual/ruby-test-unit has been removed.

  19 Aug 2014; Lars Wendler <polynomial-c@gentoo.org> package.mask:
  Masked git-2.1.0 because it segfaults portage's sandbox during run of the
  testsuite (bug #520270).

  19 Aug 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Remove redundant entry.

  19 Aug 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Remove mask for app-emacs/sawfish, package has been removed.

  19 Aug 2014; Sergei Trofimovich <slyfox@gentoo.org> package.mask:
  Mask >=dev-util/re2c-0.13.7.2 (bug #518904).

  17 Aug 2014; Maxim Koltsov <maksbotan@gentoo.org> package.mask:
  Mask mpv-0.5 series too

  17 Aug 2014; Patrick Lauer <patrick@gentoo.org> package.mask:
  QA: Remove erroneous genkernel package.mask entry that breaks genkernel
  default config with newer udev

  16 Aug 2014; Anthony G. Basile <blueness@gentoo.org> profiles.desc:
  Add default/linux/uclibc profiles to profiles.desc

  15 Aug 2014; Eray Aslan <eras@gentoo.org> package.mask:
  Unmask net-mail/dovecot-2.2.9 - bug #519952

  14 Aug 2014; Eray Aslan <eras@gentoo.org> package.mask:
  net-mail/dovecot-2.2.9 Security mask - bug #509954 until keywording is sorted
  out

  14 Aug 2014; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Mask upcoming new version of Boost

  13 Aug 2014; Tim Harder <radhermit@gentoo.org> package.mask:
  Unmask >=dev-libs/protobuf-c-1.0.0.

  12 Aug 2014; Mike Frysinger <vapier@gentoo.org> package.mask:
  Drop gcc-4.9 mask as we already have KEYWORDS="". Drop old timezone-data
  mask as we've stabilized newer versions.

  11 Aug 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Tree-clean virtual/python-{argparse,unittest2}.

  11 Aug 2014; Sergei Trofimovich <slyfox@gentoo.org> package.mask:
  Unmask dev-lang/ghc-7.8.

  10 Aug 2014; Tiziano Müller <dev-zero@gentoo.org> package.mask:
  Lastrite dev-python/amara

  10 Aug 2014; Johannes Huber <johu@gentoo.org> thirdpartymirrors:
  Add download.kde.org to kde mirrors.

  09 Aug 2014; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite sys-apps/usleep wrt #467212

  08 Aug 2014; Lars Wendler <polynomial-c@gentoo.org> package.mask:
  Added mask for >=media-sound/umurmur-0.2.15 until =dev-libs/protobuf-c-1*
  mask is gone.

  08 Aug 2014; Tim Harder <radhermit@gentoo.org> package.mask:
  Update dev-libs/protobuf-c mask.

  07 Aug 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Restore libav-10 mask due to blockers and a lot of unported packages.

  06 Aug 2014; Luca Barbato <lu_zero@gentoo.org> package.mask:
  Drop the libav p.mask

  05 Aug 2014; Mike Frysinger <vapier@gentoo.org> package.mask:
  Drop openocd mask so people can use it now.

  05 Aug 2014; William Hubbs <williamh@gentoo.org> package.mask:
  mask www-apps/joomla for removal, see bug #518886

  05 Aug 2014; Mike Frysinger <vapier@gentoo.org> package.mask:
  Drop e2fsprogs mask as it's fixed now #517214.

  05 Aug 2014; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Mask =app-emulation/fuse-1.1.1

  05 Aug 2014; William Hubbs <williamh@gentoo.org> package.mask:
  Remove trac-mercurial mask since it is a live ebuild and should be
  masked by dropping keywords.

  04 Aug 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask dev-python/{Bcryptor,Yamlog} for removal, bug #518920.

  04 Aug 2014; Robin H. Johnson <robbat2@gentoo.org> package.mask:
  New mask for upcoming db-6.1, that is not ready at upstream yet, still fails
  some tests.

  04 Aug 2014; Robin H. Johnson <robbat2@gentoo.org> package.mask:
  db-5.2 fails testsuites and there are no more releases from upstream, punt
  it.

  04 Aug 2014; Alexis Ballier <aballier@gentoo.org> package.mask:
  mask ffmpeg-2.3+

  04 Aug 2014; William Hubbs <williamh@gentoo.org> package.mask:
  The removal of live ebuilds from package.mask has begun.
  Live ebuilds should be masked by not having keywords instead of being
  put in this file.

  04 Aug 2014; Tim Harder <radhermit@gentoo.org> package.mask:
  Unmask =media-libs/libsfml-2*.

  04 Aug 2014; Robin H. Johnson <robbat2@gentoo.org> package.mask:
  Remove dev-vcs/gitosis and dev-vcs/gitosis-gentoo from the tree.

  04 Aug 2014; Robin H. Johnson <robbat2@gentoo.org> package.mask:
  old mysql ebuilds now live in the overlay only. if you need them for
  migrations, go look there.

  04 Aug 2014; Robin H. Johnson <robbat2@gentoo.org> package.mask:
  Unmask app-crypt/hmaccalc.

  04 Aug 2014; Robin H. Johnson <robbat2@gentoo.org> package.mask:
  unmask db-5.1. 5.0 leaves mask as well, but it failed testsuites, so is
  removed from the tree.

  03 Aug 2014; Robin H. Johnson <robbat2@gentoo.org> package.mask:
  The great unmasking of sys-libs/db has begun. Remaining slots to come if they
  pass testsuite still (otherwise those slots will just be deleted).

  02 Aug 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  virtual/perl-Filter is gone

  02 Aug 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  virtual/perl-Class-ISA is gone

  30 Jul 2014; Mikle Kolyada <zlogene@gentoo.org> package.mask:
  Mask =dev-perl/Alien-SDL-1.444.0

  29 Jul 2014; Anthony G. Basile <blueness@gentoo.org> desc/linguas.desc:
  Add some locales for bitcoin

  29 Jul 2014; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Drop obsolete security mask on dev-libs/openssl

  29 Jul 2014; Patrick Lauer <patrick@gentoo.org> package.mask:
  Remove util-vserver mask as it builds again

  28 Jul 2014; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask also media-video/em8300-modules because media-video/em8300-libraries was
  masked earlier.

  27 Jul 2014; Mikle Kolyada <zlogene@gentoo.org> package.mask:
  Update media-video/mpv mask.

  27 Jul 2014; Johannes Huber <johu@gentoo.org> package.mask:
  Mask >=dev-util/cmake-3.0.0 for testing.

  27 Jul 2014; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask some packages for removal

  27 Jul 2014; Pacho Ramos <pacho@gentoo.org> base/package.use.mask:
  Mask due bug #414903

  27 Jul 2014; Pacho Ramos <pacho@gentoo.org> package.mask:
  Drop obsolete entries

  27 Jul 2014; Alexis Ballier <aballier@gentoo.org> arch/amd64/ChangeLog,
  arch/amd64/use.mask, arch/x86/ChangeLog, arch/x86/use.mask, base/ChangeLog,
  base/use.mask:
  mask/unmask xop amd cpu optimizations useflag

  26 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  perl-core/Math-BigInt-1.999.300 separate package now available, bug 518064

  25 Jul 2014; Christoph Junghans <ottxor@gentoo.org> package.mask:
  masked dev-lang/libcilkrts (bug #514644)

  25 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove obsolete mask of Perl 5.12 and virtual/perl-Switch

  25 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> updates/3Q-2014:
  Move perl-core/Switch to dev-perl/Switch

  25 Jul 2014; Samuli Suominen <ssuominen@gentoo.org>
  targets/systemd/package.use.mask:
  Mask USE="upower" of net-im/telepathy-mission-control >= 5.16.2 for systemd
  users. Adjust USE="static-libs" mask from virtual/udev to virtual/libudev and
  virtual/libgudev.

  25 Jul 2014; Patrick Lauer <patrick@gentoo.org> package.mask:
  Mask EOL'ed postgresql-8.4

  24 Jul 2014; Samuli Suominen <ssuominen@gentoo.org>
  targets/desktop/package.use:
  Disable USE="bluetooth" for net-libs/libpcap by default because BlueZ 5.x
  support is missing.

  24 Jul 2014; Samuli Suominen <ssuominen@gentoo.org>
  targets/desktop/package.use:
  Don't enable USE="gudev introspection" for virtual/udev anymore since
  everything has been ported to virtual/libgudev in gentoo-x86.

  24 Jul 2014; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask a development version that was included without notifying gnome team

  24 Jul 2014; Samuli Suominen <ssuominen@gentoo.org> use.desc:
  New global USE flags "udisks" and "upower" to separate them out of USE="udev"

  24 Jul 2014; Patrick Lauer <patrick@gentoo.org> thirdpartymirrors:
  Remove stupid apache mirror

  23 Jul 2014; Michael Haubenwallner <haubi@gentoo.org> thirdpartymirrors:
  remove apache.archive.org from apache mirrors, bug#516372

  23 Jul 2014; Pacho Ramos <pacho@gentoo.org>
  arch/amd64/package.use.stable.mask:
  Update multilib mask

  23 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> updates/3Q-2014:
  Rename virtual/perl-net-ping to virtual/perl-Net-Ping to follow upstream

  23 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add new package name of Net::Ping to perl-5.20 package mask

  23 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> updates/3Q-2014:
  Rename virtual/perl-locale-maketext to virtual/perl-Locale-Maketext and
  perl-core/net-ping to perl-core/Net-Ping to follow upstream

  23 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add new package name of Locale::Maketext to perl-5.20 package mask

  23 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> updates/3Q-2014:
  Rename perl-core/locale-maketext to perl-core/Locale-Maketext to follow
  upstream

  22 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> updates/3Q-2014:
  Rename virtual/perl-i18n-langtags to virtual/perl-I18N-LangTags to follow
  upstream

  22 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add new package name of I18N::LangTags to perl-5.20 package mask

  22 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> updates/3Q-2014:
  Rename perl-core/i18n-langtags to perl-core/I18N-LangTags to follow upstream

  22 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> updates/3Q-2014:
  Rename virtual/perl-digest-base to virtual/perl-Digest to follow upstream

  22 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> updates/3Q-2014:
  Rename perl-core/digest-base to perl-core/Digest to follow upstream

  22 Jul 2014; Tiziano Müller <dev-zero@gentoo.org>
  desc/nginx_modules_http.desc:
  Add description for nginx-mogilefs module.

  21 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Pod::Parser to perl-5.20 mask

  21 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> updates/3Q-2014:
  Rename virtual/perl-PodParser to virtual/perl-Pod-Parser to follow upstream

  20 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> updates/3Q-2014:
  Rename perl-core/PodParser to perl-core/Pod-Parser to follow upstream

  20 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of IO::Compress to perl-5.20 mask

  20 Jul 2014; Lars Wendler <polynomial-c@gentoo.org> package.mask:
  Masked latest e2fsprogs as it fails to build.

  20 Jul 2014; Markos Chandras <hwoarang@gentoo.org> package.mask:
  sssd-1.12 works in my ldap based systems so unmask it

  19 Jul 2014; Jeroen Roovers <jer@gentoo.org> updates/3Q-2014:
  Move iperf3 to a new SLOT (bug #517488).

  19 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove unneeded mask for ExtUtils-Manifest-1.630.0-r1

  18 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove perl-core/B-Debug 5.20 version from mask after removing ebuild

  18 Jul 2014; Michael Weber <xmw@gentoo.org> package.mask:
  Masked for removal of affected versions in 30 days. Security issue bug 513560

  18 Jul 2014; Hans de Graaff <graaff@gentoo.org> package.mask:
  Remove masked ruby packages.

  18 Jul 2014; Hans de Graaff <graaff@gentoo.org> package.mask:
  Mask virtual/ruby-test-unit for removal for bug 380711.

  17 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of threads::shared to perl-5.20 mask

  17 Jul 2014; Michael Palimaka <kensington@gentoo.org> package.mask:
  Unmask dev-python/sip and dev-python/PyQt4 wrt bug #506452.

  17 Jul 2014; Pacho Ramos <pacho@gentoo.org>
  arch/amd64/package.use.stable.mask:
  Update stable mask for multilib

  16 Jul 2014; Ian Stakenvicius (_AxS_) <axs@gentoo.org> license_groups:
  added FAH-EULA-2014 license to EULA group

  16 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of threads to perl-5.20 mask

  16 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Net::Ping to perl-5.20 mask

  15 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Locale::Maketext to perl-5.20 mask

  15 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of if to perl-5.20 mask

  15 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of I18N::LangTags to perl-5.20 mask

  15 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of autodie to perl-5.20 mask

  15 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of XSLoader to perl-5.20 mask

  15 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Time::Piece to perl-5.20 mask

  15 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Thread::Queue to perl-5.20 mask

  15 Jul 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask sys-libs/lib-compat and its reverse dependencies.

  15 Jul 2014; Anthony G. Basile <blueness@gentoo.org> profiles.desc:
  Add hardened/linux/uclibc/ppc to profiles.desc

  15 Jul 2014; Anthony G. Basile <blueness@gentoo.org>
  arch/amd64-fbsd/todo/package.use.mask, arch/amd64/package.use.mask,
  arch/x86/package.use.mask, base/package.use.mask,
  default/bsd/fbsd/amd64/9.1/clang/package.use.mask,
  default/bsd/fbsd/amd64/9.2/clang/package.use.mask,
  default/linux/alpha/13.0/use.mask, default/linux/ia64/13.0/use.mask,
  default/linux/sparc/13.0/use.mask, desc/curl_ssl.desc, package.mask:
  Remove cyassl package and use flag, bug #495848

  14 Jul 2014; Maxim Koltsov <maksbotan@gentoo.org> package.mask:
  Update mpv mask to 0.4.1

  14 Jul 2014; Sergei Trofimovich <slyfox@gentoo.org> package.mask:
  Mask ghc-7.8.3's '=dev-haskell/deepseq-1.3.0.2*' bundled lib.

  13 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Test::Simple to perl-5.20 mask

  13 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Test::Harness to perl-5.20 mask

  13 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Storable to perl-5.20 mask

  13 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Socket to perl-5.20 mask

  13 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Scalar::List::Utils to perl-5.20 mask

  13 Jul 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask app-emacs/sawfish for removal.

  12 Jul 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Unmask new PyPy.

  12 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Safe to perl-5.20 mask

  12 Jul 2014; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask new sssd-1.12.0 for production testing

  12 Jul 2014; Mike Gilbert <floppym@gentoo.org> thirdpartymirrors:
  Drop bitbucket. Sorry overlays, you're on your own.

  12 Jul 2014; Brian Evans <grknight@gentoo.org> thirdpartymirrors:
  Revert change to mirror://bitbucket as wget fails to download due
  to mismatched certificate.

  11 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Pod::Escapes to perl-5.20 mask

  11 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Perl::OSType to perl-5.20 mask

  11 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Parse::CPAN::Meta to perl-5.20 mask

  10 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Package::Constants to perl-5.20 mask

  10 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Module::Metadata to perl-5.20 mask

  10 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Module::Load::Conditional to perl-5.20 mask

  10 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Module::Load to perl-5.20 mask

  10 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of bignum to perl-5.20 mask

  10 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Math::BigRat to perl-5.20 mask

  10 Jul 2014; Sergei Trofimovich <slyfox@gentoo.org> package.mask:
  Mask fresh ghc-7.8.3.

  10 Jul 2014; Michael Weber <xmw@gentoo.org> package.mask:
  Mask buggy versions of dev-libs/libmodbus

  09 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Module::CoreList to perl-5.20 mask

  09 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Module::Build to perl-5.20 mask

  09 Jul 2014; Maxim Koltsov <maksbotan@gentoo.org> package.mask:
  Fix mpv mask to exclude 9999 version

  09 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Math::BigInt::FastCalc to perl-5.20 mask

  09 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Math::BigInt to perl-5.20 mask

  09 Jul 2014; Maxim Koltsov <maksbotan@gentoo.org>
  arch/alpha/package.use.mask, arch/arm/package.use.mask,
  arch/powerpc/package.use.mask, arch/sparc/package.use.mask, package.mask:
  Mask mpv-0.4.0 due to libav-10 mask, mask >=mpv-0.4.0[doc-pdf] on
  alpha,arm,powerpc,sparc due to dev-python/rst2pdf missing keywords.

  09 Jul 2014; Andrey Grozin <grozin@gentoo.org> package.mask:
  app-text/qgoogletranslator, dev-lisp/openmcl, dev-lisp/openmcl-build-tools removed from the tree

  08 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of JSON::PP to perl-5.20 mask

  08 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of IPC::Cmd to perl-5.20 mask

  08 Jul 2014; Ian Stakenvicius (_AxS_) <axs@gentoo.org> package.mask:
  removed last-rites on postal2mp-demo

  07 Jul 2014; Ian Stakenvicius (_AxS_) <axs@gentoo.org> package.mask:
  masked games-fps/postal2mp-demo for treecleaning

  07 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of IO to perl-5.20 mask

  07 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of HTTP::Tiny to perl-5.20 mask

  07 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Filter::Simple to perl-5.20 mask

  07 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask virtual/perl-Filter for removal

  07 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> updates/3Q-2014:
  Move perl-core/Filter to dev-perl/Filter

  07 Jul 2014; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Mask sys-block/afacli as consumer of sys-libs/lib-compat, bug #515926

  06 Jul 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Last rite virtual/python-argparse and virtual/python-unittest2.

  06 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of File::Spec to perl-5.20 mask

  06 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of ExtUtils::ParseXS to perl-5.20 mask

  06 Jul 2014; Ulrich Müller <ulm@gentoo.org> updates/2Q-2014,
  +updates/3Q-2014:
  Move latest entry to correct quarter file.

  06 Jul 2014; Michał Górny <mgorny@gentoo.org> thirdpartymirrors:
  Use a little different FQDN for mirror://bitbucket to silence out the repoman
  false positives.

  06 Jul 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Python 2.6 has been removed.

  06 Jul 2014; Mikle Kolyada <zlogene@gentoo.org> package.mask:
  Add 5.20 version of ExtUtils::Manifest to perl-5.20 mask

  06 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of ExtUtils::MakeMaker to perl-5.20 mask

  06 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of ExtUtils::Install to perl-5.20 mask

  06 Jul 2014; Hans de Graaff <graaff@gentoo.org> package.mask:
  Mask old dev-ruby/builder:0 slot for removal.

  06 JUL 2014; Mikle Kolyada <zlogene@gentoo.org> prefix/linux/package.mask:
  Cleanup.

  05 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of ExtUtils::CBuilder to perl-5.20 mask

  05 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Exporter to perl-5.20 mask

  05 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Encode to perl-5.20 mask

  05 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Digest::SHA to perl-5.20 mask

  05 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Devel::PPPort to perl-5.20 mask

  05 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Data::Dumper to perl-5.20 mask

  05 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of DB_File to perl-5.20 mask

  05 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Compress::Raw::Zlib to perl-5.20 mask

  05 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Compress::Raw::Bzip2 to perl-5.20 mask

  05 Jul 2014; Alexis Ballier <aballier@gentoo.org> base/package.use.mask:
  unmask gnutls & rtmp on ffmpeg:0.10

  05 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Last-rite virtual/perl-Class-ISA

  05 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> updates/2Q-2014:
  Move Class-ISA from perl-core to dev-perl

  05 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Carp to perl-5.20 mask

  05 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of CPAN::Meta::YAML to perl-5.20 mask

  05 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of CPAN::Meta to perl-5.20 mask

  05 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of CPAN to perl-5.20 mask

  05 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of CGI to perl-5.20 mask

  05 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of AutoLoader to perl-5.20 mask

  05 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of Attribute::Handlers to perl-5.20 mask

  05 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of perl-core/Archive-Tar to perl-5.20 mask

  04 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add 5.20 version of perl-core/B-Debug to perl-5.20 mask

  04 Jul 2014; Pacho Ramos <pacho@gentoo.org> arch/alpha/use.stable.mask,
  arch/ia64/use.stable.mask, arch/sparc/use.stable.mask:
  More use.stable masks

  04 Jul 2014; Pacho Ramos <pacho@gentoo.org> arch/arm/use.stable.mask,
  arch/powerpc/use.stable.mask, package.mask:
  Update gnome stable masks

  04 Jul 2014; Pacho Ramos <pacho@gentoo.org> arch/arm/package.use.mask:
  Update arm mask

  03 Jul 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Unmask the last multilib fun-pack.

  03 Jul 2014; Pacho Ramos <pacho@gentoo.org>
  arch/alpha/package.use.stable.mask, arch/arm/package.use.stable.mask,
  arch/ia64/package.use.stable.mask,
  arch/powerpc/ppc32/package.use.stable.mask,
  arch/powerpc/ppc64/package.use.stable.mask,
  arch/sparc/package.use.stable.mask:
  Update more stable masks

  03 Jul 2014; Pacho Ramos <pacho@gentoo.org>
  arch/alpha/package.use.stable.mask, arch/arm/package.use.stable.mask,
  arch/ia64/package.use.stable.mask, arch/powerpc/ppc32/package.use.mask,
  +arch/powerpc/ppc32/package.use.stable.mask,
  arch/powerpc/ppc64/package.use.mask,
  +arch/powerpc/ppc64/package.use.stable.mask, arch/sparc/package.use.mask,
  +arch/sparc/package.use.stable.mask:
  Update masks for gnome3

  03 Jul 2014; Pacho Ramos <pacho@gentoo.org> arch/arm/package.use.mask:
  Update due bug #516130

  03 Jul 2014; Pacho Ramos <pacho@gentoo.org>
  arch/amd64/package.use.stable.mask:
  Update multilib stable mask

  02 Jul 2014; Pacho Ramos <pacho@gentoo.org>
  +arch/alpha/package.use.stable.mask, arch/arm/package.use.stable.mask,
  +arch/ia64/package.use.stable.mask, arch/powerpc/ppc32/package.use.mask,
  arch/powerpc/ppc64/package.use.mask, arch/sparc/package.use.mask:
  Mask due Gnome3 not going to be stabilized on these arches

  01 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add message about Switch to perl-5.12 mask

  01 Jul 2014; Tim Harder <radhermit@gentoo.org> package.mask:
  Use more detailed mask explanations.

  01 Jul 2014; Patrick Lauer <patrick@gentoo.org> package.mask:
  Remove silly lxc mask that interferes with docker

  30 Jun 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Cleanup p.mask

  29 Jun 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add dev-php/PEAR-MDB2_Driver_ibase to firebird mask entry

  29 Jun 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask use-flag firebird and package dev-db/firebird for bug 460780

  29 Jun 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask perl-5.12 and family for removal

  29 Jun 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  perl-5.14 is gone

  29 Jun 2014; Greg Kroah-Hartman <gregkh@gentoo.org>
  remove docker masks due to security issues with old versions.
  And a total lack of anyone telling me that they were masking them
  in the first place...

  29 Jun 2014; Alexandre Rostovtsev <tetromino@gentoo.org>
  targets/desktop/gnome/package.use:
  Do not enable gstreamer in wine by default

  28 Jun 2014; Hans de Graaff <graaff@gentoo.org> package.mask:
  Mask dev-ruby/mail:2.4 slot.

  27 Jun 2014; Ian Stakenvicius (_AxS_) <axs@gentoo.org>
  hardened/linux/amd64/no-multilib/package.mask:
  added games-arcade/thinktanks-demo to p.mask in
  hardened/linux/amd64/no-multilib

  27 Jun 2014; Ian Stakenvicius (_AxS_) <axs@gentoo.org>
  arch/amd64/no-multilib/package.mask,
  added games-arcade/thinktanks-demo to p.mask in amd64/no-multilib

  27 Jun 2014; Sergei Trofimovich <slyfox@gentoo.org> package.mask:
  Fix syntax of 'PortageXS' mask.

  27 Jun 2014; Mikle Kolyada <zlogene@gentoo.org> package.mask:
  Mask dev-perl/PortageXS 0.2.12 for preoper testing.

  26 Jun 2014; Jeroen Roovers <jer@gentoo.org> package.mask:
  Mask net-analyzer/mausezahn (bug #515210).

  25 Jun 2014; Andrey Grozin <grozin@gentoo.org>
  arch/alpha/use.mask, arch/amd64/use.mask, arch/amd64/use.stable.mask,
  arch/arm/use.mask, arch/arm64/use.mask, arch/ia64/use.mask, arch/m68k/use.mask,
  arch/powerpc/ppc32/use.mask, arch/powerpc/ppc32/use.stable.mask, arch/s390/use.mask, arch/sh/use.mask,
  arch/sparc/use.mask, arch/sparc/use.stable.mask, arch/x86/use.mask, arch/x86/use.stable.mask,
  base/use.mask:
  USE flags clisp, clozurecl, cmucl, ecls, gcl, sbcl masked in base
  and unmasked only on the relevant arches (stable.masked whenever necessary)

  24 Jun 2014; Mike Gilbert <floppym@gentoo.org> thirdpartymirrors:
  Add ftp://ftp.gnupg.org/gcrypt/ to gnupg mirrors.

  22 Jun 2014; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask keytouch* for removal (#371839)

  22 Jun 2014; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Mask >=dev-libs/libgit2-glib-0.0.14 until a compatible gitg version is
  released (bug #514468).

  22 Jun 2014; Pacho Ramos <pacho@gentoo.org>
  targets/desktop/gnome/package.use:
  Newer version is compatible

  22 Jun 2014; Samuli Suominen <ssuominen@gentoo.org> desc/xfce_plugins.desc:
  Introduce XFCE_PLUGINS="battery" for xfce4-power-manager

  22 Jun 2014; Robin H. Johnson <robbat2@gentoo.org> package.mask:
  openstack-guest-agents-unix and xe-guest-utilities coming because infra needs
  them.

  21 Jun 2014; Markos Chandras <hwoarang@gentoo.org> package.mask:
  unmask latest sssd

  19 Jun 2014; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Moved emul-linux-x86-baselibs-20140508-r{10,11} to -r{13,14} to allow
  unmasked -r12 for fixing file collision with unmasked lcms:0[abi_x86_32].

  18 Jun 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Remove p.masks of old (removed) media-video/libav versions.

  17 Jun 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Remove masks for games-emulation/{boycott-advance-sdl,neopocott}, packages
  have been removed.

  17 Jun 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Remove mask for app-emacs/redo, package has been removed.

  16 Jun 2014; Anthony G. Basile <blueness@gentoo.org> profiles.desc:
  Drop hardened/linux/uclibc/amd64 and x86 to dev to avoid repoman warnings

  16 Jun 2014; Anthony G. Basile <blueness@gentoo.org> base/use.mask,
  prefix/windows/winnt/use.mask:
  Mask CURL_SSL=winssl on all profiles, except prefix/windows/winnt

  16 Jun 2014; Anthony G. Basile <blueness@gentoo.org> profiles.desc:
  Add hardened musl profiles for mips to profiles.desc

  16 Jun 2014; Ryan Hill <rhill@gentoo.org> package.mask:
  Remove obsolete ver.

  15 Jun 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib libquvi & respective libquvi-scripts.

  15 Jun 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib curl.

  15 Jun 2014; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  rm pmask media-video/vdr-1.6, media-plugins/vdr-noepgmenu

  15 Jun 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Unmask multilib gstreamer.

  14 Jun 2014; Anthony G. Basile <blueness@gentoo.org> package.mask:
  Mask net-libs/cyassl for removal in 30 days, bug #495848

  14 Jun 2014; Justin Lecher <jlec@gentoo.org> desc/linguas.desc:
  Add some missing locales

  14 Jun 2014; Alexandre Rostovtsev <tetromino@gentoo.org> desc/linguas.desc:
  Add new translations in app-text/iso-codes-3.54 to linguas.desc

  14 Jun 2014; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask sssd-1.11.6 for testing in production

  14 Jun 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Move nspr to the common multilib mask, and mask nss & baselibs before
  committing.

  13 Jun 2014; Hanno Boeck <hanno@gentoo.org> package.mask:
  Restrict pymsn-t mask to old version without pillow fix.

  13 Jun 2014; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add Transmission-OpenSSL-exception license exception to GPL-COMPATIBLE group.

  13 Jun 2014; Ian Stakenvicius (_AxS_) <axs@gentoo.org> package.mask:
  added multilib-converted nspr to package.mask for testing

  13 Jun 2014; Eray Aslan <eras@gentoo.org> package.mask:
  net-mail/fetchyahoo punted from the tree - bug #450116

  13 Jun 2014; Eray Aslan <eras@gentoo.org> package.mask:
  net-mail/dovecot-2.{0,1} no longer in the tree

  13 Jun 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Restore mask on gst-plugins-{gconf,gnomevfs}.

  13 Jun 2014; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask net-misc/openswan.

  13 Jun 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Unmask non-gstreamer multilib packages.

  12 Jun 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Update slotted lua p.mask for multilib versions.

  12 Jun 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Unmask cppunit since it does not collide with emul-linux-x86 and is required
  for dev-python/subunit which is needed to fix dev-libs/check (bug #510892).

  12 Jun 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  +arch/x86/package.use.force, base/package.use.force:
  Add profile entries for www-client/chromium's new pic USE flag.

  11 Jun 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Unmask multilib tdb since it carries fix for bug #511846.

  11 Jun 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib media-video/ffmpeg.

  11 Jun 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask respective gtklibs bump.

  11 Jun 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib gconf & gnome-vfs, and respective gstreamer plugins.

  11 Jun 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib tdb as well (for samba).

  11 Jun 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib samba3.

  10 Jun 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Fix gst-plugins-gl mask.

  10 Jun 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib gstreamer packages before committing.

  10 Jun 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib libquicktime as well.

  10 Jun 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask new set of multilib packages before committing.

  10 Jun 2014; Patrick Lauer <patrick@gentoo.org> package.mask:
  Add docker to lxc mask

  10 Jun 2014; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask unused packages depending on dev-python/imaging.

  08 Jun 2014; Brian Evans <grknight@gentoo.org> thirdpartymirrors:
  Update mysql mirror list to remove old or broken mirrors.
  Thanks to Ben Kohler, bug 494854.

  08 Jun 2014; Ulrich Müller <ulm@gentoo.org> license_groups:
  Comment DEPRECATED license group, its only member "as-is" is gone.

  08 Jun 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Mask VLC ebuilds that are affected with security bug CVE-2013-6934.

  08 Jun 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib libsoup & neon.

  08 Jun 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Unmask the previous set of multilib conversions.

  07 Jun 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Cleanup p.mask

  07 Jun 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib libav & libpostproc.

  07 Jun 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib libofa & respective medialibs bump.

  07 Jun 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask new multilib cppunit & taglib.

  07 Jun 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Remove mask for app-editors:21 and :22, ebuilds have been removed.

  06 Jun 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Extend gentoo-sources CVE-2014-3153 mask with 3.2 and 3.4 branches.

  06 Jun 2014; Anthony G. Basile <blueness@gentoo.org> profiles.desc:
  Add hardened musl profiles for armv7a as exp

  05 Jun 2014; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Drop obsolete mask on mail-filter/dovecot_deleted_to_trash

  04 Jun 2014; Hans de Graaff <graaff@gentoo.org> package.mask:
  Rescue dev-ruby/ruby-sdl from being removed.

  03 Jun 2014; Alexandre Rostovtsev <tetromino@gentoo.org>
  +targets/desktop/package.use.force:
  Force dev-libs/glib[mime] for desktop profiles, see bug #511894

  03 Jun 2014; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
  default/bsd/fbsd/packages.build, default/linux/packages.build:
  Add sys-apps/which to the list of packages to build on stage1 - fixes bug
  502084.

  02 Jun 2014; Matthew Thode <prometheanfire@gentoo.org> package.mask:
  Remove mask on dev-python/rackspace-monitoring{,-cli}, dep issues fixed

  02 Jun 2014; Hans de Graaff <graaff@gentoo.org> thirdpartymirrors:
  Update rubygems mirror to the new canonical address and remove old or broken
  mirrors, bug 512132.

  02 Jun 2014; Hans de Graaff <graaff@gentoo.org> package.mask:
  Mask old ruby package which only host source on rubyforge, bug 512132.

  02 Jun 2014; Anthony G. Basile <blueness@gentoo.org> profiles.desc:
  Add hardened musl profiles for amd64 and x86 as exp

  02 Jun 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Clean up package.mask

  02 Jun 2014; Alexandre Rostovtsev <tetromino@gentoo.org>
  targets/desktop/gnome/package.use:
  Make libmediaart installable out of the box in gnome profiles

  01 Jun 2014; Hans de Graaff <graaff@gentoo.org> package.mask:
  Mask new rubinius version for testing.

  01 Jun 2014; Hans de Graaff <graaff@gentoo.org> base/package.use:
  Remove default ruby_targets_ruby20 USE flags for core ruby packages now that
  ruby20 is in the default RUBY_TARGETS.

  01 Jun 2014; Pacho Ramos <pacho@gentoo.org> arch/amd64-fbsd/package.use.mask:
  use.mask due missing keywords

  01 Jun 2014; Pacho Ramos <pacho@gentoo.org> arch/amd64-fbsd/package.use.mask:
  use.mask due missing keywords

  01 Jun 2014; Sven Vermeulen <swift@gentoo.org> package.mask:
  Add libsemanage-2.3-r1 to p.mask (multilib depends on audit-2.2.2-r2)

  01 Jun 2014; Pacho Ramos <pacho@gentoo.org> base/package.use.mask:
  use.mask lua for grilo-plugins as we still have lua-5.2 hardmasked

  01 Jun 2014; Pacho Ramos <pacho@gentoo.org> package.mask:
  Unmask Gnome 3.12

  31 May 2014; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Release Xfce 4.11 (pre-4.12) to ~arch which has better compability with
  systemd and upower >= 0.99. Both 4.10 and 4.11 (pre-4.12) will still be
  parallel maintained; 4.10 for stable and 4.11 (pre-4.12) for ~arch.

  31 May 2014; Pacho Ramos <pacho@gentoo.org> package.mask:
  Update 3.12 mask

  31 May 2014; Julian Ospald <hasufell@gentoo.org>
  hardened/linux/amd64/no-multilib/package.mask:
  mask games-misc/katawa-shoujo for hardened no-multilib

  31 May 2014; Pacho Ramos <pacho@gentoo.org> package.mask:
  Update 3.12 mask

  31 May 2014; Patrick Lauer <patrick@gentoo.org> package.mask:
  Mask dev-python/rackspace-monitoring{,-cli} #511676

  30 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib cyrus-sasl before committing.

  30 May 2014; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask transifex-client beta release

  30 May 2014; Davide Pesavento <pesa@gentoo.org> package.mask:
  dev-python/sip: p.mask later versions and dependent packages too.

  30 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask the upcoming PAM multilib package set.

  30 May 2014; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  removed block media-plugins/ vdr-atscepg vdr-channelblocker vdr-iptv-0.3.2

  30 May 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Mask dev-java/ibm-jdk-bin:1.5 due to CVE-2012-1721.

  30 May 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Fix typo in a comment.

  29 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib audit.

  29 May 2014; Pacho Ramos <pacho@gentoo.org> targets/systemd/package.use.mask:
  upower support is not needed on setups running systemd, also relies on old
  upower (#508920)

  29 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib libart_lgpl & cracklib before committing.

  29 May 2014; Sven Vermeulen <swift@gentoo.org> desc/input_devices.desc:
  Add roccat_konepuremilitary input device (bug #511524)

  29 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Unleash all new multilib ebuilds.

  28 May 2014; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Unmask new ldb and sssd revisions

  28 May 2014; Sergey Popov <pinkbyte@gentoo.org> desc/linguas.desc:
  Add 'Uzbek in Latin script' locale

  27 May 2014; Michał Górny <mgorny@gentoo.org> targets/desktop/package.use:
  Disable USE=mng on emul-linux-x86-qtlibs by default.

  27 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Uncomment the python:2.6 mask.

  27 May 2014; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Remove mask for xorg-server prerelease, fontsproto/libXfont and
  wayland/weston.

  27 May 2014; Patrick Lauer <patrick@gentoo.org> package.mask:
  Add vdr-1.6 reverse deps

  26 May 2014; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask new sssd revbump for testing in real systems

  26 May 2014; Lars Wendler <polynomial-c@gentoo.org> package.mask:
  Added mask for >=sys-libs/ldb-1.1.17-r1 until sys-auth/sssd got subslot
  support (bug #511528 and bug #511530).

  26 May 2014; Tim Harder <radhermit@gentoo.org> package.mask:
  Drop dev-lang/fpc-ide mask, package removed.

  25 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib libidn & libnl.

  24 May 2014; Jeroen Roovers <jer@gentoo.org> thirdpartymirrors:
  Remove mirror://opensuse (bug #494868).

  24 May 2014; Michał Górny <mgorny@gentoo.org> thirdpartymirrors:
  Update/fix bitbucket download URIs. Reported by Douglas Freed, thanks.

  24 May 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove poppler-0.26 mask

  24 May 2014; Lars Wendler <polynomial-c@gentoo.org> package.mask:
  Fixed vdr-1.6 mask.

  24 May 2014; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  masked (old) vdr-1.6 tree for removal

  24 May 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Roll dev channel mask for chromium-37.

  23 May 2014; Jonathan Callen <jcallen@gentoo.org> package.mask:
  Mask multilib dev-libs/openssl:0.9.8 before committing

  23 May 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Mask sci-biology/ncbi-tools++ - removal in 30days

  23 May 2014; Andrey Grozin <grozin@gentoo.org> package.mask:
  Mask app-text/qgoogletranslator, dev-lisp/openmcl, dev-lisp/openmcl-build-tools
  for removal in 30 days

  23 May 2014; Jeroen Roovers <jer@gentoo.org> package.mask:
  Mask specific versions of dev-libs/libevent.

  23 May 2014; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Fix libgphoto2 multilib mask (2.5.4 should not have been masked, 2.5.3.1-r1
  is gone from the tree)

  22 May 2014; Ian Delaney <idella4@gentoo.org> (22 May 2014):
  Masking of weasyprint-0.22 subject to update of py3.4 support to key dep

  21 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib libgphoto2, sane-backends & deps before committing.

  21 May 2014; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Rearrange Xwayland and fontsproto mask, add patched libXfont to mask.

  21 May 2014; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Mask recent fontsproto, xorg-server, wayland and weston

  21 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib openldap before committing.

  21 May 2014; Justin Lecher <jlec@gentoo.org> package.mask:
  drop mask from pybugz

  21 May 2014; Justin Lecher <jlec@gentoo.org> package.mask:
  Mask pybugz due to borked patch

  19 May 2014; Alexis Ballier <aballier@gentoo.org> base/package.use.mask:
  unmask openssl on multilib ffmpeg

  19 May 2014; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Temporarily mask timezone-data-2014c because dev-libs/glib can't parse the
  new timezone format, leading to wrong timestamps everywhere.

  19 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Unmask new emul-linux sets and multilib conversions preceding them.

  19 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Unmask multilib OpenSSL.

  18 May 2014; Ryan Hill <rhill@gentoo.org> package.mask:
  Mask GCC 4.9 for testing.

  18 May 2014; Jeroen Roovers <jer@gentoo.org> package.mask:
  Drop net-nntp/tin development mask.

  17 May 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask app-emacs/redo for removal.

  17 May 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask games-emulation/boycott-advance-sdl and games-emulation/neopocott for
  removal.

  16 May 2014; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Unmask lightdm-1.10. Mask 1.11

  16 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Slide the PyPy mask to 2.3, unleashing 2.2 on our unexpecting users.

  16 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Drop old python-exec versions.

  16 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Remove old (slotted) PyPy.

  16 May 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Remove masks for broken gentoo-sources revisions that were removed, as a new
  revision has been added which uses a working stable queue patch.

  16 May 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Mask gentoo-sources revisions that have a broken security mask.

  16 May 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Mask gentoo-sources ebuilds that are affected with security bug
  CVE-2014-0196.

  16 May 2014; Andrey Grozin <grozin@gentoo.org> package.mask:
  The masked version of gcl has been removed, removing the line in package.mask.

  16 May 2014; Hans de Graaff <graaff@gentoo.org> updates/2Q-2014:
  Add slotmove for dev-ruby/http-0.6.x packages.

  16 May 2014; Alexandre Rostovtsev <tetromino@gentoo.org> desc/linguas.desc:
  Add some more LINGUAS for gnome-extra/cinnamon-translations

  15 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask new multilib packages.

  15 May 2014; Alexis Ballier <aballier@gentoo.org> base/package.use.mask:
  unmask ffmpeg:0.10 flags that have their multilib deps satisfied now

  14 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask the mit-krb5 multilib conversion block.

  14 May 2014; Alexis Ballier <aballier@gentoo.org> package.mask:
  unmask ffmpeg-2 now that bug #476490 blockers are fixed

  14 May 2014; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Mask packages which depend on libevdev, bug #492886.

  14 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask new set of multilib additions.

  14 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib cups.

  14 May 2014; Hans de Graaff <graaff@gentoo.org> +updates/2Q-2014:
  Add missing slotmove for dev-ruby/listen version, bug 510226.

  13 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib gnutls.

  13 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib libevent & unbound before committing.

  13 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Update multilib OpenSSL mask, and move it to the top to facilatate early
  unmasking if urgent update becomes necessary.

  13 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Unmask the previous batch of multilib conversions.

  13 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Move ldns mask to proper block.

  12 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib openssl before committing.

  12 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib avahi for review/testing.

  12 May 2014; Luca Barbato <lu_zero@gentoo.org> package.mask:
  Update the libav10 mask

  12 May 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Remove masks for dev-libs/clens and dev-java/randomguid, packages removed.

  11 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib libdaemon.

  11 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Remove old LLVM masks.

  11 May 2014; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask media-video/y4mscaler for removal

  11 May 2014; Pacho Ramos <pacho@gentoo.org> package.mask:
  Clean old mask entries

  10 May 2014; Mike Gilbert <floppym@gentoo.org> package.mask:
  Remove llvm mask for mgorny.

  10 May 2014; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Unmask Cinnamon 2.2 (bug #487678).

  10 May 2014; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Expand cinnamon mask

  10 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask broken LLVM temporarily.

  10 May 2014; Johannes Huber <johu@gentoo.org> package.mask:
  Remove obsolete mask on games-puzzle/krosswordpuzzle.

  09 May 2014; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Unmask mistakenly masked non-multilib alsa-plugins to fix depgraph.

  09 May 2014; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Update mask for openocd-0.8.0

  09 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib alsa-oss & alsa-plugins.

  09 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib bluez.

  08 May 2014; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  targets/desktop/package.use:
  Enable x11-libs/libxcb[xkb] by default in the desktop profile.

  08 May 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Update mask for app-editors/emacs SLOTs 21 and 22.

  08 May 2014; Jeroen Roovers <jer@gentoo.org> use.desc:
  Typo.

  07 May 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Useful for removed ruby18, no-op in ruby19 and later. Masked for removal in
  30 days.

  07 May 2014; Justin Lecher <jlec@gentoo.org> package.mask:
  Mask experimental lxml support in sci-chemistry/ccpn

  07 May 2014; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Expand Cinnamon-2.2 mask

  06 May 2014; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask latest emul set for testing

  06 May 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Remove MATE Desktop Environment 1.8 introduction mask.

  05 May 2014; Brian Evans <grknight@gentoo.org> package.mask:
  Mask slot 3 of dev-db/mysql++ for removal. Slot 0 and 3 collide as
  the slotting was not done properly.

  04 May 2014; Alexandre Rostovtsev <tetromino@gentoo.org>
  targets/desktop/package.use:
  typo

  04 May 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  caja-extensions was in wrong category, also removed the packages that it
  replaces from the mask.

  04 May 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Added mate-base/caja-extensions to MATE 1.8 mask. media-gfx/mate-image-viewer
  has been named media-gfx/eom in MATE 1.8, x11-misc/mate-menu-editor has been
  named x11-misc/mozo in MATE 1.8.

  04 May 2014; Alexandre Rostovtsev <tetromino@gentoo.org>
  targets/desktop/package.use:
  Enable cairo LTO by default only for desktop profiles, bug #509552

  03 May 2014; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask app-emulation/lxc-1.X.X releases

  03 May 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  JRuby 1.7.12 needs to be further tested and revised by both Java and Ruby
  herds.

  03 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Remove obsolete systemd mask.

  03 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Add updated emul-linux-x86-sdl to multilib p.mask.

  03 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Add SDL mixer library to multilib p.mask.

  03 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib fluidsynth.

  03 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib ladspa-cmt.

  03 May 2014; Pacho Ramos <pacho@gentoo.org> package.mask:
  Clean some mask entries

  03 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib media-sound/lash before committing.

  03 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask new libSM with proper dependency on multilib util-linux.

  02 May 2014; Tom Wijsman <TomWij@gentoo.org> base/package.use.mask:
  Update MATE bluetooth mask to include mate-base/mate[bluetooth].

  02 May 2014; Tom Wijsman <TomWij@gentoo.org> package.mask,
  base/package.use.mask:
  Mask Bluetooth support in MATE due to BlueZ incompatibilities.

  02 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib virtual/acl and sys-devel/libtool.

  02 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib sys-apps/acl.

  02 May 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib util-linux and future baselibs before committing.

  01 May 2014; Sergei Trofimovich <slyfox@gentoo.org> package.mask:
  Drop mask of '=net-im/openfire-3.9.2', restored 'security.xml' file.

  30 Apr 2014; Anthony G. Basile <blueness@gentoo.org> base/use.mask,
  +prefix/windows/cygwin/use.mask:
  Mask elibc_Cygwin and elibc_Winnt in base, unmask in prefix/windows, bug
  #509204

  30 Apr 2014; Ian Stakenvicius (_AxS_) <axs@gentoo.org> package.mask:
  removed mask on new thunderbird; no issues with lightning distfiles

  30 Apr 2014; Ian Stakenvicius (_AxS_) <axs@gentoo.org> package.mask:
  short term mask of new thunderbird so ppl don't upgrade to it; minor bug
  related to distfiles to sort out

  30 Apr 2014; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add bf1942-lnxded license to EULA group.

  30 Apr 2014; Ian Stakenvicius (_AxS_) <axs@gentoo.org>
  default/bsd/fbsd/package.use.mask:
  expanded wifi use mask on fbsd to cover all mozilla packages instead of just
  firefox

  30 Apr 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Unmask exiv2 after fixing.

  30 Apr 2014; Justin Lecher <jlec@gentoo.org> package.mask:
  Mask sci-geosciences/gempak for removal

  30 Apr 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Remove app-emacs/delicious mask, package removed.

  29 Apr 2014; Mike Frysinger <vapier@gentoo.org> package.mask:
  Drop bison-3 mask to get ~arch testing #479254.

  29 Apr 2014; Anthony G. Basile <blueness@gentoo.org> desc/curl_ssl.desc:
  Add winssl use expand for curl, bug #508808

  29 Apr 2014; Anthony G. Basile <blueness@gentoo.org> base/make.defaults,
  desc/elibc.desc:
  Properly sync various ELIBCs between base/make.defaults and desc/elibc.desc

  29 Apr 2014; Lars Wendler <polynomial-c@gentoo.org> package.mask:
  Adjusted mask for net-libs/ptlib and net-libs/opal so newer versions get
  covered as well.

  28 Apr 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  x11-wm/mate-window-manager has renamed to x11-wm/marco in MATE 1.8.

  28 Apr 2014; Mike Frysinger <vapier@gentoo.org> package.mask:
  Mask qemu-user #508098.

  28 Apr 2014; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Drop temporary LeechCraft masks

  28 Apr 2014; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Temporary mask old Leechcraft packages due to massive cleanup

  28 Apr 2014; Jeroen Roovers <jer@gentoo.org> package.mask:
  Remove obsolete net-analyzer/ethstatus mask.

  28 Apr 2014; Jeroen Roovers <jer@gentoo.org> package.mask:
  Mask ~net-analyzer/nmap-6.46.

  28 Apr 2014; Gilles Dartiguelongue <eva@gentoo.org> package.mask:
  Add gnome-light to Gnome 3.12 mask.

  28 Apr 2014; Gilles Dartiguelongue <eva@gentoo.org> package.mask:
  Clean up overlay ebuilds from Gnome 3.12 mask. Fix gnome-terminal mask line.

  27 Apr 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Mask dev-python/python-gnutls. See bug #446016.

  27 Apr 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Cleanup pmask.

  27 Apr 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  app-text/mate-document-viewer has renamed to app-text/atril in MATE 1.8.

  27 Apr 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  app-editors/mate-text-editor has renamed to app-editors/pluma in MATE 1.8.

  27 Apr 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  app-arch/mate-file-archiver has renamed to app-arch/engrampa in MATE 1.8.

  27 Apr 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask poppler-0.26 for testing

  27 Apr 2014; Gilles Dartiguelongue <eva@gentoo.org> package.mask:
  Add mask for Gnome 3.12.

  27 Apr 2014; Pacho Ramos <pacho@gentoo.org> arch/alpha/use.stable.mask,
  arch/arm/use.stable.mask, arch/ia64/use.stable.mask,
  arch/powerpc/use.stable.mask:
  Update use.stable.mask

  27 Apr 2014; Patrick Lauer <patrick@gentoo.org> package.mask:
  Mask gnome-extra/evolution-kolab as gnome3.8 was removed

  26 Apr 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask Python 2.6-only packages and prepare for masking Python 2.6 itself.

  26 Apr 2014; Tim Harder <radhermit@gentoo.org> package.mask:
  Mask dev-lang/fpc-ide for removal.

  26 Apr 2014; Tim Harder <radhermit@gentoo.org> package.mask:
  Use a specific qt5 use mask on >=media-video/mkvtoolnix-6.9.0 instead of a
  package mask.

  26 Apr 2014; Pacho Ramos <pacho@gentoo.org> base/package.use.mask:
  Mask introspection on old version as it depends on long time obsolete goi,
  bug #508742

  26 Apr 2014; Pacho Ramos <pacho@gentoo.org> arch/alpha/use.stable.mask,
  arch/arm/use.stable.mask, arch/ia64/use.stable.mask,
  arch/powerpc/use.stable.mask, arch/sparc/use.stable.mask:
  Update stable use mask

  26 Apr 2014; Pacho Ramos <pacho@gentoo.org> arch/alpha/use.stable.mask,
  arch/arm/use.stable.mask, arch/ia64/use.stable.mask,
  arch/powerpc/use.stable.mask:
  Update stable use mask

  26 Apr 2014; Pacho Ramos <pacho@gentoo.org> arch/alpha/use.stable.mask,
  arch/ia64/use.stable.mask, arch/powerpc/use.stable.mask,
  arch/sparc/use.stable.mask:
  Update stable use mask

  26 Apr 2014; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  removed mask for removal
  media-plugins/vdr-eggtimer,vdr-ac3mode,vdr-bistreamout

  25 Apr 2014; Tim Harder <radhermit@gentoo.org> package.mask:
  Mask =dev-libs/protobuf-c-1.0.0* for testing.

  24 Apr 2014; Tim Harder <radhermit@gentoo.org> package.mask:
  Unmask =dev-java/jython-2.7*.

  24 Apr 2014; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
  arch/amd64/package.use.mask, base/package.use.mask:
  Mask tokudb use flag for dev-db/mariadb in all arches except amd64.

  23 Apr 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove networkmanagement mask on request by mrueg

  23 Apr 2014; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask dev-python/manifestdestiny for removal.

  23 Apr 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  [QA] Remove obselete entries that were last rited, 30 days have passed and
  for which their ebuilds / packages have been removed by the maintainer(s).

  23 Apr 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  [QA] Removed obsolete =net-libs/libnatpmp-20140401 mask, the version with
  missing declspec.h has been punted by ssuominen.

  23 Apr 2014; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Punt now unrequired entry for removed faenza-xfce-icon-theme package.
  Everything from the themepack was included directly in the original
  faenza-icon-theme.

  23 Apr 2014; Mikle Kolyada <zlogene@gentoo.org> package.mask:
  Drop qt5 and co. from the tree

  23 Apr 2014; Patrick Lauer <patrick@gentoo.org> package.mask:
  Import qt5 from qt overlay, keep masked for a bit more testing

  22 Apr 2014; Matti Bickel <mabi@gentoo.org> package.mask:
  Add masks for slotted lua.

  22 Apr 2014; Michael Palimaka <kensington@gentoo.org> targets/desktop/kde/package.use:
  Enable USE="multimedia" for dev-qt/qt-mobility by default as it is required
  by kde-base/artikulate.

  21 Apr 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Unmask new versions of emul-linux to fix vulnerable openssl.

  20 Apr 2014; Alexandre Rostovtsev <tetromino@gentoo.org>
  targets/desktop/gnome/package.use:
  Enable needed apache2 modules for gnome-user-share

  20 Apr 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Unmask the first set of gx86-multilib conversions.

  20 Apr 2014; Mike Gilbert <floppym@gentoo.org> package.mask:
  Drop certifi and moz* masks after package removal.

  20 Apr 2014; Julian Ospald <hasufell@gentoo.org> arch/alpha/package.use.mask,
  arch/arm/package.use.mask, arch/powerpc/package.use.mask,
  arch/sparc/package.use.mask:
  mask 'media-video/mpv sdl' on arches where media-libs/libsdl2 is not
  keyworded yet wrt #506982 and #508226

  20 Apr 2014; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Required lightdm-1.4.X versions have been restored. Bug #507358

  19 Apr 2014; Julian Ospald <hasufell@gentoo.org> targets/desktop/package.use:
  prepare for media-video/mpv[sdl] wrt #506982

  18 Apr 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask updated emul-linux-x86-sdl.

  18 Apr 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask updated emul-linux-x86-gtklibs.

  18 Apr 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask updated emul-linux-x86-baselibs.

  18 Apr 2014; Tim Harder <radhermit@gentoo.org> package.mask:
  Mask >=media-video/mkvtoolnix-6.9.0 waiting for qt5.

  18 Apr 2014; Julian Ospald <hasufell@gentoo.org> package.mask:
  mask >=media-libs/sdl-gfx-2.0.24-r1 for multilib conversion

  18 Apr 2014; Julian Ospald <hasufell@gentoo.org> package.mask:
  mask >=media-libs/sdl-sound-1.0.3-r1 for multilib conversion

  18 Apr 2014; Julian Ospald <hasufell@gentoo.org> package.mask:
  mask >=media-libs/freealut-1.1.0-r3 for multilib conversion

  18 Apr 2014; Julian Ospald <hasufell@gentoo.org> package.mask:
  mask >=media-libs/sdl-ttf-2.0.11-r1 for multilib conversion

  18 Apr 2014; Julian Ospald <hasufell@gentoo.org> package.mask:
  mask >=media-libs/sdl-net-1.2.8-r1 for multilib conversion

  18 Apr 2014; Julian Ospald <hasufell@gentoo.org> package.mask:
  mask >=media-libs/smpeg-0.4.4-r10 for multilib conversion

  18 Apr 2014; Julian Ospald <hasufell@gentoo.org> package.mask:
  mask >=media-libs/sdl-image-1.2.12-r1 for multilib conversion

  18 Apr 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Remove stray comments from middle of multilib mask, update note on unmasking.

  18 Apr 2014; Julian Ospald <hasufell@gentoo.org> package.mask:
  remove obsolete mask on >=media-libs/libsdl2-2.0.2-r1, it does not depend on
  masked libs

  18 Apr 2014; Julian Ospald <hasufell@gentoo.org> package.mask:
  mask >=media-libs/libsdl2-2.0.2-r1 for multilib migration wrt #484130

  18 Apr 2014; Julian Ospald <hasufell@gentoo.org> package.mask:
  mask >=media-libs/libsdl-1.2.15-r5 for multilib migration wrt #489122

  18 Apr 2014; Julian Ospald <hasufell@gentoo.org> package.mask:
  mask >=media-libs/libcaca-0.99_beta18-r2 for multilib conversion wrt #497776

  18 Apr 2014; Julian Ospald <hasufell@gentoo.org> package.mask:
  prepare media-libs/imlib2 for multilib conversion wrt #496376

  18 Apr 2014; Julian Ospald <hasufell@gentoo.org> package.mask:
  mask >=media-libs/imlib-1.9.15-r4 for multilib conversion wrt #499268

  18 Apr 2014; Julian Ospald <hasufell@gentoo.org> package.mask:
  mask sys-libs/slang, media-libs/giflib, media-libs/aalib for multilib
  conversion wrt #496586, #496548, #497774

  17 Apr 2014; Pacho Ramos <pacho@gentoo.org> arch/alpha/use.stable.mask,
  arch/ia64/use.stable.mask, arch/powerpc/use.stable.mask,
  arch/sparc/use.stable.mask:
  Mask gnumeric USE on arches that will lose its stable keyword for that

  17 Apr 2014; Pacho Ramos <pacho@gentoo.org> arch/alpha/use.stable.mask,
  arch/ia64/use.stable.mask, arch/powerpc/use.stable.mask,
  arch/sparc/use.stable.mask:
  Drop stable keywords after the discussion caused by Gnome 3.8/3.10
  stabilization on this arches

  17 Apr 2014; Alexey Shvetsov <alexxy@gentoo.org> base/package.use.mask:
  Use mask ppc driver

  17 Apr 2014; Patrick Lauer <patrick@gentoo.org> package.mask:
  Mask uninstallable razorqt-base/razorqt-lightdm-greeter version #507358

  16 Apr 2014; Mike Gilbert <floppym@gentoo.org> package.mask:
  Roll dev channel mask for chromium-36.

  16 Apr 2014; Alexey Shvetsov <alexxy@gentoo.org> desc/ofed_drivers.desc:
  Add new ib drivers description

  15 Apr 2014; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add no-source-code license notice to BINARY-REDISTRIBUTABLE group.

  15 Apr 2014; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Drop obsolete mask for dev-libs/boost and dev-util/boost-build

  15 Apr 2014; Johannes Huber <johu@gentoo.org> package.mask:
  Remove obsolete mask on kde-misc/youtube-servicemenu.

  15 Apr 2014; Tiziano Müller <dev-zero@gentoo.org>
  desc/nginx_modules_http.desc:
  Add USE flag descriptions for nginx_modules_http_{ajp,sticky}.

  14 Apr 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Removal of >=sys-kernel/git-sources-3.15_rc1 mask, as this is temporarily
  fixed in kernel-2.eclass; see bug #507656.

  14 Apr 2014; Mike Pagano <mpagano@gentoo.org> package.mask:
  Masking git-sources-3.15_rc1 due to broken patch

  14 Apr 2014; Johannes Huber <johu@gentoo.org> package.mask:
  Masked kde-misc/networkmanagement for removal.

  14 Apr 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Drop net-ftp/pftpfxp mask, package removed.

  13 Apr 2014; Sebastian Pipping <sping@gentoo.org> package.mask:
  Unmask redshift 1.9-r*

  13 Apr 2014; Sebastian Pipping <sping@gentoo.org> package.mask:
  Mask upcoming ~x11-misc/redshift-1.9

  13 Apr 2014; Pacho Ramos <pacho@gentoo.org> +arch/alpha/use.stable.mask,
  +arch/arm/use.stable.mask, +arch/ia64/use.stable.mask,
  +arch/powerpc/use.stable.mask, +arch/sparc/use.stable.mask:
  use.stable.mask because it won't be stabilized in that arches

  12 Apr 2014; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite dev-cpp/libsexymm as part of the effort in bug #380193

  12 Apr 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask dev-java/randomguid for removal.

  12 Apr 2014; Pacho Ramos <pacho@gentoo.org> arch/alpha/package.use.mask,
  arch/ia64/package.use.mask, arch/powerpc/package.use.mask,
  arch/sparc/package.use.mask:
  Mask mbim USE due missing keywords on some arches

  12 Apr 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Drop x11-themes/gdm-themes-livecd mask, package removed.

  11 Apr 2014; Rick Farina <zerochaos@gentoo.org> package.mask:
  adjust date on dev-util/dissy removal due to late announement

  11 Apr 2014; Samuli Suominen <ssuominen@gentoo.org> desc/xfce_plugins.desc:
  Describe multiload-nandhp for XFCE_PLUGINS=""

  11 Apr 2014; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask new xfce4-mixer in the Xfce 4.12 mask.

  11 Apr 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Limit the llvm mask to the single version.

  11 Apr 2014; Ian Delaney <idella4@gentoo.org> package.mask:
  unmask django-celery-3.1.9, celery-3.1.10

  11 Apr 2014; Alexis Ballier <aballier@gentoo.org> package.mask:
  mask multilib libbluray

  11 Apr 2014; Alexis Ballier <aballier@gentoo.org> package.mask:
  mask multilib libaacs

  10 Apr 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask new sys-devel/llvm ebuild.

  10 Apr 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Adjust mate-base/mate-file-manager mask to be mate-base/caja due to upstream
  name change.

  10 Apr 2014; Johannes Huber <johu@gentoo.org> package.mask:
  Mask games-puzzle/krosswordpuzzle for removal.

  10 Apr 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask pypy-bin for testing as well.

  09 Apr 2014; Ian Delaney <idella4@gentoo.org> package.mask:
  Add django-celery-3.1.9 which deps on celery-3.1.10

  09 Apr 2014; Ian Delaney <idella4@gentoo.org> package.mask:
  Add celery-3.1.10 until further testing

  09 Apr 2014; Patrick Lauer <patrick@gentoo.org> package.mask:
  Add app-backup/pybackpack to rdiff-backup mask

  09 Apr 2014; Patrick Lauer <patrick@gentoo.org> package.mask:
  Add rdiff-backup-fs to rdiff-backup mask

  09 Apr 2014; Patrick Lauer <patrick@gentoo.org> package.mask:
  Mask rdiff-backup: Dead upstream, has known dataloss bugs.

  08 Apr 2014; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask new lightdm-1.10

  08 Apr 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask virtual/pypy:2.0 and the corresponding packages.

  08 Apr 2014; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Security mask of vulnerable OpenSSL versions, bug #505278

  08 Apr 2014; Alexey Shvetsov <alexxy@gentoo.org> arch/amd64/use.mask,
  arch/x86/use.mask, base/ChangeLog, base/use.mask,
  desc/openmpi_ofed_features.desc:
  Add udcm desk

  08 Apr 2014; Alexey Shvetsov <alexxy@gentoo.org> arch/amd64/use.mask,
  arch/x86/use.mask, base/ChangeLog, base/use.mask:
  CUDA only available on x86 and amd64 so mask it globaly and unmask only on
  target arches

  06 Apr 2014; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask openocd-0.8.0_rc* releases for testing

  06 Apr 2014; Gilles Dartiguelongue <eva@gentoo.org> package.mask:
  Add mask for old and broken pitivi releases.

  06 Apr 2014; Julian Ospald <hasufell@gentoo.org> base/package.use.mask:
  mask <net-misc/openvpn-9999[polarssl] wrt #501582

  06 Apr 2014; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask new emul set until their ebuilds are tested/updated for native multilib
  setups

  06 Apr 2014; Pacho Ramos <pacho@gentoo.org> ChangeLog:
  Mask some packages for removal

  06 Apr 2014; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Remove now unrequired mask for libopensync-plugin-evolution2 wrt #352506

  05 Apr 2014; Sébastien Fabbro <bicatali@gentoo.org> package.mask:
  Removing glpk mask

  05 Apr 2014; Andreas K. Huettel <dilfridge@gentoo.org>
  -eapi-5-files/ChangeLog, -eapi-5-files/eapi,
  -eapi-5-files/package.use.stable.mask:
  Remove obsolete directory

  05 Apr 2014; Andreas K. Huettel <dilfridge@gentoo.org> releases/13.0/parent:
  Remove empty directory eapi-5-files from parents

  05 Apr 2014; Julian Ospald <hasufell@gentoo.org> package.mask:
  mask >=dev-libs/DirectFB-1.7.1 wrt #499740 and #497124

  05 Apr 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Cleanup package.mask.

  05 Apr 2014; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask broken libnatpmp release for transmission wrt #506832 by Hans Nieser

  05 Apr 2014; Pacho Ramos <pacho@gentoo.org>
  eapi-5-files/package.use.stable.mask, base/package.use.stable.mask:
  Migrate and drop obsolete use.stable.mask entries

  02 Apr 2014; Julian Ospald <hasufell@gentoo.org> package.mask:
  mask =sys-devel/llvm-3.4 to prevent breakage

  02 Apr 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Drop app-emacs/mell mask, package removed.

  02 Apr 2014; Samuli Suominen <ssuominen@gentoo.org> thirdpartymirrors:
  Update mirrors from upstream ImageMagick site, but drop two unworking ones
  from it, wrt #494846 by Ben Kohler

  02 Apr 2014; Naohiro Aota <naota@gentoo.org> package.mask:
  Drop prime masking

  02 Apr 2014; Mikle Kolyada <zlogene@gentoo.org>
  features/selinux/package.mask:
  Remove obsolete grub mask

  02 Apr 2014; Patrick Lauer <patrick@gentoo.org> package.mask,
  thirdpartymirrors:
  Mask broken sip release #506452

  01 Apr 2014; Tom Wijsman <TomWij@gentoo.org>
  arch/amd64/package.use.stable.mask:
  [QA] Remove obsolete abi_x86_32 libusbx mask from amd64 p.u.s.m. as libusbx
  was pkgmoved to libusb.

  01 Apr 2014; Tom Wijsman <TomWij@gentoo.org>
  features/64bit-native/package.mask:
  [QA] Remove obsolete googleearth mask from 64bit-native feature.

  01 Apr 2014; Tom Wijsman <TomWij@gentoo.org>
  arch/amd64/no-multilib/package.mask:
  [QA] Remove obsolete googleearth mask from amd64 no-multilib.

  01 Apr 2014; Tom Wijsman <TomWij@gentoo.org>
  hardened/linux/amd64/no-multilib/package.mask:
  [QA] Remove obsolete googleearth mask from hardened amd64 no-multilib.

  01 Apr 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  [QA] Remove obsolete grep-2.13 mask.

  01 Apr 2014; Michael Palimaka <kensington@gentoo.org> package.mask:
  Unmask media-gfx/kgraphviewer wrt bug #491760.

  31 Mar 2014; Tom Wijsman <TomWij@gentoo.org> hardened/linux/package.mask:
  [QA] Remove obsolete hardened gcc-4.4.2 mask.

  31 Mar 2014; Tom Wijsman <TomWij@gentoo.org>
  -targets/desktop/kde/package.mask:
  [QA] Remove obsolete KDE broken NVIDIA drivers sigprocmask mask.

  31 Mar 2014; Tom Wijsman <TomWij@gentoo.org> uclibc/ppc/package.use.mask:
  [QA] Cleaned up uclibc/ppc/package.use.mask and removed obsolete
  ibm-jdk-bin-1.5 mask.

  31 Mar 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Prevent users from switching JDK / JRE implementation.

  30 Mar 2014; Tom Wijsman <TomWij@gentoo.org>
  arch/amd64/package.use.stable.mask, arch/x86/package.use.stable.mask,
  -default/linux/amd64/13.0/package.use.stable.mask,
  -default/linux/x86/13.0/package.use.stable.mask:
  Move p.u.s.m masks from default/linux/{amd64,x86}/13.0/ to arch/{amd64,x86}/.

  30 Mar 2014; Mike Gilbert <floppym@gentoo.org> package.mask:
  Drop mask on dev-lang/python:3.4.

  30 Mar 2014; Pacho Ramos <pacho@gentoo.org> targets/systemd/make.defaults:
  We want udev USE to be enabled too

  29 Mar 2014; Pacho Ramos <pacho@gentoo.org> package.mask:
  Update mask for gdk-pixbuf

  29 Mar 2014; Pacho Ramos <pacho@gentoo.org> package.mask:
  Update mask for pango

  29 Mar 2014; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Release the working udev virtuals to ~arch as no policy has been violated and
  there has been no consensus for masking them among the QA team or council.
  This is a maintainer commit which can be reverted only by the maintainers, or
  majority vote in the respective authorities.

  29 Mar 2014; Rick Farina <zerochaos@gentoo.org> package.mask:
  Restore QA mask incorrectly reverted without permission.
  sys-power/upower was fixed BEFORE the initial mask, please learn
  to cvs up before complaining about 'breakage'

  29 Mar 2014; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Drop wrong mask of working udev virtuals.

  28 Mar 2014; Rick Farina <zerochaos@gentoo.org> package.mask:
  missed virtual/udev-208-r2 in previous mask

  28 Mar 2014; Rick Farina <zerochaos@gentoo.org> package.mask:
  Mask virtual/lib[g]udev pending discussion on -dev, bug #506114

  28 Mar 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Add a note to update wiki page when unmasking multilib packages.

  27 Mar 2014; Michał Górny <mgorny@gentoo.org> targets/desktop/package.use:
  Copy the USE defaults to virtual/libgudev.

  27 Mar 2014; Andreas K. Huettel <dilfridge@gentoo.org> releases/13.0/eapi,
  +uclibc/amd64/eapi, +releases/freebsd-8.2/eapi, +uclibc/arm/2.4/eapi,
  +releases/freebsd-9.1/eapi, +uclibc/arm/armeb/2.4/eapi,
  +releases/freebsd-9.2/eapi, +releases/eapi, +targets/desktop/eapi,
  +targets/desktop/gnome/eapi, +targets/desktop/kde/eapi,
  +targets/developer/eapi, +targets/systemd/eapi, +uclibc/arm/armeb/eapi,
  +uclibc/arm/eapi, +uclibc/eapi, +uclibc/mips/eapi,
  +uclibc/mips/hardened/eapi, +uclibc/mips/mipsel/eapi,
  +uclibc/mips/mipsel/hardened/eapi, +uclibc/ppc/2.4/eapi, +uclibc/ppc/eapi,
  +uclibc/ppc/hardened/2.4/eapi, +uclibc/ppc/hardened/eapi,
  +uclibc/sh/2.4/eapi, +uclibc/sh/eapi, +uclibc/x86/2.4/eapi,
  +uclibc/x86/2005.1/2.4/eapi, +uclibc/x86/2005.1/eapi, +uclibc/x86/eapi,
  +uclibc/x86/hardened/2.4/eapi, +uclibc/x86/hardened/eapi,
  +uclibc/x86/linux24/eapi, +uclibc/x86/linux26/eapi:
  Increase EAPI to 5

  27 Mar 2014; Mike Gilbert <floppym@gentoo.org> package.mask:
  Remove mask on >=sys-apps/systemd-210.

  27 Mar 2014; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask -r22 of emul-linux-x86-baselibs with removed libmagic.so* together with
  >=sys-apps/file-5.18-r1 wrt #505936

  26 Mar 2014; Ulrich Müller <ulm@gentoo.org> profiles.desc:
  Drop m68k, s390, sh profiles to exp per 20140225 council decision.

  26 Mar 2014; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Mask <mesa-9.1.4 for security bugs #445916, #471098 and #472280.

  25 Mar 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Remove app-emacs/{tnt,gnuserv-programs} masks, packages have been removed.

  24 Mar 2014; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  media-plugins/vdr-bistreamout media-plugins/vdr-eggtimer masked for removal

  24 Mar 2014; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  media-plugins/vdr-ac3mode masked for removal

  24 Mar 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Remove MATE Desktop Environment 1.6 introduction mask.

  24 Mar 2014; Tom Wijsman <TomWij@gentoo.org> updates/1Q-2014:
  SLOT move =mate-base/mate-control-center-1.6.2 from 2 to 0.

  24 Mar 2014; Samuli Suominen <ssuominen@gentoo.org> updates/1Q-2014:
  Move dev-libs/libusbx to dev-libs/libusb since the usbx project is now in
  control of the libusb sf.net project page and they renamed the library from
  usbx to usb within 1.0.18 release.

  24 Mar 2014; Dion Moult <moult@gentoo.org> package.mask:
  x11-plugins/desklet-sudoku package mask removed as package removed

  24 Mar 2014; Dion Moult <moult@gentoo.org> package.mask:
  www-client/htmlview package mask removed as package removed

  24 Mar 2014; Dion Moult <moult@gentoo.org> package.mask:
  rox-extra/comicthumb package mask removed as package removed

  24 Mar 2014; Dion Moult <moult@gentoo.org> package.mask:
  dev-libs/jrtplib package mask removed as package removed

  24 Mar 2014; Dion Moult <moult@gentoo.org> package.mask:
  virtual/monodoc package mask removed as package removed

  24 Mar 2014; Dion Moult <moult@gentoo.org> package.mask:
  app-misc/flyte-download-manager package mask removed as package removed

  23 Mar 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Remove app-emacs/{http-emacs,mairix} masks, packages have been removed.

  23 Mar 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask app-emacs/gnuserv-programs for removal.

  22 Mar 2014; Rick Farina <zerochaos@gentoo.org> package.mask:
  mask dissy, replaced by emilpro

  22 Mar 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Mask app-admin/mate-system-tools, mate-base/libmatekeyring, mate-base/mate,
  mate-base/mate-control-center, mate-base/mate-keyring, mate-extra/mate-media,
  mate-extra/mate-user-share for MATE introduction.

  22 Mar 2014; Christoph Mende <angelos@gentoo.org> updates/1Q-2014:
  Move media-sound/audio-entropyd to sys-apps (bug #495000)

  22 Mar 2014; Ulrich Müller <ulm@gentoo.org> -updates/1Q-2008,
  -updates/2Q-2008, -updates/3Q-2008, -updates/4Q-2008:
  Cleanup of old updates.

  22 Mar 2014; Hans de Graaff <graaff@gentoo.org> package.mask:
  Mask www-apache/mod_ruby for removal, fixing bug 505236.

  21 Mar 2014; Jeroen Roovers <jer@gentoo.org> package.mask:
  Remove dev-libs/libevent-2.1 mask.

  21 Mar 2014; Ben de Groot <yngwin@gentoo.org>  base/package.use.mask,
  package.mask:
  Mask harfbuzz useflag so we can unmask media-libs/freetype-2.5.3-r1 for
  security stabilization

  20 Mar 2015; Mikle Kolyada <zlogene@gentoo.org> package.mask:
  perl-5.18.2 and co. unmasked.

  20 Mar 2014; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Mask vulnerable versions of net-nds/openldap, bug #424167

  20 Mar 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Remove app-emacs/{eperiodic,view-process} masks, packages have been removed.

  19 Mar 2014; Mikle Kolyada <zlogene#gentoo.org> package.mask:
  Mask app-misc/bins for removal.

  19 Mar 2014; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite x11-misc/suxpanel wrt #500408

  19 Mar 2014; Samuli Suominen <ssuominen@gentoo.org> use.desc:
  Don't explicitely mention sys-fs/udev in USE="udev" description as the flag
  can be used also with sys-fs/eudev and sys-apps/systemd wrt #505090 by
  Francesco Turco

  19 Mar 2014; Andreas K. Huettel <dilfridge@gentoo.org>
  -targets/server/make.defaults:
  Remove targets/server, not inherited anywhere anymore

  19 Mar 2014; Andreas K. Huettel <dilfridge@gentoo.org> -releases/10.0/eapi,
  -releases/10.0/make.defaults, -releases/10.0/package.mask,
  -releases/10.0/parent:
  Remove releases/10.0, not inherited anywhere anymore

  19 Mar 2014; Andreas K. Huettel <dilfridge@gentoo.org> eapi:
  Increase EAPI to 5

  18 Mar 2014; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask new media-sound/pragha together with GTK+-3.x libxfce4ui from Xfce 4.12
  (git)

  17 Mar 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Remove app-emacs/{alt-font-menu,cperl-mode,erc,nxml-mode,u-vm-color} masks,
  packages have been removed.

  17 Mar 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Add new freetype with harfbuzz dep to multilib mask.

  17 Mar 2014; Bernard Cafarelli <voyageur@gentoo.org> package.mask:
  Remove mask on gnustep-libs/cddb after last rites, bug #501160

  16 Mar 2014; Andreas K. Huettel <dilfridge@gentoo.org>
  targets/developer/make.defaults, targets/developer/parent:
  Do not inherit the server target in the developer target anymore

  16 Mar 2014; Michał Górny <mgorny@gentoo.org>
  desc/python_single_target.desc, desc/python_targets.desc:
  Update PyPy flag descriptions.

  16 Mar 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask new versions of systemd-sysv-utils as well.

  16 Mar 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Mask ruby-1.8

  15 Mar 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Cleanup package.mask

  15 Mar 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Cleanup package.mask

  15 Mar 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask net-ftp/pftpfxp for removal.

  15 Mar 2014; Alexandre Rostovtsev <tetromino@gentoo.org>
  targets/desktop/gnome/package.use:
  Enable USE=vala for gcr for =app-crypt/seahorse-3.10.2-r1

  15 Mar 2014; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask new xfce4-indicator-plugin together with required GTK+-3.x version of
  libxfce4ui.

  15 Mar 2014; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Add new version of xfce4-xkb-plugin to p.mask together with
  >=xfce-base/xfce4-settings-4.11.

  15 Mar 2014; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Add new media-video/parole with requirement for GTK+-3 libxfce4ui to Xfce
  4.12 mask

  15 Mar 2014; Pacho Ramos <pacho@gentoo.org> arch/alpha/package.use.mask,
  arch/ia64/package.use.mask, arch/sparc/package.use.mask:
  Mask rdp USE due missing keywords, bug #504672

  14 Mar 2014; Lars Wendler <polynomial-c@gentoo.org> package.mask:
  Masked <net-fs/samba-3.6 for security reasons.

  14 Mar 2014; Michael Palimaka <kensington@gentoo.org> package.mask:
  Mask kde-misc/youtube-servicemenu for removal wrt bug #504550.

  13 Mar 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask x11-themes/gdm-themes-livecd for removal.

  13 Mar 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask dev-libs/clens for removal.

  12 Mar 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Re-unite multilib mask to avoid comments in the middle as that breaks
  app-portage/diffmask.

  12 Mar 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Update the mask for fixed ebuild and virtual.

  12 Mar 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask new pypy before people start wasting time on it.

  11 Mar 2014; Ben de Groot <yngwin@gentoo.org> package.mask:
  Remove mask on >=media-libs/freetype-2.5.1 (tracker bug #493570)

  11 Mar 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Update the systemd mask to catch 211.

  11 Mar 2014; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask prereleases of what will be Xfce 4.12

  11 Mar 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Mask app-arch/mate-file-archiver, app-editors/mate-text-editor,
  app-text/mate-document-viewer, dev-python/python-caja,
  mate-base/mate-applets, mate-extra/caja-dropbox,
  mate-extra/mate-file-manager-image-converter,
  mate-extra/mate-file-manager-open-terminal,
  mate-extra/mate-file-manager-sendto, mate-extra/mate-file-manager-share,
  media-gfx/mate-image-viewer, x11-misc/mate-menu-editor,
  net-analyzer/mate-netspeed, x11-misc/mate-notification-daemon and
  x11-themes/mate-icon-theme-faenza for MATE introduction. Removed x11-wm/marco
  mask which will be reintroduced later at or after 1.8 version bumps.

  10 Mar 2014; Aaron W. Swenson <titanofold@gentoo.org> package.mask:
  x11-misc/slimlock removed from tree. Removing mask. Project merged with
  x11-misc/slim.

  09 Mar 2014; Andrey Grozin <grozin@gentoo.org> package.mask:
  unmask dev-lisp/gcl-2.6.10

  09 Mar 2014; Alexis Ballier <aballier@gentoo.org> package.mask:
  unmask latest libdvbpsi now that vlc seems ok

  09 Mar 2014; Alexis Ballier <aballier@gentoo.org> package.mask:
  unmask flac-1.3, bug #472950

  09 Mar 2014; Alexis Ballier <aballier@gentoo.org> base/package.use.mask:
  unmask vaapi on multilib ffmpeg

  09 Mar 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Mask mate-base/mate-file-manager, mate-extra/mate-calc,
  mate-extra/mate-character-map, mate-extra/mate-power-manager,
  mate-extra/mate-screensaver, mate-extra/mate-sensors-applet,
  mate-extra/mate-system-monitor, mate-extra/mate-utils,
  x11-terms/mate-terminal, x11-themes/mate-backgrounds, x11-themes/mate-themes
  and x11-wm/marco for MATE introduction.

  09 Mar 2014; Tristan Heaven <tristan@gentoo.org> thirdpartymirrors:
  Remove dead lokigames mirror, bug #494852

  09 Mar 2014; Alexis Ballier <aballier@gentoo.org> package.mask:
  unmask latest libva now that its consumers should work

  09 Mar 2014; Alexis Ballier <aballier@gentoo.org> package.mask:
  mask latest libass (needs harfbuzz unmasked for multilib)

  08 Mar 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Do not mask dev-python/python-exec yet. We need to get a news item along with
  it.

  08 Mar 2014; Matt Turner <mattst88@gentoo.org>
  default/linux/package.use.mask:
  Add media-libs/mesa openmax to package.use.mask.

  08 Mar 2014; Matt Turner <mattst88@gentoo.org> package.mask:
  Remove mesa-10.0 mask, see bug #492800.

  06 Mar 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Mask further ruby18-only packages.

  06 Mar 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask dev-python/python-exec for removal.

  05 Mar 2014; Markus Meier <maekke@gentoo.org> package.mask:
  remove hugin-2014 mask regarding dev-libs/boost-1.55 unmasking, bug #492594

  05 Mar 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Mask further ruby18-only packages.

  05 Mar 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask the systemd-stable snapshot due to bugs 503470, 503472.

  05 Nar 2014; Mikle Kolyada <zlogene@gentoo.org> package.mask:
  Fix mask for perl-5.18* releases.

  05 Mar 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Mask mate-base/mate-panel, mate-base/mate-settings-daemon,
  net-wireless/mate-bluetooth, x11-themes/mate-icon-theme and
  x11-wm/mate-window-manager for MATE introduction.

  04 Mar 2014; Julian Ospald <hasufell@gentoo.org> license_groups:
  add PAPERS-PLEASE to EULA license group

  04 Mar 2014; Mike Gilbert <floppym@gentoo.org> package.mask:
  Restore mask on www-plugins/chrome-binary-plugins:unstable.

  04 Mar 2014; Julian Ospald <hasufell@gentoo.org>
  hardened/linux/amd64/no-multilib/package.mask:
  mask games-misc/papers-please for no-multilib

  04 Mar 2014; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Unmask Boost 1.54 and 1.55

  04 Mar 2014; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Mask multilib libxslt until multilib libgcrypt is unmasked (bug #480402).

  04 Mar 2014; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Mask multilib pangox-compat until multilib graphite2 is unmasked (bug
  #488870).

  04 Mar 2014; Alexandre Rostovtsev <tetromino@gentoo.org>
  targets/desktop/gnome/package.use:
  Add media-libs/grilo[playlist] to gnome profile for media-sound/gnome-music

  03 Mar 2014; Pacho Ramos <pacho@gentoo.org> package.mask:
  Adjust to last bump for gdk-pixbuf

  03 Mar 2014; Alexis Ballier <aballier@gentoo.org> arch/amd64/use.mask,
  arch/x86/use.mask, base/use.mask:
  mask fma3 useflag and unmask on x86/amd64

  03 Mar 2014; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  removed pmask for media-plugins/vdr-music-0.9.9

  03 Mar 2014; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask lxde-base/lxpolkit to avoid confusion for removal at a later date.

  03 Mar 2014; Patrick Lauer <patrick@gentoo.org> package.mask:
  Remove cryptsetup mask as cryptsetup-1.6.4 doesn't segfault anymore

  02 Mar 2014; Ulrich Müller <ulm@gentoo.org> license_groups:
  Move Broadcom license from EULA to BINARY-REDISTRIBUTABLE group, as discussed
  with robbat2.

  01 Mar 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask app-emacs/delicious for removal.

  01 Mar 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask pango & deps before committing.

  01 Mar 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask gdk-pixbuf before committing.

  28 Feb 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask new emul-linux-x86-gtklibs.

  28 Feb 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask new emul-linux as well.

  28 Feb 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask new multilib packages before committing.

  28 Feb 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Expand MATE mask messages to be more verbose, include more details, give
  advice to early installers and help overlay users.

  28 Feb 2014; Samuli Suominen <ssuominen@gentoo.org> desc/xfce_plugins.desc:
  Introduce xfce_plugins_xmonad to get rid of USE="xfce4" in xmonad-log-applet
  as per Xfce policy to not include generic flags like USE="xfce xfce4" in
  gentoo-x86

  28 Feb 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Mask dev-libs/libmateweather, mate-base/mate-desktop,
  mate-extra/mate-dialogs, mate-extra/mate-polkit and x11-libs/libmatewnck for
  MATE introduction.

  28 Feb 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Mask app-text/mate-doc-utils and mate-base/libmatekbd for MATE introduction.

  27 Feb 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Update dev channel mask for chromium-35.

  27 Feb 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Mask mate-base/mate-menus for MATE introduction.

  27 Feb 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Mask mate-base/mate-session-manager for MATE introduction.

  27 Feb 2014; Pacho Ramos <pacho@gentoo.org>
  default/linux/alpha/13.0/package.use.stable.mask:
  USE stable mask on alpha until we are able to stabilize thunderbird, bug
  #488766

  25 Feb 2014; Michael Palimaka <kensington@gentoo.org> package.mask:
  Mask media-gfx/kgraphviewer for removal.

  25 Feb 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask new systemd for testing.

  24 Feb 2014; Michael Palimaka <kensington@gentoo.org> updates/1Q-2014:
  Move sys-block/kvpm from SLOT 0 to 4.

  24 Feb 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask app-emacs/tnt for removal.

  24 Feb 2014; Andrey Grozin <grozin@gentoo.org> package.mask:
  Unmask dev-python/pyfeyn - added a patch to fix problems

  24 Feb 2014; Andrey Grozin <grozin@gentoo.org> package.mask:
  Mask dev-python/pyfeyn - many incompatibilities with dev-python/pyx-0.12.1-r1

  23 Feb 2014; Pacho Ramos <pacho@gentoo.org> arch/ia64/package.use.mask:
  Needed dependencies cannot be installed on ia64, bug #498638

  21 Feb 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Mask mate-base/mate-common for MATE introduction.

  21 Feb 2014; Vladimir Smirnov <civil@gentoo.org> package.mask:
  Unmask mail-filter/dovecot_deleted_to_trash-0.5-r1, as it's fixed.

  21 Feb 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask app-emacs/mairix for removal.

  21 Feb 2014; Patrick Lauer <patrick@gentoo.org> thirdpartymirrors:
  Add http option to postgresql mirrors

  20 Feb 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask app-emacs/http-emacs for removal.

  20 Feb 2014; Luca Barbato <lu_zero@gentoo.org> package.mask:
  New libav10 beta

  19 Feb 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Fixed a small typo that I noticed while looking this up during the QA meeting.

  19 Feb 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Mask old revision of jikes.

  18 Feb 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Unmask eselect-enabled versions of app-editors/xemacs and app-emacs/gnuserv.

  18 Feb 2014; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add Sendmail-Open-Source license to MISC-FREE group.

  18 Feb 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask app-emacs/view-process for removal.

  18 Feb 2014; Patrick Lauer <patrick@gentoo.org> package.mask:
  Append mail-filter/dovecot_deleted_to_trash to dovecot mask

  17 Feb 2014; Jeroen Roovers <jer@gentoo.org> package.mask:
  Typo.

  17 Feb 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask new revisions of app-editors/xemacs, app-emacs/gnuserv and
  app-admin/eselect-emacs for testing.

  17 Feb 2014; Mike Gilbert <floppym@gentoo.org>
  desc/python_single_target.desc:
  Add python3_4.

  17 Feb 2014; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask dev-lang/python:3.4.

  17 Feb 2014; Eray Aslan <eras@gentoo.org> package.mask:
  Security mask - bug #492494 net-mail/dovecot-2.{0,1}

  17 Feb 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Temporarily mask app-emacs/gnuserv-3.12.8-r1.

  16 Feb 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask app-emacs/eperiodic for removal.

  16 Feb 2014; Jeroen Roovers <jer@gentoo.org> package.mask:
  Mask net-analyzer/ethstatus (bug #501432).

  15 Feb 2014; Ulrich Müller <ulm@gentoo.org> license_groups:
  Delete spurious newline in MISC-FREE license group.

  15 Feb 2014; Mikle Kolyada <zlogene@gentoo.org> license_groups:
  Add Crypt-IDEA license to MISC-FREE group.

  15 Feb 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask app-emacs/{alt-font-menu,cperl-mode,mell,u-vm-color} for removal.

  15 Feb 2014; Jeroen Roovers <jer@gentoo.org> desc/uwsgi_plugins.desc:
  Fix encoding (bug #501348 by Harry STARR).

  15 Feb 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Unmask systemd-sysv-utils now that are tools are moved to util-linux-ng, bug
  #430912.

  15 Feb 2014; Pacho Ramos <pacho@gentoo.org> +arch/alpha/package.use,
  +arch/ia64/package.use, +arch/sparc/package.use:
  libev isn't supported on some arches, use another default value for them
  (#499498)

  14 Feb 2014; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  removed pmask,
  media-plugins/{vdr-xxvautotimer,vdr-skinclassic,vdr-sky,vdr-skinreel},
  packages removed from tree

  14 Feb 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask app-emacs/erc for removal.

  14 Feb 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Mask further ruby18-only packages.

  13 Feb 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Mask further ruby18-only packages.

  13 Feb 2014; Matti Bickel <mabi@gentoo.org> package.mask:
  Remove masks for removed packages.

  13 Feb 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask app-emacs/nxml-mode for removal.

  13 Feb 2014; Bernard Cafarelli <voyageur@gentoo.org> package.mask:
  Last rites for gnustep-libs/cddb, bug #501160

  12 Feb 2014; Dion Moult <moult@gentoo.org> package.mask:
  Mask x11-plugins/desklet-sudoku. Unclear license, desklets dead. (bug
  #446776)

  11 Feb 2014; Dion Moult <moult@gentoo.org> package.mask:
  Masked www-client/htmlview as deprecated due to xdg-open and co (bug #480522)

  11 Feb 2014; Paul Varner <fuzzyray@gentoo.org> desc/uwsgi_plugins.desc:
  Remove Unicode character from uwsgi_plugins.desc to work around bug 498748
  for equery.

  10 Feb 2014; Pacho Ramos <pacho@gentoo.org> arch/ia64/package.use.mask,
  arch/powerpc/package.use.mask, arch/sparc/package.use.mask:
  Fix broken deps, bug #499722

  10 Feb 2014; Pacho Ramos <pacho@gentoo.org> arch/ia64/package.use.mask,
  arch/powerpc/package.use.mask, arch/sparc/package.use.mask:
  Mask USE flag due missing keywords, bug #495254

  10 Feb 2014; Dion Moult <moult@gentoo.org> package.mask:
  Add rox-extra/comicthumb to package.mask for removal in 30 days (bug #471548)

  08 Feb 2014; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  media-plugins/vdr-amarok pmask removal 08/Mar/2015, wrt bug 424255

  08 Feb 2014; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  removed several pmask for removed media-plugins/vdr-*

  07 Feb 2014; Patrick Lauer <patrick@gentoo.org> package.mask:
  Mask libgcrypt-1.6.1: Reliably makes cryptsetup segfault

  06 Feb 2014; Bernard Cafarelli <voyageur@gentoo.org> updates/1Q-2014:
  Move net-misc/mirall to net-misc/owncloud-client

  05 Feb 2014; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Remove obsolete mask on dev-python/python-irclib

  05 Feb 2014; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Unmask dev-libs/jthread

  04 Feb 2014; Sébastien Fabbro <bicatali@gentoo.org> package.mask:
  Unmasked sci-astronomy/casacore, remasked sci-astronomy/casa-data live
  ebuild

  04 Feb 2014; Lars Wendler <polynomial-c@gentoo.org>
  arch/amd64/no-multilib/package.mask:
  Removed virtualbox mask (bug #476324). arch/amd64/no-multilib/package.mask

  04 Feb 2014; Tim Harder <radhermit@gentoo.org> package.mask:
  Mask =media-sound/lilypond-2.19* for testing.

  03 Feb 2014; Tom Wijsman <TomWij@gentoo.org> package.mask:
  sys-kernel/module-rebuild removal (pending 1st February 2014), see bug
  #410739 for reference.

  03 Feb 2014; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask the other dev-python/moz* packages.

  02 Feb 2014; Pacho Ramos <pacho@gentoo.org>
  default/linux/alpha/13.0/use.stable.mask,
  default/linux/ia64/13.0/use.stable.mask,
  default/linux/sparc/13.0/use.stable.mask:
  Remove stable mask for USE systemd on arches with it already in stable

  31 Jan 2014; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add CC-BY-SA-4.0 license to MISC-FREE-DOCS group.

  31 Jan 2014; Jeroen Roovers <jer@gentoo.org> package.mask:
  Remove beta net-analyzer/tcpreplay mask.

  30 Jan 2014; Ian Stakenvicius (_AxS_) <axs@gentoo.org> package.mask:
  drop mask of multilib gettext

  30 Jan 2014; Aaron W. Swenson <titanofold@gentoo.org> package.mask:
  Mask x11-misc/slimlock for removal.

  29 Jan 2014; Gilles Dartiguelongue <eva@gentoo.org> package.mask:
  Lift Gnome 3.10 mask after bug #499512 resolution.

  29 Jan 2014; Ian Stakenvicius <axs@gentoo.org> package.mask:
  adjust libav p.mask for recently added multilib-build ebuilds

  29 Jan 2014; Jeroen Roovers <jer@gentoo.org> package.mask:
  Drop net-misc/socat-2 mask.

  29 Jan 2014; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask dev-python/mozrunner.

  29 Jan 2014; Naohiro Aota <naota@gentoo.org> package.mask:
  Mask prime and its related packages. #464286

  29 Jan 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Remove dev-ruby/mkrf mask.

  28 Jan 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove obsolete libreoffice-bin-debug mask

  27 Jan 2014; Ian Stakenvicius <axs@gentoo.org>
  targets/systemd/package.use.mask:
  add sys-fs/dmraid[static] to systemd package.use.mask since it cant be built
  without lvm2[static-libs]

  27 Jan 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Append mask for >=oxygen-gtk-1.3.3:3 because it depends on gtk+-3.10

  27 Jan 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Clean up ruby18 mask.

  27 Jan 2014; Dion Moult <moult@gentoo.org> package.mask:
  Mask dev-libs/jrtplib and dev-libs/jthread (bug 489550)

  27 Jan 2014; Mike Gilbert <floppym@gentoo.org> desc/grub_platforms.desc:
  Add xen to GRUB_PLATFORMS.

  27 Jan 2014; Tim Harder <radhermit@gentoo.org> package.mask:
  Unmask =media-libs/portaudio-19_pre20140121_rc.

  26 Jan 2014; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask dev-python/certifi.

  26 Jan 2014; Tim Harder <radhermit@gentoo.org> package.mask:
  Mask =media-libs/portaudio-19_pre20140121_rc until upstream resolves again
  (bug #499292).

  25 Jan 2014; Julian Ospald <hasufell@gentoo.org> package.mask:
  fixed sandbox violation wrt #499020

  25 Jan 2014; Julian Ospald <hasufell@gentoo.org> package.mask:
  hardmask >=sci-visualization/paraview-4.1.0 wrt #499020

  25 Jan 2014; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add Mini-XML license to MISC-FREE group.

  24 Jan 2014; Tim Harder <radhermit@gentoo.org> package.mask:
  Unmask =dev-libs/libtasn1-3*.

  24 Jan 2014; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask >=media-libs/jpeg-9 and roll ~arch back from .so.9 to .so.8 due to too
  many issues being open at the Tracker wrt #479818

  24 Jan 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Clean up further obsolete ruby18 masks.

  23 Jan 2014; Ulrich Müller <ulm@gentoo.org> updates/1Q-2014:
  Update package move for games-board/capicity.

  23 Jan 2014; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add man-pages-posix-2013 license to MISC-FREE-DOCS group.

  23 Jan 2014; Julian Ospald <hasufell@gentoo.org> +updates/1Q-2014:
  pkgmove of games-board/capitalism to games-board/CapiCity

  22 Jan 2014; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Remove mask for still work-in-progress bash-completion layout that was
  temporarily removed from tree.

  21 Jan 2014; Ryan Hill <dirtyepic@gentoo.org> default/linux/make.defaults:
  Drop mudflap from default USE.

  20 Jan 2014; Ben de Groot <yngwin@gentoo.org> desc/linguas.desc:
  Add linguas needed for qupzilla

  20 Jan 2014; Michael Palimaka <kensington@gentoo.org> package.mask:
  Remove obsolete KDE masks since packages are now removed.

  20 Jan 2014; Pacho Ramos <pacho@gentoo.org> profiles.desc:
  Replace tabs by spaces (thanks to vapier for noticing)

  19 Jan 2014; Pacho Ramos <pacho@gentoo.org> arch/sparc/package.use.force,
  arch/sparc/package.use.mask, arch/sparc/use.mask,
  +default/linux/sparc/13.0/desktop/gnome/systemd/parent,
  +default/linux/sparc/13.0/desktop/kde/systemd/parent,
  default/linux/sparc/13.0/eapi, +default/linux/sparc/13.0/use.stable.mask,
  profiles.desc:
  systemd is now keyworded on sparc

  19 Jan 2014; Ulrich Müller <ulm@gentoo.org> package.mask:
  Remove mask for app-editors/emacs-vcs. The live ebuild will switch to empty
  keywords instead.

  19 Jan 2014; Jeroen Roovers <jer@gentoo.org> thirdpartymirrors:
  Remove Easynet (bug #498536 by Helmut Jarausch).

  19 Jan 2014; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask current google-chrome slots, bug 498306.

  18 Jan 2014; Eray Aslan <eras@gentoo.org> package.mask:
  Unmask mail-mta/postfix-2.11 and mask mail-mta/postfix-2.12

  18 Jan 2014; Alexis Ballier <aballier@gentoo.org> package.mask:
  mask latest aubio

  18 Jan 2014; Hans de Graaff <graaff@gentoo.org> package.mask:
  Remove mask for Rails 2.3 now that the packages have been removed.

  18 Jan 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Update dev channel mask for chromium-34

  16 Jan 2014; Jeroen Roovers <jer@gentoo.org> desc/fftools.desc:
  Spelling.

  16 Jan 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib libintl as well.

  16 Jan 2014; Lars Wendler <polynomial-c@gentoo.org> package.mask:
  Multilib ready gettext (bug #496218). Collides with emul-linux-x86-baselibs.

  15 Jan 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask poor media-gfx/exiv2 multilib conversion.

  14 Jan 2014; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  media-plugins/vdr-xxvautotimer masked for removal ~ 14/02/2014, wrt bug
  141181

  14 Jan 2014; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  media-plugins/vdr-skinclassic masked for removal ~14/02/2014, wrt bug 414887

  14 Jan 2014; Alexis Ballier <aballier@gentoo.org> arch/amd64/use.mask,
  arch/x86/use.mask, base/use.mask:
  Add some usemasks for cpu related useflags that will be added to
  media-video/ffmpeg. Unmask relevant flags on amd64/x86. Leave arm and mips
  useflags to the arch team that know better where to unmask them.

  14 Jan 2014; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  media-plugins/vdr-sky masked for removal ~ 14/02/2014, wrt bug 420869

  14 Jan 2014; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  media-plugins/vdr-skinreel masked for removal ~ 14/02/2014, wrt bug 420873

  14 Jan 2014; Andreas K. Huettel <dilfridge@gentoo.org>
  targets/desktop/kde/package.mask:
  Unmask nvidia-drivers-331.38 since the signal mask bug is hopefully fixed
  there

  14 Jan 2014; Justin Lecher <jlec@gentoo.org> package.mask:
  Drop mask as patches apply now

  13 Jan 2014; Tony Vroon <chainsaw@gentoo.org> package.mask:
  Mask off Asterisk 12 as the first ebuild goes in.

  13 Jan 2014; Justin Lecher <jlec@gentoo.org> package.mask:
  Mask aufs-sources:3.10.26 because aufs3 patches do not apply correctly

  13 Jan 2014; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Cleanup pmasked ruby packages.

  12 Jan 2014; Markus Meier <maekke@gentoo.org> package.mask:
  mask media-libs/libpano13 and media-gfx/hugin for testing

  11 Jan 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Link the license issue bug to m64py mask.

  11 Jan 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Unmask llvm-3.4 and rev-deps.

  11 Jan 2014; Pacho Ramos <pacho@gentoo.org> arch/alpha/package.use.mask,
  arch/ia64/package.use.mask, arch/powerpc/package.use.mask:
  Drop obsolete masking for systemd in dracut on arches that now have systemd

  11 Jan 2014; Pacho Ramos <pacho@gentoo.org>
  arch/powerpc/ppc64/package.use.mask:
  Drop obsolete USE maskings on ppc64 as systemd is stable there for a long
  time

  11 Jan 2014; Pacho Ramos <pacho@gentoo.org> arch/ia64/package.use.mask:
  Drop unneeded use mask

  10 Jan 2014; Markos Chandras <hwoarang@gentoo.org> thirdpartymirrors:
  Update openssl mirrors thanks to Ben Kohler <bkohler@gmail.com>. Bug #494866

  10 Jan 2014; Magnus Granberg <zorry@gentoo.org> package.mask:
  Mask sys-devel/gcc-4.8.2-r1 has default ssp and need testing

  10 Jan 2014; Justin Lecher <jlec@gentoo.org> package.mask:
  Mask +sys-kernel/aufs-sources:3.12.7 because aufs3 patches do not apply
  cleanly onto linux-3.12.7

  10 Jan 2014; Justin Lecher <jlec@gentoo.org> package.mask:
  Drop obsolete mask

  08 Jan 2014; Matti Bickel <mabi@gentoo.org> package.mask:
  dev-php/Text_Highlighter still has a reverse dep, unmask again

  08 Jan 2014; Pacho Ramos <pacho@gentoo.org> arch/alpha/package.use.mask:
  systemd[pam] cannot be provided for alpha, bug #438368

  08 Jan 2014; Pacho Ramos <pacho@gentoo.org> arch/alpha/use.mask,
  arch/ia64/use.mask, arch/powerpc/use.mask:
  Unmask systemd USE on arches with it keyworded (thanks to Emeric for
  noticing)

  08 Jan 2014; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  media-plugins/vdr-premiereepg removal ~ 08/Feb/2014

  08 Jan 2014; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  media-plugins/vdr-softplay masked for removal

  08 Jan 2014; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  media-plugins/vdr-softdevice, masked for removal, #420859

  08 Jan 2014; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  media-plugins/vdr-reelchannelscan, masked for removal, #420881

  08 Jan 2014; Matti Bickel <mabi@gentoo.org> package.mask:
  Mask dev-php/PHPUnit_MockObject, dev-php/PHPUnit_Selenium for removal

  08 Jan 2014; Matti Bickel <mabi@gentoo.org> package.mask:
  Mask dev-php/PEAR-Tree for removal

  08 Jan 2014; Matti Bickel <mabi@gentoo.org> package.mask:
  Mask dev-php/PEAR-Text_Highlighter for removal

  08 Jan 2014; Matti Bickel <mabi@gentoo.org> package.mask:
  Mask dev-php/PEAR-Structures_DataGrid for removal

  08 Jan 2014; Matti Bickel <mabi@gentoo.org> package.mask:
  Mask dev-php/PEAR-HTTP_WebDAV_Server for removal

  08 Jan 2014; Matti Bickel <mabi@gentoo.org> package.mask:
  Mask dev-php/PEAR-HTTP_Upload for removal

  08 Jan 2014; Matti Bickel <mabi@gentoo.org> package.mask:
  Mask dev-php/PEAR-HTML_QuickForm_ElementGrid for removal

  08 Jan 2014; Matti Bickel <mabi@gentoo.org> package.mask:
  Mask dev-php/PEAR-HTML_BBCodeParser for removal

  08 Jan 2014; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  media-plugins/vdr-dvdconvert masked for removal ~08/Feb/2014, wrt bug 424281


  07 Jan 2014; Tomáš Chvátal <scarabeus@gentoo.org> package.mask:
  kdesdk-strigi-analyzer was NOT discontinued, so do not mask anymore.

  07 Jan 2014; Pacho Ramos <pacho@gentoo.org> arch/ia64/package.use.force,
  arch/ia64/package.use.mask:
  Drop no longer needed USE force on ia64

  07 Jan 2014; Pacho Ramos <pacho@gentoo.org> arch/ia64/use.mask,
  +default/linux/ia64/13.0/desktop/gnome/systemd/parent,
  +default/linux/ia64/13.0/desktop/kde/systemd/parent, profiles.desc:
  Add ia64 profiles (#478076)

  06 Jan 2014; Bernard Cafarelli <voyageur@gentoo.org> package.mask:
  Add dragonegg to llvm-3.4 mask

  06 Jan 2014; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask new LLVM for testing.

  06 Jan 2014; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  p.mask recent libclc snapshot which needs >=llvm-3.4

  06 Jan 2014; Matti Bickel <mabi@gentoo.org> package.mask:
  Remove masks for tree-cleaned dev-php/DBUnit, dev-php/PEAR-File_PDF

  05 Jan 2014; Andreas K. Huettel <dilfridge@gentoo.org>
  targets/desktop/kde/package.mask:
  Make nvidia-drivers mask more stringent, since according to user reports also
  319.76 seems to be affected

  05 Jan 2014; creffett <creffett@gentoo.org> default/linux/package.use.mask:
  Remove invalid entries from default/linux/package.use.mask

  04 Jan 2014; Alexandre Rostovtsev <tetromino@gentoo.org>
  targets/desktop/gnome/package.use:
  Do not enable USE=gnome for verbiste and im-ja to avoid blocking gnome-3
  update.

  04 Jan 2014; Alexandre Rostovtsev <tetromino@gentoo.org>
  targets/desktop/gnome/package.use:
  Do not enable USE=gnome for lablgtk by default; it blocks the gnome-3 update
  (bug #496722).

  03 Jan 2014; Julian Ospald <hasufell@gentoo.org> use.desc:
  clarify static-libs description

  03 Jan 2014; Ulrich Müller <ulm@gentoo.org> license_groups:
  Remove unused ANTLR license, bug 496690.

  03 Jan 2014; creffett <creffett@gentoo.org>
  arch/powerpc/ppc64/package.use.mask:
  Remove invalid entries from arch/powerpc/ppc64/package.use.mask

  03 Jan 2014; creffett <creffett@gentoo.org> prefix/darwin/package.use.mask:
  Remove invalid entries from prefix/darwin/package.use.mask

  03 Jan 2014; creffett <creffett@gentoo.org>
  prefix/windows/interix/package.use.mask:
  Remove invalid entries from prefix/windows/interix/package.use.mask

  03 Jan 2014; creffett <creffett@gentoo.org> arch/arm/package.mask:
  Remove invalid entries from arch/arm/package.mask

  03 Jan 2014; creffett <creffett@gentoo.org>
  arch/amd64/no-multilib/package.mask:
  Remove invalid entries from arch/amd64/no-multilib/package.mask

  03 Jan 2014; creffett <creffett@gentoo.org> arch/amd64/x32/package.use.mask:
  Remove invalid entries from arch/amd64/x32/package.use.mask

  02 Jan 2014; William Hubbs <williamh@gentoo.org>
  prefix/darwin/macos/package.mask, prefix/package.mask,
  prefix/sunos/solaris/package.mask:
  qa: remove obsolete masks

  02 Jan 2014; William Hubbs <williamh@gentoo.org>
  features/64bit-native/package.mask:
  qa: remove obsolete masks

  02 Jan 2014; William Hubbs <williamh@gentoo.org> package.mask:
  qa: remove obsolete masks

  02 Jan 2014; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask because breaks reverse dependencies and upstream don't want us to use it
  (#483562)

  02 Jan 2014; Hans de Graaff <graaff@gentoo.org> base/use.mask:
  Remove incomplete and undocumented attempt to mask ruby18 to fix
  package-specific bugs.

  01 Jan 2014; Tim Harder <radhermit@gentoo.org> package.mask:
  Remove old lilypond development release mask.

  01 Jan 2014; Mikle Kolyada <zlogene@gentoo.org> package.mask:
  Remove obsolete perl-5.8*/perl-5.10* mask

  For previous entries, please see ChangeLog-2013.