summaryrefslogtreecommitdiff
blob: 96037dcf0a4ee89566b3f40d454de8e65cbd1be2 (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
# ChangeLog for profile directory
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.7847 2013/05/15 08:00:06 xmw 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!

  15 May 2013; Michael Weber <xmw@gentoo.org> package.mask:
  remove sci-electronics/xcircuit-3.8 package mask

  14 May 2013; Tiziano Müller <dev-zero@gentoo.org>
  desc/nginx_modules_http.desc:
  Add USE expand description for naxsi in nginx.

  14 May 2013; Ian Delaney <idella4@gentoo.org> package.mask:
  Replaced dev-python/ets packages with revised list for masking

  14 May 2013; Ryan Hill <dirtyepic@gentoo.org> package.mask:
  Removed dev-util/dialogblocks dev-util/helpblocks.

  13 May 2013; Johannes Huber <johu@gentoo.org> package.mask:
  Mask kde-misc/ktouchpadenabler for removal.

  13 May 2013; Ulrich Müller <ulm@gentoo.org> arch/amd64-fbsd/use.mask,
  arch/x86-fbsd/use.mask, arch/x86/package.use.mask, arch/x86/use.mask,
  package.mask, prefix/darwin/macos/10.4/x86/use.mask,
  prefix/darwin/macos/10.5/x64/use.mask, prefix/darwin/macos/10.5/x86/use.mask,
  prefix/darwin/macos/10.6/x64/use.mask, prefix/darwin/macos/10.6/x86/use.mask,
  prefix/darwin/macos/10.7/x64/use.mask, prefix/darwin/macos/10.7/x86/use.mask,
  prefix/darwin/macos/10.8/x64/use.mask, prefix/darwin/macos/10.8/x86/use.mask,
  uclibc/x86/use.mask:
  Mask media-libs/{amd64,real,win32}codecs for removal, bugs 468406 and 468370.

  13 May 2013; Tomáš Chvátal <scarabeus@gentoo.org> updates/2Q-2013:
  Move wpd2odt to writerperfect

  13 May 2013; Tiziano Müller <dev-zero@gentoo.org>
  desc/nginx_modules_http.desc:
  Add use flag descriptions for
  nginx_modules_http_{gunzip,metrics,upstream_check} (bug #469534).

  13 May 2013; Alexandre Rostovtsev <tetromino@gentoo.org> desc/linguas.desc:
  Add sr_RS@cyrillic and sr_RS@latin locales; used by app-emulation/wine.

  13 May 2013; Ian Delaney <idella4@gentoo.org> package.mask:
  unfix envisagecore mask

  13 May 2013; Patrick Lauer <patrick@gentoo.org> package.mask:
  Fix envisagecore mask

  13 May 2013; Patrick Lauer <patrick@gentoo.org> package.mask:
  Adding app-text/tex-guy to freetype-1 mask

  12 May 2013; Johannes Huber <johu@gentoo.org> updates/2Q-2013:
  Move libkfbapi from cat kde-misc to net-libs.

  12 May 2013; Ian Delaney <idella4@gentoo.org> package.mask:
  Mask dev-python/blockcanvas, dev-python/etsdevtools,
  dev-python/envisagecore for removal

  12 May 2013; Pacho Ramos <pacho@gentoo.org> package.mask:
  Update Gnome 3.8 entry

  12 May 2013; Samuli Suominen <ssuominen@gentoo.org> license_groups:
  Remove clp from MISC-FREE group since the license was in fact MIT.

  12 May 2013; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask dev-python/gdl-python for removal

  12 May 2013; Samuli Suominen <ssuominen@gentoo.org> license_groups:
  Include clp license for media-gfx/gifsicle in MISC-FREE group.

  12 May 2013; Patrick Lauer <patrick@gentoo.org> package.mask:
  Add vflib to freetype-1 mask

  12 May 2013; Patrick Lauer <patrick@gentoo.org> package.mask:
  Add yablex to blender mask, fix typo

  12 May 2013; Patrick Lauer <patrick@gentoo.org> package.mask:
  Add reverse deps of xchat to the mask

  09 May 2013; Johannes Huber <johu@gentoo.org> package.mask:
  Mask kde-misc/akonadi-google for removal.

  09 May 2013; Eray Aslan <eras@gentoo.org> package.mask:
  Remove mask for dovecot-2.2_rc - no longer in the tree

  09 May 2013; Tiziano Müller <dev-zero@gentoo.org> package.mask:
  Remove p.mask for dev-libs/dv* since removed.

  09 May 2013; Alexis Ballier <aballier@gentoo.org> package.mask:
  mask multilib gsm, bug #469108

  08 May 2013; Johannes Huber <johu@gentoo.org> package.mask:
  Remove mask on kde-base/printer-applet, kde-base/system-config-printer-kde.
  Packages have been removed.

  08 May 2013; Alexis Ballier <aballier@gentoo.org> package.mask:
  mask libdvbpsi 1.1

  07 May 2013; Sven Vermeulen <swift@gentoo.org> package.mask:
  Remove mask for python-selinux, is now removed from the tree

  07 May 2013; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask the next batch of multilib conversions.

  06 May 2013; Mike Gilbert <floppym@gentoo.org> package.mask:
  Unmask dev-python/pypy-2.0_beta2.

  06 May 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask media-sound/line6usb wrt #468712#c4

  06 May 2013; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask dev-lisp/emacs-cl for removal, bug 466444.

  06 May 2013; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask media-fonts/adi-dsp-fonts for removal, bug 452372.

  05 May 2013; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Masking media-video/handbrake until =media-video/ffmpeg-1.2 is unmasked.

  05 May 2013; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask pypy-2.0_beta2.

  05 May 2013; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Dropped www-servers/meteor mask, package has been removed.

  05 May 2013; Justin Lecher <jlec@gentoo.org> package.mask:
  Drop obsolete mask entries

  05 May 2013; Pacho Ramos <pacho@gentoo.org> package.mask:
  Update Gnome 3.8 mask

  05 May 2013; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib libsndfile before committing.

  04 May 2013; Jeroen Roovers <jer@gentoo.org> hardened/linux/package.use.mask:
  Mask USE=profile for net-analyzer/wireshark (bug #468404).

  04 May 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Update libv4l mask from 0.8.9-r1 to 0.9.5-r1.

  04 May 2013; Michał Górny <mgorny@gentoo.org>
  default/linux/package.use.mask:
  Remove USE=systemd from package.use.mask since the flag is (un)masked
  globally now.

  04 May 2013; Pacho Ramos <pacho@gentoo.org> package.mask:
  Update Gnome 3.8 mask

  04 May 2013; Patrick Lauer <patrick@gentoo.org> package.mask:
  Mask gnome-extra/evolution-groupwise as it has unsatisfiable dependencies

  03 May 2013; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib alsa-lib.

  03 May 2013; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib webrtc-audio-processing.

  03 May 2013; Jeroen Roovers <jer@gentoo.org> package.mask:
  Remove x11-drivers/nvidia-drivers-319 mask.

  03 May 2013; Tim Harder <radhermit@gentoo.org> updates/2Q-2013:
  Upstream renamed sys-process/crtools to sys-process/criu.

  02 May 2013; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Removed package mask on net-proxy/swiftiply, see bug #198500.

  02 May 2013; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Correct leechcraft masks

  02 May 2013; Jeroen Roovers <jer@gentoo.org> package.mask:
  Mask www-plugins/diamondx for removal.

  02 May 2013; Jeroen Roovers <jer@gentoo.org> package.mask:
  Remove development mask on net-analyzer/wireshark.

  02 May 2013; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask multilib audiofile before committing.

  02 May 2013; Pacho Ramos <pacho@gentoo.org> package.mask:
  Update Gnome 3.8 mask

  02 May 2013; Ian Delaney <idella4@gentoo.org> package.mask:
  unmask celery-3.0.19

  01 May 2013; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask new multilib libvorbis & flac.

  01 May 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask (temporarily) new libogg with autotools-multilib.eclass inherit.

  01 May 2013; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask www-apache/mod_watch and www-apache/mod_loopback for removal, bugs
  464934 and 464938.

  01 May 2013; Kacper Kowalik <xarthisius@gentoo.org> package.mask:
  x11-themes/pidgin-smileys removal due to licensing issue wrt #452420

  01 May 2013; Andrey Grozin <grozin@gentoo.org> package.mask:
  Unmasking new ebuilds for maxima, fricas, and related common-lisp stuff

  01 May 2013; Andrey Grozin <grozin@gentoo.org> arch/amd64/package.use.mask,
  arch/amd64/use.mask, arch/powerpc/use.mask, arch/sparc/use.mask,
  arch/x86/package.use.mask, arch/x86/use.mask, base/package.use.mask,
  base/use.mask:
  Manage use masks gcl, cmucl, clozurecl (for maxima and fricas) centrally and
  consistently

  01 May 2013; Sebastian Pipping <sping@gentoo.org> base/package.use.mask:
  Unmask ~media-libs/gegl-0.2.0[introspection] (bug #416587)

  30 Apr 2013; Sebastian Pipping <sping@gentoo.org> base/package.use.mask:
  Unmask ~media-libs/babl-0.1.8[introspection] (bug #413663)

  29 Apr 2013; Sebastian Pipping <sping@gentoo.org> base/package.use.mask:
  Unmask ~media-libs/babl-0.1.10[introspection] (bug #413663)

  29 Apr 2013; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add Mail-Sendmail license to MISC-FREE group, bug 446164. Add GameFront
  license to EULA group, bug 467512.

  29 Apr 2013; Michał Górny <mgorny@gentoo.org> package.mask:
  Unmask freetype, fontconfig & revdeps as a result of co-maintenance agreement
  between the fonts team and multilib team.

  29 Apr 2013; Ian Delaney <idella4@gentoo.org> package.mask:
  Mask of =dev-python/celery-3.0.19.

  29 Apr 2013; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Remove unneeded mask on mplayer2 live ebuild

  28 Apr 2013; Mike Gilbert <floppym@gentoo.org> package.mask:
  Unmask python bumps.

  28 Apr 2013; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Masking pcmanfm-qt releases for testing

  28 Apr 2013; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask media-sound/timidity-shompatches for removal, bug 441640.

  28 Apr 2013; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask media-sound/timidity-shompatches for removal, bug 441640.

  28 Apr 2013; Mike Gilbert <floppym@gentoo.org> desc/grub_platforms.desc:
  Add 'efi'.

  27 Apr 2013; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask app-text/duconv for removal, bug 444576.

  27 Apr 2013; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add Rain-Slick license to EULA group, bug 465958.

  27 Apr 2013; Jeroen Roovers <jer@gentoo.org> package.mask:
  Update wireshark mask to cover 1.10.

  27 Apr 2013; Jeroen Roovers <jer@gentoo.org> license_groups:
  Add NVIDIA-r1 to BINARY-REDISTRIBUTABLE.

  27 Apr 2013; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add CYANA license to EULA group, bug 465692.

  27 Apr 2013; Pacho Ramos <pacho@gentoo.org> package.mask:
  Update Gnome 3.8 mask

  27 Apr 2013; Tomáš Chvátal <scarabeus@gentoo.org> base/make.defaults,
  desc/calligra_features.desc:
  Add author to calligra descs.

  27 Apr 2013; Pacho Ramos <pacho@gentoo.org> package.mask:
  Update Gnome 3.8 mask

  27 Apr 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Remove some now unrequired entries for libpng and udev.

  26 Apr 2013; Ben de Groot <yngwin@gentoo.org> package.mask:
  Mask media-libs/freetype:1 (bug 412499)

  25 Apr 2013; Pacho Ramos <pacho@gentoo.org> package.mask:
  Update Gnome 3.8 mask

  25 Apr 2013; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask app-admin/addpatches for removal.

  25 Apr 2013; Benedikt Böhm <hollow@gentoo.org> package.mask:
  remove nginx from p.mask

  25 Apr 2013; Ulrich Müller <ulm@gentoo.org> package.mask:
  Unmask x11-libs/motif-2.3.4-r1 again.

  24 Apr 2013; Pacho Ramos <pacho@gentoo.org> package.mask:
  Update Gnome 3.8 mask

  24 Apr 2013; Pacho Ramos <pacho@gentoo.org> package.mask:
  Update Gnome 3.8 mask

  24 Apr 2013; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask sys-apps/kuroevtd for removal, bug 441930.

  24 Apr 2013; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add baudline license to EULA group, bug 445942.

  23 Apr 2013; Markos Chandras <hwoarang@gentoo.org> package.mask:
  postpone media-tv/tvtime removal as there is some activity on #424289

  23 Apr 2013; Markos Chandras <hwoarang@gentoo.org> package.mask:
  app-text/gonzui gone

  23 Apr 2013; Markos Chandras <hwoarang@gentoo.org> package.mask:
  net-misc/gwibber gone

  23 Apr 2013; Pacho Ramos <pacho@gentoo.org> package.mask:
  Update Gnome 3.8 mask

  23 Apr 2013; Luca Barbato <lu_zero@gentoo.org> package.mask:
  Update mask for libav-9.5

  23 Apr 2013; Samuli Suominen <ssuominen@gentoo.org> desc/alsa_cards.desc:
  New alsa_cards_ca0132 description for the alsa-firmware-1.0.27 release.

  22 Apr 2013; Bernard Cafarelli <voyageur@gentoo.org> package.mask:
  Removing mask on x11-misc/google-gadgets after last rites

  21 Apr 2013; Markos Chandras <hwoarang@gentoo.org> package.mask:
  sys-kernel/linuxwacom-module removed

  21 Apr 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Mask packages that depend on multilib fontconfig, bug #466456

  21 Apr 2013; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add MTA-0.5 and Primate-Plunge to EULA license group, bugs 465852 and 465850.

  20 Apr 2013; Johannes Huber <johu@gentoo.org> package.mask:
  Masked net-im/ktp-contact-applet, net-im/ktp-presence-applet for removal.

  20 Apr 2013; Andrey Grozin <grozin@gentoo.org> package.mask:
  New stuff ported from the lisp overlay and computer algebra systems
  which depend on it: masked for testing

  19 Apr 2013; Samuli Suominen <ssuominen@gentoo.org> default/linux/use.mask:
  Unmask USE="kmod" for Linux only.

  19 Apr 2013; Ben de Groot <yngwin@gentoo.org> package.mask:
  media-libs/fontconfig non-maintainer ebuild with experimental multilib features
  masked for further testing

  19 Apr 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Change mask message for ~sys-fs/udev-171 so it won't be removed before bug
  466424 is solved somehow.

  18 Apr 2013; Michael Weber <xmw@gentoo.org> package.mask:
  app-arch/advancecomp-1.17 masked due test failures

  18 Apr 2013; Tim Harder <radhermit@gentoo.org> package.mask:
  Remove mask on =app-emulation/vagrant-1.1*.

  18 Apr 2013; Tim Harder <radhermit@gentoo.org> package.mask:
  Remove mask on =mail-client/roundcube-0.9*.

  17 Apr 2013; Michał Górny <mgorny@gentoo.org> targets/desktop/package.use:
  USE=keymap has been added to sys-apps/systemd.

  17 Apr 2013; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add shmux and Dina licenses to BINARY-REDISTRIBUTABLE group, bugs 464870
  and 465102. Add canfep and Snd to MISC-FREE group, bugs 445310 and 465112.
  Add SJ-Labs license to EULA group, bug 465196.

  16 Apr 2013; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add sun-concurrent-util and sun-jlfgr licenses to BINARY-REDISTRIBUTABLE
  group, bugs 463998 and 464000.

  16 Apr 2013; Ian Stakenvicius <axs@gentoo.org> license_groups:
  Put FAH-EULA-2009 into the EULA group

  16 Apr 2013; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Mask live ebuild of mplayer2

  16 Apr 2013; Samuli Suominen <ssuominen@gentoo.org> updates/2Q-2013:
  Move alsa-firmware from media-sound category to sys-firmware category.

  16 Apr 2013; Christoph Junghans <ottxor@gentoo.org> package.mask:
  masked media-sound/google-musicmanager

  16 Apr 2013; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask the google-chrome:unstable slot so that I don't have to update it every
  6 weeks.

  16 Apr 2013; Mike Gilbert <floppym@gentoo.org> package.mask:
  Add chrome-binary-plugins to the google-chrome dev channel mask.

  15 Apr 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Release new ImageMagick >= 6.8 to ~arch now that FindImageMagick.cmake from
  dev-util/cmake is fixed.

  14 Apr 2013; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add GBuffy and totd licenses to MISC-FREE group, bugs 464770 and 465142.

  14 Apr 2013; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Remove obsolete mask on sys-kernel/openvz-sources

  14 Apr 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask new media-gfx/imagemagick temporarily for testing.

  14 Apr 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask broken libpng release to force upgrade.

  13 Apr 2013; Christoph Mende <angelos@gentoo.org>
  targets/desktop/gnome/package.use:
  Change gst-plugins-base:1.0 to >=gst-plugins-base-1.0 for EAPI0 compatibility

  13 Apr 2013; Michael Weber <xmw@gentoo.org> package.mask:
  Does not work with rdeps, mask for testing (bug #447246)

  13 Apr 2013; Alexandre Rostovtsev <tetromino@gentoo.org>
  targets/desktop/gnome/package.use:
  Enable USE=theora for gst-plugins-base:1.0 on gnome, needed for default
  gnome3 apps such as cheese.

  12 Apr 2013; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Remove obsolete mask on febootstrap

  12 Apr 2013; Thomas Kahle <tomka@gentoo.org> license_groups:
  Add the new GIMPS license to EULA group

  11 Apr 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  eapi-5-files/package.use.stable.mask, base/package.use.mask:
  Only mask USE=system-ffmpeg for stable www-client/chromium.

  11 Apr 2013; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask gtkmm-2.24.3 due bug #464994

  11 Apr 2013; Pacho Ramos <pacho@gentoo.org> package.mask:
  Update gnome 3.8 mask

  11 Apr 2013; <leio@gentoo.org> package.mask:
  Remove mask on gdk-pixbuf-2.28 as it should work fine with earlier gtk+ and
  to slightly coincide with libpng-1.6 release to ~arch a couple days ago to
  save on rebuilds for some

  11 Apr 2013; Jeroen Roovers <jer@gentoo.org> package.mask:
  Expand unstable x11-drivers/nvidia-drivers mask message.

  10 Apr 2013; Jeroen Roovers <jer@gentoo.org> package.mask:
  Mask beta Nvidia driver 319.

  11 Apr 2013; Magnus Granberg <zorry@gentoo.org>
  hardened/linux/amd64/package.mask, hardened/linux/x86/package.mask:
  Mask media-video/nvidia-settings

  09 Apr 2013; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add LambdaMOO license to MISC-FREE group, bug 465280.

  09 Apr 2013; Gilles Dartiguelongue <eva@gentoo.org> updates/2Q-2013:
  Add slotmove for net-libs/libgrss.

  09 Apr 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite sys-kernel/mkinitcpio since it's been abandoned.

  09 Apr 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Drop lastrite entry for sys-fs/device-mapper which has been removed from
  gentoo-x86 wrt #461382

  09 Apr 2013; Christoph Mende <angelos@gentoo.org> package.mask:
  Mask mail-client/postler for removal

  09 Apr 2013; Justin Lecher <jlec@gentoo.org> package.mask:
  Mask sci-chemistry/talos+-1.2009.1013.14, #465144

  09 Apr 2013; Patrick Lauer <patrick@gentoo.org> package.mask:
  Fix libcaca mask to include toilet

  09 Apr 2013; Patrick Lauer <patrick@gentoo.org> package.mask:
  Masking nodejs-0.11 to get 0.10 tested more

  08 Apr 2013; Ole Markus With <olemarkus@gentoo.org> package.mask:
  PEAR-PEAR_PackageFileManager_Cli removed from tree

  07 Apr 2013; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask new python versions.

  07 Apr 2013; Michael Palimaka <kensington@gentoo.org> package.mask:
  Remove obsolete mask for sys-auth/polkit-kde.

  07 Apr 2013; Pacho Ramos <pacho@gentoo.org> package.mask:
  Update gnome-3.8 mask

  06 Apr 2013; Ryan Hill <dirtyepic@gentoo.org> package.mask:
  Mask dev-util/dialogblocks, dev-util/helpblocks for removal.

  06 Apr 2013; Sven Vermeulen <swift@gentoo.org> base/package.mask,
  features/selinux/package.mask, package.mask:
  Mask python-selinux as it is unused and unmaintained

  05 Apr 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Mask prerelease mesa snapshot.

  05 Apr 2013; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Masked www-servers/meteor for removal in 30 days, different installation
  approach and bundled binaries are unsustainable.

  05 Apr 2013; Lars Wendler <polynomial-c@gentoo.org> package.mask:
  Modified mask message.

  05 Apr 2013; Ben de Groot <yngwin@gentoo.org> package.mask:
  media-libs/freetype non-maintainer ebuild with experimental multilib features
  masked for further testing

  05 Apr 2013; Jeroen Roovers <jer@gentoo.org> package.mask:
  Unmask www-client/opera-12.15.

  04 Apr 2013; Mike Gilbert <floppym@gentoo.org> package.mask:
  Update google-chrome mask for 28.x.

  04 Apr 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Roll chromium dev channel masks for chromium-28.x.

  04 Apr 2013; Ryan Hill <dirtyepic@gentoo.org> package.mask:
  Mask GCC 4.8.

  02 Apr 2013; Pacho Ramos <pacho@gentoo.org> default/linux/package.use.mask:
  Mask cdr USE flag for rhythmbox-2.97 as it needs brasero-3.4

  02 Apr 2013; Lars Wendler <polynomial-c@gentoo.org> package.mask:
  Masked net-irc/xchat for removal.

  02 Apr 2013; Samuli Suominen <ssuominen@gentoo.org>
  targets/desktop/package.use:
  Fix USE="gdu" vs. USE="udisks" conflict with current stable gnome-base/gvfs.

  02 Apr 2013; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Mask =media-libs/ffmpegsource-2.17.4_pre753 due to bug #464078

  01 Apr 2013; Michael Palimaka <kensington@gentoo.org> +updates/2Q-2013:
  Move kde-misc/print-manager to kde-base/print-manager.

  01 Apr 2013; Michael Palimaka <kensington@gentoo.org> package.mask:
  Last rites for kde-base/printer-applet and
  kde-base/system-config-printer-kde.

  01 Apr 2013; Gilles Dartiguelongue <eva@gentoo.org>
  arch/alpha/package.use.mask, arch/arm/package.use.mask,
  arch/ia64/package.use.mask:
  Mask ivorbis USE flag on media-libs/gst-plugins-base, bug #453200.

  01 Apr 2013; Gilles Dartiguelongue <eva@gentoo.org>
  arch/alpha/package.use.mask:
  Clean up package.mask, lots of keywording has been done.

  01 Apr 2013; Pacho Ramos <pacho@gentoo.org>
  eapi-5-files/package.use.stable.mask:
  Mask gedit USE flag for next stable devhelp-3.6

  31 Mar 2013; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Removal of mask on dev-ruby/cgi_multipart_eof_fix, immediate
  removal was requested by flameeyes and hwoarang.

  31 Mar 2013; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Masked net-proxy/swiftiply and dev-ruby/cgi_multipart_eof_fix,
  the latter will be removed in 30 days thus the former needs a fix.

  31 Mar 2013; Gilles Dartiguelongue <eva@gentoo.org> package.mask:
  Drop mask from rygel and cie, it is fine without Gnome 3.8.

  30 Mar 2013; Robin Johnson <robbat2@gentoo.org> desc/nginx_modules_http.desc:
  Add SPDY for nginx.

  30 Mar 2013; Ulrich Müller <ulm@gentoo.org> package.mask:
  Remove mask for app-emacs/yow, package removed.

  30 Mar 2013; Gilles Dartiguelongue <eva@gentoo.org> package.mask:
  Drop some more packages from Gnome 3.8 mask, they are safe.

  30 Mar 2013; Gilles Dartiguelongue <eva@gentoo.org> package.mask:
  Split DLNA stack mask out of Gnome 3.8 mask, they are most likely not
  blocking each other.

  30 Mar 2013; Gilles Dartiguelongue <eva@gentoo.org> updates/1Q-2013:
  Move old gupnp-dlna to slot 1.0.

  30 Mar 2013; Gilles Dartiguelongue <eva@gentoo.org> package.mask:
  Drop libgdata and vala from Gnome 3.8 mask, they are fine for ~arch.

  30 Mar 2013; Gilles Dartiguelongue <eva@gentoo.org> package.mask:
  Remove gtk-vnc from Gnome 3.8 mask, it has no relation to the release.

  29 Mar 2013; Aaron W. Swenson <titanofold@gentoo.org> package.mask:
  Update removal time of dev-db/postgresql-{base,docs,server}:8.3 in
  preparation of a serious security fix.

  29 Mar 2013; Pacho Ramos <pacho@gentoo.org> package.mask:
  Update gnome 3.8 mask entry

  29 Mar 2013; Michał Górny <mgorny@gentoo.org> package.mask:
  Unmask new sys-apps/systemd releases since they do not introduce new
  regressions and improve the current situation.

  29 Mar 2013; Pacho Ramos <pacho@gentoo.org> package.mask:
  Update gnome 3.8 mask entry

  29 Mar 2013; Pacho Ramos <pacho@gentoo.org>
  targets/desktop/gnome/make.defaults:
  Enable libsecret USE flag as it's the gnome-keyring replacement and will
  start to be used a lot.

  29 Mar 2013; Pacho Ramos <pacho@gentoo.org> package.mask:
  Update gnome 3.8 mask entry

  29 Mar 2013; Michał Górny <mgorny@gentoo.org> package.mask:
  Forward-mask sys-apps/systemd-200.

  28 Mar 2013; Mike Gilbert <floppym@gentoo.org> package.mask:
  Unmask sqlite.

  28 Mar 2013; Pacho Ramos <pacho@gentoo.org> package.mask:
  Fix mask entry

  28 Mar 2013; Pacho Ramos <pacho@gentoo.org> package.mask:
  Add Gnome 3.8 mask

  27 Mar 2013; Dion Moult <moult@gentoo.org> package.mask:
  Remove games-strategy/x2 and games-strategy/x2-demo mask as package removed.

  27 Mar 2013; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Remove obsolete mask on dev-util/ciabot-svn

  27 Mar 2013; Dion Moult <moult@gentoo.org> package.mask:
  Remove dev-rubyrails:3.0 and associated package masks as package removed.

  27 Mar 2013; Dion Moult <moult@gentoo.org> package.mask:
  Remove media-gfx/picasa mask as package removed.

  27 Mar 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  eapi-5-files/use.stable.mask:
  Add wayland to use.stable.mask

  27 Mar 2013; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask new sys-apps/systemd before it is committed.

  26 Mar 2013; Ole Markus With <olemarkus@gentoo.org> updates/1Q-2013:
  Renaming zendoptimizerplus to zendopcache

  26 Mar 2013; Sébastien Fabbro <bicatali@gentoo.org> package.mask:
  Masked sci-visualization/udav for removal

  25 Mar 2013; Anthony G. Basile <blueness@gentoo.org>
  hardened/linux/uclibc/mips/package.mask:
  Relax maskings on hardened/linux/uclibc/mips

  25 Mar 2013; Anthony G. Basile <blueness@gentoo.org>
  -hardened/linux/uclibc/package.use:
  Relax iconv mask on git for hardened/linux/uclibc profiles

  25 Mar 2013; Michał Górny <mgorny@gentoo.org>
  targets/desktop/package.use:
  Request the same set on flags on sys-apps/systemd as required by
  virtual/udev.

  25 Mar 2013; Jeroen Roovers <jer@gentoo.org> package.mask:
  Mask =x11-misc/xlockmore-5.42 (bug #463180).

  25 Mar 2013; Luca Barbato <lu_zero@gentoo.org> package.mask:
  Update mask for libav-9.4

  25 Mar 2013; Anthony G. Basile <blueness@gentoo.org> hardened/linux/packages:
  Add sys-apps/elfix to @system for all hardened profiles

  24 Mar 2013; Dion Moult <moult@gentoo.org> package.mask:
  Remove dev-python/pysqlite mask as package removed

  24 Mar 2013; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Don't threaten MSN clients for removal yet

  24 Mar 2013; Dion Moult <moult@gentoo.org> package.mask:
  Remove www-client/xxxterm mask as package has been removed

  24 Mar 2013; Dion Moult <moult@gentoo.org> package.mask:
  Remove bug #367423 dev-lang/ruby-enterprise masks as package has been removed
  and bug marked as WONTFIX

  24 Mar 2013; Dion Moult <moult@gentoo.org> package.mask:
  Remove dev-lang/ruby-enterprise and associated virtuals mask as packages have
  been removed

  24 Mar 2013; Dion Moult <moult@gentoo.org> package.mask:
  Remove app-misc/secure-delete mask as package has been removed

  24 Mar 2013; Dion Moult <moult@gentoo.org> package.mask:
  Remove dev-python/pysqlite-2 mask as package has been removed

  24 Mar 2013; Richard Freeman <rich0@gentoo.org> package.mask:
  Taking over cuneiform maintainership.

  24 Mar 2013; Anthony G. Basile <blueness@gentoo.org>
  +hardened/linux/13.0/amd64/deprecated,
  +hardened/linux/13.0/amd64/no-multilib/deprecated,
  +hardened/linux/13.0/amd64/no-multilib/selinux/deprecated,
  +hardened/linux/13.0/amd64/selinux/deprecated,
  +hardened/linux/13.0/amd64/x32/deprecated,
  +hardened/linux/13.0/x86/deprecated,
  +hardened/linux/13.0/x86/selinux/deprecated, hardened/linux/parent:
  Switch hardened profiles to inherit from 13.0

  23 Mar 2013; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask app-text/gonzui for removal

  23 Mar 2013; Rick Farina <zerochaos@gentoo.org> package.mask:
  Removing iwl{3945,4965}-ucode mask as packages have been removed

  23 Mar 2013; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Add amsn* to the MSN-only packages that going away

  23 Mar 2013; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Masking net-im/kmess for removal

  23 Mar 2013; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Removed gentoo-sources mask since the old ebuilds have been deleted.

  23 Mar 2013; Tomáš Chvátal <scarabeus@gentoo.org>
  +desc/office_implementation.desc, base/make.defaults:
  Add office implementation for next version of office-ext eclass. So the
  extensions are not installed automagically based on whats found on the
  system.

  23 Mar 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org> base/package.use.mask:
  Unmask pulseaudio flag for chromium-27.x

  22 Mar 2013; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Add alternatives for media-tv/tvtime

  22 Mar 2013; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask media-tv/tvtime for removal

  22 Mar 2013; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask app-text/cuneiform for removal

  22 Mar 2013; Andreas K. Huettel <dilfridge@gentoo.org>
  targets/desktop/kde/package.use:
  Enable app-arch/unzip natspec useflag by default in kde profile as per kde
  team decision, bug 457934

  22 Mar 2013; Markos Chandras <hwoarang@gentoo.org> package.mask:
  dev-python/papyon and net-voip/telepathy-butterfly removal. Bug #362611

  22 Mar 2013; Markos Chandras <hwoarang@gentoo.org> package.mask:
  app-misc/ccal removal. Fixes bug #350559

  22 Mar 2013; Markos Chandras <hwoarang@gentoo.org> package.mask:
  sys-apps/i2c removal. Fixes bug #450594

  22 Mar 2013; Markos Chandras <hwoarang@gentoo.org> package.mask:
  net-misc/wxdfast is gone. Fixes #457832

  22 Mar 2013; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask net-misc/gwibber for removal. Bug #388913

  22 Mar 2013; Ole Markus With <olemarkus@gentoo.org>
  eapi-5-files/use.stable.mask:
  Adding PHP_TARGETS='php5-5' to use.stable.mask

  22 Mar 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Remove mask entry for mkxf86config, and old version of livecd-tools. Former
  is no longer required with modern X.org and udev and latter only has latest
  in tree left.

  22 Mar 2013; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Removing mask on app-text/linuxdoc-tools

  21 Mar 2013; Zac Medico <zmedico@gentoo.org> desc/python_targets.desc:
  Add python_targets_python3_4 description (it's not available in the main tree
  yet, but may be useful for ebuilds that want to support it anyway).

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

  21 Mar 2013; Julian Ospald <hasufell@gentoo.org>
  hardened/linux/amd64/no-multilib/package.mask:
  mask games-rpg/dungeon-defenders for hardened-multilib

  21 Mar 2013; Julian Ospald <hasufell@gentoo.org>
  hardened/linux/amd64/no-multilib/package.mask:
  mask games-kids/crayon-physics for hardened-multilib

  21 Mar 2013; Julian Ospald <hasufell@gentoo.org>
  hardened/linux/amd64/no-multilib/package.mask:
  mask games-arcade/dynamitejack for hardened-multilib

  21 Mar 2013; Julian Ospald <hasufell@gentoo.org>
  hardened/linux/amd64/no-multilib/package.mask:
  mask games-action/solar2 for hardened-multilib

  21 Mar 2013; Julian Ospald <hasufell@gentoo.org>
  hardened/linux/amd64/no-multilib/package.mask:
  mask games-action/beathazardultra for hardened-multilib

  21 Mar 2013; Julian Ospald <hasufell@gentoo.org>
  hardened/linux/amd64/no-multilib/package.mask:
  mask games-action/swordandsworcery for hardened-multilib

  21 Mar 2013; Julian Ospald <hasufell@gentoo.org> license_groups:
  add CAPYBARA-EULA to EULAs

  21 Mar 2013; Jeroen Roovers <jer@gentoo.org> package.mask:
  Mask =www-client/opera-12.15*.

  21 Mar 2013; Ulrich Müller <ulm@gentoo.org> use.desc:
  Describe inotify global USE flag.

  21 Mar 2013; Ole Markus With <olemarkus@gentoo.org> package.mask:
  Removing mask of php 5.5

  21 Mar 2013; Tiziano Müller <dev-zero@gentoo.org> package.mask:
  Last rites for dev-libs/dv{acm4,net,ssl,thread,util}, bug #462590

  21 Mar 2013; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Mask new app-text/linuxdoc-tools, wrt bug #442482

  20 Mar 2013; Bernard Cafarelli <voyageur@gentoo.org> package.mask:
  Last rites for x11-misc/google-gadgets, bug #462472

  19 Mar 2013; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask new version of sqlite.

  19 Mar 2013; Mike Gilbert <floppym@gentoo.org> updates/1Q-2013:
  Slotmove for www-plugins/chrome-binary-plugins.

  18 Mar 2013; Ulrich Müller <ulm@gentoo.org>
  hardened/linux/uclibc/amd64/package.mask:
  Mask some packages that rely on multilib.

  18 Mar 2013; Sergey Popov <pinkbyte@gentoo.org> license_groups:
  Add PIZZA-WARE license to MISC-FREE group

  18 Mar 2013; Tim Harder <radhermit@gentoo.org> package.mask:
  Mask =app-emulation/vagrant-1.1* for testing.

  18 Mar 2013; Anthony G. Basile <blueness@gentoo.org>
  hardened/linux/package.use.force:
  Force USE=xattr on sys-apps/portage for hardened for XATTR_PAX marking

  16 Mar 2013; Ryan Hill <dirtyepic@gentoo.org> package.mask:
  Unmask wxGTK/wxpython:2.9 (bug #446998).

  16 Mar 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask new revision of libv4l with ABI_X86="32" support temporarily while
  waiting for new emul-linux-x86-medialibs release.

  16 Mar 2013; Aaron W. Swenson <titanofold@gentoo.org> package.mask:
  Mask dev-db/postgresql-{docs,base,server}:8.3 for removal 2013-05-16. (EOL)

  16 Mar 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Removed ivtv, at76c503a and bunch of firmware packages from tree.

  16 Mar 2013; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Unmasked >=media-video/avidemux-2.6.2 which works properly and secure.

  16 Mar 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Temporarily mask new libmikmod with abi_x86_32 support pending on new
  emul-linux-x86-soundlibs.

  15 Mar 2013; Michael Palimaka <kensington@gentoo.org>
  targets/desktop/kde/package.use:
  Add default USE flags so that 'emerge kde-meta' just works.

  13 Mar 2013; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Masking vulnerable versions of Meteor.

  13 Mar 2013; Julian Ospald <hasufell@gentoo.org> license_groups:
  add ArxFatalis-EULA-JoWooD and ArxFatalis-EULA-GOG to EULA license group

  13 Mar 2013; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask new app-emulation/emul-linux-x86-xlibs-20130224-r1 because it breaks
  updates. Bug

  13 Mar 2013; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Remove obsolete mask on x11-misc/xdaf

  13 Mar 2013; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Mask old sys-kernel/openvz-sources

  12 Mar 2013; Michał Górny <mgorny@gentoo.org> package.mask:
  Unmask new freetype-2 and its multilib rdeps due to libdir move being
  reverted.

  10 Mar 2013; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Masked broken media-video/avidemux again, needs a revise for it to become
  maintainable; I will look into splitting the package. See bug #461496 C #5.

  11 Mar 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  arch/mips/use.mask, arch/powerpc/package.use.mask, desc/input_devices.desc:
  Erase input_devices_citron from memory.

  11 Mar 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Mask xf86-input-citron for removal.

  11 Mar 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite sys-fs/device-mapper

  10 Mar 2013; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Unmask >=media-video/avidemux-2.6, has been revised and is now maintained.

  09 Mar 2013; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Unmask poppler-0.22

  09 Mar 2013; Julian Ospald <hasufell@gentoo.org> package.mask:
  update masking reason for blender-2.64a and blender-2.66

  09 Mar 2013; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove obsolete games-puzzle/kmagnet pmask

  09 Mar 2013; Maxim Koltsov <maksbotan@gentoo.org> updates/1Q-2013:
  Fix typo in leechcraft-meta package name, bug #460966.

  08 Mar 2013; Tom Wijsman <TomWij@gentoo.org> package.mask:
  Masked 3.0.17-r2 and 3.5.7-r1 (stable kernels), due to no support they are
  to be removed in 14 days.

  08 Mar 2013; Maxim Koltsov <maksbotan@gentoo.org>
  eapi-5-files/package.use.stable.mask, updates/1Q-2013:
  Move LeechCraft to new category

  08 Mar 2013; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Remove mask for net-misc/libteam

  08 Mar 2013; Maxim Koltsov <maksbotan@gentoo.org> categories:
  Add app-leechcraft category

  08 Mar 2013; Davide Pesavento <pesa@gentoo.org> package.mask:
  Remove obsolete p.mask entry.

  08 Mar 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Remove masks for prerelease xorg packages.

  07 Mar 2013; Tim Harder <radhermit@gentoo.org>
  desc/python_single_target.desc, desc/python_targets.desc:
  Add jython2_7 for PYTHON_TARGETS.

  07 Mar 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org> base/package.use.mask:
  Mask www-client/chromium system-sqlite USE flag.

  07 Mar 2013; Tim Harder <radhermit@gentoo.org> package.mask:
  Mask =dev-java/jython-2.7* for testing.

  07 Mar 2013; Ulrich Müller <ulm@gentoo.org> package.mask:
  Update mask for emacs-vcs live ebuilds.

  07 Mar 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask old copies of sys-fs/lvm2 incompatible with stable udev.

  07 Mar 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite ~sys-fs/udev-171 and sys-apps/module-init-tools.

  06 Mar 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  arch/arm/use.mask, base/use.mask:
  Restrict freedreno flag to arm.

  06 Mar 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  desc/video_cards.desc:
  Add freedreno to VIDEO_CARDS.

  06 Mar 2013; Anthony G. Basile <blueness@gentoo.org>
  hardened/linux/mips/mipsel/multilib/n32/parent,
  hardened/linux/mips/mipsel/multilib/n64/parent,
  hardened/linux/mips/mipsel/n32/parent, hardened/linux/mips/mipsel/n64/parent,
  hardened/linux/mips/multilib/n32/parent,
  hardened/linux/mips/multilib/n64/parent, hardened/linux/mips/n32/parent,
  hardened/linux/mips/n64/parent:
  Switch hardened/linux/mips profiles to 13.0

  06 Mar 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Drop h323plus mask, bug #460458.

  06 Mar 2013; Anthony G. Basile <blueness@gentoo.org>
  default/linux/mips/10.0/mipsel/multilib/n32/deprecated,
  default/linux/mips/10.0/mipsel/multilib/n64/deprecated:
  Fix deprecation message for default/linux/mips/10.0/mipsel/multilib/n{32,64}

  05 Mar 2013; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask sys-auth/polkit-kde for removal

  05 Mar 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask libcaca _beta18 because it won't compile unless it's already installed.

  05 Mar 2013; Ole Markus With <olemarkus@gentoo.org> package.mask:
  Masking dev-php/PEAR-PEAR_PackageFileManager_Cli

  04 Mar 2013; Robin H. Johnson <robbat2@gentoo.org> package.mask:
  Update MySQL pmask.

  04 Mar 2013; Michael Pagano <mpagano@gentoo.org> package.mask:
  Unmask portpeek

  04 Mar 2013; Justin Lecher <jlec@gentoo.org> license_groups:
  Add ECL-2.0 to GPL-COMPATIBLE and OSI-APPROVED license groups

  03 Mar 2013; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add URT license to MISC-FREE group, bug 455970.

  03 Mar 2013; Tim Harder <radhermit@gentoo.org> package.mask:
  Remove mask on dev-python/github2 since it's been dropped.

  03 Mar 2013; Ryan Hill <dirtyepic@gentoo.org> package.mask:
  Unmask GCC 4.7

  03 Mar 2013; Davide Pesavento <pesa@gentoo.org> package.mask:
  p.mask media-gfx/yafaray

  02 Mar 2013; Luca Barbato <lu_zero@gentoo.org> package.mask:
  Update mask for libav-9.3

  02 Mar 2013; Davide Pesavento <pesa@gentoo.org> package.mask:
  Unmask dev-qt/*

  02 Mar 2013; Davide Pesavento <pesa@gentoo.org> arch/alpha/package.use.mask,
  arch/alpha/use.mask, arch/amd64-fbsd/todo/package.use.mask,
  arch/amd64/package.use.mask, arch/arm/package.use.mask,
  arch/hppa/package.use.mask, arch/ia64/package.use.mask, arch/ia64/use.mask,
  arch/powerpc/package.use.force, arch/powerpc/package.use.mask,
  arch/sparc/package.use.mask, arch/sparc/use.mask, arch/x86/package.use.mask,
  base/package.use.force, base/package.use.mask, default/bsd/package.use.mask,
  default/linux/hppa/package.use.mask, package.mask:
  Qt category move.

  02 Mar 2013; Justin Lecher <jlec@gentoo.org> arch/x86/package.use.mask,
  package.mask:
  Drop mask from dev-tcltk/tcllib

  02 Mar 2013; Ben de Groot <yngwin@gentoo.org> package.mask:
  Temp mask for dev-qt/*

  28 Feb 2013; Justin Lecher <jlec@gentoo.org> package.mask:
  Clean package.mask

  27 Feb 2013; Michał Górny <mgorny@gentoo.org> desc/abi_x86.desc:
  Describe x32 ABI flag.

  26 Feb 2013; Ulrich Müller <ulm@gentoo.org> package.mask:
  app-emacs/yow masked for removal.

  26 Feb 2013; Mike Gilbert <floppym@gentoo.org> package.mask:
  Update the google-chrome mask.

  26 Feb 2013; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask the multilib freetype for testing due to header location change.

  26 Feb 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Roll dev-lang/v8, www-client/chromium p.mask entries for M27.

  26 Feb 2013; Michał Górny <mgorny@gentoo.org> package.mask:
  Unmask freetype after fixing the demo build bug.

  26 Feb 2013; Diego E. Pettenò <flameeyes@gentoo.org> package.mask:
  Mask devmanual live ebuild.

  26 Feb 2013; Eray Aslan <eras@gentoo.org> package.mask:
  Remove mask for net-mail/dovecot-2.2_beta* - no longer in the tree

  26 Feb 2013; Eray Aslan <eras@gentoo.org> package.mask:
  Mask net-mail/dovecot-2.2_rc* releases

  26 Feb 2013; Eray Aslan <eras@gentoo.org> package.mask:
  Remove mask for mail-filter/opendkim-2.8.0_beta* - no longer in the tree

  26 Feb 2013; Michał Górny <mgorny@gentoo.org> package.mask:
  Temporarily mask new fontconfig & freetype because of USE=utils being broken.

  25 Feb 2013; Luca Barbato <lu_zero@gentoo.org> package.mask:
  Update mask for libav-9.2

  24 Feb 2013; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add ACE license to MISC-FREE group, bug 455530.

  24 Feb 2013; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask dev-util/ciabot-svn for removal. Bug #445644

  23 Feb 2013; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask dev-python/pysqlite:0 for removal.

  23 Feb 2013; Alexis Ballier <aballier@gentoo.org> package.mask:
  unmask ffmpeg-1.0

  23 Feb 2013; Alexis Ballier <aballier@gentoo.org> package.mask:
  Unmask gst-{ffmpeg,libav} now that they do not need anymore a masked
  ffmpeg/libav

  22 Feb 2013; Dion Moult <moult@gentoo.org> package.mask:
  Remove www-apps/online-bookmarks mask as removed from tree. See #449820.

  22 Feb 2013; Dion Moult <moult@gentoo.org> package.mask:
  Mask net-misc/wxdfast (bug 457832)

  22 Feb 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Mask net-libs/h323plus-1.25.0

  22 Feb 2013; Jeroen Roovers <jer@gentoo.org> package.mask:
  Mask =net-analyzer/mtr-0.83 (bug #456788).

  22 Feb 2013; Jeroen Roovers <jer@gentoo.org> package.mask:
  Mask development versions of net-analyzer/wireshark.

  22 Feb 2013; Eray Aslan <eras@gentoo.org> package.mask:
  Mask =net-mail/dovecot-2.2_beta*

  22 Feb 2013; Dion Moult <moult@gentoo.org> package.mask:
  Remove dev-libs/libole2 mask as removed from tree.

  22 Feb 2013; Dion Moult <moult@gentoo.org> package.mask:
  Remove app-admin/webalizer-xtended mask as removed from tree

  22 Feb 2013; Dion Moult <moult@gentoo.org> package.mask:
  Remove dev-haskell/wash mask as removed from tree.

  21 Feb 2013; Ulrich Müller <ulm@gentoo.org> license_groups:
  Remove Scintilla license (duplicate of HPND) from MISC-FREE group.

  21 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> license_groups:
  Replace pngquant with rwpng license in the MISC-FREE group.

  21 Feb 2013; Justin Lecher <jlec@gentoo.org> package.mask:
  Temporary mask, because compatibility with recent tcl is not proven

  20 Feb 2013; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  www-apache/mod_vhs is gone from tree, remove mask

  20 Feb 2013; Anthony G. Basile <blueness@gentoo.org>
  hardened/linux/uclibc/mips/package.mask:
  Unmask recent versions of util-linux and sysvinit on
  hardened/linux/uclibc/mips

  20 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> license_groups:
  Put pngquant license to MISC-FREE group.

  20 Feb 2013; Julian Ospald <hasufell@gentoo.org> license_groups:
  add TeamViewer license to @EULA

  20 Feb 2013; Maxim Koltsov <maksbotan@gentoo.org> package.mask:
  Unmask sssd-1.9.4-r1

  18 Feb 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  updates/1Q-2013:
  Move ati-drivers-12.6_beta_pre897 to legacy slot

  18 Feb 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Remove ati-drivers-12.4 mask as the package has been dropped.

  18 Feb 2013; Eray Aslan <eras@gentoo.org> package.mask:
  Mask mail-filter/opendkim-2.8.0_beta versions for testing.

  17 Feb 2013; Jeroen Roovers <jer@gentoo.org> package.mask:
  Add bug reference for media-gfx/blender mask explanation.

  17 Feb 2013; Julian Ospald <hasufell@gentoo.org> package.mask:
  remove obsolete games-roguelike/tomenet-100310 p.mask (removed)

  17 Feb 2013; Davide Pesavento <pesa@gentoo.org> package.mask:
  Mask qt-creator beta for testing.

  16 Feb 2013; Julian Ospald <hasufell@gentoo.org> package.mask:
  remove net-misc/gtk-youtube-viewer from p.mask (removed)

  16 Feb 2013; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask new qx11grab because it does not build with libav-0.8

  15 Feb 2013; Rick Farina <zerochaos@gentoo.org> package.mask:
  mask sys-firmware/iwl{3945,4965}-firmware packages have been merged into the sys-kernel/linux-firmware
  package and have no maintainer. No real point in keeping two copies of the firmware in the tree
  removal on 18 March 2013

  15 Feb 2013; Alexis Ballier <aballier@gentoo.org> package.mask:
  mask ffmpeg-1.1 for a different reason as >=0.11; for now this double masks
  it but it will remain masked once the >=0.11 mask is removed

  15 Feb 2013; Alexis Ballier <aballier@gentoo.org> base/package.use.mask:
  Mask media-sound/audacity[ffmpeg], it needs to be fixed upstream to cope with
  new releases of FFmpeg/libav. bug #417869

  14 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> updates/1Q-2013:
  Move rt61-firmware from net-wireless/ to sys-firmware/ category.

  14 Feb 2013; Hans de Graaff <graaff@gentoo.org> package.mask:
  Add ree18-only virtuals to the ruby-enterprise mask.

  13 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> updates/1Q-2013:
  Move atmel-firmware, b43-firmware and b43legacy-firmware from net-wireless/
  to sys-firmware/ category.

  13 Feb 2013; Jeroen Roovers <jer@gentoo.org> license_groups:
  Add AdobeFlash-11.x license.

  13 Feb 2013; Eray Aslan <eras@gentoo.org> package.mask:
  Mask mail-mta/postfix-2.11 and unmask mail-mta/postfix-2.10

  12 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Unmask bluez-firwmare now that license has been fixed wrt #456948 by Daniel
  Westermann-Clark

  12 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> updates/1Q-2013:
  Move bluez-firmware from net-wireless/ to sys-firmware/ category.

  12 Feb 2013; Tim Harder <radhermit@gentoo.org> updates/1Q-2013:
  Rename app-vim/bufferexplorer to app-vim/bufexplorer to follow upstream.

  12 Feb 2013; Tim Harder <radhermit@gentoo.org> updates/1Q-2013:
  Rename app-vim/threesome to app-vim/splice following upstream.

  12 Feb 2013; Hans de Graaff <graaff@gentoo.org> package.mask:
  Use proper email address in entry.

  11 Feb 2013; Julian Ospald <hasufell@gentoo.org> package.mask:
  unmask sci-visualization/paraview, I bumped it

  11 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask cx18-firmware since the files from it are part of the linux-firmware
  package.

  11 Feb 2013; Hans de Graaff <graaff@gentoo.org> package.mask:
  Mask Rails 3.0 and its dependencies due to lack of upstream security support.

  11 Feb 2013; Ole Markus With <olemarkus@gentoo.org> package.mask:
  Removing mask of ezc-*. Packages gone from the tree

  11 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> updates/1Q-2013:
  Move ipw2100-, ipw2200-, zd1201-, zd1211-firmware(s) from net-wireless
  category to sys-firmware category.

  11 Feb 2013; Ben de Groot <yngwin@gentoo.org> arch/sparc/package.use.mask:
  Remove redundant cairo[qt4] use mask (now masked for all versions in
  base/p.use.mask)

  11 Feb 2013; Ben de Groot <yngwin@gentoo.org> base/package.use.mask:
  Adjust cairo[qt4] usemask to cover all versions, since it still leads to
  build errors (bug #454066)

  11 Feb 2013; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Add media-plugins/gst-plugins-ffmpeg-0.10.13_p201211 prereleases to libav
  package.mask (bug #423717).

  10 Feb 2013; Matt Turner <mattst88@gentoo.org> package.mask:
  package.mask net-wireless/at76c503a for removal.

  10 Feb 2013; Rick Farina <zerochaos@gentoo.org> package.mask:
  amend notes for rtl8192su-firmware to note that the new firmware is
  already in linux-firmware

  10 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask net-wireless/rtl8192su-firmware again as it's obsolete with latest
  driver from upstream site which is now using rtl8172fw.bin.

  10 Feb 2013; Rick Farina <zerochaos@gentoo.org> package.mask:
  removing mask on firmware which was inappropriately masked and
  not part of linux-firmware already

  10 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite media-tv/ivtv because it's only for Linux 2.6.25 and oldest udev in
  tree needs at least 2.6.32.60.

  10 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite media-tv/ivtv-firmware wrt #369497 and #446644

  10 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Unmask both zd1201 and zd1211 firmware pkgs as they are not in linux-firmware
  pkg wrt #456638

  10 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask net-wireless/bluez-firmware because of missing or unclear licensing.

  10 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask net-wireless/i2400m-fw because it's part of linux-firmware pkg.

  10 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Move prism54-firmware to it's own mask because of missing license. Unmask
  ipw2100 and ipw2200 firmware pkgs as they are not included in the
  linux-firmware pkg.

  10 Feb 2013; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask packages for cleaning

  10 Feb 2013; Pacho Ramos <pacho@gentoo.org> package.mask:
  Cleanup old mask entries

  10 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask most of separate net-wireless/ firmware pkgs in favour of linux-firmware
  package.

  09 Feb 2013; Andreas K. Huettel <dilfridge@gentoo.org> profiles.desc:
  m68k: remove 10.0 profiles from profiles.desc

  09 Feb 2013; Andreas K. Huettel <dilfridge@gentoo.org> profiles.desc:
  ia64: remove 10.0 profiles from profiles.desc

  09 Feb 2013; Andreas K. Huettel <dilfridge@gentoo.org>
  +default/linux/ia64/10.0/deprecated, profiles.desc:
  Mark ia64 13.0 profiles stable

  09 Feb 2013; Anthony G. Basile <blueness@gentoo.org>
  +hardened/linux/13.0/amd64/make.defaults,
  +hardened/linux/13.0/amd64/no-multilib/make.defaults,
  +hardened/linux/13.0/amd64/no-multilib/package.mask,
  +hardened/linux/13.0/amd64/no-multilib/package.use.mask,
  +hardened/linux/13.0/amd64/no-multilib/parent,
  +hardened/linux/13.0/amd64/no-multilib/selinux/parent,
  +hardened/linux/13.0/amd64/no-multilib/use.mask,
  +hardened/linux/13.0/amd64/package.mask,
  +hardened/linux/13.0/amd64/package.use,
  +hardened/linux/13.0/amd64/package.use.mask,
  +hardened/linux/13.0/amd64/parent, +hardened/linux/13.0/amd64/selinux/parent,
  +hardened/linux/13.0/amd64/use.mask,
  +hardened/linux/13.0/amd64/x32/make.defaults,
  +hardened/linux/13.0/amd64/x32/parent, +hardened/linux/13.0/make.defaults,
  +hardened/linux/13.0/package.mask, +hardened/linux/13.0/package.use.force,
  +hardened/linux/13.0/package.use.mask, +hardened/linux/13.0/packages,
  +hardened/linux/13.0/parent, +hardened/linux/13.0/use.mask,
  +hardened/linux/13.0/x86/make.defaults,
  +hardened/linux/13.0/x86/package.mask,
  +hardened/linux/13.0/x86/package.use.mask, +hardened/linux/13.0/x86/parent,
  +hardened/linux/13.0/x86/selinux/parent, +hardened/linux/13.0/x86/use.mask:
  Add hardened/linux/13.0 for amd64 and x86 for testing

  09 Feb 2013; Andreas K. Huettel <dilfridge@gentoo.org> profiles.desc:
  x86: remove 10.0 profiles from profiles.desc

  09 Feb 2013; Andreas K. Huettel <dilfridge@gentoo.org> profiles.desc:
  s390, sh, sparc: remove 10.0 profiles from profiles.desc

  09 Feb 2013; Andreas K. Huettel <dilfridge@gentoo.org> profiles.desc:
  powerpc: remove 10.0 profiles from profiles.desc

  09 Feb 2013; Andreas K. Huettel <dilfridge@gentoo.org> profiles.desc:
  mips: remove 10.0 profiles from profiles.desc

  09 Feb 2013; Andreas K. Huettel <dilfridge@gentoo.org> profiles.desc:
  hppa: remove 10.0 profiles from profiles.desc

  09 Feb 2013; Andreas K. Huettel <dilfridge@gentoo.org> profiles.desc:
  arm: remove 10.0 profiles from profiles.desc

  09 Feb 2013; Andreas K. Huettel <dilfridge@gentoo.org> profiles.desc:
  amd64: remove 10.0 profiles from profiles.desc

  09 Feb 2013; Andreas K. Huettel <dilfridge@gentoo.org> profiles.desc:
  alpha: remove 10.0 profiles from profiles.desc

  08 Feb 2013; Andreas K. Huettel <dilfridge@gentoo.org> profiles.desc:
  All 13.0 profiles stable as in 10.0, except ia64

  08 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  No more coldplug, hotplug or hotplug-base.

  08 Feb 2013; Jeroen Roovers <jer@gentoo.org> license_groups:
  Fix typo.

  08 Feb 2013; Ryan Hill <dirtyepic@gentoo.org> package.mask:
  Mask dev-libs/openssl-1.0.1d (bug #456108).

  07 Feb 2013; Ulrich Müller <ulm@gentoo.org> license_groups:
  Remove unused long names for Creative Commons licenses.

  07 Feb 2013; Andreas K. Huettel <dilfridge@gentoo.org> profiles.desc:
  13.0 profile stable on hppa

  07 Feb 2013; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add shorter names for Creative Commons licenses.

  07 Feb 2013; Alexis Ballier <aballier@gentoo.org> package.mask:
  unmask karlyriceditor 1.4, its fine now with older ffmpeg

  07 Feb 2013; Matt Turner <mattst88@gentoo.org>
  hardened/linux/uclibc/amd64/use.mask, hardened/linux/uclibc/x86/use.mask:
  Drop sse5 USE flag.

  06 Feb 2013; Davide Pesavento <pesa@gentoo.org> package.mask:
  Mask >=media-sound/karlyriceditor-1.4

  06 Feb 2013; Mike Gilbert <floppym@gentoo.org> package.mask:
  Remove docutils mask.

  05 Feb 2013; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask dev-python/docutils-0.10.

  05 Feb 2013; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add buddy, ipx-utils, minpack, shrimp, and tm-align licenses to MISC-FREE
  group, bugs 451570, 455566, 455568, 455570, 455572, and 455574.

  05 Feb 2013; Jeroen Roovers <jer@gentoo.org> package.mask:
  Unmask www-client/opera-12.14.

  05 Feb 2013; Diego E. Pettenò <flameeyes@gentoo.org> package.mask:
  Mask blender pointing out that we need to rewrite the ebuild and get a new
  patchset.

  04 Feb 2013; Jeroen Roovers <jer@gentoo.org> package.mask:
  Mask www-client/opera-12.14.

  03 Feb 2013; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Add media-plugins/gst-plugins-libav-1.1 prereleases to libav package.mask
  (bug #423717).

  03 Feb 2013; Rick Farina <zerochaos@gentoo.org> license_groups:
  When the hashcat license was added I didn't know to add it to
  license_groups, fixing that oversight.

  03 Feb 2013; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Fix category for mono-tools mask

  02 Feb 2013; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove xboing mask.

  02 Feb 2013; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add mapm-4.9.5, qmail-nelson, Time-modules, and xbatt licenses to
  MISC-FREE group, bugs 452594, 453166, 453004, and 452966.

  02 Feb 2013; Tupone Alfredo <tupone@gentoo.org>
  hardened/linux/uclibc/amd64/package.mask:
  Masked games-strategy/dominions2-demo.

  02 Feb 2013; Kacper Kowalik <xarthisius@gentoo.org> updates/1Q-2013:
  Rename sys-cluster/gsh to sys-cluster/polysh following upstream's change

  02 Feb 2013; Anthony G. Basile <blueness@gentoo.org>
  +hardened/linux/amd64/desktop/deprecated,
  +hardened/linux/amd64/developer/deprecated,
  +hardened/linux/amd64/server/deprecated,
  +hardened/linux/ia64/desktop/deprecated,
  +hardened/linux/ia64/developer/deprecated,
  +hardened/linux/ia64/server/deprecated,
  +hardened/linux/powerpc/ppc32/desktop/deprecated,
  +hardened/linux/powerpc/ppc32/developer/deprecated,
  +hardened/linux/powerpc/ppc32/server/deprecated,
  +hardened/linux/powerpc/ppc64/32bit-userland/desktop/deprecated,
  +hardened/linux/powerpc/ppc64/32bit-userland/developer/deprecated,
  +hardened/linux/powerpc/ppc64/32bit-userland/server/deprecated,
  +hardened/linux/powerpc/ppc64/64bit-userland/desktop/deprecated,
  +hardened/linux/powerpc/ppc64/64bit-userland/developer/deprecated,
  +hardened/linux/powerpc/ppc64/64bit-userland/server/deprecated,
  +hardened/linux/powerpc/ppc64/desktop/deprecated,
  +hardened/linux/powerpc/ppc64/developer/deprecated,
  +hardened/linux/powerpc/ppc64/server/deprecated,
  +hardened/linux/x86/desktop/deprecated,
  +hardened/linux/x86/developer/deprecated,
  +hardened/linux/x86/minimal/deprecated,
  +hardened/linux/x86/server/deprecated:
  Mark all hardened desktop/developer/server profiles as deprecated

  01 Feb 2013; Michał Górny <mgorny@gentoo.org> +desc/abi_x86.desc:
  Describe ABI_X86 flags for multilib.

  01 Feb 2013; Paul Varner <fuzzyray@gentoo.org> package.mask:
  Remove package.mask entry for app-portage/epm

  01 Feb 2013; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Remove obsolete masks on games-roguelike/noegnud-* packages

  01 Feb 2013; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Remove obsolete mask on www-apache/mod_cplusplus

  31 Jan 2013; Justin Lecher <jlec@gentoo.org> package.mask:
  Remove atlas masking after removal

  31 Jan 2013; Rafael G. Martins <rafaelmartins@gentoo.org> package.mask:
  Mask www-client/xxxterm (bug #417555).

  30 Jan 2013; Jeroen Roovers <jer@gentoo.org> package.mask:
  Unmask www-client/opera-12.13 (bug #454654).

  29 Jan 2013; Michał Górny <mgorny@gentoo.org>
  desc/python_single_target.desc, desc/python_targets.desc:
  Remove descriptions for pypy1_8 flags (removed).

  29 Jan 2013; Nirbheek Chauhan <nirbheek@gentoo.org> updates/1Q-2013:
  pkgmove media-fonts/freefont-ttf to media-fonts/freefont

  29 Jan 2013; Justin Lecher <jlec@gentoo.org> updates/1Q-2013:
  SLOT move dev-python/pmw to pyABI slots

  28 Jan 2013; Jeroen Roovers <jer@gentoo.org> package.mask:
  Mask bitchx 1.2 (bug #425634).

  28 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite x11-misc/mkxf86config wrt #220121

  28 Jan 2013; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Mask networkmanager and modemmanager betas.

  28 Jan 2013; Alexandre Rostovtsev <tetromino@gentoo.org> updates/1Q-2013:
  Rename app-cdr/cdemud to app-cdr/cdemu-daemon to follow upstream package and
  executable name.

  28 Jan 2013; Richard Freeman <rich0@gentoo.org> package.mask:
  Unmask mythtv 0.26

  27 Jan 2013; Alexis Ballier <aballier@gentoo.org> desc/fftools.desc:
  Add descriptions for ffescape and fourcc2pixfmt

  27 Jan 2013; Mike Frysinger <vapier@gentoo.org> use.desc:
  Document USE=filecaps.

  27 Jan 2013; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add TermReadKey, nap, and photopc licenses to MISC-FREE group, bugs 450932,
  452014, and 453496.

  27 Jan 2013; Tim Harder <radhermit@gentoo.org> package.mask:
  Mask dev-python/github2 for removal.

  27 Jan 2013; Anthony G. Basile <blueness@gentoo.org>
  hardened/linux/uclibc/mips/package.mask:
  Unmask eudev on hardened/linux/uclibc/mips

  26 Jan 2013; Luca Barbato <lu_zero@gentoo.org> package.mask:
  Remove qemu-user mask, current version provided and the userspace wrappers
  aren't a security issue by themselves from start

  25 Jan 2013; Diego E. Pettenò <flameeyes@gentoo.org> package.mask:
  Mask boost 1.53 betas.

  25 Jan 2013; Julian Ospald <hasufell@gentoo.org> package.mask:
  mask net-misc/gtk-youtube-viewer for removal wrt bug #453580

  24 Jan 2013; Jeroen Roovers <jer@gentoo.org> package.mask:
  Unmask =dev-libs/libnl-3.2.20 (bug #453736).

  24 Jan 2013; Jeroen Roovers <jer@gentoo.org> package.mask:
  Mask broken dev-libs/libnl (bug #453736).

  23 Jan 2013; Richard Freeman <rich0@gentoo.org> package.mask:
  Fix mythweb package name.

  23 Jan 2013; Richard Freeman <rich0@gentoo.org> package.mask:
  Fix date on mythplugins, and mask mythweb for testing.

  23 Jan 2013; Richard Freeman <rich0@gentoo.org> package.mask:
  Add mythplugins mask until mythweb is ready.

  22 Jan 2013; Ralph Sennhauser <sera@gentoo.org> package.mask:
  Mask >=dev-java/gcj-jdk-4.7.0 while coresponding gcc is still masked

  21 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite coldplug, hotplug, hotplug-base and 2.4 kernel module ezusb2131 wrt
  #145809

  21 Jan 2013; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add CFS, keynote, and xvt licenses to MISC-FREE group, bugs 453290, 453292,
  and 452964.

  21 Jan 2013; Andreas K. Huettel <dilfridge@gentoo.org>
  default/linux/make.defaults:
  Re-add USE=dri to default/linux after discussion

  20 Jan 2013; Hans de Graaff <graaff@gentoo.org> arch/amd64/use.mask,
  arch/x86/use.mask, package.mask:
  Mask dev-lang/ruby-enterprise and its use flag.

  20 Jan 2013; Andreas K. Huettel <dilfridge@gentoo.org>
  default/linux/make.defaults:
  Remove setting pppd useflag; it is only used in one place and now defaults to
  on there

  20 Jan 2013; Andreas K. Huettel <dilfridge@gentoo.org>
  releases/make.defaults:
  Remove useflag cups from releases profile settings

  20 Jan 2013; Andreas K. Huettel <dilfridge@gentoo.org>
  targets/desktop/make.defaults:
  Add useflag cups to desktop target settings

  20 Jan 2013; Andreas K. Huettel <dilfridge@gentoo.org>
  default/linux/make.defaults:
  Remove useflag dri from default linux profile settings

  20 Jan 2013; Andreas K. Huettel <dilfridge@gentoo.org>
  targets/desktop/make.defaults:
  Add useflag dri to desktop target settings

  19 Jan 2013; Samuli Suominen <ssuominen@gentoo.org>
  uclibc/arm/2.4/package.mask, uclibc/arm/armeb/2.4/package.mask,
  uclibc/ppc/2.4/package.mask, uclibc/ppc/hardened/2.4/package.mask,
  uclibc/sh/2.4/package.mask, uclibc/x86/2.4/package.mask,
  uclibc/x86/2005.1/2.4/package.mask, uclibc/x86/hardened/2.4/package.mask:
  Remove entries for virtual/pcmcia.

  19 Jan 2013; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add flexmock, tablelist, Flashpix, and netcat licenses to MISC-FREE group,
  bugs 452928, 452924, 450210, and 452342.

  19 Jan 2013; Michał Górny <mgorny@gentoo.org> package.mask:
  Unmask new systemd after fixing the ebuild.

  18 Jan 2013; Andreas K. Huettel <dilfridge@gentoo.org> profiles.desc:
  Add new 13.0 profiles, for now all set to dev

  18 Jan 2013; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask new sys-apps/systemd because of boot issues.

  18 Jan 2013; Michael Pagano <mpagano@gentoo.org> package.mask:
  Mask portpeek for testing

  18 Jan 2013; Kacper Kowalik <xarthisius@gentoo.org> package.mask:
  Restrict mask on sci-astronomy/sextractor so that people can install
  version from science overlay

  18 Jan 2013; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask dev-python/chardet-2.1.1.

  17 Jan 2013; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask packages for cleaning

  17 Jan 2013; Jeroen Roovers <jer@gentoo.org> package.mask:
  Mask =www-client/opera-12.13*.

  17 Jan 2013; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask pysqlite:2 for removal.

  17 Jan 2013; Justin Lecher <jlec@gentoo.org> updates/1Q-2013:
  dev-util/nvidia-cuda-npp is now included in dev-util/nvidia-cuda-toolkit

  16 Jan 2013; Tomáš Chvátal <scarabeus@gentoo.org> package.mask:
  Mask virtual for new libav/ffmpeg.

  16 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Release new libcdio and libcdio-paranoia into ~arch since everything major
  has been fixed.

  16 Jan 2013; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add Clear-BSD license to GPL-COMPATIBLE, bug 416205. Add ngrep license to
  MISC-FREE, bug 452012.

  16 Jan 2013; Sergey Popov <pinkbyte@gentoo.org> updates/4Q-2012,
  +updates/1Q-2013:
  Move latest entry to proper updates/ file

  16 Jan 2013; Sergey Popov <pinkbyte@gentoo.org> updates/4Q-2012:
  Move from media-gfx/opencolorio to media-libs/opencolorio

  16 Jan 2013; Maciej Mrozowski <reavertm@gentoo.org> package.mask:
  mask poppler-0.22 due to API change

  15 Jan 2013; Alexis Ballier <aballier@gentoo.org> package.mask:
  mask latest luatex as it breaks with current texlive

  15 Jan 2013; Michał Górny <mgorny@gentoo.org> package.mask:
  Remove dev-python/sphinx mask after replacing the broken rev with a new one.

  15 Jan 2013; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask migrated dev-python/sphinx due to grammar generation issues.

  15 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask new libcdio temporarily for porting.

  15 Jan 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Roll chromium masks (M26).

  14 Jan 2013; Andreas K. Huettel <dilfridge@gentoo.org> +releases/13.0/eapi,
  +releases/13.0/make.defaults, +releases/13.0/package.mask,
  +releases/13.0/parent:
  Add 13.0 release directory referring to eapi-5-files

  14 Jan 2013; Mike Gilbert <floppym@gentoo.org> package.mask:
  Update google-chrome mask; it is not affected by the masked dependencies.

  14 Jan 2013; Mike Gilbert <floppym@gentoo.org> package.mask:
  Revert last change due to bad dependencies.

  14 Jan 2013; Mike Gilbert <floppym@gentoo.org> package.mask:
  Update chromium masks for chromium-25 beta release.

  13 Jan 2013; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add Old-MIT license to MISC-FREE group.

  13 Jan 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Unmask dev-libs/icu-50.1.1, should be OK for ~arch.

  13 Jan 2013; Pacho Ramos <pacho@gentoo.org>
  targets/desktop/gnome/package.use:
  Set required USE flags as default for merging gnome-base/gnome directly, bug
  #450690 by Richard Wiedenhöft

  13 Jan 2013; Tim Harder <radhermit@gentoo.org> package.mask:
  Mask =mail-client/roundcube-0.9* for testing.

  12 Jan 2013; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add XC license to MISC-FREE group, bug 448274.
  Add mm license to MISC-FREE group.

  12 Jan 2013; Magnus Granberg <zorry@gentoo.org> hardened/linux/use.mask:
  Unmask orc

  12 Jan 2013; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Mask dev-libs/libole2 for removal

  12 Jan 2013; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add libodialog and pngcrush to MISC-FREE group, bugs 449796 and 450310.
  Add alternate and pngnq to MISC-FREE group.

  12 Jan 2013; Hanno Boeck <hanno@gentoo.org> license_groups:
  Add licenses LIBGLOSS and NEWLIB to MISC-FREE (they had issues that have been
  resolved upstream now).

  11 Jan 2013; Sergei Trofimovich <slyfox@gentoo.org> package.mask:
  removed dev-haskell/time mask, as it's gone from tree now

  10 Jan 2013; Davide Pesavento <pesa@gentoo.org> package.mask:
  Remove obsolete net-news/quiterss mask.

  09 Jan 2013; Jeroen Roovers <jer@gentoo.org> package.mask:
  Mask >net-nntp/tin-2.1 (unstable upstream).

  09 Jan 2013; Jeroen Roovers <jer@gentoo.org> package.mask:
  Mask kgcc64-4.7 too.

  09 Jan 2013; Tomáš Chvátal <scarabeus@gentoo.org> package.mask:
  Mask libav-9.1

  08 Jan 2013; Torsten Veller <tove@gentoo.org> package.mask:
  Mask dev-perl/Class-MOP for removal (#350612)

  08 Jan 2013; Jeroen Roovers <jer@gentoo.org> package.mask:
  Remove dev-libs/libnl-3.2.17 mask (bug #450504) now that it is gone.

  08 Jan 2013; Andrey Grozin <grozin@gentoo.org> package.mask:
  Masking >=dev-lisp/gentoo-init-1.0, >=dev-lisp/asdf-2.26, >=dev-lisp/sbcl-1.1.2

  07 Jan 2013; Michał Górny <mgorny@gentoo.org> thirdpartymirrors:
  Fix github mirror to use the regular URI.

  07 Jan 2013; Mike Frysinger <vapier@gentoo.org> profiles.desc:
  Mark s390 profiles stable.

  06 Jan 2013; Justin Bronder <jsbronder@gentoo.org> package.mask:
  Remove net-nntp/sabnzbd mask, fix already released and updated in tree.

  06 Jan 2013; Justin Bronder <jsbronder@gentoo.org> package.mask:
  Masking net-nntp/sabnzbd-0.7.8 pending next release

  06 Jan 2013; Maxim Koltsov <maksbotan@gentoo.org> package.mask:
  Move sssd mask to top of the file, change mask text

  06 Jan 2013; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add mpich2 license to MISC-FREE, bug 449344.

  06 Jan 2013; Jeroen Roovers <jer@gentoo.org> package.mask:
  Mask =dev-libs/libnl-3.2.17 (bug #450504).

  05 Jan 2013; Sergei Trofimovich <slyfox@gentoo.org> package.mask:
  masked cvsps-3 for testing

  05 Jan 2013; Andreas K. Huettel <dilfridge@gentoo.org> thirdpartymirrors:
  Remove ftp.caliu.cat from kde mirrors since it times out

  05 Jan 2013; Hanno Boeck <hanno@gentoo.org> license_groups:
  Add DES license to MSIC-FREE.

  04 Jan 2013; Raúl Porcel <armin76@gentoo.org>
  -default/linux/arm/10.0/package.use.mask:
  Remove p.use.mask from wrong place

  04 Jan 2013; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add gd to MISC-FREE license group, bug 450244.
  Add xboing to MISC-FREE license group, bug 448274.

  04 Jan 2013; Dirkjan Ochtman <djc@gentoo.org> package.mask:
  Revert mod_python mask (bug 343663).

  04 Jan 2013; Eray Aslan <eras@gentoo.org> package.mask:
  Remove mask for mail-client/pine as it is no longer in the tree

  04 Jan 2013; Ole Markus With <olemarkus@gentoo.org> package.mask:
  Masking ezc-* for removal

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

  03 Jan 2013; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add new license group MISC-FREE-DOCS for free documentation and other
  non-software. Move font licenses from MISC-FREE to it.
  Add x2x to MISC-FREE, bug 449944; add Unicode_Fonts_for_Ancient_Scripts to
  MISC-FREE-DOCS license group, bug 449152. Remove as-is from MISC-FREE; most
  free packages using it were moved to more specific licenses, bug 436214.

  03 Jan 2013; Raúl Porcel <armin76@gentoo.org>
  +default/linux/s390/10.0/s390x/parent, profiles.desc:
  Add s390x server-less profile

  02 Jan 2013; Anthony G. Basile <blueness@gentoo.org> profiles.desc:
  Add hardened/linux/arm/armv7a to profiles.desc list

  02 Jan 2013; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add Openwall to MISC-FREE license group, bug 449832.

  02 Jan 2013; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mention USE_PYTHON and PYTHON_TARGETS in the pypy-1.8 mask.

  02 Jan 2013; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask pypy-1.8 for removal.

  01 Jan 2013; Ulrich Müller <ulm@gentoo.org> license_groups:
  Remove jaxen and saxpath (JDOM duplicates) from MISC-FREE license group.

  01 Jan 2013; Sergei Trofimovich <slyfox@gentoo.org> package.mask:
  masked dev-haskell/wash for removal

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

  For previous entries, please see ChangeLog-2012.