summaryrefslogtreecommitdiff
blob: 267da6d52dfbffdebb18c71491bdcc040f512a88 (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
# ChangeLog for profile directory
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10230 2015/08/08 09:19:40 polynomial-c 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!

  08 Aug 2015; Lars Wendler <polynomial-c@gentoo.org> package.mask:
  Removed =sys-libs/tdb-1.3.7 mask.

  07 Aug 2015; Lars Wendler <polynomial-c@gentoo.org> package.mask:
  Masked =sys-libs/tdb-1.3.7 due to build system problems (bug #556920).

  06 Aug 2015; Michał Górny <mgorny@gentoo.org> desc/linguas.desc:
  Add Paraguayan (Guarani) locale for LibreOffice.
  https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/191 by a17r.

  05 Aug 2015; Patrice Clement <monsieurp@gentoo.org> updates/3Q-2015:
  Add pkgmove entry for biojava: moved from dev-java/ to sci-biology/.

  05 Aug 2015; Michał Górny <mgorny@gentoo.org> use.desc:
  Jabber is gone, long live XMPP!

  04 Aug 2015; Johannes Huber <johu@gentoo.org> package.mask:
  Remove obsolete mask app-admin/system-config-printer-{common,gnome}. Packages
  removed, bug #553128.

  04 Aug 2015; Mikle Kolyada <zlogene@gentoo.org> package.mask:
  Mask dev-perl/gtk2-fu for removal.

  04 Aug 2015; Justin Lecher <jlec@gentoo.org> package.mask:
  Drop unnecessary masks

  03 Aug 2015; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask sys-apps/systemd-ui for removal.

  02 Aug 2015; Patrice Clement <monsieurp@gentoo.org> package.mask:
  Mask www-servers/skunkweb for removal.

  02 Aug 2015; Sergei Trofimovich <slyfox@gentoo.org> package.mask:
  Mask dev-haskell/deepseq for removal.

  02 Aug 2015; Pacho Ramos <pacho@gentoo.org>
  arch/sparc/package.use.stable.mask:
  Update masks

  01 Aug 2015; Patrice Clement <monsieurp@gentoo.org> package.mask:
  Mask dev-java/antenna for removal.

  30 Jul 2015; Patrice Clement <monsieurp@gentoo.org> package.mask:
  Mask dev-java/jjtraveler for removal.

  30 Jul 2015; James Le Cuirot <chewi@gentoo.org> package.mask:
  dev-java/cocoon is holding back the removal of Java 6 and upstream is on life
  support. Removal in 30 days. See bug #423761.

  29 Jul 2015; James Le Cuirot <chewi@gentoo.org> package.mask:
  dev-java/soap is fixable but it and its related packages are all dead
  upstream. Removal in 30 days. See bug #556250.

  28 Jul 2015; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Roll dev channel mask for chromium-46.

  28 Jul 2015; Patrick Lauer <patrick@gentoo.org> package.mask:
  Add django-oauth-plus to django mask

  28 Jul 2015; Patrick Lauer <patrick@gentoo.org> package.mask:
  Add south to django mask

  27 Jul 2015; Justin Lecher <jlec@gentoo.org> package.mask:
  Mask unsupport and vulnerable django version

  27 Jul 2015; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Unmask Boost 1.57

  27 Jul 2015; Fabian Groffen <grobian@gentoo.org> package.mask:
  Drop Exim RC masks.

  26 Jul 2015; Michał Górny <mgorny@gentoo.org>
  targets/desktop/kde/package.use, targets/desktop/plasma/package.use:
  Fix plasma5 vs kde4 conflicts.
  https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/183 by a17r.

  26 Jul 2015; Ryan Hill <rhill@gentoo.org> desc/linguas.desc:
  Add a few locales from poedit.

  26 Jul 2015; Johannes Huber <johu@gentoo.org> package.mask:
  Remove obsolete mask for app-portage/kportagetray. 

  26 Jul 2015; Pacho Ramos <pacho@gentoo.org> base/package.use:
  Set here proper defaults for python-single-r1 consumers in profiles instead
  of in ebuilds (#555930 by mgorny)

  25 Jul 2015; Sebastian Pipping <sping@gentoo.org> package.mask:
  Remove www-apps/wordpress removal mask, ebuilds removed

  25 Jul 2015; Michał Górny <mgorny@gentoo.org> updates/3Q-2015:
  Slotmove for dev-util/kdevelop-qmake.
  https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/170 by a17r.

  25 Jul 2015; Michał Górny <mgorny@gentoo.org> updates/3Q-2015:
  Add slotmove for dev-util/kdevelop-pg-qt.
  https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/169 by a17r.

  23 Jul 2015; Pacho Ramos <pacho@gentoo.org>
  arch/powerpc/ppc32/package.use.stable.mask:
  Update package.use.stable.mask

  23 Jul 2015; Johannes Huber <johu@gentoo.org> base/package.mask,
  features/selinux/package.mask, targets/systemd/package.mask:
  Mask app-admin/calamares for non systemd profiles.

  23 Jul 2015; Davide Pesavento <pesa@gentoo.org> package.mask:
  Mask new version of qtwebkit:4 from 2.3 upstream branch.

  21 Jul 2015; Ian Delaney <idella4@gentoo.org> package.mask:
  Mask roccat-tools-3.5.0-r1 until deps satisfy

  21 Jul 2015; Ian Delaney <idella4@gentoo.org> package.mask:
  Remove entry of dev-python/gevent-zeromq matching removal from portage

  20 Jul 2015; Jauhien Piatlicki <jauhien@gentoo.org> package.mask:
  Remove dev-util/ext4_utils and dev-util/libsparse mask, as they were removed
  from the tree

  20 Jul 2015; Ben de Groot <yngwin@gentoo.org> package.mask:
  Mask media-sound/audacity-2.1.1 WIP (bug #524242)

  20 Jul 2015; Ben de Groot <yngwin@gentoo.org>
  arch/powerpc/ppc32/package.use.mask, arch/powerpc/ppc64/package.use.mask,
  base/package.use.mask:
  Adjust media-sound/audacity package.use.masks for upcoming version bump

  19 Jul 2015; James Le Cuirot <chewi@gentoo.org> package.mask:
  Remove dev-java/itext:5 mask as bug #475552 now looks good.

  19 Jul 2015; James Le Cuirot <chewi@gentoo.org> package.mask:
  app-eselect/eselect-ecj has been removed.

  18 Jul 2015; Fabian Groffen <grobian@gentoo.org> package.mask:
  Extend Exim 4.86 RC mask

  17 Jul 2015; Thomas Beierlein <tomjbe@gentoo.org> package.mask:
  Dropped old mask. Got enough time for testing

  16 Jul 2015; Ian Stakenvicius (_AxS_) <axs@gentoo.org> package.mask:
  remove old spidermonkey-1.8.7 mask as ebuild removed, mask thunderbird-24 as
  its not supported.

  15 Jul 2015; Patrice Clement <monsieurp@gentoo.org> package.mask:
  Mask dev-java/exolab{core,tools} for removal.

  15 Jul 2015; Patrice Clement <monsieurp@gentoo.org> package.mask:
  Mask dev-java/burlap and dev-java/caucho-services for removal.

  13 Jul 2015; Pacho Ramos <pacho@gentoo.org> use.desc:
  sqlite3 USE is not used anymore (#363805)

  13 Jul 2015; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Mask upcoming Boost 1.58

  13 Jul 2015; Michał Górny <mgorny@gentoo.org> desc/nginx_modules_http.desc:
  Describe nginx_modules_http_memc. Part of version bump,
  https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/156 by
  jbergstroem.

  12 Jul 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove obsolete lcsm:0 mask

  12 Jul 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove obsolete perl-core masks

  12 Jul 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove obsolete mask for removed Perl virtuals CGI, Module-Build, and
  Module-Pluggable

  12 Jul 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Unmask Perl 5.22

  12 Jul 2015; Jason Zaman <perfinion@gentoo.org> license_groups:
  Add MicroChip-SDCC license to BINARY-REDISTRIBUTABLE

  11 Jul 2015; Andreas K. Huettel <dilfridge@gentoo.org> updates/3Q-2015:
  dev-perl/locale-maketext-lexicon just became dev-perl/Locale-Maketext-Lexicon

  10 Jul 2015; William Hubbs <williamh@gentoo.org> package.mask:
  unmask udev-222 for bug #554408

  10 Jul 2015; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Mask dev-lang/nacl-toolchain-newlib for removal, bug #543576 by vapier.

  10 Jul 2015; Patrice Clement <monsieurp@gentoo.org> package.mask:
  Mask dev-java/mckoi for removal.

  10 Jul 2015; Patrick Lauer <patrick@gentoo.org> package.mask:
  Mask not-building udev release #554408

  10 Jul 2015; Mike Gilbert <floppym@gentoo.org> package.mask:
  Unmask systemd/udev 222 mask and virtual/libgudev-230.

  09 Jul 2015; William Hubbs <williamh@gentoo.org> package.mask:
  update udev mask for bug #552036

  09 Jul 2015; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask sys-apps/systemd-222.

  07 Jul 2015; Patrice Clement <monsieurp@gentoo.org> package.mask:
  Mask dev-util/fujaba for removal.

  06 Jul 2015; Patrice Clement <monsieurp@gentoo.org> package.mask:
  Mask app-arch/dczip for removal.

  06 Jul 2015; Hans de Graaff <graaff@gentoo.org> package.mask:
  Fix category in mask.

  05 Jul 2015; Patrice Clement <monsieurp@gentoo.org> package.mask:
  Mask net-p2p/frostwire for removal.

  05 Jul 2015; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Add bouncy-castle-java to jruby mask.

  05 Jul 2015; Hans de Graaff <graaff@gentoo.org> package.mask:
  Mask old slot of dev-ruby/dotenv for removal, fixing bug 553402.

  05 Jul 2015; Hans de Graaff <graaff@gentoo.org> package.mask:
  Remove mask for removed www-servers/gorg.

  04 Jul 2015; Anthony G. Basile <blueness@gentoo.org> package.mask:
  Remove mask on sys-apps/getent since its off the tree.

  04 Jul 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Unmask virtual/perl-Unicode-Collate since we now have a corresponding
  perl-core package

  04 Jul 2015; Andreas K. Huettel <dilfridge@gentoo.org> +updates/3Q-2015:
  Fix capitalization of dev-perl/inline-files

  04 Jul 2015; Michael Orlitzky <mjo@gentoo.org> package.mask:
  Mask sci-biology/flower for removal in 30 days.

  02 Jul 2015; Patrice Clement <monsieurp@gentoo.org> package.mask:
  Clean up two old entries.

  02 Jul 2015; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Remove gpe-{base,utils} mask.

  02 Jul 2015; Manuel Rüger <mrueg@gentoo.org> categories:
  Remove gpe-{base,utils} from categories.

  02 Jul 2015; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Cleanup mask for dev-lang/rubinius-1*.

  01 Jul 2015; Mike Pagano <mpagano@gentoo.org> package.mask:
  Remove incorrect mask

  01 Jul 2015; Johannes Huber <johu@gentoo.org>
  targets/desktop/kde/package.use, targets/desktop/plasma/package.use:
  Add designer USE flag to media-libs/phonon, bug #550952.

  01 Jul 2015; Michael Palimaka <kensington@gentoo.org>
  targets/desktop/plasma/package.use:
  Avoid kde-apps/kdesu and kde-plasma/kde-cli-tools blockers wrt bug #553504.

  01 Jul 2015; Patrick Lauer <patrick@gentoo.org> package.mask:
  Mask kernel versions that are not actually the version they claim to be
  #553670

  28 Jun 2015; Fabian Groffen <grobian@gentoo.org> package.mask:
  Extend Exim 4.86 RC mask

  26 Jun 2015; Johannes Huber <johu@gentoo.org> package.mask:
  Mask app-portage/kportagetray for removal

  25 Jun 2015; Johannes Huber <johu@gentoo.org> package.mask:
  Remove KDE Plasma 5.3.1 mask for wider testing.

  25 Jun 2015; Mike Gilbert <floppym@gentoo.org> desc/grub_platforms.desc:
  Add uboot platform.

  24 Jun 2015; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask old splitted system-config-printer versions for removal

  22 Jun 2015; Fabian Groffen <grobian@gentoo.org> package.mask:
  Extend Exim 4.86 RC mask

  22 Jun 2015; Patrice Clement <monsieurp@gentoo.org> package.mask:
  Mask dev-java/mockmaker.

  21 Jun 2015; Ulrich Müller <ulm@gentoo.org> license_groups:
  Move wxWinLL-3.1 from OSI-APPROVED to MISC-FREE; it was erroneously added to
  the former group in revision 1.63. Delete wxWinLL-3 from MISC-FREE, as it is
  already listed in OSI-APPROVED.

  21 Jun 2015; Pacho Ramos <pacho@gentoo.org> arch/sparc/package.use.mask:
  Drop unneeded use.mask

  20 Jun 2015; James Le Cuirot <chewi@gentoo.org> package.mask:
  Mask app-eselect/eselect-ecj.

  20 Jun 2015; James Le Cuirot <chewi@gentoo.org> use.desc:
  Remove unused java6 flag.

  20 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add a dummy Test-use-ok to the Perl 5.22 package mask

  20 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add a dummy Test-Tester to the Perl 5.22 package mask

  20 Jun 2015; Ulrich Müller <ulm@gentoo.org> license_groups:
  Remove unused sun-bcla-java-vm license from EULA group.

  19 Jun 2015; <grknight@gentoo.org> package.mask:
  The Cyphertite backup service is closing as of August 18th, 2015.
  app-backup/cyphertite masked for removal in 30 days. Bug 552578

  19 Jun 2015; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask virtual/libgudev-230 and related providers for bug 552036.

  18 Jun 2015; Johannes Huber <johu@gentoo.org> package.mask:
  Update KDE Plasma 5.3.1 mask.

  18 Jun 2015; NP-Hardass <NP-Hardass@gentoo.org> package.mask:
  Remove mask for =net-misc/teamviewer-10.0.36281 as it is no longer in the
  tree

  16 Jun 2015; Jauhien Piatlicki <jauhien@gentoo.org> package.mask:
  Masked dev-util/ext4_utils and dev-util/libsparse for removal

  15 Jun 2015; Fabian Groffen <grobian@gentoo.org> package.mask:
  Extend Exim 4.86 RC mask

  14 Jun 2015; Patrice Clement <monsieurp@gentoo.org> package.mask:
  Masked dev-java/aspecktwerkz for removal.

  14 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask obsolete Perl virtuals for removal

  14 Jun 2015; Patrick Lauer <patrick@gentoo.org> package.mask:
  Mask broken udev-init-scripts #551724

  13 Jun 2015; Mikle Kolyada <zlogene@gentoo.org> package.mask:
  Fix perl-mask date

  13 Jun 2015; Pacho Ramos <pacho@gentoo.org> arch/ia64/package.use.mask,
  arch/sparc/package.use.mask:
  package.use.mask net-misc/spice-gtk webdav (#513108)

  13 Jun 2015; Pacho Ramos <pacho@gentoo.org> arch/ia64/package.use.mask,
  arch/sparc/package.use.mask:
  package.use.mask net-misc/spice-gtk smartcard (#513108)

  13 Jun 2015; Ole Markus With <olemarkus@gentoo.org> package.mask:
  Add =virtual/httpd-php to package.mask

  13 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> updates/2Q-2015:
  Move perl-core/Module-Pluggable to dev-perl

  13 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> updates/2Q-2015:
  Move perl-core/Module-Build to dev-perl

  13 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> updates/2Q-2015:
  Move perl-core/CGI to dev-perl

  13 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Unicode::Collate to Perl 5.22 mask

  13 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  (Semi-)Lastrite unused perl-core packages

  13 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove obsolete Perl 5.18 mask

  13 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove obsolete Perl 5.20.1 mask

  13 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add threads::shared to Perl 5.22 mask

  13 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add threads to Perl 5.22 mask

  13 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add parent to Perl 5.22 mask

  13 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add libnet to Perl 5.22 mask

  13 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add if to Perl 5.22 mask

  13 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add bignum to Perl 5.22 mask

  13 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add autodie to Perl 5.22 mask

  13 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add XSLoader to Perl 5.22 mask

  12 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Time::Piece to Perl 5.22 mask

  12 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Text::ParseWords to Perl 5.22 mask

  12 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Text::Balanced to Perl 5.22 mask

  12 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Test::Simple to Perl 5.22 mask

  12 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Test::Harness to Perl 5.22 mask

  12 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Term::ReadLine to Perl 5.22 mask

  12 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Term::ANSIColor to Perl 5.22 mask

  12 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Storable to Perl 5.22 mask

  12 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Socket to Perl 5.22 mask

  12 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Scalar::List::Utils to Perl 5.22 mask

  12 Jun 2015; Ole Markus With <olemarkus@gentoo.org> package.mask:
  Mask pre release versions of PHP 7

  12 Jun 2015; William Hubbs <williamh@gentoo.org> package.mask:
  udev-220-r2 builds again, so unmask it, thanks to poly-c for pointing out the
  missing patch.

  12 Jun 2015; William Hubbs <williamh@gentoo.org> package.mask:
  Mask udev-220-r2 temporarily while waiting for response about missing patch
  on bug #551808

  11 Jun 2015; Pacho Ramos <pacho@gentoo.org>
  arch/alpha/package.use.stable.mask:
  update stable masks

  10 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Safe to Perl 5.22 mask

  10 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Pod::Simple to Perl 5.22 mask

  10 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Pod::Parser to Perl 5.22 mask

  10 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Pod::Escapes to Perl 5.22 mask

  10 Jun 2015; Pacho Ramos <pacho@gentoo.org>
  arch/powerpc/package.use.stable.mask:
  Update package.use.stable.mask

  10 Jun 2015; Michael Haubenwallner <haubi@gentoo.org> arch.list,
  profiles.desc:
  add arch x64-cygwin; add profiles.desc prefix/windows/cygwin/2.0/x86,x64

  10 Jun 2015; Mike Gilbert <floppym@gentoo.org> targets/desktop/package.use:
  Enable dev-libs/libgudev[introspection]

  10 Jun 2015; Mike Gilbert <floppym@gentoo.org>
  targets/systemd/package.use.mask:
  Mask dev-libs/libgudev[static-libs]

  10 Jun 2015; Gilles Dartiguelongue <eva@gentoo.org> package.mask:
  Drop Gnome 3.16 mask.

  09 Jun 2015; Gilles Dartiguelongue <eva@gentoo.org> base/package.use.force,
  base/package.use.mask:
  Add package.use tweaks for net-libs/webkit-gtk-2.8.

  09 Jun 2015; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Fix cogl mask, thanks to Gilles for noticing

  09 Jun 2015; Hans de Graaff <graaff@gentoo.org> updates/2Q-2015:
  Move dev-ruby/temple versions into the correct slot.

  09 Jun 2015; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Fix gnome-3.16 overmasking, thanks to floppym for noticing

  08 Jun 2015; Gilles Dartiguelongue <eva@gentoo.org> updates/2Q-2015:
  Slot moves for phodav.

  08 Jun 2015; Gilles Dartiguelongue <eva@gentoo.org> package.mask:
  Add mask for Gnome 3.16.

  08 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Perl::OSType to Perl 5.22 mask

  08 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Module::Metadata to Perl 5.22 mask

  08 Jun 2015; Pacho Ramos <pacho@gentoo.org>
  arch/powerpc/package.use.stable.mask:
  Update package.use.stable.mask to try to move more gnome-mm stuff to testing
  in less common arches

  08 Jun 2015; Aaron W. Swenson <titanofold@gentoo.org> updates/2Q-2015:
  Move dev-db/pygresql to dev-python/pygresql as it is a Python specifc driver.

  08 Jun 2015; Fabian Groffen <grobian@gentoo.org> package.mask:
  Mask upcoming Exim 4.86 RC1

  07 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Module::Load::Conditional to Perl 5.22 mask

  07 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Math::BigRat to Perl 5.22 mask

  07 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Math::BigInt to Perl 5.22 mask

  07 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add MIME::Base64 to Perl 5.22 mask

  07 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Locale::Maketext to Perl 5.22 mask

  07 Jun 2015; Pacho Ramos <pacho@gentoo.org>
  arch/sparc/package.use.stable.mask:
  Update package.use.stable.mask for arches not doing gnome stabilizations

  06 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add JSON::PP to Perl 5.22 mask

  06 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add IO::Socket::IP to Perl 5.22 mask

  06 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add IO::Compress to Perl 5.22 mask

  06 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add IO to Perl 5.22 mask

  06 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add HTTP::Tiny to Perl 5.22 mask

  06 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Getopt::Long to Perl 5.22 mask

  05 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Filter::Simple to Perl 5.22 mask

  05 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add File::Spec to Perl 5.22 mask

  05 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add ExtUtils::ParseXS to Perl 5.22 mask

  05 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add ExtUtils::MakeMaker to Perl 5.22 mask

  04 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add ExtUtils::Install to Perl 5.22 mask

  04 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add ExtUtils::Command to Perl 5.22 mask

  04 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add ExtUtils::CBuilder to Perl 5.22 mask

  04 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Exporter to Perl 5.22 mask

  04 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Digest::SHA to Perl 5.22 mask

  04 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Digest::MD5 to Perl 5.22 mask

  04 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Devel::PPPort to Perl 5.22 mask

  04 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Data::Dumper to Perl 5.22 mask

  04 Jun 2015; Michał Górny <mgorny@gentoo.org> package.mask:
  Extend the PyPy 2.6.0 mask to the binary package and virtual.

  04 Jun 2015; Michael Palimaka <kensington@gentoo.org> updates/2Q-2015:
  Remove package included by accident.

  04 Jun 2015; Michael Palimaka <kensington@gentoo.org>
  arch/nios2/package.use.mask, targets/desktop/kde/package.use,
  targets/desktop/plasma/package.use:
  Move various kde-base packages to kde-apps.

  04 Jun 2015; Michael Palimaka <kensington@gentoo.org> updates/2Q-2015:
  Move various kde-base packages to kde-apps.

  04 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add DB_File to Perl 5.22 mask

  04 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Compress::Raw::Zlib to Perl 5.22 mask

  04 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Compress::Raw::Bzip2 to Perl 5.22 mask

  04 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Carp to Perl 5.22 mask

  04 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add CPAN::Meta::Requirements to Perl 5.22 mask

  04 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add CPAN::Meta to Perl 5.22 mask

  04 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add CPAN to Perl 5.22 mask

  04 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add B::Debug to Perl 5.22 mask

  04 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add Attribute::Handlers to Perl 5.22 mask

  04 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Start with Perl version bump, mask work in progress

  04 Jun 2015; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask new PyPy for testing & binpkg build.

  04 Jun 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask Perl 5.20.1 for removal.

  04 Jun 2015; Michael Palimaka <kensington@gentoo.org> categories:
  Introduce new kde-apps category.

  04 Jun 2015; Hans de Graaff <graaff@gentoo.org> package.mask:
  Remove masked for removed ruby packages.

  04 Jun 2015; Jeroen Roovers <jer@gentoo.org> thirdpartymirrors:
  Remove two more sourceforge.net mirrors.

  04 Jun 2015; Jeroen Roovers <jer@gentoo.org> thirdpartymirrors:
  Remove ignum.dl.sourceforge.net.

  02 Jun 2015; Pacho Ramos <pacho@gentoo.org> arch/arm/package.use.stable.mask,
  arch/powerpc/package.use.stable.mask:
  Update use.stable.masks due to missing keywords

  02 Jun 2015; Pacho Ramos <pacho@gentoo.org>
  arch/powerpc/ppc32/package.use.mask:
  Update use.masks due to missing keywords

  02 Jun 2015; Michael Palimaka <kensington@gentoo.org> thirdpartymirrors:
  Remove dead KDE mirror.

  02 Jun 2015; Ulrich Müller <ulm@gentoo.org>
  arch/amd64/no-multilib/package.mask, arch/amd64/use.mask,
  base/package.use.force, default/linux/uclibc/amd64/package.mask,
  default/linux/uclibc/use.mask, default/linux/use.mask, embedded/use.mask,
  features/64bit-native/package.mask, features/selinux/use.mask,
  hardened/linux/amd64/no-multilib/package.mask,
  hardened/linux/musl/amd64/package.mask, hardened/linux/musl/use.mask,
  hardened/linux/use.mask, prefix/aix/use.mask, prefix/bsd/use.mask,
  prefix/darwin/use.mask, prefix/hpux/use.mask, prefix/mint/use.mask,
  prefix/sunos/use.mask, prefix/windows/interix/use.mask,
  prefix/windows/winnt/use.mask, targets/desktop/package.use, uclibc/use.mask:
  Remove various masks related to emul-linux* from subprofiles.

  02 Jun 2015; Ulrich Müller <ulm@gentoo.org> package.mask:
  Drop mask for dev-tex/mh after package removal.

  01 Jun 2015; Michael Palimaka <kensington@gentoo.org> profiles.desc:
  Introduce new profile for KDE Plasma 5.

  01 Jun 2015; Michał Górny <mgorny@gentoo.org> package.mask:
  Replace lastrite mask of emul-linux-x86 with informatory mask.

  01 Jun 2015; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Roll dev channel mask for chromium-45.

  31 May 2015; Johannes Huber <johu@gentoo.org>
  default/linux/amd64/package.use.mask, package.mask:
  Mask KDE Plasma 5.3.1 for testing.

  31 May 2015; Jason Zaman <perfinion@gentoo.org> use.desc:
  update debug url to wiki, bug 550874

  31 May 2015; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Bump lightdm mask to 1.15

  29 May 2015; Ulrich Müller <ulm@gentoo.org> license_groups:
  The HPND and IJG licenses have been approved by the FSF. Add HPND to the
  GPL-COMPATIBLE group; move IJG from the MISC-FREE to the GPL-COMPATIBLE
  group.

  29 May 2015; Michael Haubenwallner <haubi@gentoo.org> base/make.defaults,
  base/use.mask, prefix/windows/cygwin/make.defaults,
  prefix/windows/interix/make.defaults, prefix/windows/use.force,
  prefix/windows/use.mask, prefix/windows/winnt/make.defaults:
  Cygwin,Interix are pure ELIBC values, KERNEL is Winnt (bug#544518)

  28 May 2015; Andreas K. Hüttel <dilfridge@gentoo.org> package.mask:
  Improve lcms:0 mask message

  28 May 2015; Mike Gilbert <floppym@gentoo.org> package.mask:
  Unmask dev-lang/python-2.7.10.

  28 May 2015; Lars Wendler <polynomial-c@gentoo.org> package.mask:
  Masked =dev-lang/python-2.7.10 until bug #550632 is resolved.

  27 May 2015; Matthias Maier <tamiko@gentoo.org> package.mask:
  mask lcms:0 for removal, bug #526642

  26 May 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Clarify mask message

  26 May 2015; Michał Górny <mgorny@gentoo.org> package.mask:
  Clean up after removing some lastrited packages.

  25 May 2015; Hans de Graaff <graaff@gentoo.org> package.mask:
  Mask gorg for removal.

  25 May 2015; Alexandre Rostovtsev <tetromino@gentoo.org>
  targets/desktop/gnome/package.use:
  Enable mesa[gles2] by default for gnome, needed for cogl[gles2] which is
  needed for mutter.

  24 May 2015; Patrice Clement <monsieurp@gentoo.org> package.mask:
  Mask dev-java/excalibur-logger for removal.

  24 May 2015; Michael Palimaka <kensington@gentoo.org>
  targets/desktop/plasma/package.use:
  Avoid kde-apps/kde4-l10n blockers with Plasma 5.

  23 May 2015; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Cleanup unneeded masks.

  23 May 2015; Hans de Graaff <graaff@gentoo.org> package.mask:
  Remove dev-ruby/json_pure mask now that package is removed.

  20 May 2015; Jeroen Roovers <jer@gentoo.org> desc/linguas.desc:
  _The_ Netherlands.

  20 May 2015; Jeroen Roovers <jer@gentoo.org> desc/linguas.desc:
  Add sa, de_1901, de_CH. Sort.

  19 May 2015; James Le Cuirot <chewi@gentoo.org> package.mask:
  dev-java/classworlds, dev-java/diablo-jdk, and dev-java/diablo-jre-bin have
  been removed. I haven't forgotten about emul-linux-x86-java but not quite
  ready to remove it yet.

  18 May 2015; Justin Lecher <jlec@gentoo.org> desc/linguas.desc:
  Add locale used by scribus

  18 May 2015; Zac Medico <zmedico@gentoo.org> categories:
  Add dev-go category.

  17 May 2015; Markos Chandras <hwoarang@gentoo.org> desc/linguas.desc:
  Add tt_RU locale for the Tatar language locale for Russia. It's used by
  x11-misc/pcmanfm

  17 May 2015; Ben de Groot <yngwin@gentoo.org>
  +arch/powerpc/ppc32/package.mask, arch/powerpc/ppc32/use.mask:
  Fix Qt5 mask for ppc

  15 May 2015; Pacho Ramos <pacho@gentoo.org> arch/powerpc/use.stable.mask:
  Update use.stable.mask

  15 May 2015; Pacho Ramos <pacho@gentoo.org>
  arch/powerpc/package.use.stable.mask:
  package.use.stable.mask due to missing keywords

  15 May 2015; Pacho Ramos <pacho@gentoo.org> base/package.use.stable.mask:
  package.use.stable.mask ffmpeg for vice

  14 May 2015; Anthony G. Basile <blueness@gentoo.org> package.mask:
  No longer required by any packages in the tree. Maksed for removal in 30
  days.

  13 May 2015; Pacho Ramos <pacho@gentoo.org> base/package.use.stable.mask:
  texinfo-5 cannot be stabilized yet for gnat-gcc-4.6*

  13 May 2015; Sebastian Pipping <sping@gentoo.org> license_groups:
  Add just-added licensed AGPL-3+ to @GPL-COMPATIBLE and @OSI-APPROVED (where
  AGPL-3 is, already)

  13 May 2015; Patrice Clement <monsieurp@gentoo.org> package.mask:
  dev-java/xt masked for removal in 30 days.

  13 May 2015; Ian Delaney <idella4@gentoo.org> package.mask:
  dev-python/gevent-zeromq masked for removal in 30 days

  13 May 2015; Hans de Graaff <graaff@gentoo.org> updates/2Q-2015:
  Move dev-ruby/vcr-2.9.3 into SLOT 2.

  12 May 2015; Michael Palimaka <kensington@gentoo.org>
  targets/desktop/plasma/package.use:
  Avoid net-libs/libkpeople blockers with KF5.

  10 May 2015; Mike Gilbert <floppym@gentoo.org> package.mask:
  Also mask open-vm-tools-kmod snapshots.

  10 May 2015; Aaron Bauman <bman@gentoo.org> profiles/package.mask:
  Remove net-misc/gns3 mask following tree removal

  09 May 2015; Ben de Groot <yngwin@gentoo.org> desc/linguas.desc:
  Add doi and syc locales

  08 May 2015; Ulrich Müller <ulm@gentoo.org> license_groups:
  Fix typo in name of Nokia-Qt-LGPL-Exception-1.1 license.

  08 May 2015; Ulrich Müller <ulm@gentoo.org> license_groups:
  Remove unused licenses.

  07 May 2015; Pacho Ramos <pacho@gentoo.org>
  targets/desktop/gnome/package.use:
  Some more defaults needed by mutter for being able to 'emerge gnome'
  (#547300)

  07 May 2015; Pacho Ramos <pacho@gentoo.org>
  targets/desktop/gnome/make.defaults:
  Enable 'tracker' by default (#547302), drop 'socialweb' as it's going to be
  removed

  07 May 2015; Michael Palimaka <kensington@gentoo.org>
  targets/desktop/plasma/package.use:
  Avoid sys-auth/polkit-kde-agent blockers with Plasma 5.

  07 May 2015; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask open-vm-tools dev snapshots.

  06 May 2015; Justin Lecher <jlec@gentoo.org> package.mask:
  Remove obsolete mask for virtual/python-cffi

  05 May 2015; Justin Lecher <jlec@gentoo.org> base/package.use.stable.mask:
  Mask USE=qt5 for stable app-office/texmaker

  05 May 2015; Ben de Groot <yngwin@gentoo.org> package.mask:
  Removing x11-themes/gtk-engines-qtcurve (bug #544406)

  05 May 2015; Ian Delaney <idella4@gentoo.org> package.mask:
  remove entry for mask / removal of sci-geosciences/LatLongUTMconversion

  03 May 2015; Mikle Kolyada <zlogene@gentoo.org> package.mask:
  Drop obsolete perl masks

  03 May 2015; Jauhien Piatlicki <jauhien@gentoo.org> base/package.use.mask:
  unmask system-llvm USE for dev-lang/rust, bug #546704

  03 May 2015; Andreas K. Huettel <dilfridge@gentoo.org> updates/2Q-2015:
  Fix capitalization of dev-perl/Class-ReturnValue

  03 May 2015; Hans de Graaff <graaff@gentoo.org> package.mask:
  Mask dev-ruby/fssm for removal.

  03 May 2015; Ben de Groot <yngwin@gentoo.org> arch/amd64/package.use,
  +arch/arm/package.use, +arch/powerpc/ppc32/package.use, arch/x86/package.use:
  Enable luajit on media-video/mpv for OSC by default

  03 May 2015; Ben de Groot <yngwin@gentoo.org> arch/alpha/package.use.mask,
  arch/arm/package.use.mask, arch/powerpc/ppc64/package.use.mask,
  arch/sparc/package.use.mask:
  Mask mpv[rubberband], bug #548446

  02 May 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove obsolete mask of app-laptop/gtkpbbuttons and app-laptop/gkrellm-pmu

  01 May 2015; Mike Gilbert <floppym@gentoo.org>
  +default/linux/amd64/13.0/systemd/eapi,
  +default/linux/amd64/13.0/systemd/parent, default/linux/amd64/ChangeLog,
  profiles.desc:
  Add basic systemd profile for amd64

  01 May 2015; Andreas K. Huettel <dilfridge@gentoo.org> updates/2Q-2015:
  Fix capitalization of dev-perl/ExtUtils-Depends

  30 Apr 2015; <grknight@gentoo.org> package.mask:
  Adjust package mask for smarty to include PEAR-PhpDocumentor-1.4.4 while work
  is done on that package

  30 Apr 2015; <grknight@gentoo.org> package.mask:
  Mask <dev-php/smarty-2.6.29 as it is unknown if vulnerable to security bug
  526542. Removal in 30 days as to not break scripts using the old version

  29 Apr 2015; Ryan Hill <rhill@gentoo.org> package.mask:
  Mask >=sys-devel/gcc-config-1.8-r1

  Moving to /lib/gentoo/functions.sh broke the eclass
  by changing output it relies on. See bug #504118,
  547586, and 547962.

  28 Apr 2015; James Le Cuirot <chewi@gentoo.org> package.mask:
  dev-java/jna-posix has been removed.

  28 Apr 2015; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask dev-tex/mh for removal.

  28 Apr 2015; Sebastian Pipping <sping@gentoo.org> package.mask:
  Mask <www-apps/wordpress-4.2.1 for removal in 30 days

  27 Apr 2015; Hans de Graaff <graaff@gentoo.org> package.mask:
  Mask rubinius 1.x for removal.

  27 Apr 2015; Hans de Graaff <graaff@gentoo.org> package.mask:
  Mask obsolete rubyforge.org related packages for removal.

  26 Apr 2015; Jeroen Roovers <jer@gentoo.org> base/package.use.stable.mask:
  Mask USE=mongodb for net-analyzer/pmacct (bug #542210).

  26 Apr 2015; Pacho Ramos <pacho@gentoo.org> package.mask:
  Clean obsolete entries

  26 Apr 2015; Pacho Ramos <pacho@gentoo.org> package.mask:
  Package was fixed, unmasked then

  26 Apr 2015; Hans de Graaff <graaff@gentoo.org> package.mask:
  Mask ruby19-only packages for removal.

  25 Apr 2015; Hans de Graaff <graaff@gentoo.org> package.mask:
  Remove mask for app-admin/chef now that packages have been removed.

  24 Apr 2015; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Mask net-libs/libcapsinetwork

  23 Apr 2015; Mike Frysinger <vapier@gentoo.org> package.mask:
  Unmask newer isl & cloog #547480.

  23 Apr 2015; Markos Chandras <hwoarang@gentoo.org> package.mask:
  unmask minitube again

  22 Apr 2015; Mike Gilbert <floppym@gentoo.org> targets/systemd/package.mask,
  +targets/systemd/package.use.force:
  Force systemd for udev virtuals, bug 547360.

  21 Apr 2015; Pacho Ramos <pacho@gentoo.org> targets/systemd/package.mask:
  Mask other udev providers apart of systemd for systemd subprofiles to help
  portage to not try to pull in wrong provider leading to strange blockers

  20 Apr 2015; James Le Cuirot <chewi@gentoo.org> package.mask:
  Unmask Java 8. This is long overdue and it's looking good now.

  19 Apr 2015; Hans de Graaff <graaff@gentoo.org> package.mask:
  Mask dev-ruby/json_pure for removal.

  19 Apr 2015;; Ian Delaney <idella4@gentoo.org> package.mask:
  unmask app-backup/pdumpfs now again in working order wrt bug #509960

  19 Apr 2015; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Unleash rb_libtorrent-1.0.X to ~testing

  19 Apr 2015; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask media-video/minitube since it's now broken. See #546866

  19 Apr 2015; Ben de Groot <yngwin@gentoo.org>
  arch/amd64/package.use.stable.mask, arch/x86/package.use.stable.mask,
  default/linux/powerpc/ppc32/13.0/package.use.stable.mask:
  Add precision and bug reference (bug #500868) to vlc[opus] stable mask

  19 Apr 2015; Ben de Groot <yngwin@gentoo.org>
  arch/amd64/package.use.stable.mask, arch/x86/package.use.stable.mask,
  default/linux/powerpc/ppc32/13.0/package.use.stable.mask:
  Re-apply stable use mask for opus on vlc (and also chromaprint for ppc32).
  See bug #530254 and #504826.

  19 Apr 2015; Ben de Groot <yngwin@gentoo.org>
  arch/amd64/package.use.stable.mask, arch/arm/package.use.stable.mask,
  arch/x86/package.use.stable.mask,
  default/linux/powerpc/ppc32/13.0/package.use.stable.mask:
  Drop stable vlc useflags mask (bug #530254), except slacking alpha

  18 Apr 2015; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Old wine ebuilds gone from the tree, mask no longer needed (bug #543336).

  18 Apr 2015; Mike Frysinger <vapier@gentoo.org> arch.list, profiles.desc:
  Add Nios II (nios2) arch support.

  18 Apr 2015; James Le Cuirot <chewi@gentoo.org> package.mask:
  Mask dev-java/classworlds.

  18 Apr 2015; Andreas K. Huettel <dilfridge@gentoo.org> updates/2Q-2015:
  Rename dev-perl/Cgi-Simple to dev-perl/CGI-Simple

  18 Apr 2015; Pacho Ramos <pacho@gentoo.org> package.mask:
  Delay app-backup/pdumpfs removal as it's going to be fixed and proxy
  maintained soon

  17 Apr 2015; Pacho Ramos <pacho@gentoo.org> package.mask:
  rdiff-backup removal postponed

  17 Apr 2015; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Roll dev channel mask for chromium-44.

  17 Apr 2015; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Unmask libvpx-1.4.0.

  16 Apr 2015; Ben de Groot <yngwin@gentoo.org> base/make.defaults:
  Remove USE=libav default. See news item 2015-04-16 ffmpeg default.

  15 Apr 2015; Ulrich Müller <ulm@gentoo.org> profiles.desc:
  [QA] Revert default/linux/arm/13.0 profile back to stable. This has been
  acknowledged by the QA team lead and three other QA members.

  15 Apr 2015; Michał Górny <mgorny@gentoo.org> profiles.desc:
  arm: stable -> dev because of prolonged tree breakage in keywording. Please
  restore the stable status when you are done.

  14 Apr 2015; James Le Cuirot <chewi@gentoo.org> package.mask:
  Mask dev-java/diablo-jdk and dev-java/diablo-jre-bin.

  14 Apr 2015; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Cleanup package.mask.

  14 Apr 2015; Patrice Clement <monsieurp@gentoo.org> package.mask:
  Mask dev-java/openjms.

  14 Apr 2015; Patrick Lauer <patrick@gentoo.org> package.mask:
  Drop obsolete pypy mask

  12 Apr 2015; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add OSL-2.1 and UoI-NCSA licenses to the OSI-APPROVED group.

  12 Apr 2015; Ulrich Müller <ulm@gentoo.org> license_groups:
  CPAL-1.0, gnuplot, CC-BY-*, and CC-BY-SA-* licenses are FSF approved now.
  Move them to the appropriate groups.

  11 Apr 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Add libecwj2 to lcms:0 revdeps mask

  11 Apr 2015; Michael Palimaka <kensington@gentoo.org> updates/2Q-2015:
  Move dev-libs/extra-cmake-modules:0 to kde-frameworks/extra-cmake-modules:5.

  11 Apr 2015; Hans de Graaff <graaff@gentoo.org> package.mask:
  Remove mask now that packages have been removed.

  11 Apr 2015; Michał Górny <mgorny@gentoo.org> package.mask:
  Unmask app-emulation/fuse, bug #518284.

  11 Apr 2015; Michał Górny <mgorny@gentoo.org> package.mask:
  Unmask lcms:0 until all rev-deps are handled.

  10 Apr 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask lcms:0 and friends for removal

  10 Apr 2015; Patrick Lauer <patrick@gentoo.org> package.mask:
  Mask gnutls-3.4.0 #546124

  09 Apr 2015; Andreas K. Hüttel <dilfridge@gentoo.org> package.mask:
  Reference bugs added

  08 Apr 2015; Aaron W. Swenson <titanofold@gentoo.org> package.mask:
  pgtune removed from tree, removing mask

  07 Apr 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask app-laptop/gkrellm-pmu for removal

  07 Apr 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask app-laptop/gtkpbbuttons for removal

  07 Apr 2015; Ulrich Müller <ulm@gentoo.org> package.mask:
  Remove mask for app-emacs/grep-edit, package removed from tree.

  07 Apr 2015; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Mask >=media-libs/libvpx-1.4.0 for testing.

  06 Apr 2015; Andreas K. Huettel <dilfridge@gentoo.org> updates/2Q-2015:
  Move dev-perl/log-dispatch to dev-perl/Log-Dispatch following upstream

  06 Apr 2015; Aaron Bauman <bman@gentoo.org> package.mask:
  Masked net-misc/gns3 for removal

  06 Apr 2015; Maciej Mrozowski <reavertm@gentoo.org> package.mask:
  Masked sys-fs/evms for removal

  05 Apr 2015; Michał Górny <mgorny@gentoo.org> updates/2Q-2015:
  Move libdbusmenu:3 to :0.

  05 Apr 2015; James Le Cuirot <chewi@gentoo.org> package.mask:
  dev-java/jackson-mapper has been removed. Mask
  app-emulation/emul-linux-x86-java and dev-java/sun-j2me-bin.

  05 Apr 2015; Ben de Groot <yngwin@gentoo.org> package.mask:
  Remove obsolete masks for >roboto-9999 and culmus-ancient

  03 Apr 2015; Christoph Junghans <ottxor@gentoo.org> package.mask:
  >= dragonegg-3.6 fails to build (bug #543644)

  03 Apr 2015; Christoph Junghans <ottxor@gentoo.org> package.mask:
  sci-libs/openmm: removed (bug #536406)

  03 Apr 2015; Mikle Kolyada <zlogene@gentoo.org> package.mask:
  Mask dev-perl/Apache-AuthTicket for removal

  03 Apr 2015; Yixun Lan <dlan@gentoo.org> arch/amd64/package.use.stable.mask:
  stable mask USE=zfs on sys-cluster/ceph, for bug 544606

  03 Apr 2015; Hans de Graaff <graaff@gentoo.org> package.mask:
  Package dev-ruby/gemoji has been removed.

  02 Apr 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask dev-perl/Eidetic and app-admin/rackview for removal

  02 Apr 2015; Michael Palimaka <kensington@gentoo.org>
  targets/desktop/plasma/package.use:
  Avoid kde-base/kde-l10n blockers with Plasma 5.

  02 Apr 2015; Tim Harder <radhermit@gentoo.org> updates/2Q-2015:
  Rename dev-util/pkgcore-checks to dev-util/pkgcheck.

  01 Apr 2015; Andreas K. Huettel <dilfridge@gentoo.org> +updates/2Q-2015:
  Fix capitalization of dev-perl/Config-General

  01 Apr 2015; Michael Weber <xmw@gentoo.org> package.mask:
  Unmask RPi kernels

  01 Apr 2015; Ulrich Müller <ulm@gentoo.org> updates/1Q-2015:
  Delete package move for dev-tex/pdftex because target package exists.

  31 Mar 2015; Ulrich Müller <ulm@gentoo.org> package.mask,
  prefix/sunos/solaris/5.9/package.use.force:
  Remove duplicate app-admin/eselect-* entries, following package move.

  31 Mar 2015; Ulrich Müller <ulm@gentoo.org> updates/1Q-2015:
  Package move app-admin/eselect-* to app-eselect/eselect-*.

  31 Mar 2015; Ulrich Müller <ulm@gentoo.org> package.mask,
  prefix/sunos/solaris/5.9/package.use.force:
  Add duplicate app-eselect/eselect-* entries in preparation for package move.

  31 Mar 2015; Ulrich Müller <ulm@gentoo.org> categories:
  New category app-eselect.

  30 Mar 2015; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Update lightdm mask

  30 Mar 2015; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Mask <xf86-input-synaptics-1.7 due to build failure against glibc-2.20, bug
  #544094.

  29 Mar 2015; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask for removal all app-emulation/emul-linux-x86-jna versions. People
  relying on latest version should update to
  >=virtual/libffi-3.0.13-r1[abi_x86_32(-)] dep.

  29 Mar 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask Perl 5.18 for removal

  29 Mar 2015; Michał Górny <mgorny@gentoo.org> package.mask:
  Fix p.mask date for emul-linux-x86.

  29 Mar 2015; Ben de Groot <yngwin@gentoo.org> package.mask:
  Last-rite x11-themes/gtk-engines-qtcurve

  28 Mar 2015; Michał Górny <mgorny@gentoo.org> package.mask, profiles.desc:
  emul-linux-x86 last rites. Remove no-emul-linux-x86 subprofiles that are now
  redundant.

  28 Mar 2015; James Le Cuirot <chewi@gentoo.org> package.mask:
  Mask dev-java/jna-posix.

  28 Mar 2015; Ian Delaney <idella4@gentoo.org> package.mask:
  Entry for LatLongUTMconversion masked for removal

  26 Mar 2015; Bernard Cafarelli <voyageur@gentoo.org> package.mask:
  Last rites for old NX packages, bug #537774

  25 Mar 2015; Andrew Savchenko <bircoph@gentoo.org> package.mask:
  sys-power/nvclock is maintained again, removing mask: #537926.

  24 Mar 2015; Ian Delaney <idella4@gentoo.org> package.mask:
  Entry for net-irc/{supybot-plugins,supybot} masked for removal

  24 Mar 2015; Ian Delaney <idella4@gentoo.org> package.mask:
  removal of entries in package.mask for purged packages;
  dev-python/{py-freebsd,cherryflow,colubrid,genetic,
  gnosis-utils,g-pypi,ldaptor} dev-util/spe app-text/pyrpub

  23 Mar 2015; Patrick Lauer <patrick@gentoo.org> package.mask:
  Remove obsolete nodejs mask

  22 Mar 2015; Brian Evans <grknight@gentoo.org> package.mask:
  Fix masked squirrelmail version and spelling mistake

  22 Mar 2015; Brian Evans <grknight@gentoo.org> package.mask:
  PHP 5.3.x is vulernable to several security bugs and has
  reached EOL status. (Bugs #533998, #537586, #537590, #538822, #541098)
  Masked pending resolution to bug #538756

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

  21 Mar 2015; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  removed pmask media-plugins/vdr-setup, #540788

  20 Mar 2015; Johannes Huber <johu@gentoo.org> package.mask:
  Remove obsolete mask on games-board/kaya.

  19 Mar 2015; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Remove old masks.

  19 Mar 2015; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Cleanup old masks.

  19 Mar 2015; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Roll dev channel mask for chromium-43.

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

  19 Mar 2015; Pacho Ramos <pacho@gentoo.org> package.mask:
  drop obsolete entries

  17 Mar 2015; Markos Chandras <hwoarang@gentoo.org> package.mask:
  No updates on #542434 so just unmask the rb_libtorrent-0.16.17-r2 ebuild

  17 Mar 2015; Alexis Ballier <aballier@gentoo.org> package.mask:
  remove pdftex mask; its gone

  17 Mar 2015; Alexis Ballier <aballier@gentoo.org> updates/1Q-2015:
  move dev-tex/pdftex to app-text/texlive-core; standalone pdftex is not going
  to be updated and is provided by texlive-core

  16 Mar 2015; Jeroen Roovers <jer@gentoo.org> package.mask:
  Remove package.mask entry for net-analyzer/mausezahn (bug #515210).

  15 Mar 2015; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Mask <app-emulation/wine-1.6.2 for removal in 30 days due to new multilib
  unmask (bug #543336)

  15 Mar 2015; Manuel Rüger <mrueg@gentoo.org> categories:
  Drop rox-* categories

  15 Mar 2015; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Remove old masks.

  15 Mar 2015; Ben de Groot <yngwin@gentoo.org> arch/powerpc/package.use.mask:
  Mask >=media-sound/picard-1.3.2[cdda] while waiting for ppc keywording in bug
  543398

  15 Mar 2015; Ben de Groot <yngwin@gentoo.org> package.mask:
  Mask media-video/mplayer2 and media-video/smplayer2 for removal in 30 days
  (bug #519212 and others)

  15 Mar 2015; Ben de Groot <yngwin@gentoo.org> updates/1Q-2015:
  Move dev-qt/qtdocumentation to dev-qt/qt-docs as per Qt team policy (bug
  457028#c56)

  15 Mar 2015; Ben de Groot <yngwin@gentoo.org> arch/amd64/package.use.mask,
  arch/x86/package.use.mask, base/package.use.mask:
  Globally mask bdplus useflag on media-libs/libbluray, and unmask on amd64/x86
  where media-libs/libbdplus is keyworded.

  14 Mar 2015; Bernard Cafarelli <voyageur@gentoo.org> package.mask:
  Unmask llvm 3.6

  11 Mar 2015; Alexis Ballier <aballier@gentoo.org> package.mask:
  unmask latest aubio

  10 Mar 2015; Mike Frysinger <vapier@gentoo.org> package.mask:
  Drop protobuf/protobuf-c masks now that packages seem to work with it.

  10 Mar 2015; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask broken rb_libtorrent ebuild due to #539368 and #542434

  10 Mar 2015; Alice Ferrazzi <alicef@gentoo.org> package.mask:
  Added mask for =pypy-2.5.0

  09 Mar 2015; Ulrich Müller <ulm@gentoo.org> package.mask:
  QA mask net-misc/teamviewer-10.0.36281, broken dependencies.

  09 Mar 2015; Michael Palimaka <kensington@gentoo.org>
  targets/desktop/plasma/package.use:
  Avoid blockers with dev-util/kdevelop.

  08 Mar 2015; Lars Wendler <polynomial-c@gentoo.org> package.mask:
  Added mask for >=samba-4.2

  08 Mar 2015; Pacho Ramos <pacho@gentoo.org>
  arch/amd64/package.use.stable.mask, arch/x86/package.use.stable.mask:
  Mask dev-python/apptools[test] because mayavi is broken (#500104)

  08 Mar 2015; Hans de Graaff <graaff@gentoo.org> package.mask:
  Mask various ruby19-only packages.

  07 Mar 2015; Christoph Junghans <ottxor@gentoo.org> package.mask:
  Masked sci-libs/openmm for removal

  07 Mar 2015; Lars Wendler <polynomial-c@gentoo.org> package.mask:
  Unleash samba-4 to ~arch

  07 Mar 2015; Brian Evans <grknight@gentoo.org> package.mask:
  Clean up from removed dev-php/PEAR-MDB2_Driver_sqlite

  05 Mar 2015; Justin Lecher <jlec@gentoo.org> arch/mips/ChangeLog,
  arch/mips/package.use.mask, arch/powerpc/ChangeLog,
  arch/powerpc/package.use.mask, arch/sparc/ChangeLog,
  arch/sparc/package.use.mask, base/ChangeLog, base/package.use.mask,
  package.mask:
  Cleaned obsolete entries in package.use.mask

  04 Mar 2015; Bernard Cafarelli <voyageur@gentoo.org> package.mask:
  Remove x11-plugins/wmauda mask after last rites

  03 Mar 2015; Anthony G. Basile <blueness@gentoo.org> package.mask:
  Remove net-misc/vidalia p.mask which is now off the tree.

  03 Mar 2015; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Drop obsolete entry

  02 Mar 2015; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Add missed MSN library to mask.

  02 Mar 2015; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Mask further MSN libraries and applications.

  01 Mar 2015; Michał Górny <mgorny@gentoo.org> profiles.desc:
  Introduce support for FreeBSD 10.1,
  https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/46 by nigoro.

  01 Mar 2015; Markos Chandras <hwoarang@gentoo.org> package.mask:
  net-im/{amsn,emesene} have been removed

  01 Mar 2015; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  media-plugins/vdr-pcd masked for removal around 1 Apr 2015

  28 Feb 2015; Andrew Savchenko <bircoph@gentoo.org> use.desc:
  Add "seccomp" global USE flag.

  28 Feb 2015; Tomáš Chvátal <scarabeus@gentoo.org> package.mask:
  Add dev-libs/libzypp to zypper mask too.

  28 Feb 2015; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Keep dev-ruby/mixlib-shellout in tree.

  28 Feb 2015; Tomáš Chvátal <scarabeus@gentoo.org> package.mask:
  Mask libsolv and zypper for removal as they are just experiment that didn't
  go further.

  28 Feb 2015; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Remove obsolete mask.

  28 Feb 2015; Justin Lecher <jlec@gentoo.org> package.mask:
  Mask dev-python/django-1.5* for unfixed security issues
  (CVE-2015-{0219,0220,0221,0222}), #536586

  27 Feb 2015; Bernard Cafarelli <voyageur@gentoo.org> package.mask:
  Update llvm 3.6.0 mask for final release

  27 Feb 2015; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Drop obsolete mask on net-dialup/gtk-imonc

  25 Feb 2015; Andrey Grozin <grozin@gentoo.org> base/package.use.mask,
  arch/amd64/package.use.mask, arch/x86/package.use.mask:
  dev-lisp/ecls-15.2.21 does not compile with CPU_FLAGS_X86=sse

  24 Feb 2015; Ulrich Müller <ulm@gentoo.org> package.mask:
  Mask app-emacs/grep-edit for removal.

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

  23 Feb 2015; Andrey Grozin <grozin@gentoo.org> base/package.use.mask:
  dev-lisp/ecls-15.2.21 does not compile with CPU_FLAGS_X86=sse

  23 Feb 2015; Hans de Graaff <graaff@gentoo.org> package.mask:
  Also include vulnerable rest-client version in chef mask, bug 540254.

  23 Feb 2015; Hans de Graaff <graaff@gentoo.org> package.mask:
  Mask app-admin/chef and its dependencies for removal.

  23 Feb 2015; Bernard Cafarelli <voyageur@gentoo.org> package.mask:
  Update llvm/clang 3.6 mask

  23 Feb 2015; Pacho Ramos <pacho@gentoo.org> arch/alpha/package.use.mask,
  arch/ia64/package.use.mask, arch/sparc/package.use.mask:
  Update masks for #533420

  23 Feb 2015; Pacho Ramos <pacho@gentoo.org> arch/powerpc/package.use.mask,
  arch/x86/package.use.mask:
  libinput was keyworded (#533420)

  23 Feb 2015; Ian Delaney <idella4@gentoo.org> package.mask:
  dev-python/py-freebsd dev-util/spe masked for removal

  22 Feb 2015; Pacho Ramos <pacho@gentoo.org> base/package.use.stable.mask:
  use.stable.mask openfoam[paraview] until bug #541012 is solved

  22 Feb 2015; Ben de Groot <yngwin@gentoo.org> updates/1Q-2015:
  Move media-fonts/libertine-ttf to media-fonts/libertine

  21 Feb 2015; Anthony G. Basile <blueness@gentoo.org> profiles.desc:
  Add hardened/linux/amd64/no-emul-linux-x86 to profiles.desc

  21 Feb 2015; Markos Chandras <hwoarang@gentoo.org> desc/input_devices.desc:
  Drop roccat_ryos and add roccat_ryosmk. Bug #539906 by Dmitry Pisklov

  21 Feb 2015; Sven Vermeulen <swift@gentoo.org> package.mask:
  Recent comments on bug #125902 show that I was overzealous, hearse is not to
  be unmasked

  21 Feb 2015; Sven Vermeulen <swift@gentoo.org> package.mask:
  Unmasking hearse as it was masked due to dependency with nethack; nethack was
  recently put back on its feet (bug #125902, comment 17)

  21 Feb 2015; Ben de Groot <yngwin@gentoo.org> package.mask:
  Last-rite media-fonts/culmus-ancient which duplicates
  media-fonts/culmus[ancient]

  20 Feb 2015; Sven Vermeulen <swift@gentoo.org> package.mask:
  Removing nethack from p.mask, bug #125902 is resolved

  20 Feb 2015; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  media-plugins/vdr-setup masked for removal ~20/Mar/2015

  20 Feb 2015; Pacho Ramos <pacho@gentoo.org> base/package.use.stable.mask:
  use.stable.mask because dev-libs/libappindicator isn't going to be stabilized

  20 Feb 2015; Ben de Groot <yngwin@gentoo.org> base/package.use.mask,
  base/package.use.stable.mask:
  Move qpdfview use mask to correct file

  20 Feb 2015; Ben de Groot <yngwin@gentoo.org> base/package.use.mask:
  Mask experimental app-text/qpdfview feature on stable. This also needs not
  yet stable mupdf.

  19 Feb 2015; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Cleanup old masks.

  19 Feb 2015; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Cleanup old masks.

  19 Feb 2015; Ian Delaney <idella4@gentoo.org> package.mask:
  Mask old abadonned defunct packages X 6 in python herd for removal in 30 days

  19 Feb 2015; Michael Palimaka <kensington@gentoo.org> package.mask:
  Mask games-board/kaya for removal.

  19 Feb 2015; Alexandre Rostovtsev <tetromino@gentoo.org>
  targets/desktop/gnome/package.use, targets/desktop/package.use:
  Set reasonable choice of USE=gtk2 or gtk3 for nvidia-drivers depending on
  profile so average users aren't forced to choose manually to avoid emerge
  failure

  18 Feb 2015; Bernard Cafarelli <voyageur@gentoo.org> package.mask:
  Mask sys-devel/llvm-3.6.0_rc* ebuilds

  18 Feb 2015; Ben de Groot <yngwin@gentoo.org> targets/desktop/package.use:
  Enable sensible defaults on dev-python/PyQt5 for desktop users (bug #540046)

  17 Feb 2015; Hans de Graaff <graaff@gentoo.org> package.mask:
  Mask virtual/ruby-threads for removal.

  16 Feb 2015; Brian Evans <grknight@gentoo.org> package.mask:
  Remove the masks added by me today and revbump the old virtual back down to
  ~arch instead

  16 Feb 2015; Brian Evans <grknight@gentoo.org> package.mask:
  Add in dev-db/mysql-cluster-7.2* to the previous 5.5 series mask

  16 Feb 2015; Brian Evans <grknight@gentoo.org> package.mask:
  Mask MySQL and MariaDB 5.5 series for security bug 537216

  15 Feb 2015; Hans de Graaff <graaff@gentoo.org> package.mask:
  Mask old virtuals based on the slot-per-version idea for removal, bug 421497.

  15 Feb 2015; Hans de Graaff <graaff@gentoo.org> package.mask:
  Mask dev-ruby/gemoji for removal, bug 539778.

  15 Feb 2015; Ian Delaney <idella4@gentoo.org> package.mask:
  Mask app-text/pyrpub for removal

  14 Feb 2015; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Unmask poppler-0.31.0 now we have a working cups-filters for it

  13 Feb 2015; Ulrich Müller <ulm@gentoo.org> license_groups:
  Remove unused licenses.

  13 Feb 2015; Michał Górny <mgorny@gentoo.org> use.desc:
  Remove unused flags: gtkhtml, old-linux, xsl.

  12 Feb 2015; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Add net-im/emesene to the MSN clients that need to be removed. See #525100

  12 Feb 2015; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  media-plugins/vdr-yaepg masked for removal ~12/mar/2015, dead on upstream

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

  12 Feb 2015; Ian Delaney <idella4@gentoo.org> package.mask:
  Mask app-office/{openerp-client,openerp-server,openerp-web}
  for removal, remove mask of weasyprint-0.22

  12 Feb 2015; Patrick Lauer <patrick@gentoo.org> package.mask:
  Remove handbrake mask as ffmpeg is unmasked

  12 Feb 2015; Patrick Lauer <patrick@gentoo.org> package.mask:
  Add layman to portage mask

  11 Feb 2015; Alexis Ballier <aballier@gentoo.org> package.mask:
  unmask latest ffmpeg

  11 Feb 2015; Alexis Ballier <aballier@gentoo.org> package.mask:
  unmask latest gst-libav

  11 Feb 2015; Pacho Ramos <pacho@gentoo.org> arch/arm/package.use.mask,
  arch/ia64/package.use.mask, arch/powerpc/package.use.mask,
  arch/sparc/package.use.mask:
  Mask gnome-base/gnome[extras] on arches with missing keywords (#537036)

  11 Feb 2015; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask new portage versions because of bug #539746.

  10 Feb 2015; Ben de Groot <yngwin@gentoo.org> package.mask:
  remove temp lxqt mask

  10 Feb 2015; Ben de Groot <yngwin@gentoo.org> package.mask:
  temporary LXQt 0.9.0 bump mask

  10 Feb 2015; Ben de Groot <yngwin@gentoo.org> base/package.use.mask:
  Remove outdated mpv libav and lxqt-meta sddm use masks

  10 Feb 2015; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Remove mask after cleanup for bug #532086.

  10 Feb 2015; Ben de Groot <yngwin@gentoo.org> updates/1Q-2015:
  Move app-admin/lxqt-admin and net-misc/lxqt-openssh-askpass to lxqt-base
  category.

  10 Feb 2015; Patrick Lauer <patrick@gentoo.org> base/package.use.mask,
  package.mask:
  Re-mask media-video/handbrake-0.10.0-r1 until ffmpeg catches up

  10 Feb 2015; Patrick Lauer <patrick@gentoo.org> base/package.use.mask,
  package.mask:
  Re-mask media-plugins/gst-plugins-libav until ffmpeg catches up

  10 Feb 2015; Patrick Lauer <patrick@gentoo.org> base/package.use.mask,
  package.mask:
  Remove libav masks after discussion with lu_zero

  09 Feb 2015; Eray Aslan <eras@gentoo.org> package.mask:
  Unmask mail-mta/postfix-3.0.0 official release

  09 Feb 2015; Tim Harder <radhermit@gentoo.org> updates/1Q-2015:
  Add pkgmove for upstream renamed vim plugin, zencoding to emmet.

  08 Feb 2015; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  base/package.mask, targets/systemd/package.mask:
  narrow xinit mask to broken version

  08 Feb 2015; Michael Palimaka <kensington@gentoo.org> package.mask:
  Unmask media-sound/moodbar.

  08 Feb 2015; Vladimir Smirnov <civil@gentoo.org> package.mask:
  Remove mask for Alien-SDL 1.444.0

  07 Feb 2015; Ben de Groot <yngwin@gentoo.org> base/package.use.mask:
  p.use.mask armv7 on games-board/stockfish

  07 Feb 2015; Markos Chandras <hwoarang@gentoo.org> license_groups:
  Drop the GPL-2.1 from the license_groups. It has been removed from the tree

  07 Feb 2015; Markos Chandras <hwoarang@gentoo.org> license_groups:
  Add the GPL-2.1 license to the MISC-FREE and FSF-APPROVED-OTHER groups

  07 Feb 2015; Michał Górny <mgorny@gentoo.org> categories:
  Remove empty net-zope/ category.

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

  05 Feb 2015; Anthony G. Basile <blueness@gentoo.org> package.mask:
  Mask >=dev-libs/cloog-0.18.3 which depends on >=dev-libs/isl-0.14:0/14, also
  masked.

  04 Feb 2015; Jeroen Roovers <jer@gentoo.org> license_groups:
  Add Vivaldi license to EULA group.

  04 Feb 2015; Ben de Groot <yngwin@gentoo.org> base/package.use.mask,
  package.mask:
  Unmask mpv-0.7.3 and smplayer-14.9.0.6690 after masking libav useflag on
  newer mpv.

  03 Feb 2015; Pacho Ramos <pacho@gentoo.org> package.mask:
  Prepare for gst-libav bump

  03 Feb 2015; Michał Górny <mgorny@gentoo.org> base/package.use.mask,
  package.mask:
  Unmask USE=libav revbumps. Replace libav-10 p.u.masks with plain p.mask of
  version bumps to get less insane results.

  03 Feb 2015; Pacho Ramos <pacho@gentoo.org> package.mask:
  Cleanup obsolete entries

  03 Feb 2015; Bernard Cafarelli <voyageur@gentoo.org> package.mask:
  Last rites for x11-plugins/wmauda

  03 Feb 2015; Eray Aslan <eras@gentoo.org> package.mask:
  Mask mail-mta/postfix-3.1*

  02 Feb 2015; Brian Evans <grknight@gentoo.org> base/package.use.mask,
  package.mask:
  Mask dev-php/PEAR-MDB2_Driver_sqlite for removal and sqlite USE on
  dev-php/PHPonTrax Bug 538584

  02 Feb 2015; Michael Weber <xmw@gentoo.org> package.mask:
  Adjust mask of netsurf to affected versions

  02 Feb 2015; Michał Górny <mgorny@gentoo.org> package.mask:
  Temporarily mask bumps of ffmpeg rev-deps for improvements.

  02 Feb 2015; Alexis Ballier <aballier@gentoo.org> package.mask:
  remove obrowser mask (removed from tree)

  01 Feb 2015; Michał Górny <mgorny@gentoo.org> base/package.use.mask:
  Mask net-misc/mediatomb[libav] since it requires masked libav.

  01 Feb 2015; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask >=media-video/handbrake-0.10 since it requires libav or ffmpeg versions
  that are both masked.

  01 Feb 2015; Michał Górny <mgorny@gentoo.org> base/package.use.mask:
  Mask media-tv/xbmc[libav] since USE=vdpau requires masked libav. Sad we can't
  mask the combination of the two...

  01 Feb 2015; Michał Górny <mgorny@gentoo.org> base/package.use.mask,
  package.mask:
  Mask app-text/unpaper[libav] since it requires masked libav version.

  01 Feb 2015; Tim Harder <radhermit@gentoo.org> package.mask:
  Remove old inkscape pre-release mask.

  01 Feb 2015; Michał Górny <mgorny@gentoo.org> use.desc:
  Describe USE=libav.

  01 Feb 2015; Michał Górny <mgorny@gentoo.org> use.desc:
  Remove global flags for x86 CPU instruction sets since they are no longer
  used in the repo.

  01 Feb 2015; Michael Palimaka <kensington@gentoo.org>
  +targets/desktop/plasma/eapi, +targets/desktop/plasma/make.defaults,
  +targets/desktop/plasma/package.use, +targets/desktop/plasma/parent,
  +targets/desktop/plasma/use.force:
  Add initial profile for KDE Plasma 5.

  01 Feb 2015; Ben de Groot <yngwin@gentoo.org> base/use.stable.mask:
  Keep qt5 in use.stable.mask until Qt5 goes stable

  01 Feb 2015; Ben de Groot <yngwin@gentoo.org> package.mask:
  Unmask lxqt-0.8.0 now that Qt5 is unmasked

  01 Feb 2015; Michael Palimaka <kensington@gentoo.org> package.mask:
  Umask Qt 5 consumers now that Qt 5 is unmasked.

  01 Feb 2015; Michael Palimaka <kensington@gentoo.org> package.mask:
  Remove old mask for versions no longer in the tree.

  01 Feb 2015; Ben de Groot <yngwin@gentoo.org> arch/alpha/ChangeLog,
  arch/alpha/package.mask, arch/alpha/use.mask, arch/arm/ChangeLog,
  arch/arm/package.mask, arch/arm/use.mask, arch/hppa/ChangeLog,
  +arch/hppa/package.mask, arch/hppa/use.mask, arch/ia64/ChangeLog,
  arch/ia64/package.mask, arch/ia64/use.mask, arch/mips/ChangeLog,
  arch/mips/package.mask, arch/mips/use.mask, arch/powerpc/ChangeLog,
  arch/powerpc/package.mask, arch/powerpc/use.mask:
  Add Qt5 mask to relevant arches until keyworded

  01 Feb 2015; Ben de Groot <yngwin@gentoo.org> base/package.use.mask:
  Unmask qt5 useflag on mkvtoolnix

  01 Feb 2015; Ben de Groot <yngwin@gentoo.org> package.mask:
  Unmask qt5 version of sddm

  01 Feb 2015; Ben de Groot <yngwin@gentoo.org> base/use.mask, package.mask:
  Unmask Qt5

  31 Jan 2015; Eray Aslan <eras@gentoo.org> package.mask:
  Remove mask entry for mail-mta/postfix-2.12 - no longer in the tree

  31 Jan 2015; Eray Aslan <eras@gentoo.org> package.mask:
  Mask mail-mta/postfix-3.0 experimental release

  31 Jan 2015; Ben de Groot <yngwin@gentoo.org> desc/linguas.desc, package.mask:
  Add media-video/smplayer-14.9.0.6690 to mpv-0.6/libav-10 mask. Add sq_AL
  locale.

  30 Jan 2015; Tim Harder <radhermit@gentoo.org> package.mask:
  Remove old app-vim/cvscommand and app-vim/svncommand masks.

  30 Jan 2015; Sergey Popov <pinkbyte@gentoo.org> thirdpartymirrors:
  Drop dead mirrors from nongnu mirror list, wrt bug #494856

  30 Jan 2015; Sergey Popov <pinkbyte@gentoo.org> thirdpartymirrors:
  Drop dead HTTP artfiles.org mirror from all mirror lists

  30 Jan 2015; Sergey Popov <pinkbyte@gentoo.org> thirdpartymirrors:
  Drop dead mirrors.igsobe.com from nongnu mirror list

  30 Jan 2015; Sergey Popov <pinkbyte@gentoo.org> thirdpartymirrors:
  Drop dead mirror.its.uidaho.edu from all mirror lists

  30 Jan 2015; Sergey Popov <pinkbyte@gentoo.org> thirdpartymirrors:
  Drop some of the obsolete mirrors on ftp.tpnet.pl

  30 Jan 2015; Sergey Popov <pinkbyte@gentoo.org> thirdpartymirrors:
  Drop dead ftp.sh.cvut.cz from all mirror lists

  30 Jan 2015; Sergey Popov <pinkbyte@gentoo.org> thirdpartymirrors:
  Drop dead ftp.isy.liu.se from all mirror lists

  30 Jan 2015; Sergey Popov <pinkbyte@gentoo.org> thirdpartymirrors:
  Drop dead ftp.esat.net from all mirror lists

  30 Jan 2015; Sergey Popov <pinkbyte@gentoo.org> thirdpartymirrors:
  Drop dead ftp.duth.gr from all mirror lists

  30 Jan 2015; Sergey Popov <pinkbyte@gentoo.org> thirdpartymirrors:
  Drop dead ftp.chg.ru from all mirror lists

  29 Jan 2015; Michał Górny <mgorny@gentoo.org> desc/cpu_flags_x86.desc:
  Fix USE=mmxext description. Thanks to Doug Freed for figuring out what it
  actually is.

  29 Jan 2015; Sergei Trofimovich <slyfox@gentoo.org> package.mask:
  Mask live dev-util/radare2 ebuild.

  29 Jan 2015; Johannes Huber <johu@gentoo.org> package.mask:
  Unmask >=app-crypt/qca-2.1.

  28 Jan 2015; Ulrich Müller <ulm@gentoo.org> package.mask:
  Remove mask for app-emacs/cedet, package removed from tree.

  28 Jan 2015; Michał Górny <mgorny@gentoo.org> uclibc/x86/use.mask:
  Unmask CPU_FLAGS_X86 in uclibc profiles.

  28 Jan 2015; Johannes Huber <johu@gentoo.org> package.mask:
  Remove mask on kde-misc/kio-ftps, bug #537746 fixed.

  28 Jan 2015; Anthony G. Basile <blueness@gentoo.org> package.mask:
  p.mask =net-misc/tor-0.2.6.2_alpha-r1, bug #536196.

  28 Jan 2015; Michał Górny <mgorny@gentoo.org> desc/cpu_flags_x86.desc:
  Remove the warning since the news item has been committed.

  28 Jan 2015; Johannes Huber <johu@gentoo.org> package.mask:
  Mask >=app-crypt/qca-2.1.

  26 Jan 2015; Johannes Huber <johu@gentoo.org> package.mask:
  Mask kde-misc/kio-ftps for removal.

  26 Jan 2015; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask >=www-client/chromium-42.

  25 Jan 2015; Jeroen Roovers <jer@gentoo.org> thirdpartymirrors:
  Drop berlios.de mirrors (bug #494678).

  25 Jan 2015; Justin Lecher <jlec@gentoo.org> license_groups:
  Drop Mendeley-EULA and add Mendeley-terms to EULA group, #536686

  25 Jan 2015; Pacho Ramos <pacho@gentoo.org> arch/alpha/package.use.mask,
  arch/arm/package.use.mask, arch/ia64/package.use.mask,
  arch/powerpc/package.use.mask, arch/sparc/package.use.mask:
  Update use.mask due to pending argyllcms keywords

  25 Jan 2015; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Update mask after xorg-server and tigervnc stabilization, bug #532086.

  25 Jan 2015; Pacho Ramos <pacho@gentoo.org>
  +arch/arm/armv7a/package.use.mask, arch/arm/package.use.mask:
  Unmask webkit-gtk[jit] only on arm7 profiles (#523400)

  24 Jan 2015; Michał Górny <mgorny@gentoo.org> desc/cpu_flags_x86.desc:
  Add XOP as used by media-video/ffmpeg.

  23 Jan 2015; Michał Górny <mgorny@gentoo.org> use.desc:
  Update USE=ffmpeg to mention libav as well since that is how it works.

  23 Jan 2015; Michał Górny <mgorny@gentoo.org> +desc/cpu_flags_x86.desc:
  Initially commit CPU_FLAGS_X86 for better testing of the script.

  22 Jan 2015; Julian Ospald <hasufell@gentoo.org> package.mask:
  mask games-rpg/morrowind-data for removal wrt #537260

  22 Jan 2015; Mikle Kolyada <zlogene@gentoo.org> package.mask:
  Mask dev-perl/IP-Country for removal.

  21 Jan 2015; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Remove outdated masks.

  19 Jan 2015; Hans de Graaff <graaff@gentoo.org> package.mask:
  Mask obsolete and unused virtual/ruby-rdoc for removal.

  19 Jan 2015; Alexis Ballier <aballier@gentoo.org> profiles.desc:
  downgrade amd64-fbsd profiles to dev state; there are too many keywording
  bugs and nobody really processing them...

  19 Jan 2015; Brian Evans <grknight@gentoo.org> package.mask:
  Remove dev-php/suhosin from mask

  19 Jan 2015; Hans de Graaff <graaff@gentoo.org> updates/1Q-2015:
  Move tilt 2.x into a separate slot.

  18 Jan 2015; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Mask Ruby 1.9 only packages.

  18 Jan 2015; Pacho Ramos <pacho@gentoo.org> arch/amd64-fbsd/package.use.mask,
  arch/arm/package.use.mask, arch/ia64/package.use.mask,
  arch/sparc/package.use.mask, arch/x86/package.use.mask:
  use.mask due to missing keywords

  18 Jan 2015; Eray Aslan <eras@gentoo.org> package.mask:
  net-proxy/squid-3.5* is no longer beta. Removing the mask

  18 Jan 2015; Davide Pesavento <pesa@gentoo.org> package.mask:
  Mask qt-creator versions that depend on Qt5.

  17 Jan 2015; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Mask rox-extra/* and rox-base/* See bug #533642.

  16 Jan 2015; Pacho Ramos <pacho@gentoo.org>
  default/linux/uclibc/package.mask:
  Mask more ebuilds needing glibc

  15 Jan 2015; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Add media-sound/teamspeak-client-bin to qt5 package.mask

  15 Jan 2015; Pacho Ramos <pacho@gentoo.org>
  arch/amd64/no-emul-linux-x86/package.use.stable.mask,
  arch/amd64/package.use.stable.mask:
  update multilib masks

  14 Jan 2015; Pacho Ramos <pacho@gentoo.org>
  arch/powerpc/ppc32/package.use.mask:
  Update use.mask due to missing keywords

  13 Jan 2015; Fabian Groffen <grobian@gentoo.org> package.mask:
  Remove masks for Exim 4.85 release candidates

  12 Jan 2015; Mike Pagano <mpagano@gentoo.org> package.mask:
  Added Expiry to package.mask items

  11 Jan 2015; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Unmask =xorg-server-1.14* and mask <tigervnc-1.3.1 to address repoman
  warnings.

  10 Jan 2015; Sergey Popov <pinkbyte@gentoo.org> package.mask:
  Mask net-dialup/gtk-imonc for removal

  10 Jan 2015; Pacho Ramos <pacho@gentoo.org> arch/alpha/package.use.mask,
  arch/ia64/package.use.mask, arch/sparc/package.use.mask:
  Update use.masks

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

  10 Jan 2015; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Add mask for old and vulnerable xorg-server.

  10 Jan 2015; Tim Harder <radhermit@gentoo.org> package.mask:
  Mask dev-libs/protobuf-c-1.1.0 until protobuf-2.6.0 is unmasked.

  09 Jan 2015; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Update kde-frameworks mask.

  09 Jan 2015; Anthony G. Basile <blueness@gentoo.org> package.mask:
  p.mask =dev-misc/i2pd-9999

  08 Jan 2015; Justin Lecher <jlec@gentoo.org> +updates/1Q-2015:
  Resolve file collision for sci-libs/Fiona between SLOTs

  08 Jan 2015; Eray Aslan <eras@gentoo.org> package.mask:
  Unmask mail-client/squirrelmail-1.4.23_pre - bug #524238

  08 Jan 2015; Sergei Trofimovich <slyfox@gentoo.org> package.mask:
  Removed stale 'net-ftp/proftpd' mask.

  07 Jan 2015; Mike Gilbert <floppym@gentoo.org> package.mask:
  Remove duplicate mask on sci-physics/camfr.

  07 Jan 2015; Brian Evans <grknight@gentoo.org> package.mask:
  Remove old mysql masks for versions less than 5.5 series

  07 Jan 2015; Aaron W. Swenson <titanofold@gentoo.org> package.mask:
  Mask dev-db/pgtune for removal.

  07 Jan 2015; Aaron W. Swenson <titanofold@gentoo.org> updates/4Q-2014:
  pgasync is a Python library and not a standalone application. Moved from
  dev-db to dev-python.

  05 Jan 2015; Tony Vroon <chainsaw@gentoo.org> package.mask:
  Mask Asterisk 13 branch.

  01 Jan 2015; Mikle Kolyada <zlogene@gentoo.org> package.mask:
  Remove obsolete dev-perl masks.

  01 Jan 2015; Manuel Rüger <mrueg@gentoo.org> package.mask:
  Remove obsolete masks.

  01 Jan 2015; Andreas K. Huettel <dilfridge@gentoo.org> +ChangeLog-2014,
  ChangeLog: Split ChangeLog

  For previous entries, please see ChangeLog-2014.