summaryrefslogtreecommitdiff
blob: df5286d03281cd4fad30bcb8e45fdfeb2b90f99b (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
# ChangeLog for profile directory
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.6716 2012/06/27 05:49:15 patrick 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!

  27 Jun 2012; Patrick Lauer <patrick@gentoo.org> package.mask:
  Add nodejs to v8 mask

  26 Jun 2012; Matti Bickel <mabi@gentoo.org> package.mask:
  Lastrite www-apps/phpwiki

  26 Jun 2012; Anthony G. Basile <blueness@gentoo.org>
  hardened/linux/make.defaults:
  Enable ipv6 on all hardened profiles

  26 Jun 2012; Hans de Graaff <graaff@gentoo.org> package.mask:
  Mask dev-ruby/Ruby-MemCache for removal.

  25 Jun 2012; Justin Bronder <jsbronder@gentoo.org> package.mask:
  Remove sys-cluster/lam-mpi from package.mask

  25 Jun 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite x11-misc/transset-df in favour of x11-apps/transset release 1.0.0.

  24 Jun 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  targets/desktop/package.use:
  Enable wine[udisks] for desktop users.

  24 Jun 2012; Tim Harder <radhermit@gentoo.org> package.mask:
  Mask dev-embedded/msp430-* as they're not supposed to be used without
  crossdev.

  24 Jun 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask cups live ebuild

  24 Jun 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove obsolete KOffice mask

  24 Jun 2012; Matti Bickel <mabi@gentoo.org> package.mask:
  Mask www-apps/phpgroupware for removal

  24 Jun 2012; Torsten Veller <tove@gentoo.org> updates/2Q-2012:
  Move Text-ParseWords from dev-perl/ to perl-core/

  24 Jun 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Remove entries for app-arch/hardlink++ and app-text/kiwix since they are no
  longer in tree.

  22 Jun 2012; Diego E. Pettenò <flameeyes@gentoo.org> package.mask:
  Mask dev-embedded/msp430-binutils as it's not supposed to be used without
  crossdev.

  22 Jun 2012; Davide Pesavento <pesa@gentoo.org>
  arch/powerpc/package.use.mask:
  Mask mozilla and firefox3 USE flags for stable
  x11-themes/gtk-engines-qtcurve.

  21 Jun 2012; Anthony G. Basile <blueness@gentoo.org>
  +hardened/linux/arm/armv4/eapi, +hardened/linux/arm/armv4/parent,
  +hardened/linux/arm/armv4t/eapi, +hardened/linux/arm/armv4t/parent,
  +hardened/linux/arm/armv5te/eapi, +hardened/linux/arm/armv5te/parent,
  +hardened/linux/arm/armv6j/eapi, +hardened/linux/arm/armv6j/parent,
  +hardened/linux/arm/armv7a/eapi, +hardened/linux/arm/armv7a/parent,
  +hardened/linux/arm/eapi, +hardened/linux/arm/parent:
  Add hardened/linux/arm profiles

  21 Jun 2012; Maxim Koltsov <maksbotan@gentoo.org> package.mask:
  Restore mask for feboostrap-3

  21 Jun 2012; Maxim Koltsov <maksbotan@gentoo.org> package.mask:
  Unmask dev-utils/febootstrap

  20 Jun 2012; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask udev-bundling systemd versions.

  19 Jun 2012; Jeff Gardner <je_fro@gentoo.org> package.mask:
  Removing sci-chemistry/jmol and sci-libs/naga from package.mask after
  mirroring naga tarball.

  19 Jun 2012; Ian Stakenvicius <axs@gentoo.org> package.mask:
  added spidermonkey-1.8.7 to p.mask

  19 Jun 2012; Diego E. Pettenò <flameeyes@gentoo.org> package.mask:
  sci-electronics/kicad-20120119_p3256 still fetches from a live VCS. Keep
  masked.

  19 Jun 2012; Denis Dupeyron <calchan@gentoo.org> package.mask:
  Change mask on sci-electronics/kicad to >=sci-electronics/kicad-99999999
  because versions lower than that are not live.

  19 Jun 2012; Magnus Granberg <zorry@gentoo.org>
  Add -orc to make.defaults in hardened/linux profile

  18 Jun 2012; Ultrabug <ultrabug@gentoo.org> package.mask:
  Unmask gevent-1.0_beta2 with approval of xarthisius and dev-zero

  18 Jun 2012; Diego E. Pettenò <flameeyes@gentoo.org> package.mask:
  Mask kicad (live ebuild in ~arch).

  18 Jun 2012; Diego E. Pettenò <flameeyes@gentoo.org> package.mask:
  Mask naga and the version of jmol that uses it (live ebuild in ~arch).

  17 Jun 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Unmask sys-auth/polkit and sys-fs/udisks wrt #420269

  17 Jun 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  targets/desktop/gnome/package.use:
  Match curl's CURL_SSL defaults for pycurl to prevent block.

  17 Jun 2012; Ben de Groot <yngwin@gentoo.org> use.desc:
  Add libass global useflag

  16 Jun 2012; Diego E. Pettenò <flameeyes@gentoo.org> package.mask:
  Mask casa-data as it's an unmasked live ebuild.

  16 Jun 2012; Torsten Veller <tove@gentoo.org> package.mask:
  Mask dev-perl/Tie-RegexpHash for removal (#421461)

  16 Jun 2012; Torsten Veller <tove@gentoo.org> package.mask:
  Mask net-proxy/vulture for removal (#310711)

  16 Jun 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  app-shells/rssh is fixed

  16 Jun 2012; Samuli Suominen <ssuominen@gentoo.org> use.desc:
  New USE flag called "postscript" to replace USE="ps" and USE="gs"

  16 Jun 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask sys-kernel/cluster-sources for removal.

  16 Jun 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask some packages for removal.

  16 Jun 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask also next calligra beta

  16 Jun 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Clean mask entries.

  16 Jun 2012; Justin Lecher <jlec@gentoo.org> arch/alpha/make.defaults,
  arch/amd64-fbsd/make.defaults, arch/amd64/make.defaults,
  arch/arm/armv4/make.defaults, arch/arm/armv4t/make.defaults,
  arch/arm/armv5te/make.defaults, arch/arm/armv6j/make.defaults,
  arch/arm/armv7a/make.defaults, arch/arm/make.defaults,
  arch/ia64/make.defaults, arch/m68k/make.defaults,
  arch/mips/mips64/multilib/make.defaults,
  arch/mips/mipsel/mips64el/multilib/make.defaults,
  arch/powerpc/ppc32/make.defaults, arch/powerpc/ppc64/make.defaults,
  arch/s390/make.defaults, arch/sh/make.defaults,
  arch/sparc-fbsd/make.defaults, arch/x86-fbsd/make.defaults,
  arch/x86/make.defaults, arch/x86/xbox/make.defaults, embedded/make.defaults,
  hardened/linux/amd64/make.defaults, hardened/linux/x86/make.defaults,
  hardened/linux/x86/minimal/make.defaults, info_vars, uclibc/make.defaults:
  Set default values of FFLAGS and FCFLAGS to profiles default CFLAGS, equally
  as CXXFLAGS handling

  16 Jun 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Update app-shells/rssh message

  16 Jun 2012; Tiziano Müller <dev-zero@gentoo.org> package.mask:
  4suite is gone

  15 Jun 2012; Anthony G. Basile <blueness@gentoo.org>
  -hardened/linux/x86/10.0/deprecated,
  -hardened/linux/x86/10.0/desktop/deprecated,
  -hardened/linux/x86/10.0/desktop/parent,
  -hardened/linux/x86/10.0/developer/deprecated,
  -hardened/linux/x86/10.0/developer/parent,
  -hardened/linux/x86/10.0/make.defaults, -hardened/linux/x86/10.0/parent,
  -hardened/linux/x86/10.0/server/deprecated,
  -hardened/linux/x86/10.0/server/parent:
  Remove ancient deprecated hardened 10.0 profiles from x86 as well

  15 Jun 2012; Jeroen Roovers <jer@gentoo.org> package.mask:
  Remove libnl-3.2.10 mask.

  15 Jun 2012; Anthony G. Basile <blueness@gentoo.org>
  -hardened/linux/amd64/10.0/deprecated,
  -hardened/linux/amd64/10.0/desktop/deprecated,
  -hardened/linux/amd64/10.0/desktop/parent,
  -hardened/linux/amd64/10.0/developer/deprecated,
  -hardened/linux/amd64/10.0/developer/parent,
  -hardened/linux/amd64/10.0/no-multilib/deprecated,
  -hardened/linux/amd64/10.0/no-multilib/parent,
  -hardened/linux/amd64/10.0/parent,
  -hardened/linux/amd64/10.0/server/deprecated,
  -hardened/linux/amd64/10.0/server/parent,
  -hardened/linux/ia64/10.0/deprecated,
  -hardened/linux/ia64/10.0/desktop/deprecated,
  -hardened/linux/ia64/10.0/desktop/parent,
  -hardened/linux/ia64/10.0/developer/deprecated,
  -hardened/linux/ia64/10.0/developer/parent, -hardened/linux/ia64/10.0/parent,
  -hardened/linux/ia64/10.0/server/deprecated,
  -hardened/linux/ia64/10.0/server/parent,
  -hardened/linux/powerpc/ppc32/10.0/deprecated,
  -hardened/linux/powerpc/ppc32/10.0/desktop/deprecated,
  -hardened/linux/powerpc/ppc32/10.0/desktop/parent,
  -hardened/linux/powerpc/ppc32/10.0/developer/deprecated,
  -hardened/linux/powerpc/ppc32/10.0/developer/parent,
  -hardened/linux/powerpc/ppc32/10.0/parent,
  -hardened/linux/powerpc/ppc32/10.0/server/deprecated,
  -hardened/linux/powerpc/ppc32/10.0/server/parent,
  -hardened/linux/powerpc/ppc64/10.0/32bit-userland/deprecated,
  -hardened/linux/powerpc/ppc64/10.0/32bit-userland/desktop/deprecated,
  -hardened/linux/powerpc/ppc64/10.0/32bit-userland/desktop/parent,
  -hardened/linux/powerpc/ppc64/10.0/32bit-userland/developer/deprecated,
  -hardened/linux/powerpc/ppc64/10.0/32bit-userland/developer/parent,
  -hardened/linux/powerpc/ppc64/10.0/32bit-userland/parent,
  -hardened/linux/powerpc/ppc64/10.0/32bit-userland/server/deprecated,
  -hardened/linux/powerpc/ppc64/10.0/32bit-userland/server/parent,
  -hardened/linux/powerpc/ppc64/10.0/64bit-userland/deprecated,
  -hardened/linux/powerpc/ppc64/10.0/64bit-userland/desktop/deprecated,
  -hardened/linux/powerpc/ppc64/10.0/64bit-userland/desktop/parent,
  -hardened/linux/powerpc/ppc64/10.0/64bit-userland/developer/deprecated,
  -hardened/linux/powerpc/ppc64/10.0/64bit-userland/developer/parent,
  -hardened/linux/powerpc/ppc64/10.0/64bit-userland/parent,
  -hardened/linux/powerpc/ppc64/10.0/64bit-userland/server/deprecated,
  -hardened/linux/powerpc/ppc64/10.0/64bit-userland/server/parent,
  -hardened/linux/powerpc/ppc64/10.0/deprecated,
  -hardened/linux/powerpc/ppc64/10.0/desktop/deprecated,
  -hardened/linux/powerpc/ppc64/10.0/desktop/parent,
  -hardened/linux/powerpc/ppc64/10.0/developer/deprecated,
  -hardened/linux/powerpc/ppc64/10.0/developer/parent,
  -hardened/linux/powerpc/ppc64/10.0/parent,
  -hardened/linux/powerpc/ppc64/10.0/server/deprecated,
  -hardened/linux/powerpc/ppc64/10.0/server/parent:
  Remove ancient deprecated hardened 10.0 profiles

  15 Jun 2012; Ben de Groot <yngwin@gentoo.org> arch/alpha/package.mask,
  arch/sparc/package.mask, package.mask:
  Add qt-demo and remaining qt revdeps to qt mask

  14 Jun 2012; Samuli Suominen <ssuominen@gentoo.org> license_groups:
  Include skype-4.0.0.7-copyright in EULA and
  skype-4.0.0.7-third-party_attributions.txt in MISC-FREE.

  14 Jun 2012; Ben de Groot <yngwin@gentoo.org> package.mask:
  Add dev-embedded/qvfb to qt mask

  14 Jun 2012; Anthony G. Basile <blueness@gentoo.org>
  +hardened/linux/mips/mipsel/multilib/n32/parent,
  +hardened/linux/mips/mipsel/multilib/n64/parent,
  +hardened/linux/mips/mipsel/multilib/parent,
  +hardened/linux/mips/mipsel/n32/parent,
  +hardened/linux/mips/mipsel/n64/parent, +hardened/linux/mips/mipsel/parent,
  +hardened/linux/mips/multilib/n32/parent,
  +hardened/linux/mips/multilib/n64/parent,
  +hardened/linux/mips/multilib/parent, +hardened/linux/mips/n32/parent,
  +hardened/linux/mips/n64/parent, +hardened/linux/mips/parent:
  Add hardened/linux/mips profiles

  14 Jun 2012; Samuli Suominen <ssuominen@gentoo.org> updates/2Q-2012:
  x11-libs/libPropList rename to x11-libs/libproplist

  14 Jun 2012; Tomáš Chvátal <scarabeus@gentoo.org> package.mask:
  Mask also poppler-0.20.1

  14 Jun 2012; Kacper Kowalik <xarthisius@gentoo.org> package.mask:
  Mask glusterfs-3.3.x for testing

  14 Jun 2012; Ben de Groot <yngwin@gentoo.org> package.mask:
  Mask <qt-*-4.7.3, because of security vulnerabilities, bug #335730, #335734,
  #382171

  13 Jun 2012; Torsten Veller <tove@gentoo.org> package.mask:
  Unmask dev-lang/perl-5.16.0 and ExtUtils-ParseXS-3*

  13 Jun 2012; Luca Barbato <lu_zero@gentoo.org> package.mask:
  Update eselect-opengl mask

  13 Jun 2012; Michael Weber <xmw@gentoo.org> package.mask:
  Mask beta versions of sci-electronics/xcircuit for testing

  13 Jun 2012; Michael Weber <xmw@gentoo.org> package.mask:
  Mask beta versions of sci-electronics/magic for testing

  13 Jun 2012; Anthony G. Basile <blueness@gentoo.org>
  +hardened/linux/amd64/x32/parent:
  Add hardened/linux/amd64/x32 profile

  12 Jun 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  Mask dev-python/{apiextractor,generatorrunner} for removal.

  10 Jun 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Unmask beta ati-drivers.

  10 Jun 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Mask udisks-1.98.0 too

  10 Jun 2012; Alexis Ballier <aballier@gentoo.org> package.mask:
  mask new ocaml version

  10 Jun 2012; Jeroen Roovers <jer@gentoo.org> package.mask:
  Mask dev-libs/libnl-3.2.10 (bug #420261).

  10 Jun 2012; Mike Gilbert <floppym@gentoo.org> desc/python_targets.desc:
  Add pypy1_9.

  09 Jun 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Mask polkit-0.106, ok'ed by ssuominen on IRC

  09 Jun 2012; Michael Weber <xmw@gentoo.org> package.mask:
  Masking =sys-fs/mdadm-3.2.4 and =sys-fs/mdadm-3.2.5 for bug 416081

  08 Jun 2012; Torsten Veller <tove@gentoo.org> package.mask:
  Mask dev-perl/CPAN-Mini-Phalanx for removal (#420075)

  08 Jun 2012; Torsten Veller <tove@gentoo.org> package.mask:
  Mask dev-perl/gimp-perl for removal (#249786,#331675,#420211)

  08 Jun 2012; Torsten Veller <tove@gentoo.org> package.mask:
  Mask dev-perl/XML-Sablot for removal (#420179)

  08 Jun 2012; Torsten Veller <tove@gentoo.org> package.mask:
  Mask dev-perl/Devel-Profiler for removal (#420109)

  08 Jun 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  arch/arm/use.mask, base/use.mask, desc/video_cards.desc:
  Add exynos to VIDEO_CARDS.

  08 Jun 2012; Michał Górny <mgorny@gentoo.org> package.mask:
  Remove clang-3.1-r3 mask as the ebuild was removed and replaced by -r4.

  08 Jun 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Mask new xf86-video-ati for libdrm dependency.

  08 Jun 2012; Bernard Cafarelli <voyageur@gentoo.org> package.mask:
  Last rites for gnustep-apps/projectmanager and dependencies, bug #417357

  07 Jun 2012; Ulrich Müller <ulm@gentoo.org> package.mask:
  Remove mask for emacs-vcs-24.0.9999 since it is gone from the tree.

  06 Jun 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Also mask beta calligra-l10n

  06 Jun 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Remove mask for app-misc/beagle and =www-client/firefox-3.6* since they are
  now removed.

  06 Jun 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite net-libs/xulrunner wrt #403415

  06 Jun 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Remove separate mask for =x11-plugins/replytolist-0.3.0 from 2007 since it's
  now in lastrite mask.

  06 Jun 2012; Jory A. Pratt <anarchy@gentoo.org> package.mask:
  Mask mail-client/thunderbird-3.1*, x11-plugins/enigmail, x11-plugins/replytolist

  06 Jun 2012; Patrick Lauer <patrick@gentoo.org> package.mask:
  Mask nginx >1.3 #411937

  06 Jun 2012; Patrick Lauer <patrick@gentoo.org> package.mask,
  thirdpartymirrors:
  Mask nginx >1.3 #411937

  05 Jun 2012; Torsten Veller <tove@gentoo.org> package.mask:
  Mask dev-lang/perl-5.16

  05 Jun 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Mask ati-drivers-12.6_beta

  05 Jun 2012; Luca Barbato <lu_zero@gentoo.org> package.mask:
  Prepare to use the new eselect-opengl

  05 Jun 2012; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask sys-devel/clang-3.1-r3 as it does not fix the issue while forcing
  needless rebuild.

  04 Jun 2012; Diego E. Pettenò <flameeyes@gentoo.org> updates/2Q-2012:
  Move iscan-plugin-gt-s80 to esci-interpreter-gt-s80 (which is what it is).

  04 Jun 2012; Christoph Junghans <ottxor@gentoo.org> package.mask:
  masked app-admin/eselect-awk for testing

  03 Jun 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Masking net-misc/ptrtd for removal. Bug #249112

  03 Jun 2012; Samuli Suominen <ssuominen@gentoo.org> updates/2Q-2012:
  Rename x11-themes/gtk-engines-nimbus to x11-themes/nimbus wrt #357103 by
  Jesús Guerrero

  03 Jun 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Remove emesene:0

  03 Jun 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask net-misc/mDNSResponder for removal

  02 Jun 2012; Torsten Veller <tove@gentoo.org> package.mask:
  dev-perl/IO-Moose is gone

  02 Jun 2012; Torsten Veller <tove@gentoo.org> package.mask:
  Mask dev-perl/Cflow, dev-lang/eleven and net-im/silc-client

  01 Jun 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask accidentally unmasked calligra beta again

  01 Jun 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite x11-terms/cxterm wrt #418259

  01 Jun 2012; Mike Frysinger <vapier@gentoo.org> use.desc:
  Make USE=modplug description useful.

  31 May 2012; Tomáš Chvátal <scarabeus@gentoo.org> package.mask:
  calligra is released.

  31 May 2012; Tim Harder <radhermit@gentoo.org> package.mask:
  Re-add mistakenly removed comment line.

  31 May 2012; Tim Harder <radhermit@gentoo.org> package.mask:
  Unmask >=media-video/mkvtoolnix-5.1.0.

  31 May 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Unmask sys-apps/hardened-shadow.

  31 May 2012; Fabian Groffen <grobian@gentoo.org> ChangeLog:
  Drop mask for exim release candidate, now there is a release

  31 May 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> base/use.mask,
  package.mask:
  Remove sys-auth/tcb related entries, it is removed now, bugs: #371167,
  #408647.

  30 May 2012; Christoph Junghans <ottxor@gentoo.org>
  arch/amd64/no-multilib/package.mask, features/64bit-native/package.mask:
  google-talkplugin is pure 64bit for a while

  30 May 2012; Ben de Groot <yngwin@gentoo.org> package.mask:
  Remove media-sound/qsampler mask, since we now have a snapshot ebuild that
  fixes all outstanding issues

  30 May 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Drop libX11 mask.

  30 May 2012; Kacper Kowalik <xarthisius@gentoo.org> package.mask:
  Drop mask on sys-block/megacli as sources are accessible on upstream's
  webpage

  29 May 2012; Fabian Groffen <grobian@gentoo.org> ChangeLog:
  Mask upcoming exim 4.80 release candidates

  29 May 2012; Julian Ospald <hasufell@gentoo.org> updates/2Q-2012:
  move x11-misc/tudor-volumed to media-sound/tudor-volumed

  29 May 2012; Tim Harder <radhermit@gentoo.org> package.mask:
  Unmask =www-apps/mediawiki-1.19*.

  29 May 2012; Sebastian Pipping <sping@gentoo.org> desc/linguas.desc:
  Add Yiddish locale for media-gfx/gimp (bug #418053)

  28 May 2012; Kacper Kowalik <xarthisius@gentoo.org> package.mask:
  Drop mask on dev-python/xsv Removed wrt #396497

  28 May 2012; Julian Ospald <hasufell@gentoo.org> package.mask:
  =net-im/pidgin-2.10.3-r100 removed from the tree

  28 May 2012; Tomáš Chvátal <scarabeus@gentoo.org> package.mask:
  Remove no-longer needed pmask entries.

  27 May 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask KOffice for removal

  27 May 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask unreleased / alpha / beta calligra

  27 May 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask sci-electrotech-0.3 alpha release

  26 May 2012; Alexis Ballier <aballier@gentoo.org> package.mask:
  mask ffmpeg 0.11

  26 May 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask zen-sources for removal

  26 May 2012; Tomáš Chvátal <scarabeus@gentoo.org> package.mask:
  All deps now build with mapnik-2.0 so unmask.

  26 May 2012; Anthony G. Basile <blueness@gentoo.org> updates/2Q-2012:
  Rename net-libs/axTLS to net-libs/axtls

  26 May 2012; Anthony G. Basile <blueness@gentoo.org>
  arch/amd64-fbsd/todo/package.use.mask, default/linux/alpha/10.0/use.mask,
  default/linux/arm/10.0/use.mask, default/linux/hppa/10.0/use.mask,
  default/linux/ia64/10.0/use.mask, default/linux/powerpc/use.mask,
  default/linux/sparc/10.0/use.mask:
  Change names in comments net-libs/axTLS -> net-libs/axtls

  25 May 2012; Hans de Graaff <graaff@gentoo.org> base/make.defaults:
  Add ruby19 to the default RUBY_TARGETS.

  24 May 2012; Alexis Ballier <aballier@gentoo.org> updates/2Q-2012:
  move dev-texlive/texlive-latex3 to dev-texlive/texlive-latexrecommended as
  that where it is in texlive 2011

  24 May 2012; Johannes Huber <johu@gentoo.org> package.mask:
  Remove obsolete mask for kde-base/ksecrets, was removed with KDE SC 4.8.1.

  24 May 2012; Kacper Kowalik <xarthisius@gentoo.org> package.mask:
  Mask sys-cluster/lam-mpi for removal in 30 days

  24 May 2012; Tiziano Müller <dev-zero@gentoo.org> base/package.use.mask:
  Mask gevent USE flag for www-servers/uwsgi.

  23 May 2012; Samuli Suominen <ssuominen@gentoo.org>
  -default/linux/amd64/2008.0/deprecated,
  -default/linux/amd64/2008.0/desktop/deprecated,
  -default/linux/amd64/2008.0/desktop/parent,
  -default/linux/amd64/2008.0/developer/deprecated,
  -default/linux/amd64/2008.0/developer/parent,
  -default/linux/amd64/2008.0/no-multilib/deprecated,
  -default/linux/amd64/2008.0/no-multilib/parent,
  -default/linux/amd64/2008.0/parent,
  -default/linux/amd64/2008.0/server/deprecated,
  -default/linux/amd64/2008.0/server/parent,
  -default/linux/amd64/2008.0/server/profile.bashrc,
  -default/linux/x86/2008.0/deprecated,
  -default/linux/x86/2008.0/desktop/deprecated,
  -default/linux/x86/2008.0/desktop/parent,
  -default/linux/x86/2008.0/developer/deprecated,
  -default/linux/x86/2008.0/developer/parent, -default/linux/x86/2008.0/parent,
  -default/linux/x86/2008.0/server/deprecated,
  -default/linux/x86/2008.0/server/parent,
  -default/linux/x86/2008.0/server/profile.bashrc,
  -releases/2008.0/make.defaults, -releases/2008.0/package.mask,
  -releases/2008.0/parent:
  Remove 2008.0 also for amd64 and x86. People have had more than enough time
  to migrate.

  23 May 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask qbittorrent-3.0.0_beta releases for testing

  23 May 2012; Aaron W. Swenson <titanofold@gentoo.org> package.mask:
  Masking PostgreSQL 9.2

  23 May 2012; Patrick Lauer <patrick@gentoo.org> package.mask,
  thirdpartymirrors:
  Masking sys-block/megacli as it is unfetchable

  22 May 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Unmask chromium-20.x and corresponding v8-3.10, now in beta channel.

  22 May 2012; Anthony G. Basile <blueness@gentoo.org> updates/2Q-2012:
  Rename dev-python/Whoosh to dev-python/whoosh

  22 May 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Mask chromium-21 and corresponding v8-3.11.

  22 May 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Remove dev-python/testoob mask because it doesn't depend on dev-python/4suite
  anymore. It was always optional but forced mistakenly by the ebuild.

  22 May 2012; Michael Weber <xmw@gentoo.org> package.mask:
  mask x11-wm/parti

  22 May 2012; Ryan Hill <dirtyepic@gentoo.org> package.mask:
  Unmask GCC 4.6.

  21 May 2012; Michael Pagano <mpagano@gentoo.org> package.mask:
  Remove portpeek mask

  21 May 2012; Alexey Shvetsov <alexxy@gentoo.org> arch/alpha/package.mask,
  arch/powerpc/package.mask:
  D7 also need dev-php/pecl-apc and dev-php/pecl-uploadprogress for normal
  operation so mask >=D7-7.14 on ppc and alpha

  21 May 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Remove entry for sci-chemistry/gchemutils. See bug 388887 for reintroducing
  it back to tree.

  21 May 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Remove entry for dev-ruby/ruby-gtkmozembed because it was removed from
  portage.

  20 May 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Remove entry for app-text/chmsee since it was removed from tree. Lastrite
  app-text/kiwix (by version) wrt #412341 for using vulnerable copy of
  net-libs/xulrunner wrt #403415.

  20 May 2012; Benda Xu <heroxbd@gentoo.org> package.mask:
  mask =sci-physics/geant{-python}-4.9.5_p01 for class header breakage

  20 May 2012; Pacho Ramos <pacho@gentoo.org>
  arch/amd64/no-multilib/package.mask, features/64bit-native/package.mask:
  Mask another emul package.

  20 May 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  targets/desktop/gnome/package.use:
  Enable app-accessibility/speech-dispatcher[python] for orca-3.

  20 May 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Mask aisleriot-3.4, needs guile-2.0.5 (bug #416683).

  20 May 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  targets/desktop/gnome/package.use:
  Enable net-misc/spice-gtk[gtk3] for gnome for vinagre-3.4 and gnome-boxes.

  19 May 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Unmask net-im/jabberd because bug 361317 it was masked for doesn't apply
  anymore. This might be subject to change.

  19 May 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite app-arch/hardlink++ wrt #416613

  19 May 2012; Kacper Kowalik <xarthisius@gentoo.org> package.mask:
  Mask dev-python/gevent-1.0_beta2 for testing

  19 May 2012; Alexandre Rostovtsev <tetromino@gentoo.org> use.desc:
  Add global jit USE flag per gentoo-dev discussion
  (archives.gentoo.org/gentoo-dev/msg_a84a8e21139404a1d18839f887e258ee.xml)

  18 May 2012; Alexis Ballier <aballier@gentoo.org>
  +default/bsd/fbsd/amd64/8.2/deprecated:
  deprecate default/bsd/fbsd/amd64/8.2 profile: we never had install media for
  this anyway

  18 May 2012; Alexis Ballier <aballier@gentoo.org> profiles.desc:
  remove old and deprecated fbsd profiles from profiles.desc

  18 May 2012; Amadeusz Żołnowski <aidecoe@gentoo.org>
  desc/dracut_modules.desc:
  'bootchart' added to dracut_modules.

  17 May 2012; Maciej Mrozowski <reavertm@gentoo.org> package.mask:
  Mask poppler-0.20.0

  16 May 2012; Jeroen Roovers <jer@gentoo.org> arch/hppa/package.use.mask:
  Mask USE=python3 for sys-apps/portage.

  16 May 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite 4suite, amara and testoob wrt #250930

  16 May 2012; Tiziano Müller <dev-zero@gentoo.org> updates/2Q-2012:
  pkgmove x11-misc/see -> x11-misc/seetxt

  16 May 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Remove entries for app-pda/libopensync-plugin-google-calendar which got
  dropped for using dev-python/pyxml (obsolete) wrt #367739

  15 May 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Change net-irc/bitchx mask to be per version because it's fixed in upstream
  version control.

  15 May 2012; Markos Chandras <hwoarang@gentoo.org>
  arch/hppa/package.use.mask:
  Forgot to add date on hppa package.use.mask

  15 May 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask new dibbler for testing

  15 May 2012; Markos Chandras <hwoarang@gentoo.org>
  arch/hppa/package.use.mask:
  Mask doc useflag for net-misc/dibbler for hppa

  15 May 2012; Michael Pagano <mpagano@gentoo.org> package.mask:
  Mask testing version of portpeek

  15 May 2012; Samuli Suominen <ssuominen@gentoo.org>
  targets/desktop/make.defaults, targets/desktop/package.use:
  Enable USE="udisks upower" and move USE="gdu" to package.use for
  <gnome-base/gvfs-1.12.

  15 May 2012; Alistair Bush <ali_bush@gentoo.org> package.mask:
  Add additional mono related packages to packages.mask.

  15 May 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Clean mask entry for createrepo.

  15 May 2012; Naohiro Aota <naota@gentoo.org> package.mask:
  Mask app-dicts/sumika for removal.

  14 May 2012; Julian Ospald <hasufell@gentoo.org> package.mask:
  remove mask from www-client/torbrowser (we'll handle that by keywords)

  14 May 2012; Tomáš Chvátal <scarabeus@gentoo.org> base/package.use.mask:
  Merge celt useflag for libav too.

  14 May 2012; Olivier Crête <tester@gentoo.org> package.mask:
  net-im/amsn is maintained upstream, not removing after all

  14 May 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Add pyatspi to gnome-3.4 mask.

  13 May 2012; Mike Frysinger <vapier@gentoo.org> package.mask:
  Drop cromwell mask as it builds now with newer gcc.

  13 May 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Unmask dmake.

  13 May 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask some packages for removal.

  13 May 2012; Julian Ospald <hasufell@gentoo.org> thirdpartymirrors:
  fix sourceforge mirror syntax again

  13 May 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  Unmask x11-libs/qt-sql-4.8.1-r1, thanks to Victor <v.simankin@gmail.com> for
  testing.

  13 May 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  Remove obsolete cmake mask.

  12 May 2012; Julian Ospald <hasufell@gentoo.org> package.mask:
  mask www-client/torbrowser

  12 May 2012; Jeroen Roovers <jer@gentoo.org> package.mask:
  Remove =dev-libs/libnl-3.2.8 now that it is gone (bug #414317).

  12 May 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  lxpanel-0.5.8-r3 should be safe

  12 May 2012; Hans de Graaff <graaff@gentoo.org> package.mask:
  Add new slot to gherking mask.

  11 May 2012; Johannes Huber <johu@gentoo.org> updates/2Q-2012:
  Move kde-misc/kcm-gtk-config to kde-misc/kde-gtk-config.

  11 May 2012; Michał Górny <mgorny@gentoo.org> updates/2Q-2012:
  Move app-portage/eclean-kernel to app-admin/.

  11 May 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask some packages for removal.

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

  11 May 2012; Justin Lecher <jlec@gentoo.org> updates/2Q-2012:
  move dev-vcs/cola dev-vcs/git-cola

  11 May 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Mask packages for nouveau API break.

  10 May 2012; Mike Frysinger <vapier@gentoo.org> package.mask:
  Drop powertop mask as 2.0 has been released.

  10 May 2012; Alistair Bush <ali_bush@gentoo.org> package.mask:
  Mask mono-2.11.1 as alpha version.

  09 May 2012; Markos Chandras <hwoarang@gentoo.org> thirdpartymirrors:
  Fix sourceforge mirrors after recent updates

  09 May 2012; Sebastian Pipping <sping@gentoo.org> package.mask:
  Mask >=dev-python/autopep8-0.6

  09 May 2012; Jeroen Roovers <jer@gentoo.org> package.mask:
  Remove mask for net-analyzer/argus{,clients} development branch.

  09 May 2012; Tomáš Chvátal <scarabeus@gentoo.org> updates/2Q-2012:
  Move the languagetool to new category.

  08 May 2012; Andreas K. Huettel <dilfridge@gentoo.org> categories:
  Add category app-officeext

  08 May 2012; Alexis Ballier <aballier@gentoo.org> profiles.desc:
  mark default/bsd/fbsd/amd64/9.0 profile as stable to disallow broken deps

  07 May 2012; Julian Ospald <hasufell@gentoo.org> use.desc:
  webkit is now global wrt #285743

  07 May 2012; Ulrich Müller <ulm@gentoo.org> package.mask:
  Unmask app-emacs/cedet-1.1.

  07 May 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite =www-client/firefox-3.6* because upstream discontinued security
  support for them and they are blocking net-libs/xulrunner removal wrt bug
  #403415.

  07 May 2012; Agostino Sarubbo <ago@gentoo.org> updates/2Q-2012:
  move app-mobilephone/jacksms-desktop app-mobilephone/freesmee

  07 May 2012; Ben de Groot <yngwin@gentoo.org> package.mask:
  Unmask =media-sound/mp3unicode-1.2.1, as compile issue has been fixed.

  07 May 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  unmask boost-1.49.0

  07 May 2012; Ben de Groot <yngwin@gentoo.org> package.mask:
  Mask =media-sound/mp3unicode-1.2.1 for testing, bug #414907

  07 May 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Unmask rar2fs because upstream released 1.15.1 with compability for
  app-arch/unrar >= 4.2.

  07 May 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask new lxpanel for testing

  07 May 2012; Pacho Ramos <pacho@gentoo.org> arch/powerpc/package.use.mask,
  arch/sparc/package.use.mask:
  Use mask hid on arches without libhid keyworded.

  07 May 2012; Pacho Ramos <pacho@gentoo.org> desc/lcd_devices.desc:
  Add new lcd_devices.

  07 May 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite app-misc/beagle, app-misc/beagle-xesam, dev-libs/libbeagle and
  sys-fs/beaglefs wrt #339811, #372009 and #414837.

  07 May 2012; Naohiro Aota <naota@gentoo.org> package.mask:
  Revert mis-unmasked packages.

  07 May 2012; Naohiro Aota <naota@gentoo.org> package.mask:
  Mask upstream dead canna dictionary packages.

  06 May 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask broken release of dev-util/cmake wrt #414659, Comment #13.

  06 May 2012; Samuli Suominen <ssuominen@gentoo.org>
  hardened/linux/make.defaults, hardened/linux/x86/make.defaults:
  Remove last of USE="nptlonly" and USE="sysfs" wrt #405875

  06 May 2012; Raúl Porcel <armin76@gentoo.org> releases/make.defaults:
  Remove nptlonly sysfs from make.defaults, bug #405875

  06 May 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask emesene:0 for removal

  05 May 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  Mask =x11-libs/qt-sql-4.8.1-r1 with oracle db support.

  05 May 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  desc/libreoffice_extensions.desc:
  Fix desc.

  05 May 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  desc/libreoffice_extensions.desc:
  Describe few more libreoffice extensions that can be built.

  05 May 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask sys-fs/rar2fs because it's broken with upstream release of unrar-4.2.1
  headers wrt http://code.google.com/p/rar2fs/issues/detail?id=10

  05 May 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Update gnome-3.4 mask in preparation for moving packages from overlay to
  gx86.

  04 May 2012; Sebastian Pipping <sping@gentoo.org> package.mask:
  Unmask Gimp 2.8 (and earlier)

  04 May 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  +desc/libreoffice_extensions.desc, -desc/libreoffice_estensions.desc:
  Typos here, typos there...

  04 May 2012; Tomáš Chvátal <scarabeus@gentoo.org> base/make.defaults:
  Add the libreoffice_extensions to use expand and add sane defaults there.

  04 May 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  +desc/libreoffice_estensions.desc:
  Add libreoffice_extensions desc file.

  03 May 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Drop xf86-input-synaptics mask.

  03 May 2012; Alex Legler <a3li@gentoo.org> package.mask:
  Removing horde package masks, packages are gone

  03 May 2012; Johannes Huber <johu@gentoo.org> package.mask:
  Mask dev channel release of media-sound/mp3diags.

  02 May 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  Mask media-sound/qsampler for removal.

  02 May 2012; Diego E. Pettenò <flameeyes@gentoo.org> package.mask:
  Mask libnl as per bug #414317.

  01 May 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Update cairo mask.

  01 May 2012; Johannes Huber <johu@gentoo.org> package.mask:
  Remove obsolete mask for media-libs/tunepimp.

  30 Apr 2012; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask app-emacs/cedet-1.1 because it breaks ecb, bug 414109.

  30 Apr 2012; Samuli Suominen <ssuominen@gentoo.org>
  default/linux/package.use.mask:
  Mask USE="fam" for dev-libs/glib because we prefer native CONFIG_INOTIFY_USER
  support instead wrt #413403

  30 Apr 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  x11-themes/qgtkstyle has been treecleaned.

  29 Apr 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  net-im/twittare is gone

  29 Apr 2012; Hans de Graaff <graaff@gentoo.org> package.mask:
  Mask gherkin until the associated cucumber is ready as well.

  28 Apr 2012; Johannes Huber <johu@gentoo.org> updates/2Q-2012:
  Move app-text/focuswriter to app-editors/focuswriter wrt bug #378981.

  28 Apr 2012; Kacper Kowalik <xarthisius@gentoo.org> package.mask:
  Masked dev-python/xsv for removal wrt #396497

  28 Apr 2012; Hans de Graaff <graaff@gentoo.org> package.mask:
  Fix broken atom for facets.

  28 Apr 2012; Hans de Graaff <graaff@gentoo.org> package.mask:
  Mask dev-ruby/facets for removal.

  27 Apr 2012; Anthony G. Basile <blueness@gentoo.org> package.mask:
  Unmask net-misc/bfgminer, dependency problem fixed

  27 Apr 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> license_groups:
  Added yEd-1.1 license to EULA group.

  27 Apr 2012; Aaron W. Swenson <titanofold@gentoo.org> package.mask:
  PostgreSQL 8.2 removed from tree. Mask no longer needed.

  27 Apr 2012; Ulrich Müller <ulm@gentoo.org> license_groups:
  Remove AdobeFlash-11_beta from license_groups as it's gone from the tree.

  27 Apr 2012; Anthony G. Basile <blueness@gentoo.org> package.mask:
  Mask net-misc/bfgminer

  26 Apr 2012; Kacper Kowalik <xarthisius@gentoo.org>
  hardened/linux/powerpc/ppc64/32bit-userland/use.mask:
  Fix header and copy use.mask from nonhardened profile

  26 Apr 2012; Kacper Kowalik <xarthisius@gentoo.org>
  +hardened/linux/powerpc/ppc64/32bit-userland/use.force:
  Enforce ppc and -ppc64 on hardened/ppc64-32ul

  26 Apr 2012; <psomas@gentoo.org> package.mask:
  Mask sys-kernel/mm-sources for removal wrt #412189

  25 Apr 2012; Kacper Kowalik <xarthisius@gentoo.org>
  +hardened/linux/powerpc/ppc64/32bit-userland/package.mask,
  +hardened/linux/powerpc/ppc64/32bit-userland/package.use.mask:
  Mask app-admin/puppet[rrdtool] and app-misc/beagle
  due to nonsolvable dependencies

  25 Apr 2012; Kacper Kowalik <xarthisius@gentoo.org>
  hardened/linux/powerpc/ppc64/64bit-userland/use.mask:
  Mirror frei0r mask from nonhardened ppc64-64ul profile

  25 Apr 2012; Kacper Kowalik <xarthisius@gentoo.org>
  hardened/linux/powerpc/ppc64/64bit-userland/use.mask:
  Mirror hddtemp mask from nonhardened ppc64-64ul profile

  25 Apr 2012; Kacper Kowalik <xarthisius@gentoo.org>
  +hardened/linux/powerpc/ppc64/64bit-userland/package.use.mask:
  Mask app-conky[hddtemp,xmms2,apcupsd] due to unsolved dependencies

  25 Apr 2012; Alexis Ballier <aballier@gentoo.org> profiles.desc:
  advertise g/fbsd 9.0 profiles

  24 Apr 2012; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  removed pmask for bug #411959

  23 Apr 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Clean mask entries.

  23 Apr 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  Remove obsolete dev-util/qt-creator mask.

  23 Apr 2012; Mike Gilbert <floppym@gentoo.org> package.mask:
  Remove mask on dev-libs/icu-49, per Arfrever's request.
  www-client/chromium now has proper dependencies.

  22 Apr 2012; Robin H. Johnson <robbat2@gentoo.org> package.mask:
  Mask new slot of yaz.

  22 Apr 2012; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  masked media-plugins/vdr-pvrinput-2011.09.17 for testing on bug #411959

  22 Apr 2012; Anthony G. Basile <blueness@gentoo.org>
  hardened/linux/make.defaults:
  Remove USE=-unicode on all hardened profiles

  22 Apr 2012; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask x11-apps/xsetmode & x11-apps/xsetpointer for removal wrt bug #411999.

  22 Apr 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite app-pda/libopensync-plugin-google-calendar wrt #367739. Lastrite
  app-text/chmsee wrt #412875.

  21 Apr 2012; Torsten Veller <tove@gentoo.org> package.mask:
  Mask dev-perl/IO-Moose for removal (#356559)

  21 Apr 2012; Samuli Suominen <ssuominen@gentoo.org> updated/4Q-2011,
  updates/2Q-2012:
  Move app-text/djview4 (again) to app-text/djview (and this time
  remove app-text/djview4 directory) wrt #410025

  20 Apr 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Unmask xfce-extra/xfce4-linelight-plugin because it was patched.

  20 Apr 2012; Patrick Lauer <patrick@gentoo.org> package.mask,
  thirdpartymirrors:
  Adding mod_macro to apache 2.4 mask

  20 Apr 2012; Hans de Graaff <graaff@gentoo.org> package.mask:
  Remove coffee-rails mask since all dependencies are available now.

  20 Apr 2012; Jeff Horelick <jdhore@gentoo.org> package.mask:
  Remove mask on atheme-services as the 7.0 branch is now considered
  stable by upstream.

  20 Apr 2012; Naohiro Aota <naota@gentoo.org> package.mask:
  Unmask dev-python/compizconfig-python, x11-apps/ccsm, x11-apps/simple-ccsm
  and x11-libs/libcompizconfig

  20 Apr 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  targets/desktop/gnome/package.use:
  Update default net-misc/curl USE flags with the new CURL_SSL use-expand for
  liboauth compatibility.

  19 Apr 2012; Jeff Horelick <jdhore@gentoo.org> package.mask:
  Remove mask on libmowgli:2 versions as libmowgli:2 is now considered
  stable by upstream

  19 Apr 2012; Alexey Shvetsov <alexxy@gentoo.org> arch/alpha/package.use.mask,
  arch/ia64/package.use.mask, arch/powerpc/package.use.mask,
  arch/sparc/package.use.mask:
  add openmpi_ofed_features_rdmacm to use mask for alpha ia64 powerpc sparc

  19 Apr 2012; Maxim Koltsov <maksbotan@gentoo.org> package.mask:
  Mask net-ftp/leechcraft-lcftp and net-p2p/leechcraft-eiskaltdcpp by
  maintainer's request

  19 Apr 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Unmask new pambase, shadow and hardened-shadow after review.

  18 Apr 2012; Alexey Shvetsov <alexxy@gentoo.org> arch/alpha/package.use.mask,
  arch/ia64/package.use.mask, arch/powerpc/package.use.mask,
  arch/sparc/package.use.mask:
  Mask new use expand on profiles with unkeyworded deps

  18 Apr 2012; Alexey Shvetsov <alexxy@gentoo.org> +desc/openmpi_fabrics.desc,
  +desc/openmpi_ofed_features.desc, +desc/openmpi_rm.desc, base/make.defaults:
  add use expands for OPENMPI_

  18 Apr 2012; Alexey Shvetsov <alexxy@gentoo.org> updates/2Q-2012:
  move sys-infiniband/openib to ofed

  18 Apr 2012; Alexey Shvetsov <alexxy@gentoo.org> desc/ofed_drivers.desc:
  Add new drivers for OFED

  18 Apr 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite sci-chemistry/gchemutils because we don't have a building version
  left in tree wrt #348231 and #388509.

  18 Apr 2012; Robin H. Johnson <robbat2@gentoo.org> package.mask:
  Fix missing mask for MariaDB 5.5.

  17 Apr 2012; Hans de Graaff <graaff@gentoo.org> package.mask:
  Mask obsolete ruby-gnome2 dependencies with no reverse dependencies in the
  tree.

  17 Apr 2012; Michał Górny <mgorny@gentoo.org> thirdpartymirrors:
  Add a mirror entry for bitbucket downloads.

  17 Apr 2012; Samuli Suominen <ssuominen@gentoo.org>
  default/linux/package.use.mask:
  Remove obsolete entry for x11-misc/spacefm and USE="fam".

  17 Apr 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Remove lastrite entries for dev-dotnet/gluezilla and www-client/galeon as
  they are gone now.

  17 Apr 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Mask new pambase, shadow, and hardened-shadow for testing and review.

  16 Apr 2012; Samuli Suominen <ssuominen@gentoo.org> updates/2Q-2012:
  Move sys-fs/bleachbit to sys-apps/bleachbit as more appropiate.

  16 Apr 2012; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  removed pmask for media-plugins/vdr-games removal

  16 Apr 2012; Pacho Ramos <pacho@gentoo.org> targets/desktop/make.defaults:
  Enable wxwidgets by default as discussed in
  http://archives.gentoo.org/gentoo-dev/msg_fdc392cc98c7eea216175521d87b9955.xm
  l

  15 Apr 2012; Anthony G. Basile <blueness@gentoo.org>
  +default/linux/alpha/10.0/use.mask, +default/linux/arm/10.0/use.mask,
  +default/linux/hppa/10.0/use.mask, +default/linux/ia64/10.0/use.mask,
  +default/linux/powerpc/use.mask, default/linux/sparc/10.0/use.mask:
  Use mask curl_ssl_axtls and curl_ssl_polarssl on various arches

  15 Apr 2012; Anthony G. Basile <blueness@gentoo.org> desc/curl_ssl.desc:
  Update descriptions of CURL_SSL USE_EXPAND flags

  15 Apr 2012; Pacho Ramos <pacho@gentoo.org> arch/powerpc/package.use.mask:
  Use mask vpx gst-plugins-meta USE for ppc*.

  14 Apr 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  desc/video_cards.desc:
  Add video_cards_radeonsi to USE_EXPAND description.

  14 Apr 2012; Johannes Huber <johu@gentoo.org> package.mask:
  Remove duplicated mask entry for x11-themes/qgtkstyle.

  14 Apr 2012; Johannes Huber <johu@gentoo.org> package.mask:
  Remove obsolete mask for dev-libs/soprano.

  14 Apr 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite xfce4-linelight-plugin wrt #411949

  14 Apr 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Mask sound-juicer-3.4, needs gst-plugins-flac-0.10.31 + commit 265a5bfa to
  write seekable flac files

  13 Apr 2012; Jeremy Olexa <darkside@gentoo.org> desc/nginx_modules_http.desc:
  Update nginx_modules_http.desc from local metadata.xml

  13 Apr 2012; Patrick Lauer <patrick@gentoo.org> package.mask,
  thirdpartymirrors:
  Masking apache 2.4 for now

  12 Apr 2012; Joe Peterson <lavajoe@gentoo.org> package.mask:
  Mask media-sound/squeezeboxserver for removal

  12 Apr 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Unmask glib-2.32, gtk+-3.4, and other core gnome-3.4 libraries.

  11 Apr 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Calligra 2.4 released

  11 Apr 2012; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add ipadic license to MISC-FREE group, bug 397833.

  11 Apr 2012; Kacper Kowalik <xarthisius@gentoo.org> updates/2Q-2012:
  Slotmove media-libs/libharu from 2 to 0.

  10 Apr 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Unmask chromium-19.x, v8-3.9.x (and also nodejs-0.7). Mask chromium-20.x,
  v8-3.10.

  10 Apr 2012; Eray Aslan <eras@gentoo.org> package.mask:
  Mask mail-filter/dk-milter and mail-filter/dkim-milter for removal

  09 Apr 2012; Ulrich Müller <ulm@gentoo.org> package.mask:
  Update mask for emacs-vcs live ebuilds.

  09 Apr 2012; Christian Ruppert <idl0r@gentoo.org> package.mask:
  app-portage/portato: Masked for removal in 30 days.

  It doesn't work with recent portage version and the author has no time to fix
  it anytime soon. bug 404973.

  09 Apr 2012; Naohiro Aota <naota@gentoo.org> package.mask:
  Remove x11-wm/compiz mask.

  08 Apr 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Unmask fixed version of libcaca.

  08 Apr 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask new libcaca for now since the ebuild is not ready.

  07 Apr 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Unmask Xfce 4.10pre1 to ~arch since it's stable (enough).

  07 Apr 2012; Mike Gilbert <floppym@gentoo.org> package.mask:
  Fix category for boost-build.

  07 Apr 2012; Ulrich Müller <ulm@gentoo.org> updates/4Q-2011,
  updates/2Q-2012:
  Move package moves of dev-lisp/cl-asdf and dev-lisp/cl-asdf-binary-locations
  to proper file.

  06 Apr 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Remove entries for gecko-sharp, Gtk2-MozEmbed, ntfsprogs, syncevolution
  and qtada since they got removed from tree.

  06 Apr 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Cleanup.

  06 Apr 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask calligra-2.4.0 until it is released

  06 Apr 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Fill missing dates.

  06 Apr 2012; Davide Pesavento <pesa@gentoo.org> use.desc:
  Update kde USE flag description, kde-base/kde doesn't exist anymore. Ack'ed
  by scarabeus.

  06 Apr 2012; Hans de Graaff <graaff@gentoo.org> package.mask:
  Mask parts of Rails 3.2 until the whole package is ready.

  05 Apr 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask kde-base/ksecrets as it's alpha code

  05 Apr 2012; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask dev-libs/icu-49 again.

  04 Apr 2012; Anthony G. Basile <blueness@gentoo.org> base/make.defaults:
  Add CURL_SSL to USE_EXPAND in base

  04 Apr 2012; Mike Gilbert <floppym@gentoo.org> info_vars:
  Add USE_PYTHON.

  04 Apr 2012; Jeroen Roovers <jer@gentoo.org> package.mask:
  Mask >dev-libs/libevent-2.1.

  04 Apr 2012; Patrick Lauer <patrick@gentoo.org> package.mask:
  Adding nodejs to v8 mask

  03 Apr 2012; Mike Gilbert <floppym@gentoo.org> package.mask:
  Unmask dev-libs/icu-49.

  03 Apr 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove obsolete pmask of nepomukcontroller, bug 406999

  03 Apr 2012; Matt Turner <mattst88@gentoo.org> package.mask:
  Add gnome-dvb-daemon-0.2.8 to package.mask since it needs glib-2.32.

  03 Apr 2012; Anthony G. Basile <blueness@gentoo.org> +desc/curl_ssl.desc:
  Add description of CURL_SSL USE_EXPAND flags for net-misc/curl

  03 Apr 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite media-libs/tunepimp wrt #409257

  02 Apr 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  libdlna and ushare are fixed now

  02 Apr 2012; Samuli Suominen <ssuominen@gentoo.org> +updates/2Q-2012,
  package.mask:
  Move xfce4-appfinder from xfce-extra/ to xfce-base/ for compability with Xfce
  4.10 layout.

  01 Apr 2012; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask the python-3 slot for dev-python/python-dateutil.

  31 Mar 2012; Olivier Crête <tester@gentoo.org> package.mask:
  Add farstream port of pidgin to p.mask

  31 Mar 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Mask sys-auth/tcb for removal.

  30 Mar 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  mask x11-themes/qgtkstyle for removal

  29 Mar 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask twittare for removal. Bug #379277

  29 Mar 2012; Mike Gilbert <floppym@gentoo.org> desc/linguas.desc:
  Add sco - Scots locale.

  29 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  desc/video_cards.desc:
  Add omap to VIDEO_CARDS, adjust description to distinguish between omap and
  omapfb.

  29 Mar 2012; Christoph Junghans <ottxor@gentoo.org> package.mask:
  fftw-3.3.1 released

  28 Mar 2012; Alex Legler <a3li@gentoo.org> package.mask:
  Mask various horde ebuilds for removal

  28 Mar 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  www-client/arora is gone from the tree.

  28 Mar 2012; Aaron W. Swenson <titanofold@gentoo.org> package.mask:
  Remove dev-db/pgaccess mask. Package removed from tree.

  28 Mar 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Unmask networkmanger-0.9.4 (appears to work fine with gnome-3.2) and add more
  packages to gnome-3.4 mask.

  27 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask sys-fs/udisks >= 1.90.0 for testing.

  27 Mar 2012; Tupone Alfredo <tupone@gentoo.org> package.mask:
  Unmasking newer dev-util/bam

  27 Mar 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Add modemmanger to the nm mask.

  27 Mar 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  networkmanager-openswan-0.9.4 is not out yet.

  27 Mar 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Mask new networkmanager-0.9.4 and friends.

  27 Mar 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Update the gnome-3.4 mask.

  26 Mar 2012; Nirbheek Chauhan <nirbheek@gentoo.org> package.mask:
  Add telepathy-farstream-0.2 to the GNOME 3 mask because it causes a blocker
  with farsight2

  25 Mar 2012; Krzysztof Pawlik <nelchael@gentoo.org>
  +desc/python_targets.desc:
  Add description for PYTHON_TARGETS USE_EXPAND variable.

  25 Mar 2012; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask dev-libs/boost-1.49 for Arfrever.

  25 Mar 2012; Andreas K. Huettel <dilfridge@gentoo.org> base/make.defaults,
  desc/calligra_features.desc:
  Add new CALLIGRA_FEATURES entry sheets, as this component got renamed

  25 Mar 2012; Nirbheek Chauhan <nirbheek@gentoo.org> package.mask:
  Mask new glib-2.32 and gtk+-3.4 that cause a lot of breakage

  25 Mar 2012; Mike Gilbert <floppym@gentoo.org> package.mask:
  March -> Mar.

  25 Mar 2012; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask dev-libs/icu-49 for testing.

  25 Mar 2012; Nirbheek Chauhan <nirbheek@gentoo.org> package.mask:
  Mask new clutter/cogl/clutter-gtk

  24 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Mask cairo-1.12.0

  24 Mar 2012; Sergei Trofimovich <slyfox@gentoo.org> package.mask:
  Unmask ghc-7.4.

  24 Mar 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask some packages for removal.

  24 Mar 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Revert my commit as lightdm-unity-greeter requires >=valac-0.15 which we
  don't have

  24 Mar 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask x11-misc/lightdm-unity-greeter for testing

  24 Mar 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Maskapp-arch/createrepo for removal. Bug #396067

  23 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Remove obsolete ati-drivers entry.

  23 Mar 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask kde-misc/kgtk because of brokenness

  22 Mar 2012; Tim Harder <radhermit@gentoo.org>
  hardened/linux/amd64/package.use.mask, hardened/linux/x86/package.use.mask:
  Remove redundant use flag mask.

  22 Mar 2012; Alexis Ballier <aballier@gentoo.org> +desc/fftools.desc,
  base/make.defaults:
  Introduce fftools USE_EXPAND per -dev discussion for ffmpeg extra tools.

  22 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite www-client/galeon wrt #333895 and #403415

  22 Mar 2012; Lars Wendler <polynomial-c@gentoo.org> package.mask:
  Masked www-client/icecat for removal.

  20 Mar 2012; Sergei Trofimovich <slyfox@gentoo.org> package.mask:
  Unmask testing dev-haskell/cabal-1.14 and packages coming with ghc-7.4 (but
  not ghc-7.4 yet).

  20 Mar 2012; Samuli Suominen <ssuominen@gentoo.org>
  default/linux/package.use.mask:
  Unmask USE="acl" for sys-auth/consolekit here because it's Linux only feature
  based on udev.

  20 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Unmask =sys-fs/udev-182 because udev-acl is now moved to
  =sys-auth/consolekit-0.4.5-r3 wrt #408713

  20 Mar 2012; Patrick Lauer <patrick@gentoo.org> package.mask:
  Fixing udev mask to include udev-init-scripts too

  19 Mar 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  Drop media-video/avidemux mask.

  19 Mar 2012; William Hubbs <williamh@gentoo.org> package.mask:
  mask udev-182 due to bug #408713.

  19 Mar 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  Mask media-video/avidemux-2.5.6-r1 wrt bug 408813.

  19 Mar 2012; Naohiro Aota <naota@gentoo.org> package.mask:
  Drop mask since security fix added to the package. #390769

  19 Mar 2012; William Hubbs <williamh@gentoo.org> package.mask:
  remove systemd/udev mask

  18 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite dev-cpp/cppserv and dev-cpp/sptk wrt #402149, Comment #9.

  18 Mar 2012; Anthony G. Basile <blueness@gentoo.org> desc/linguas.desc:
  Added some country specific locales

  18 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Drop some x11 masks.

  18 Mar 2012; Matti Bickel <mabi@gentoo.org> package.mask:
  masked dev-php/PEAR-DB_DataObject_FormBuilder for removal, bug 396963

  18 Mar 2012; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  masked for removal, bug 380697

  18 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> use.desc:
  Remove description for USE="esd" because nothing is using it.

  18 Mar 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask some packages for removal.

  18 Mar 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Cleanup old masks.

  18 Mar 2012; Andreas K. Huettel <dilfridge@gentoo.org> desc/linguas.desc:
  Add locale tt for Tatar (can be written in latin, cyrillic, and arabic)

  18 Mar 2012; Tim Harder <radhermit@gentoo.org> package.mask:
  Drop old app-misc/task mask.

  18 Mar 2012; Magnus Granberg <zorry@gentoo.org>
  hardened/linux/package.use.mask, hardened/linux/use.mask
  mask profile for media-tv/xbmc only.

  17 Mar 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  Mask qt-creator 2.5.0 beta release.

  17 Mar 2012; Ole Markus With <olemarkus@gentoo.org> package.mask:
  pecl-{idn,enchant} has been removed from the tree. Removing from package.mask

  17 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite media-sound/canorus wrt #367861

  17 Mar 2012; Tim Harder <radhermit@gentoo.org>
  hardened/linux/amd64/package.use.mask, hardened/linux/x86/package.use.mask:
  Mask USE="skype" for bitlbee on hardened amd64/x86.

  16 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Drop obsolete libXt mask.

  16 Mar 2012; Mike Gilbert <floppym@gentoo.org> thirdpartymirrors:
  Add ftp.gnu.org so that repoman warns about mirror://gnu/.

  16 Mar 2012; Mike Gilbert <floppym@gentoo.org> thirdpartymirrors:
  Fix a gnu-alpha mirror.

  15 Mar 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  hardened/linux/amd64/use.mask, hardened/linux/x86/use.mask:
  Vdpau actually works with the mesa implementation too. Bug#408267.

  15 Mar 2012; Samuli Suominen <ssuominen@gentoo.org>
  targets/desktop/package.use:
  Stop disabling USE="zlib" by default for sys-apps/pciutils and disable
  USE="compress-db" instead as part of bug #360849

  14 Mar 2012; Bernard Cafarelli <voyageur@gentoo.org> package.mask:
  Clean package.mask after last rites, bug #380433

  14 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Mask xf86-input-synaptics which depends on mtdev.

  14 Mar 2012; Magnus Granberg <zorry@gentoo.org> hardened/linux/use.mask
  Mask the profile use flag for it don't work with PIE

  13 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> updates/1Q-2012:
  Move frescobaldi back from SLOT="4" to SLOT="0".

  13 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> base/package.use.mask,
  package.mask:
  Remove mask for lilypond and reverse dependencies since they are fixed.

  12 Mar 2012; Sébastien Fabbro <bicatali@gentoo.org> package.mask:
  Removed masking of beta version of sci-libs/metis, now gone

  12 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite lilypond and reverse dependencies.

  12 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Mask libXt-1.1.2 for bug #407889.

  12 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite dev-ada/qtada as per request from yngwin.

  12 Mar 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> prefix/package.provided:
  Remove virtual/shadow from package.provided, portage(5) says it should not be
  there. Reported by grobian.

  12 Mar 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> base/packages,
  default/bsd/package.mask, default/bsd/packages, default/linux/packages.build,
  prefix/package.provided, prefix/packages, uclibc/packages.build:
  virtual/shadow related updates.

  11 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite gecko-sharp, Gtk2-MozEmbed and ntfsprogs.

  11 Mar 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Mask sys-apps/hardened-shadow (new package), early upstream release.

  10 Mar 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  Unmask dev-python/{shiboken,pyside,pyside-tools}.

  10 Mar 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  Update dev-python/pyside-tools mask.

  09 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite app-pda/syncevolution.

  09 Mar 2012; Tim Harder <radhermit@gentoo.org> package.mask:
  Mask beta release of mediawiki.

  09 Mar 2012; Tim Harder <radhermit@gentoo.org> package.mask:
  Mask beta release of roundcube.

  09 Mar 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  Mask rewritten dev-python/pyside-tools ebuild too. Unmask qt-webkit, bug
  407315 is fixed.

  08 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Update libXi mask for release depending on beta.

  08 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Mask rtl8192se-firmware which is not useful on its own (in-kernel driver uses
  other firmware).

  08 Mar 2012; Alexandre Rostovtsev <tetromino@gentoo.org> updates/1Q-2012:
  Slotmove the former sunrise overlay version of nautilus-actions to prevent
  collision with the ebuilds that were added to portage.

  07 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Update mask for xorg-server-1.12 release.

  07 Mar 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  Mask x11-libs/qt-webkit-4.8.0-r1 again.

  07 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Include xfdesktop and thunar in the Xfce pre-4.10 mask

  07 Mar 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  Unmask qt-qt3support-4.8.0-r1 and qt-webkit-4.8.0-r1

  06 Mar 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  Mask rewritten dev-python/{shiboken,pyside}-1.1.0-r1 ebuilds.

  06 Mar 2012; Jeremy Olexa <darkside@gentoo.org>
  arch.list, profiles.desc:
  Add ppc64-linux profile for bug 407021 by Richard Yao

  06 Mar 2012; Johannes Huber <johu@gentoo.org> package.mask:
  Mask kde-misc/nepomukcontroller for removal.

  06 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask >=dev-lang/lua-5.2.0 for testing wrt #407091

  06 Mar 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask some packages for removal.

  04 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Drop obsolete x11 masks.

  04 Mar 2012; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  removed pmask media-video/em8300-{modules,libraries}

  04 Mar 2012; Sergei Trofimovich <slyfox@gentoo.org> package.mask:
  Mask ghc-7.4 and friends in tree until we get binaries for it.

  04 Mar 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  sys-kernel/kerneloops is no more

  04 Mar 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  app-portage/autounmask is no more

  04 Mar 2012; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  masked em8300-modules-0.18.0_p20120124 em8300-libraries-0.18.0_p20120124 for
  testing, bug #350211

  03 Mar 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  www-apps/twiki is no more

  03 Mar 2012; Krzysztof Pawlik <nelchael@gentoo.org> package.mask:
  Remove mask for dev-python/pisa.

  03 Mar 2012; Ole Markus With <olemarkus@gentoo.org> package.mask:
  Removing mask of unstable pecl-memcached

  03 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Unmask eselect-opengl-1.2.5 now that mesa has been fixed.

  03 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Mask media-libs/mesa-8.0.1-r1 for breaking compile against glu.h, bug #406641

  03 Mar 2012; Andreas K. Huettel <dilfridge@gentoo.org> updates/1Q-2012:
  konq-plugins is in kde-base now

  03 Mar 2012; Hans de Graaff <graaff@gentoo.org> package.mask:
  Fix broken atom.

  03 Mar 2012; Hans de Graaff <graaff@gentoo.org> package.mask:
  Add new ruby-enterprise release to the test mask.

  02 Mar 2012; Justin Lecher <jlec@gentoo.org> package.mask:
  Remove mask of sci-chemistry/pymol-plugins-cealign as it is removed now

  29 Feb 2012; Mike Gilbert <floppym@gentoo.org> thirdpartymirrors:
  Add gnu-alpha mirrors.

  29 Feb 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  license_groups:
  Update new Adobe licenses in EULA group.

  29 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite gnunet and gnunet-gtk.

  29 Feb 2012; Ralph Sennhauser <sera@gentoo.org> package.mask:
  Remove package.mask for removed sun-j2ee. #91484

  28 Feb 2012; Mike Frysinger <vapier@gentoo.org> package.mask:
  Drop perf mask since it builds nicely now.

  28 Feb 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove pmask of gnu-gs-fonts-*, not in the tree anymore

  28 Feb 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove pmask of xpdf (not in the tree anymore)

  28 Feb 2012; Aaron W. Swenson <titanofold@gentoo.org> package.mask:
  Masked dev-db/postgresql-{docs,base,server}:8.2 for removal. EOL and
  vulnerabilities. (Bug 406037)

  27 Feb 2012; Diego E. Pettenò <flameeyes@gentoo.org> updates/1Q-2012:
  Add slotmove for dev-ruby/syslogger.

  27 Feb 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Unmask boost and friends

  27 Feb 2012; Sébastien Fabbro <bicatali@gentoo.org> package.mask:
  Masked >=sci-visualization/fityk-1.1 (because of wxGTK-2.9)

  27 Feb 2012; Tim Harder <radhermit@gentoo.org> desc/linguas.desc:
  Add Spanish locale for Columbia, used in media-sound/csound.

  26 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Remove mask for fixed extundelete and some removed pkgs.

  26 Feb 2012; Kacper Kowalik <xarthisius@gentoo.org> package.mask:
  removing obsolete mask on dev-lang/open64 that was removed from tree

  26 Feb 2012; Justin Lecher <jlec@gentoo.org> package.mask:
  Remove mask for sci-visualization/hippodraw

  25 Feb 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask rb_libtorrent-0.15.10 as well

  25 Feb 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  genmenu was fixed.

  25 Feb 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  desc/video_cards.desc:
  Add video_cards_modesetting.

  24 Feb 2012; Ulrich Müller <ulm@gentoo.org> license_groups:
  Move CC0-1.0-Universal from MISC-FREE to GPL-COMPATIBLE license group. Add
  EUPL-1.1 to FSF-APPROVED group.

  24 Feb 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  Add also qt-webkit-4.8.0-r1 to the mask for bug #404493.

  24 Feb 2012; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add Unlicense to GPL-COMPATIBLE license group.

  23 Feb 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Unmask x11-misc/lightdm-1.1.3

  23 Feb 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  Update comment about x11-libs/qt-qt3support-4.8.0-r1 mask.

  23 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite sys-fs/extundelete wrt #402633

  22 Feb 2012; Johannes Huber <johu@gentoo.org> package.mask:
  Remove mask for libreoffice-bin.

  22 Feb 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask new libreoffice binpackages for testing, new generation mechanism

  21 Feb 2012; Michał Górny <mgorny@gentoo.org> package.mask, repo_name:
  Forward mask API-incompatible update of npapi-sdk.

  21 Feb 2012; Theo Chatzimichos <tampakrap@gentoo.org> package.mask:
  Masking www-client/arora

  21 Feb 2012; Ole Markus With <olemarkus@gentoo.org> package.mask:
  Masking dev-php/PEAR-Image_Color, dev-php/PEAR-Image_Canvas

  20 Feb 2012; Alexis Ballier <aballier@gentoo.org> package.mask:
  unmask vlc 2.0

  20 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask what will be the Xfce Desktop Environment 4.10 for testing.

  20 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Removed entries for ogle (and reverse dependencies), ripmake and thunar-vfs.

  19 Feb 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask app-text/notecase-pro for removal

  19 Feb 2012; Robin H. Johnson <robbat2@gentoo.org> updates/1Q-2012:
  Move net-wireless/{wispy-,spec}tools.

  19 Feb 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Masking x11-libs/qt-qt3support-4.8.0-r1 for testing

  19 Feb 2012; William Hubbs <williamh@gentoo.org> package.mask:
  remove old udev from mask and adjust udev-init-scripts mask.

  18 Feb 2012; Vlastimil Babka <caster@gentoo.org> package.mask:
  Unmask dev-java/ant-1.8.2 and friends.

  18 Feb 2012; Eray Aslan <eras@gentoo.org> package.mask:
  punt mask for dovecot-2.1_rc builds

  18 Feb 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask lightdm-1.1.3 for testing

  18 Feb 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Remove entry for dev-util/chromium-tools, package has been removed.

  17 Feb 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Unmask gtkdiskfree after fixing trivial bug and people wanting to keep it due
  less RDEPENDs (bug #370605).

  16 Feb 2012; Vlastimil Babka <caster@gentoo.org> package.mask:
  Mask dev-java/ant-1.8.2 and deps for atomic bump+testing.

  16 Feb 2012; Justin Lecher <jlec@gentoo.org> ChangeLog:
  move app-shells/prll sys-process/prll

  16 Feb 2012; Amadeusz Żołnowski <aidecoe@gentoo.org>
  desc/dracut_modules.desc:
  'ssh-client' added to dracut_modules.

  16 Feb 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  pavuk was fixed and updated, media-libs/libdlna and media-video/ushare will
  be proxy maintained in the near future.

  16 Feb 2012; Justin Lecher <jlec@gentoo.org> package.mask:
  Mask sci-chemistry/pymol-plugins-cealign for removal

  15 Feb 2012; Joerg Bornkessel <hd_brummy@gentoo.org> updates/1Q-2012:
  moved media-tv/linuxtv-dvb-headers virtual/linuxtv-dvb-headers

  15 Feb 2012; Samuli Suominen <ssuominen@gentoo.org>
  targets/desktop/package.use:
  Disable USE="zlib" in sys-apps/pciutils by default for USE="hwdb" in
  sys-fs/udev.

  14 Feb 2012; Bernard Cafarelli <voyageur@gentoo.org> package.mask:
  Last rites for gnustep-libs/objcunit, gnustep-apps/cynthiune,
  gnustep-apps/gridlock, gnustep-apps/talksoup

  14 Feb 2012; Markos Chandras <hwoarang@gentoo.org> use.desc:
  ayatana: add note about libappindicator as well

  14 Feb 2012; Markos Chandras <hwoarang@gentoo.org> use.desc:
  ayatana is now global per
  http://archives.gentoo.org/gentoo-dev/msg_f2eb26947d0c86020625a9aeca6f25e4.xm
  l

  14 Feb 2012; Justin Lecher <jlec@gentoo.org> base/package.use.mask:
  Correct version for recent pymol USE=vmd mask

  13 Feb 2012; Justin Lecher <jlec@gentoo.org> base/package.use.mask:
  Masked USE=vmd for >pymol-1.5

  13 Feb 2012; Alex Legler <a3li@gentoo.org> package.mask:
  tikiwiki is gone

  13 Feb 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask packages with treecleaners CCed for removal.

  12 Feb 2012; Mike Gilbert <floppym@gentoo.org> package.mask:
  Take app-shells/ksh off the chopping block.

  12 Feb 2012; Matti Bickel <mabi@gentoo.org> package.mask:
  Unmask x11-libs/fox-1.7* since the dev branch is quite stable now

  12 Feb 2012; Maxim Koltsov <maksbotan@gentoo.org> package.mask:
  Unmasked ldb-1.1.4, bug 401635

  12 Feb 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask more packages for removal.

  12 Feb 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask more packages for removal.

  12 Feb 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask alsa-driver for removal.

  11 Feb 2012; Ole Markus With <olemarkus@gentoo.org> package.mask:
  Masked pecl-{idn,enchant}

  11 Feb 2012; Sergei Trofimovich <slyfox@gentoo.org>
  hardened/linux/amd64/no-multilib/parent:
  Reverted previous change as it caused phony profiles to pop up (found out by
  blueness).

  11 Feb 2012; Sergei Trofimovich <slyfox@gentoo.org>
  hardened/linux/amd64/no-multilib/parent:
  Make hardened/linux/amd64/no-multilib include arch/amd64/no-multilib
  (http://archives.gentoo.org/gentoo-dev/msg_7c41ab6653426048c2e8b0f271637bf3.x
  ml). Approved by Zorry.

  11 Feb 2012; Sergei Trofimovich <slyfox@gentoo.org>
  hardened/linux/package.mask:
  Mask skypetab-ng for hardened as it's a library for x86-only skype.

  11 Feb 2012; Angelo Arrifano <miknix@gentoo.org> license_groups:
  Add Mendeley-EULA to EULA, needed for sci-misc/mendeleydesktop

  10 Feb 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask app-laptop/thinkpad and friends for removal. Bug #381263

  10 Feb 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Masking app-shells/ksh for removal

  10 Feb 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  app-emulation/{libdsk,lib765} removal. Bug #402857

  10 Feb 2012; Matt Turner <mattst88@gentoo.org>
  +hardened/linux/amd64/no-multilib/use.mask:
  Add d3d USE mask to hardened/amd64/no-multilib.

  10 Feb 2012; Matt Turner <mattst88@gentoo.org> desc/video_cards.desc:
  Add i915 and i965 to video_cards.desc.

  10 Feb 2012; Justin Lecher <jlec@gentoo.org> package.mask:
  Mask sci-libs/cctbx-2010.03.29.2334-r6 as boost-1.48 is maked

  10 Feb 2012; Tim Harder <radhermit@gentoo.org> package.mask:
  Unmask =net-libs/gnutls-2.12*.

  10 Feb 2012; Angelo Arrifano <miknix@gentoo.org> package.mask:
  Force upgrade to arduino-1.0, mask old versions.

  09 Feb 2012; Mike Gilbert <floppym@gentoo.org> package.mask:
  Update dev channel mask for www-client/chromium.

  09 Feb 2012; Robin H Johnson <robbat2@gentoo.org> package.mask:
  Mask sys-libs/db-5.3 for testing.

  08 Feb 2012; Bernard Cafarelli <voyageur@gentoo.org> package.mask:
  gnustep-make-2.6.1-r10 removed from tree, unmask libobjc2 USE flag for
  replacement

  08 Feb 2012; William Hubbs <williamh@gentoo.org> package.mask:
  add udev-181 to the udev mask.

  07 Feb 2012; Anthony G. Basile <blueness@gentoo.org> hardened/linux/use.mask:
  Unmask opencl USE flag on hardened

  06 Feb 2012; Ralph Sennhauser <sera@gentoo.org> package.mask:
  Remove package.mask entry for jrockit-jdk-bin after removal

  06 Feb 2012; Mike Frysinger <vapier@gentoo.org> package.mask:
  Drop the mask as the version no longer has KEYWORDS.

  06 Feb 2012; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask binutils-2.22.52.0.1 due to bug 402271.

  06 Feb 2012; Sébastien Fabbro <bicatali@gentoo.org> package.mask:
  Masked sci-libs/fftw-3.3.1_beta1 until more stable

  06 Feb 2012; Sébastien Fabbro <bicatali@gentoo.org> package.mask:
  Masking sci-visualization/hippodraw for removal

  04 Feb 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Unmask libpciaccess, bug #402141.

  04 Feb 2012; Justin Lecher <jlec@gentoo.org> arch/amd64/use.mask,
  arch/x86/use.mask, base/use.mask:
  Mask USE=zeitgeist globally and unmask fpr keyworded arches

  04 Feb 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Masking sys-kernel/kerneloops for removal. Bug #276412

  04 Feb 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  app-text/lyx2html is gone. Bug #388987

  04 Feb 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask app-portage/autounmask for removal

  04 Feb 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Unmask avidemux. Upstream does not care about parallel build and neither do I

  03 Feb 2012; William Hubbs <williamh@gentoo.org> package.mask:
  add udev-180 to the udev mask.

  03 Feb 2012; Maxim Koltsov <maksbotan@gentoo.org> package.mask:
  Mask =sys-libs/ldb-1.1.4

  03 Feb 2012; Nathan Phillip Brink <binki@gentoo.org> updates/1Q-2012:
  Move dev-libs/libmowgli-2* to SLOT=2.

  02 Feb 2012; Samuli Suominen <ssuominen@gentoo.org>
  default/linux/package.use.mask:
  Mask USE="fam" for x11-misc/spacefm since we have inotify support.

  02 Feb 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Masking www-apps/twiki for removal

  02 Feb 2012; Jeroen Roovers <jer@gentoo.org> package.mask:
  Mask >www-client/opera-11.62.

  01 Feb 2012; Eray Aslan <eras@gentoo.org> package.mask:
  unmask postfix-2.9 version

  01 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite FlowScan, CUFlow and JKFlow for abusing < depend in the same
  stabilization level.

  31 Jan 2012; Johannes Huber <johu@gentoo.org> package.mask:
  Remove package.mask on phonon-xine backend. It is removed from tree.

  31 Jan 2012; Pacho Ramos <pacho@gentoo.org> desc/cameras.desc:
  Add new camera.

  31 Jan 2012; Jeff Horelick <jdhore@gentoo.org> package.mask:
  Mask >=dev-libs/libmowgli-2.0.0_alpha1 in preperation for adding it to the tree.

  30 Jan 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Add =sci-geosciences/mapnik-0.7.1-r2 to boost-1.48 reverse dependencies

  30 Jan 2012; Johannes Huber <johu@gentoo.org> package.mask:
  Lift mask for media-libs/opengtl-0.9.16, as it is released now.

  30 Jan 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Clean old entry.

  30 Jan 2012; Pacho Ramos <pacho@gentoo.org> arch/alpha/package.use.mask,
  arch/arm/package.use.mask, arch/ia64/package.use.mask,
  arch/sparc/package.use.mask:
  Mask libvisual USE flag in arches that don't have needed packages keyworded.

  30 Jan 2012; Sébastien Fabbro <bicatali@gentoo.org> package.mask:
  Mask another boost python reverse depedency

  29 Jan 2012; Sébastien Fabbro <bicatali@gentoo.org> package.mask:
  Dropped sci-astronomy/orsa and sci-astronomy/ds9 masking, gone from tree

  29 Jan 2012; Alex Alexander <wired@gentoo.org> package.mask:
  unmasked Qt 4.8.0 and friends

  29 Jan 2012; Aaron W. Swenson <titanofold@gentoo.org> thirdpartymirrors:
  PostgreSQL revamped their download network.
  http://pgsnake.blogspot.com/2011/12/updated-postgresql-download.html

  29 Jan 2012; Alex Alexander <wired@gentoo.org> package.mask:
  masked new revbump of cairo, will unmask it together with new Qt

  29 Jan 2012; Alex Alexander <wired@gentoo.org> package.mask:
  Getting ready to push qt-4.8.0

  29 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Improve xpdf mask message

  29 Jan 2012; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask another boost python revdep.

  28 Jan 2012; Aaron W. Swenson <titanofold@gentoo.org> package.mask:
  Masked dev-db/pgaccess for removal.

  28 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove pmask of mtink as it has been fixed.

  28 Jan 2012; Mike Gilbert <floppym@gentoo.org> package.mask:
  Add some additial entries to hworang's boost/python mask.

  28 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite x11-misc/enter because it doesn't have ConsoleKit support.

  28 Jan 2012; Ralph Sennhauser <sera@gentoo.org> package.mask:
  Package.mask dev-java/sun-j2ee for removal in 30 days.
  Hopelessly outdated, contains broken jars. #91484

  28 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> thirdpartymirrors:
  Remove everything except archive.xfce.org from the mirror://xfce.

  27 Jan 2012; Krzysztof Pawlik <nelchael@gentoo.org> package.mask:
  Mask dev-python/pisa.

  27 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask xpdf for removal

  27 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Ah well. Lets try cups-1.5 now.

  27 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Prepare for a rebuild of kstlyes-4.7.4 synchronous with qt-4.8 upgrade

  27 Jan 2012; Pacho Ramos <pacho@gentoo.org>
  arch/amd64/no-multilib/package.mask:
  More emul packages


  27 Jan 2012; Jeremy Olexa <darkside@gentoo.org> package.mask:
  remove stale masks

  27 Jan 2012; Jeremy Olexa <darkside@gentoo.org> package.mask:
  cdebootstrap is removed from tree

  26 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask =net-p2p/transmission-2.42 for bugs #400815, #400865 and #400923

  26 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask net-misc/hylafax and x11-misc/tkhylafax because lack of support for
  stable media-libs/tiff >= 4.0.0.

  26 Jan 2012; Tony Vroon <chainsaw@gentoo.org> thirdpartymirrors:
  Drop firewalled ftp.silug.org from alsaproject mirror list. Timeouts suck.

  25 Jan 2012; Johannes Huber <johu@gentoo.org> package.mask:
  Lift mask for KDE SC 4.8.0

  25 Jan 2012; Johannes Huber <johu@gentoo.org> package.mask:
  Mask KDE SC 4.8.0

  24 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Finally mask media-fonts/gnu-gs-fonts-* for last-riting, ending
  year-long annoyance in bug 247657. Replaced by media-fonts/urw-fonts.

  24 Jan 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  lift mask on app-admin/webmin

  24 Jan 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Add dev-python/cgkit-2.0.0_alpha9-r1 to the boost-1.48 rdeps

  24 Jan 2012; Johannes Huber <johu@gentoo.org> updates/1Q-2012:
  Rename net-libs/telepathy-qt4 to net-libs/telepathy-qt

  24 Jan 2012; Jeroen Roovers <jer@gentoo.org> package.mask:
  Unmask www-client/opera-11.61.

  23 Jan 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Initial commit of boost-1.48 reverse python dependencies. See:
  http://archives.gentoo.org/gentoo-dev/msg_ab39d8366b714ecacfc7fa64cd48ad00.xm
  l

  23 Jan 2012; Sergei Trofimovich <slyfox@gentoo.org>
  arch/powerpc/package.use.mask:
  Mask USE=usbredir for qemu and qemu-kvm (unsatisfied dep on
  sys-apps/usbredir).

  22 Jan 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask net-p2p/monsoon for removal

  22 Jan 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Drop my old entries.

  22 Jan 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask dev-lang/nemerle for removal

  22 Jan 2012; Ulrich Müller <ulm@gentoo.org> package.mask:
  Update mask for Emacs live ebuilds.

  22 Jan 2012; Sergei Trofimovich <slyfox@gentoo.org>
  desc/qemu_softmmu_targets.desc:
  Added LatticeMico32 to QEMU_SOFTMMU_TARGETS.

  21 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> updates/1Q-2012:
  Rename dev-perl/sdl-perl to dev-perl/SDL.

  21 Jan 2012; Sergei Trofimovich <slyfox@gentoo.org>
  desc/qemu_softmmu_targets.desc, desc/qemu_user_targets.desc:
  Added more upstream targets to QEMU_USER_TARGETS and QEMU_SOFTMMU_TARGETS.

  21 Jan 2012; Justin Lecher <jlec@gentoo.org> package.mask:
  Mask sci-visualization/scidavis for removal

  21 Jan 2012; Markos Chandras <hwoarang@gentoo.org> updates/1Q-2012,
  package.mask:
  Remove masking. Use portage move instruction instead

  21 Jan 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  masking media-sound/minitunes for removal

  21 Jan 2012; Ole Markus With <olemarkus@gentoo.org> package.mask:
  Removing mask of pruned packages

  21 Jan 2012; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask sys-apps/systemd-sysv-utils until we get necessary tools out of
  sysvinit.

  20 Jan 2012; Alexey Shvetsov <alexxy@gentoo.org> arch/alpha/package.use.mask,
  arch/ia64/package.use.mask, arch/powerpc/package.use.mask,
  arch/sparc/package.use.mask:
  Mask some use for new openmpi deps

  19 Jan 2012; Eray Aslan <eras@gentoo.org> package.mask:
  Mask experimental mail-mta/postfix-2.10 versions

  18 Jan 2012; Matti Bickel <mabi@gentoo.org> package.mask:
  Lastrite dev-php/PEAR-PHP_Archive

  17 Jan 2012; Matti Bickel <mabi@gentoo.org> package.mask:
  Lastrite dev-php/PEAR-HTML_Select_Common

  17 Jan 2012; Johannes Huber <johu@gentoo.org> package.mask:
  Mask not yet released media-libs/opengtl-0.9.16.

  17 Jan 2012; Johannes Huber <johu@gentoo.org> base/use.mask, use.desc:
  Remove kdeenablefinal. Build feature is gone.

  17 Jan 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Mask dev-util/chromium-tools for removal. Determined by the maintaining team
  to be no longer useful.

  16 Jan 2012; Johannes Huber <johu@gentoo.org> package.mask:
  Update package mask entry for phonon-xine

  16 Jan 2012; Matti Bickel <mabi@gentoo.org> package.mask:
  Lastrite dev-php/PEAR-I18N, bug #396975.

  16 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite dev-dotnet/gnome-panel-sharp.

  16 Jan 2012; Johannes Huber <johu@gentoo.org> package.mask:
  Remove package mask of kcheckgmail, bug #394881.

  16 Jan 2012; Ulrich Müller <ulm@gentoo.org> license_groups:
  Remove Emacs-23-CEDET-grammars from FSF-APPROVED since it's no longer used.

  16 Jan 2012; Nirbheek Chauhan <nirbheek@gentoo.org> package.mask:
  Let's unmask rhythmbox-2.9x, the worst bugs seem to be fixed

  15 Jan 2012; Ole Markus With <olemarkus@gentoo.org> package.mask:
  Removed mask of purged ebuilds

  15 Jan 2012; Justin Lecher <jlec@gentoo.org> package.mask:
  Removed dev-tcltk/tkimg mask as the version isn't in the tree anymore

  14 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask net-print/mtink for removal in 30 days. Bug 342799.

  14 Jan 2012; Kacper Kowalik <xarthisius@gentoo.org> use.desc:
  Add global tcmalloc

  14 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Calligra 2.3.86 has been released

  11 Jan 2012; Bernard Cafarelli <voyageur@gentoo.org> package.mask:
  Remove llvm-gcc mask after last rites

  11 Jan 2012; Daniel Pielmeier <billie@gentoo.org> package.mask:
  net-print/cupsddk has been removed. See bug #394089 reference.

  10 Jan 2012; Samuli Suominen <ssuominen@gentoo.org>
  default/linux/package.use.mask:
  Unmask USE="e2fsprogs" for app-arch/libarchive as Linux -only feature wrt
  #354923

  09 Jan 2012; William Hubbs <williamh@gentoo.org> package.mask:
  add sys-apps/kmod to the udev mask

  09 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite sys-fs/zfs-fuse.

  08 Jan 2012; Robin H. Johnson <robbat2@gentoo.org> package.mask:
  Update package.mask for vulnerable MySQL versions.

  08 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite media-video/ogle and reverse dependencies because of incompabilities
  with current libdvdread.

  08 Jan 2012; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add czyborra and noweb to MISC-FREE license group, bugs 395179 and 397485.

  08 Jan 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  mask new boost for testing

  08 Jan 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  qt-4.8.0_rc is no more

  08 Jan 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  app-admin/mon is no more

  07 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask not-yet-released calligra

  07 Jan 2012; Olivier Crête <tester@gentoo.org> package.mask:
  Remove gupnp block as we have the newer gupnp-igd

  07 Jan 2012; Michael Pagano <mpagano@gentoo.org> package.mask:
  Remove portpeek mask

  06 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite media-video/ripmake.

  06 Jan 2012; William Hubbs <williamh@gentoo.org>
  default/linux/package.use.mask:
  dropping mask for zlib on pciutils/usbutils after talking with ssuominon on
  irc.

  05 Jan 2012; William Hubbs <williamh@gentoo.org>
  default/linux/package.use.mask:
  Mask zlib for sys-apps/pciutils and sys-apps/usbutils; needed for bug #360849

  05 Jan 2012; Mike Gilbert <floppym@gentoo.org> package.mask:
  Update mask for chrome dev channel; 17.x is now the beta channel.

  05 Jan 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Mask one more x11 prerelease package.

  05 Jan 2012; Thomas Beierlein <tomjbe@gentoo.org> package.mask:
  Drop mask for media-radio/fldigi as a version supporting fltk-1.3 is in the
  tree

  05 Jan 2012; Maxim Koltsov <maksbotan@gentoo.org> package.mask:
  Unmask app-emulation/libguestfs

  05 Jan 2012; Matthew Marlowe <mattm@gentoo.org> package.mask:
  Taking maintainership for net-libs/wt

  04 Jan 2012; Nirbheek Chauhan <nirbheek@gentoo.org> package.mask:
  Add two more packages that need esound, found by Mr_Bones_

  04 Jan 2012; Michael Pagano <mpagano@gentoo.org> package.mask:
  Mask portpeek >= 2.0.17 for testing

  04 Jan 2012; Ralph Sennhauser <sera@gentoo.org> package.mask:
  Package.mask dev-java/jrockit-jdk-bin for removal in 30 days.
  Outdated Java version, fails to fetch, no upstream. #228929

  04 Jan 2012; Nirbheek Chauhan <nirbheek@gentoo.org> base/use.mask,
  package.mask:
  Last Rites for esound daemon as per mail to gentoo-dev

  02 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org> +ChangeLog-2007,
  +ChangeLog-2008, +ChangeLog-2009, +ChangeLog-2010, +ChangeLog-2011:
  Split ChangeLog

  02 Jan 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Masking new avidemux2.5.6 until upstream fixes parallel build failures

  02 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> use.desc:
  Description for USE flag "neon"

  02 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite xfce-extra/thunar-vfs.

  02 Jan 2012; Michael Pagano <mpagano@gentoo.org> thirdpartymirrors:
  Remove invalid kernel mirrors. Bug #396087

  01 Jan 2012; Sebastian Pipping <sping@gentoo.org> package.mask:
  Extend mask on Gimp to upcoming version 2.7.4

  01 Jan 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Add mask for xf86-input-evdev versions that require mtdev.

  01 Jan 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Mask more prerelease x11 packages.

  01 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove package mask of kmuddy, bug 371451

  For previous entries, please see ChangeLog-2011.