summaryrefslogtreecommitdiff
blob: 9ea73f8d3d91104f969ae135be65ed9ca46c8189 (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
####################################################################
# $Id$
#
# When you add an entry to the top of this file, add your name, the date, and
# an explanation of why something is getting masked. Please be extremely
# careful not to commit atoms that are not valid, as it can cause large-scale
# breakage, especially if it ends up in the daily snapshot.
#
## Example:
##
## # Dev E. Loper <developer@gentoo.org> (28 Jun 2012)
## # Masking  these versions until we can get the
## # v4l stuff to work properly again
## =media-video/mplayer-0.90_pre5
## =media-video/mplayer-0.90_pre5-r1
#
# - Best last rites (removal) practices -
# Include the following info:
# a) reason for masking
# b) bug # for the removal (and yes you should have one)
# c) date of removal (either the date or "in x days")
#
## Example:
##
## # Dev E. Loper <developer@gentoo.org> (23 May 2015)
## # Masked for removal in 30 days.  Doesn't work
## # with new libfoo. Upstream dead, gtk-1, smells
## # funny. (bug #987654)
## app-misc/some-package

#--- END OF EXAMPLES ---

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Cannot be downloaded either mirrored, bug #561114. Removal in a month
games-fps/doom3-mitm

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Cannot be downloaded either mirrored, bug #561120. Removal in a month
games-fps/ut2003-bonuspack-cm

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Cannot be downloaded either mirrored, bug #561142. Removal in a month
games-fps/ut2004-alienswarm

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Cannot be downloaded either mirrored, bug #561144. Removal in a month
games-fps/ut2004-fragops

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Cannot be downloaded either mirrored, bug #561146. Removal in a month
games-fps/ut2004-hamsterbash

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Cannot be downloaded either mirrored, bug #561148. Removal in a month
games-fps/ut2004-ultraduel

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Cannot be downloaded either mirrored, bug #561150. Removal in a month
games-rpg/sacred-gold

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Cannot be downloaded either mirrored, bug #561154. Removal in a month
games-strategy/coldwar

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Cannot be downloaded either mirrored, bug #561162. Removal in a month
games-fps/ut2003-bonuspack-de

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Cannot be downloaded either mirrored, bug #561166
# The ebuild needs to be either adapted to the new file or rely and trust
# the file from a new SRC_URI. Removal in a month.
games-fps/ut2004-bonuspack-cbp2

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Cannot be downloaded either mirrored, bug #561168. Removal in a month
games-fps/ut2004-cor

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Cannot be downloaded either mirrored, bug #561172. Removal in a month
games-fps/ut2004-crossfire

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Cannot be downloaded either mirrored, bug #561174. Removal in a month
net-mail/courierpassd

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Cannot be downloaded either mirrored, bug #561176. Removal in a month
net-misc/ixp4xx

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Cannot be downloaded because sources changed, bug #561200. Removal in a
# month.
sys-block/megarc

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Cannot be downloaded either mirrored, bug #561202. Removal in a month
sci-geosciences/gmt

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Obsolete and dead, bug #561622. Removal in a month.
app-misc/ompload

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Security issues, too hard to maintain, bug #561952. Removal in a month.
app-crypt/truecrypt

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Not useful anymore, bug #562998. Removal in a month.
app-editors/xmlcopyeditor

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Opensource version dead for ages, it was replaced by a closed source one,
# bug #563334. Removal in a month.
dev-db/flamerobin

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Dead and obsolete for years, bug #563900. Removal in a month.
gnome-extra/zeitgeist-extensions
dev-python/python-geoclue

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Upstream dead, it includes multiple hacks currently and has pending bugs
# to resolve, bug #564048. Removal in a month.
net-dns/host
net-misc/proxyper

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Upstream dead, buggy, doesn't work with wxGTK:3.0, bug #564052. Removal in
# a month.
sci-visualization/extrema

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Upstream dead, doesn't work with wxGTK:3.0, bug #564092. Removal in a
# month.
media-gfx/comical

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Upstream dead, doesn't work with wxGTK:3.0, bug #564094. Removal in a
# month.
media-sound/miniaudicle

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Upstream dead, buggy, doesn't work with wxGTK:3.0, bug #564102. Removal in
# a month.
net-p2p/imule

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Doesn't work at all, bug #564106. Removal in a month.
media-gfx/fr0st

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Nothing need this old and broken packages, bug #565014. Removal in a
# month.
dev-php/pecl-syck
dev-libs/syck

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Obsolete version, nobody willing to package newer version and nothing
# needs it in the tree, bug #565206. Removal in a month.
net-libs/libmapi

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Nothing needs this old dummy package, bug #566774. Removal in a month.
gnome-extra/at-spi

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Upstream dead, doesn't work with libsigc++-2.6, bug #568788. Removal in a
# month.
app-misc/granule

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Upstream dead, nothing needs it, will break with next snakeoil version,
# bug #569202. Removal in a month,
app-portage/maintainer-helper

# Pacho Ramos <pacho@gentoo.org> (08 Jan 2016)
# Upstream dead for ages, they rely on old libs also, bug #565654. Removal
# in a month.
gnome-extra/gdesklets-core
x11-plugins/desklet-Genesis
x11-plugins/desklet-ImageSlideShow
x11-plugins/desklet-Mouse
x11-plugins/desklet-SlideShow
x11-plugins/desklet-WeeklyCalendar
x11-plugins/desklet-ftb
x11-plugins/desklet-iCalendarEvent
x11-plugins/desklet-justanicon

# Patrice Clement <monsieurp@gentoo.org> (06 Jan 2016)
# Struts 2 and friends suffer from a lack of interest. These ebuilds are
# outdated, riddled with CVEs (about 5 currently opened in Bugzilla) and some
# of them do not compile at all. Time to see them off.
# Masked for removal in 30 days. See bug #540888.
dev-java/struts-plugins
dev-java/struts-xwork
dev-java/struts-core
dev-java/struts

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Fails to build, bug #514778. Removal in a month.
media-sound/mimd

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Fails to build, bug #514826. Removal in a month.
sys-cluster/gfs-kernel

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Fails to build, bug #514832. Removal in a month.
x11-misc/matchbox-panel-manager

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Unmaintained, security issues, bug #515272. Removal in a month.
net-misc/italc

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Fails to build, bug #515904. Removal in a month.
media-sound/sweep

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Unmaintained, fails to build, relies on deprecated libs, bug #515912.
# Removal in a month.
x11-misc/dragbox

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Unfetchable, mirror-restricted, bug #521442. Removal in a month.
sci-chemistry/gopenmol

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Unbuildable for a long time, bug #522916. Removal in a month.
net-im/silc-server

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Buggy and completely obsolete, bug #527488. Removal in a month.
x11-misc/alltray

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Fails to build, dead since 2005, bug #528050. Removal in a month.
net-irc/asuka

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Fails to build, bug #528854. Removal in a month.
dev-ada/aunit

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Fails to build, bug #529434. Removal in a month.
app-emulation/aranym

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Multiple bugs and buggy ebuild, bug #533170. Removal in a month.
net-proxy/ntlmaps

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# microdc2 should be used instead, bug #533782. Removal in a month.
net-p2p/microdc

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Unmaintained, security issues, bug #536334. Removal in a month.
net-nds/389-ds-base
app-admin/389-ds-console
net-nds/389-admin
app-admin/389-admin-console
www-apps/389-dsgw

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Fails to build, bug #536418. Removal in a month.
dev-ada/xmlada
dev-ada/adadoc

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Fails to build, bug #536632. Removal in a month.
dev-util/piklab

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Fails to build, bug #537520. Removal in a month.
dev-ada/florist

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Unmaintained, security issues, bug #537528. Removal in a month
app-admin/usermin

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Unmaintained, cannot be downloaded, bug #537582. Removal in a month.
sys-block/lsiutil

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Obsolete versions, updated ones living in Sabayon overlay, bug #538142.
# Removal in a month.
app-admin/rigo
app-misc/magneto-loader
kde-misc/magneto-kde
x11-misc/magneto-gtk
x11-misc/magneto-gtk3
sys-apps/rigo-daemon
sys-apps/magneto-core

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Cannot be installed, bug #541626. Removal in a month.
net-fs/tahoe-lafs

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Fails to build, bug #542928. Removal in a month.
net-misc/kumofs

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Fails to build, bug #543210. Removal in a month.
media-sound/phasex

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Fails to build, bug #545090. Removal in a month.
x11-misc/bmpanel

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Unmaintained, obsolete, bug #545450. Removal in a month.
sys-cluster/xgridagent

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Fails to build, upstream dead many years ago, bug #545692. Removal in a
# month.
media-sound/muine

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Fails to build, bug #547290. Removal in a month.
sys-cluster/pacemaker-gui

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Fails to build, bug #547652. Removal in a month.
media-video/hwdecode-demos

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Fails to build, nothing in the tree needs this, bug #549686. Removal in a
# month.
app-i18n/xsim

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Buggy, upstream dead for years, bug #550800. Removal in a month.
games-action/poopmup

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Dead upstream since 2009, nothing in the tree needs it anymore, bug
# #551354. Removal in a month.
net-proxy/sshproxy

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Fails to build, bug #551894. Removal in a month.
dev-python/Djblets
dev-util/reviewboard

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Security issues, bug #553604. Removal in a month.
net-mail/checkpw

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Fails to build, bug #555556. Removal in a month.
app-i18n/scim-canna

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Fails to build, bug #555840. Removal in a month.
app-misc/lcd-stuff

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Doesn't build with current kernels, lacks a maintainer to keep it patched
# for compat with upcoming kernel versions too, bug #557422. Removal in a
# month.
app-laptop/nvidiabl

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Upstream dead for ages, doesn't build, bug #558274. Removal in a month.
net-wireless/ap-utils

# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
# Those packages were meant to use on a PDA, no upsteam commits to git since
# 3 years to most project parts. No releases, bug #560482. Removal in a
# month.
x11-libs/libmatchbox
x11-misc/matchbox-panel-manager
x11-plugins/matchbox-applet-input-manager
x11-plugins/matchbox-applet-startup-monitor
x11-plugins/matchbox-applet-volume
x11-plugins/matchbox-desktop-image-browser
x11-plugins/matchbox-desktop-xine
x11-wm/matchbox-common
x11-wm/matchbox-desktop
x11-wm/matchbox-panel
x11-wm/matchbox-window-manager
x11-themes/matchbox-themes-extra
x11-wm/matchbox
x11-misc/matchbox-keyboard

# Matthias Maier <tamiko@gentoo.org> (06 Jan 2016)
# Obsolete package, nowadays bundled with media-sound/quodlibet
# Masked for removal in 30 days
media-plugins/quodlibet-plugins

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Upstream dead, ignores cflags, nothing need it in the tree
# bug #438940. Removal in a month
net-libs/libbt

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Broken in many ways, nobody willing to fix and maintain it.
# bug #443728. Removal in a month
app-laptop/prey

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Upstream dead for a long time, doesn't work on amd64, bug #445776
# Removal in a month.
net-p2p/wire

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Incompatible with current services API, bug #446940
# Removal in a month.
media-sound/shell-fm

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Dead, doesn't build, use multimon-ng instead, bug #448742
# Removal in a month.
app-misc/multimon

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Doesn't support current gnutls, nothing in the tree needs
# this old lib, bug #456306. Removal in a month.
net-libs/libdexter

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Doesn't build with current kernels, the support is included
# in that kernels without this extra package, bug #463566
# Removal in a month.
app-accessibility/speakup
app-accessibility/speechd-up

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Fails to build, bug #465208. Removal in a month.
app-misc/usbirboy

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Fails with tcl/tk-8.6, nothing in the tree needs this
# bug #467444. Removal in a month
dev-tcltk/tcl-sql

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
#
# Tom Wijsman <TomWij@gentoo.org> (18 Sep 2013)
# Temporarily masked due to QA issue during attempts to unbundle dependencies;
# we need to check the jar contents to check for differences, especially the
# stax dependency seems to be problematic in this regard but we'll check all of
# them to ensure that unbundling doesn't hurt some missed functionality.
# Bug #471942 tracks the progress of these unbundling efforts.
#
# Removal in a month
app-admin/ec2-api-tools

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Broken and completely old versions because this needs a maintainer
# to take care of bumping it soon enough, bug #472170
sys-kernel/vserver-sources

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Upstream dead for a long time, no compatible then with current ffmpeg
# versions and neither with libav, bug #474352. Removal in a month
media-video/winki

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Not compatible with libav, upstream dead for ages, please use other
# downloaders like youtube-dl, bug #474370. Removal in a month.
net-misc/yaydl

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Not compatible with libav, upstream stopped caring about fix and taking
# care of its security issues long time ago. bug #474388. Removal in a
# month.
www-apps/gallery

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Not compatible with latest gif, one of the last consumer of old imlib, bug
# #486248. Removal in a month.
app-office/magicpoint

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Doesn't work with current twisted, bug #486810. Removal in a month.
media-video/coherence

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# MSN died long time ago, this are not needed then. bug #489552. Removal in
# a month.
media-libs/libmimic
media-plugins/gst-plugins-mimic

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Fails to build, bug #491292. Removal in a month.
media-sound/giada

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Old version, upstream moved to kannel long time ago, bug #493712
# Removal in a month.
app-mobilephone/kannel-sqlbox

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Doesn't work properly (#519732), doesn't build (#503246). Removal in a
# month.
net-proxy/dansguardian

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Needs to be bumped but it lacks maintainer, bug #505124. Removal in a
# month.
app-emulation/vagrant

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Cannot be download, license is incorrect, bug #505752. Removal in a month.
games-strategy/coldwar-demo

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Cannot be downloaded, mirror restricted, bug #506860. Removal in a month.
games-fps/quake1-movies

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Dead for ages, its functionality was merged in bluez-5 long time ago.
# Nobody needs it in the tree, bug #507486. Removal in a month.
app-mobilephone/obexd

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Not compatible with python3, nothing in the tree needs this old lib, bug
# #513424. Removal in a month
sys-libs/libtrash

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# No updates since 2005, doesn't build, bug #513996. Removal in a month.
net-proxy/oops

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Doesn't build, bug #514018. Removal in a month.
net-wireless/rfswitch

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Not compatible with current GC lib, bug #514046. Removal in a month.
dev-scheme/bigloo
dev-scheme/hop
app-text/skribe

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Fails to build, bug #514058. Removal in a month.
net-libs/libopkele
www-apache/mod_auth_openid

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Fails to build, bug #514078. Removal in a month.
dev-util/exmap

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Fails to build, unmaintained, bug #514122. Removal in a month.
x11-misc/growl-for-linux

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Missing deps, doesn't run, bug #514436. Removal in a month.
x11-misc/bbsload

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Fails to build, bug #514596. Removal in a month.
dev-scheme/schemik

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Fails to build, bug #514602. Removal in a month.
app-crypt/shishi

# Pacho Ramos <pacho@gentoo.org> (05 Jan 2016)
# Fails to build, bug #514634. Removal in a month.
app-arch/torrentzip

# Patrice Clement <monsieurp@gentoo.org> (05 Jan 2016)
# According to its maintainer. this project is slowly dying 
# and there's no activity occuring on mailing lists / git repo.
# Masked for removal. See bug 570836.
www-client/uzbl

# Andrey Grozin <grozin@gentoo.org> (04 Jan 2016)
# Needs a bump and substantial ebuild rewrite
=sci-mathematics/reduce-20110414-r1

# Michael Sterrett <mr_bones_@gentoo.org> (04 Jan 2016)
# Upstream stopped development in 2004 and doesn't work on modern systems.
# Masked for removal on 20160203
games-puzzle/krystaldrop

# Pacho Ramos <pacho@gentoo.org> (03 Jan 2016)
# Fails to build, bug #368873. Removal in a month
x11-misc/xoo

# Pacho Ramos <pacho@gentoo.org> (03 Jan 2016)
# Fails to build, bug #368913. Removal in a month
media-video/cxfe

# Pacho Ramos <pacho@gentoo.org> (03 Jan 2016)
# Fails to build, bug #369053. Removal in a month
media-sound/freewheeling

# Pacho Ramos <pacho@gentoo.org> (03 Jan 2016)
# Fails to build, bug #369769. Removal in a month
media-sound/gqmpeg

# Pacho Ramos <pacho@gentoo.org> (03 Jan 2016)
# Obsolete lib, nothing needs it, bug #380193
# Removal in a month
x11-libs/libsexy

# Pacho Ramos <pacho@gentoo.org> (01 Jan 2016)
# Nothing requires this obsolete versions, bug #249418
# Removal in a month.
=dev-db/sqlite-2*

# Pacho Ramos <pacho@gentoo.org> (01 Jan 2016)
# Fails to build in multiple ways, bug #250055
# Removal in a month.
dev-ada/adasockets

# Pacho Ramos <pacho@gentoo.org> (01 Jan 2016)
# Security issues, without maintainer, upstream dead, bug #261194
# Removal in a month.
net-dns/noip-updater

# Pacho Ramos <pacho@gentoo.org> (01 Jan 2016)
# Tests fail, the version was superseeded by Dino package
# long time ago but it lack maintainer to do the work.
# Removal in a month. bug #297952
dev-util/cocom

# Pacho Ramos <pacho@gentoo.org> (01 Jan 2016)
# Fails to build, bug #298686
# Removal in a month
dev-ada/booch_components

# Pacho Ramos <pacho@gentoo.org> (01 Jan 2016)
# Fails to build, bug #298700
# Removal in a month.
dev-java/istack-commons-tools
dev-java/jax-ws-tools
dev-java/jaxb-tools

# Pacho Ramos <pacho@gentoo.org> (01 Jan 2016)
# Unresolved security issues, bug #324017
# Removal in a month.
sys-libs/nss-db

# Pacho Ramos <pacho@gentoo.org> (01 Jan 2016)
# Doesn't work, bug #330329
# Removal in a month.
net-dialup/capisuite

# Pacho Ramos <pacho@gentoo.org> (01 Jan 2016)
# Does not respect LDFLAGS, nothing requires it, bug #334627
# Removal in a month.
app-admin/showconsole

# Pacho Ramos <pacho@gentoo.org> (01 Jan 2016)
# Fails to build, bug #348418
# Removal in a month.
dev-ada/gtkada

# Pacho Ramos <pacho@gentoo.org> (01 Jan 2016)
# Upstream died long time ago, replaced by eiskaltdcpp
# bug #364057 . Removal in a month.
net-p2p/linuxdcpp

# Patrice Clement <monsieurp@gentoo.org> (01 Jan 2016)
# Project dead: upstream deprecated it a while ago.
# Masked for removal in 30 days. See bug #429444.
dev-python/pyltxml

# Michael Palimaka <kensington@gentoo.org> (31 Dec 2015)
# Merged into >=kde-apps/kaddressbook-4.14
# Masked for removal in 30 days
kde-base/contactthemeeditor

# Michael Palimaka <kensington@gentoo.org> (31 Dec 2015)
# Relies on dead web API. Dead upstream. Masked for removal in 30 days
# Bug 364097
media-sound/shoutcast-search

# Michael Palimaka <kensington@gentoo.org> (31 Dec 2015)
# Ancient package, unsupported by upstream. Masked for removal in 30 days
# Bug 565010
dev-python/pysyck

# Pacho Ramos <pacho@gentoo.org> (31 Dec 2015)
# Upstream dead, doesn't compile with libsigc++-2.6, bug #567092
# Removal in a month.
net-misc/gip

# Pacho Ramos <pacho@gentoo.org> (31 Dec 2015)
# Upstream dead, doesn't compile with libsigc++-2.6, bug #568796
# Removal in a month.
media-sound/gnomoradio

# Pacho Ramos <pacho@gentoo.org> (31 Dec 2015)
# Upstream dead, doesn't compile with libsigc++-2.6, bug #568796
# Removal in a month.
app-office/passepartout

# Pacho Ramos <pacho@gentoo.org> (31 Dec 2015)
# Upstream dead, doesn't compile with libsigc++-2.6, multiple bugs
# with current ffmpeg versions, bug #568796
# Removal in a month.
media-video/bombono-dvd

# Pacho Ramos <pacho@gentoo.org> (31 Dec 2015)
# Upstream dead, doesn't compile with libsigc++-2.6, bug #569540
# Removal in a month.
sci-electronics/gspeakers

# Michael Sterrett <mr_bones_@gentoo.org> (30 Dec 2015)
# Upstream has gone away and games-strategy/xbattleai is
# basically a superset anyhow.
# Masked for removal on 20160129
games-strategy/xbattle

# Victor Ostorga <vostorga@gentoo.org> (30 Dec 2015)
# Mask this liferea version because upstream released it broken
=net-news/liferea-1.10.17

# Michael Sterrett <mr_bones_@gentoo.org> (30 Dec 2015)
# Unnecessary with newer version of games-simulation/flightgear
# Masked for removal on 20160129
games-simulation/fgrun

# Michael Sterrett <mr_bones_@gentoo.org> (29 Dec 2015)
# Fetch fails since it looks like it's distributed via stream now (bug #553728)
# Masked for removal on 20160128
games-strategy/revenge-of-the-titans

# Michael Sterrett <mr_bones_@gentoo.org> (29 Dec 2015)
# Lacking in fun; no upstream; crashy (bug #550890)
# Masked for removal on 20160128
games-simulation/qct

# Justin Lecher <jlec@gentoo.org> (29 Dec 2015)
# Fails to build and test runs
# No reverse deps
# #370021, #478614, #513964
sci-libs/libbufr

# Michael Palimaka <kensington@gentoo.org> (27 Dec 2015)
# Fails to build. Dead upstream. Masked for removal in 30 days.
# Bug 541522
dev-util/pmk

# Mikle Kolyada <zlogene@gentoo.org> (26 Dec 2015)
# Dead upstream (last activity in 2003)
# Nothing in the tree depends on it
# Masked for removal
dev-perl/SpeedyCGI

# Sergey Popov <pinkbyte@gentoo.org> (25 Dec 2015)
# Old versions lacks multilib support and proper subslots
# Masked for removal
<dev-libs/boost-1.55.0
<dev-util/boost-build-1.55.0

# Manuel Rüger <mrueg@rueg.eu> (24 Dec 2015)
# Effectively unmaintained, multiple bugs
# Bug 288611,358013,413987,468186,480854,528750,548480,566226
# Masked for removal in 30 days.
media-tv/xawtv

# Michael Palimaka <kensington@gentoo.org> (22 Dec 2015)
# Fails to build. Dead upstream. Masked for removal in 30 days.
# Bug 566446
media-video/vmaid

# Michael Palimaka <kensington@gentoo.org> (22 Dec 2015)
# No longer works. Dead upstream. Masked for removal in 30 days.
# Bug 507914
app-doc/ebookmerge

# Michael Sterrett <mr_bones_@gentoo.org> (21 Dec 2015)
# Vanished from the internet. (bug #561148)
# Masked for removal on 20160120
games-fps/ut2004-ultraduel

# Patrick Lauer <patrick@gentoo.org> (20 Dec 2015)
# Mask TOFU release that doesn't work #567768 and friends
=app-crypt/gkeys-gen-0.1-r1

# Patrick Lauer <patrick@gentoo.org> (20 Dec 2015)
# Ebuild uninstallable #557090
=app-crypt/gkeys-0.1-r1

# Michael Sterrett <mr_bones_@gentoo.org> (18 Dec 2015)
# Unmaintained and no reason to use it or keep it around
# when games-roguelike/rogue is a better choice.
# Masked for removal on 20160117
games-misc/bsd-games-non-free

# Brian Evans <grknight@gentoo.org> (17 Dec 2015)
# "The drizzle project is long dead, it should be removed,
# along with dev-php/pecl-drizzle", by grknight
# in Bug #501060
# Try 2 acked by idella4
# Masked for removal in 30 days.
dev-db/drizzle
dev-php/pecl-drizzle

# José María Alonso Josa <nimiux@gentoo.org> (15 Dec 2015)
# Refers to same package as dev-lisp/clx
# Masked for removal in 30 days, bug 568188
dev-lisp/cl-clx

# Andreas K. Huettel <dilfridge@gentoo.org> (11 Dec 2015)
# Ancient, smells funny, disowned by upstream, needs syck
# Masked for removal in 30 days, bug 565012
dev-perl/YAML-Parser-Syck

# Fabian Groffen <grobian@gentoo.org> (11 Dec 2015)
# Release candidates for Exim 4.87
=mail-mta/exim-4.87_rc1
=mail-mta/exim-4.87_rc2

# Michael Palimaka <kensington@gentoo.org> (10 Dec 2015)
# Relies on dead ISP API. Dead upstream. Masked for removal in 30 days.
# Bug 567532
x11-plugins/wmium

# Pawel Hajdan, Jr. <phajdan.jr@gentoo.org> (07 Dec 2015)
# Dev channel releases are only for people who are developers or want more
# experimental features and accept a more unstable release.
>=www-client/chromium-49

# Anthony G. Basile <blueness@gentoo.org> (06 Dec 2015)
# Masked until we deal with SSLv3, bug #567554
=dev-libs/libressl-2.3*

# Robin H. Johnson <robbat2@gentoo.org> (04 Dec 2015)
# Much early testing needed
>=sys-cluster/ceph-9

# Brian Evans <grknight@gentoo.org> (02 Dec 2015)
# All current targets are masked.
<dev-php/pecl-taint-1.99.99

# Brian Evans <grknight@gentoo.org> (02 Dec 2015)
# Zend Opcache was integrated into PHP versions 5.5 and later
# Masked for removal in 30 days
dev-php/pecl-zendopcache

# Brian Evans <grknight@gentoo.org> (02 Dec 2015)
# PHP 5.4 is End Of Life and will not receive any further updates
# Please migrate to 5.5 or, preferably 5.6.
dev-lang/php:5.4
~virtual/httpd-php-5.4

# Justin Lecher <jlec@gentoo.org> (12 Nov 2015)
# deprecated version of the plugin. 
# sci-chemistry/pymol includes the newer version
sci-chemistry/pymol-apbs-plugin

# Brian Evans <grknight@gentoo.org> (11 Nov 2015)
# Mask latest xdebug{,-client} beta versions
# Upstream keeps changing the tarballs causing Manifest errors.
# wrt bug 565234
>=dev-php/xdebug-2.4.0_beta1
>=dev-php/xdebug-client-2.4.0_beta1

# Justin Lecher <jlec@gentoo.org> (10 Nov 2015)
# Vulnerable package CVE-2014-{1932,1933}
# Bug: 507982
dev-python/imaging

# Justin Lecher <jlec@gentoo.org> (10 Nov 2015)
# Compatibility virtual for transition from
# dev-python/imaging to dev-python/pillow
# obsolete now #508266
virtual/python-imaging

# Michał Górny <mgorny@gentoo.org> (30 Oct 2015)
# Uses unsafe ioctls that could result in data corruption. Upstream
# is working on replacing them in the wip/dedup-syscall branch.
# Keep it masked until they are done. sys-fs/duperemove is
# the suggested replacement for the meantime.
sys-fs/bedup

# Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> (29 Oct 2015)
# Mask until it is decided how to address xorg-server file collisions #564358
=x11-drivers/xf86-input-evdev-2.10.0
=x11-drivers/xf86-input-evdev-2.10.1

# Ian Delaney <idella4@gentoo.org> (27 Oct 2015)
# fails to build dev-lisp/sbcl-1.2.16 #563812
# mgorny: dev-lisp/uiop as version-bound revdep
=dev-lisp/asdf-3.1.6
=dev-lisp/uiop-3.1.6

# Justin Lecher <jlec@gentoo.org> (23 Oct 2015)
# Breaking changes #563540
=app-text/ghostscript-gpl-9.18

# Mike Frysinger <vapier@gentoo.org> (18 Oct 2015)
# apache-2.4.17 includes support for http2 now.
www-apache/mod_h2

# Mike Pagano <mpagano@gentoo.org> (2 Oct 2015)
# A regression in kernel 4.1.9 could lead to a system
# lockup.  This has been fixed in gentoo-sources-4.1.9-r1
# and the hope is that this patch will make it to 4.1.10
# Expires (2 Oct 2017)
=sys-kernel/vanilla-sources-4.1.9
=sys-kernel/gentoo-sources-4.1.9

# Andreas K. Huettel <dilfridge@gentoo.org> (19 Sep 2015)
# Masked for security reasons, bugs 516044, 552644
# Keeping it in the tree for now for users who cannot upgrade
# (commercial product, separate licenses for major versions)
=app-emulation/vmware-workstation-9*
=app-emulation/vmware-modules-271*

# Lars Wendler <polynomial-c@gentoo.org> (09 Sep 2015)
# Masked for testing
>=net-fs/samba-4.3.0

# Lars Wendler <polynomial-c@gentoo.org> (20 Aug 2015)
# Masked for testing
=net-misc/iputils-20150815
=net-misc/iputils-20150815-r1

# Sebastian Pipping <sping@gentoo.org> (8 Aug 2015)
# Upcoming, too young to go into testing unmasked
dev-libs/iniparser:4

# Davide Pesavento <pesa@gentoo.org> (23 Jul 2015)
# Standalone version of qtwebkit from the 2.3 upstream branch.
# Needs revdep testing. Bug #388207.
=dev-qt/qtwebkit-4.10*

# Ian Delaney <idella4@gentoo.org> (21 Jul 2015)
# The revbump has versions of lua which are also masked.
# Masked until those slotted versions are unmasked
=sys-apps/roccat-tools-3.5.0-r1

# Ben de Groot <yngwin@gentoo.org> (20 Jul 2015)
# Version bump is a WIP, see bug #524242
# It works (except USE=vamp) but is not up to Gentoo standards yet
=media-sound/audacity-2.1.1

# Ian Stakenvicius <axs@gentoo.org> (16 Jul 2015)
# Mask thunerbird-24.x as it is no longer supported, but
# it remains in the tree for now in case there is a need
# for it for upgrading old user profiles, etc.
~mail-client/thunderbird-24.8.0

# Sergey Popov <pinkbyte@gentoo.org> (13 Jul 2015)
# Mask new version of Boost - it's known to cause breakages
~dev-util/boost-build-1.58.0
~dev-libs/boost-1.58.0

# Patrick Lauer <patrick@gentoo.org> (1 Jul 2015)
# Wrong version #553670
=sys-kernel/gentoo-sources-4.1.1

# Patrick Lauer <patrick@gentoo.org> (14 Jun 2015)
# Has race condition / failure modes that make systems unusable
# See #551724 and duplicates
=sys-fs/udev-init-scripts-29

# Ryan Hill <rhill@gentoo.org> (28 Apr 2015)
# Moving to /lib/gentoo/functions.sh broke the eclass
# by changing output it relies on. See bug #504118,
# 547586, and 547962.
>=sys-devel/gcc-config-1.8-r1

# Patrick Lauer <patrick@gentoo.org> (10 Apr 2015)
# Breaks pretty much all consumers, like samba
# Mask until it's more usable
>=net-libs/gnutls-3.4.0

# Michał Górny <mgorny@gentoo.org> (28 Mar 2015)
# on behalf of gx86-multilib project <multilib@gentoo.org>
# Removed lastrited emul-linux-x86. The mask is kept post-removal
# per Arfrever's request so that the PM warns about masked packages
# being installed.
app-emulation/emul-linux-x86-baselibs
app-emulation/emul-linux-x86-cpplibs
app-emulation/emul-linux-x86-db
app-emulation/emul-linux-x86-gstplugins
app-emulation/emul-linux-x86-gtklibs
app-emulation/emul-linux-x86-gtkmmlibs
app-emulation/emul-linux-x86-medialibs
app-emulation/emul-linux-x86-motif
app-emulation/emul-linux-x86-opengl
app-emulation/emul-linux-x86-qtlibs
app-emulation/emul-linux-x86-sdl
app-emulation/emul-linux-x86-soundlibs
app-emulation/emul-linux-x86-xlibs
app-emulation/emul-linux-x86-jna

# Justin Lecher <jlec@gentoo.org> (28 Feb 2015)
# Unfixed security problems
# No upstream support anymore
# CVE-2015-{0219,0220,0221,0222,5145}
# #536586
# #554864
=dev-python/django-1.4*
=dev-python/django-1.5*
=dev-python/django-1.6*
# Not supported by any django version upstream supports
dev-python/south

# Michał Górny <mgorny@gentoo.org> (11 Feb 2015)
# Potentially destructive to @world, bug #539746.
=sys-apps/portage-2.2.16

# Eray Aslan <eras@gentoo.org> (03 Feb 2015)
# Mask experimental software
=mail-mta/postfix-3.1*

# Sergei Trofimovich <slyfox@gentoo.org> (29 Jan 2015)
# Mask live ebuild
=dev-util/radare2-9999

# Anthony G. Basile <blueness@gentoo.org> (9 Jan 2015)
# p.mask the -9999 version
=dev-misc/i2pd-9999

# Tony Vroon <chainsaw@gentoo.org> (5 Jan 2015)
# Asterisk 13 is an LTS release but has not seen
# sufficient releases to be considered ready for
# production usage. You are welcome to have a go
# but please be careful.
=net-misc/asterisk-13*

# Aaron W. Swenson <titanofold@gentoo.org> (28 Dec 2014)
# Split ebuilds are no longer maintained. Migrate to the unified
# ebuilds invoking the following, substituting SLOT for the desired
# slot and optionally enabling the server and/or docs USE flags:
#   emerge dev-db/postgresql:SLOT
# No further action is required.
dev-db/postgresql-docs
dev-db/postgresql-base
dev-db/postgresql-server

# Jeroen Roovers <jer@gentoo.org> (12 Dec 2014)
# The 96 and 173 branches are no longer supported and remain vulnerable to
# CVE-2014-8298 (bug #532342). You may be able to mitigate the vulnerability by
# disabling GLX indirect rendering protocol support on the X server.
<x11-drivers/nvidia-drivers-304

# Sergey Popov <pinkbyte@gentoo.org> (09 Dec 2014)
# Security mask, wrt bug #529728
<app-antivirus/clamav-0.98.5

# Richard Yao <ryao@gentoo.org> (29 Nov 2014)
# Depends on media-libs/lcms:0, which has unspecified security vulnerabilities.
# Masked until mscms.dll.so that links to media-libs/lcms:2 is backported from
# a newer wine, bug #526806.
<app-emulation/crossover-bin-12.5.0

# Patrick Lauer <patrick@gentoo.org> (24 Nov 2014)
# Missing deps, uninstallable
www-apps/trac-downloads

# Markos Chandras <hwoarang@gentoo.org> (18 Nov 2014)
# Mask latest development version for testing
=x11-misc/lightdm-1.17*

# Mike Pagano <mpagano@gentoo.org> (16 Oct 2014)
# A regression in kernels 3.17.0 lead to file system corruption
# for affected systems. This has been fixed in >= 3.17.1
# Expires (16 Oct 2016)
# See Bug #525548.
=sys-kernel/vanilla-sources-3.17.0
=sys-kernel/gentoo-sources-3.17.0
=sys-kernel/aufs-sources-3.17.0

# Michał Górny <mgorny@gentoo.org> (15 Sep 2014)
# Causes undefined references few layers down (in mediastreamer),
# someone needs to investigate.
>=net-libs/libzrtpcpp-4

# Christian Faulhammer <fauli@gentoo.org> (02 Sep 2014)
# website not working anymore and will stay like this,
# tool is useless. See bug 504734
app-admin/hwreport

# Sergey Popov <pinkbyte@gentoo.org> (28 Aug 2014)
# Security mask, wrt bug #519650
# If your application is broken due to this mask,
# please file a separate bug report
<net-dialup/ppp-2.4.7

# Samuli Suominen <ssuominen@gentoo.org> (23 Aug 2014)
# Some compile problems with media-libs/openexr >= 2.2.0
# See https://bugs.gentoo.org/520240 for more information
>=media-libs/ilmbase-2.2.0
>=media-libs/openexr-2.2.0
>=media-gfx/openexr_viewers-2.2.0

# Robin H. Johnson <robbat2@gentoo.org> (04 Aug 2014)
# Masked for testing, presently fails upstream testsuite:
# FAIL:07:02:35 (00:00:00) db_dump/db_load(./TESTDIR.3/recd001.db:child killed: kill signal): expected 0, got 1
# FAIL:07:02:35 (00:00:00) Dump/load of ./TESTDIR.3/recd001.db failed.
# FAIL:07:02:35 (00:00:00) db_verify_preop: expected 0, got 1
=sys-libs/db-6.1*

# Yixun Lan <dlan@gentoo.org> (17 Jul 2014)
# Masked for proper testing. (Major updates in the code).
=net-misc/tinc-1.1_pre*

# Ulrich Müller <ulm@gentoo.org> (15 Jul 2014)
# Permanently mask sys-libs/lib-compat and its reverse dependencies,
# pending multiple security vulnerabilities and QA issues.
# See bugs #515926 and #510960.
sys-libs/lib-compat
sys-libs/lib-compat-loki
games-action/mutantstorm-demo
games-action/phobiaii
games-fps/rtcw
games-fps/unreal
games-strategy/heroes3
games-strategy/heroes3-demo
games-strategy/smac
sys-block/afacli

# Mikle Kolyada <zlogene@gentoo.org> (27 Jun 2014)
# Masked for proper testing. (Major updates in the code).
~dev-perl/PortageXS-0.02.12
~dev-perl/PortageXS-0.2.12

# Robin H. Johnson <robbat2@gentoo.org> (21 Jun 2014)
# Needs work, but infra needs it for new VM boxes
app-emulation/openstack-guest-agents-unix
app-emulation/xe-guest-utilities

# Tom Wijsman <TomWij@gentoo.org> (6 Jun 2014)
# Mask gentoo-sources ebuilds that are affected with security bug CVE-2014-3153.
#
# Pinkie Pie discovered an issue in the futex subsystem that allows a
# local user to gain ring 0 control via the futex syscall. An
# unprivileged user could use this flaw to crash the kernel (resulting
# in denial of service) or for privilege escalation.
#
# https://bugs.gentoo.org/show_bug.cgi?id=CVE-2014-3153
# Expires (6 Jun 2016)
=sys-kernel/gentoo-sources-3.2.58-r2
~sys-kernel/gentoo-sources-3.4.90
=sys-kernel/gentoo-sources-3.4.91
~sys-kernel/gentoo-sources-3.10.40
=sys-kernel/gentoo-sources-3.10.41
~sys-kernel/gentoo-sources-3.12.20
=sys-kernel/gentoo-sources-3.12.21
~sys-kernel/gentoo-sources-3.14.4
=sys-kernel/gentoo-sources-3.14.5

# Hans de Graaff <graaff@gentoo.org> (1 Jun 2014)
# Mask new rubinius version for testing. Current versions have some
# issues that should be solved in the forthcoming rubinius 2.3
# release.
=dev-lang/rubinius-2*

# Markos Chandras <hwoarang@gentoo.org> (30 May 2014)
# Mask beta release
=app-i18n/transifex-client-0.11_beta

# Tom Wijsman <TomWij@gentoo.org> (30 May 2014)
# CVE-2012-1721 - Remote Code Execution Vulnerability
#
# Vulnerable: IBM Java SE 5.0 SR12-FP5
# URL:        http://www.securityfocus.com/bid/53959/
dev-java/ibm-jdk-bin:1.5

# Tom Wijsman <TomWij@gentoo.org> (03 May 2014)
# Needs to be further tested and revised by both Java and Ruby herds.
>=dev-java/jruby-1.7.12
dev-ruby/bitescript
dev-ruby/bouncy-castle-java
dev-ruby/duby
dev-ruby/jruby-openssl
dev-ruby/weakling

# Matti Bickel <mabi@gentoo.org> (22 Apr 2014)
# Masked slotted lua for testing
app-eselect/eselect-lua
=dev-lang/lua-5.1.5-r2
=dev-lang/lua-5.1.5-r100
=dev-lang/lua-5.2.3
=dev-lang/lua-5.2.3-r1

# Gilles Dartiguelongue <eva@gentoo.org> (06 Apr 2014)
# Old release, never stable, not working anymore
# See bug #327837, #382667, #492474
<media-video/pitivi-0.90

# Alexander Vershilov <qnikst@gentoo.org> (02 Apr 2014)
# Multiple vulnerabilities, see #504724, #505860
<sys-kernel/openvz-sources-2.6.32.85.17

# Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> (26 Mar 2014)
# Affected by multiple vulnerabilities, #445916, #471098 and #472280
<media-libs/mesa-9.1.4

# Sergey Popov <pinkbyte@gentoo.org> (20 Mar 2014)
# Security mask of vulnerable versions, wrt bug #424167
<net-nds/openldap-2.4.35

# Lars Wendler <polynomial-c@gentoo.org> (14 Mar 2014)
# Masked for security reasons.
# Do NOT remove this mask or the affected packages without speaking to
# bonsaikitten first! You have been warned!
<net-fs/samba-3.6

# Mike Gilbert <floppym@gentoo.org> (04 Mar 2014)
# Dev channel releases are only for people who are developers or want more
# experimental features and accept a more unstable release.
www-plugins/chrome-binary-plugins:unstable

# Samuli Suominen <ssuominen@gentoo.org> (03 Mar 2014)
# gnome-extra/polkit-gnome is the "GTK+ polkit agent" and has no extra
# dependencies that installing lxde-base/lxpolkit would solve, thus
# the only motivation for creation of lxpolkit was to drop the word
# 'gnome' from the package's name. The packages are near identical
# by the outlook, determined by the used GTK+ theme.
#
# Raise yourself above the word 'gnome' and install the de facto GTK+ agent:
# emerge -C lxpolkit
# emerge -1 polkit-gnome
#
# Removal will happen at later date, but since there is no hurry, give it
# until rest of the year.
lxde-base/lxpolkit

# Tim Harder <radhermit@gentoo.org> (04 Feb 2014)
# Mask development releases
=media-sound/lilypond-2.19*

# Mike Gilbert <floppym@gentoo.org> (19 Jan 2014)
# To prevent accidental switching of release channels (bug 498306),
# google-chrome has been split into 3 packages:
#
# www-client/google-chrome
# www-client/google-chrome-beta
# www-client/google-chrome-unstable
#
# The stable channel remains as www-client/google-chrome, but has been
# switched to SLOT="0".
#
# Please unmerge your currently installed version and remerge one of the new
# packages.
www-client/google-chrome:beta
www-client/google-chrome:stable
www-client/google-chrome:unstable

# Tony Vroon <chainsaw@gentoo.org> (13 Jan 2014)
# Asterisk 12 is a short term "standard" release
# containing significant architectural changes.
# This is not for your production kit quite yet.
=net-misc/asterisk-12*

# Justin Lecher <jlec@gentoo.org> (14 Oct 2013)
# Seems to break all deps - API change?
>=sci-libs/metis-5

# Diego Elio Pettenò <flameeyes@gentoo.org> (13 Oct 2013)
# Requires a NPN support in mod_ssl (www-server/apache) to work.
# See #471512 for more details.
www-apache/mod_spdy

# Agostino Sarubbo <ago@gentoo.org> (23 Sep 2013)
# Masked because of vulnerable versions
# DO NOT REMOVE OLDER VERSIONS
# temporarily disabled as it also breaks s390 keywording
#<net-nds/openldap-2.4.35

# Sergey Popov <pinkbyte@gentoo.org> (18 Sep 2013)
# Mask development releases of botan:
# - causes many API breakages
# - do not compile in some USE-flag combinations
# - requires at least gcc 4.7(and possibly even 4.8 for some features)
>=dev-libs/botan-1.11.0

# Julian Ospald <hasufell@gentoo.org> (21 Jul 2013)
# Mask all unfetchable versions and those with tons of random
# bugs and segfaults (all). Don't ask for a version bump unless
# there is a working release.
sci-geosciences/googleearth

# Chris Reffett <creffett@gentoo.org> (20 Jul 2013)
# Uses vulnerable versions of bzip2, but these versions are
# necessary to reconstruct older archives. Use at your own risk.
=app-portage/deltup-0.4.5

# Michael Weber <xmw@gentoo.org> (17 Jul 2013)
# Upstream next versions
>=sys-boot/raspberrypi-firmware-1_pre

# Tom Wijsman <TomWij@gentoo.org> (30 Jun 2013)
# Sun JDK and JRE contain critical vulnerabilities and receive no further
# updates; masking to make users aware of this, users that still need this
# package and have no alternative can unmask at their own risk. See bug #473830.
#
# This is continued by Oracle Corporation, which has acquired Sun Microsystems
# in early 2010; as per https://en.wikipedia.gentoo.org/wiki/Sun_acquisition_by_Oracle
#
# Users are suggested to upgrade to one of the newer Oracle packages like
# dev-java/oracle-jdk-bin or dev-java/oracle-jre-bin or choose another
# alternative we provide; eg. the IBM JDK/JRE or the open source IcedTea.
#
# Most of these packages provide a jce USE flag for those whom need the
# Java Cryptographic Extension Unlimited Strength Policy USE flag; whether that
# works depends from VM to VM, it seems to work for most except for the IBM VMs.
dev-java/sun-jdk
dev-java/sun-jre-bin
dev-java/sun-jce-bin

# Julian Ospald <hasufell@gentoo.org> (26 Jun 2013)
# Depends on masked dev-lang/lua-5.2
=games-emulation/sdlmame-0.149
=games-emulation/sdlmess-0.149

# Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> (25 Jun 2013)
# Mask new ptlib/opal for breakage, tracked in bug #474742
# Lars Wendler <polynomial-c@gentoo.org> (29 Apr 2014)
# Adjusted mask so newer versions get covered as well.
>=net-libs/ptlib-2.12.0
>=net-libs/opal-3.12.0

# Pacho Ramos <pacho@gentoo.org> (15 Jun 2013)
# Upstream stalled, improper rendering (#470818),
# use app-editors/efte instead.
=app-editors/fte-20110708

# Patrick Lauer <patrick@gentoo.org> (21 May 2013)
# broken dependencies -> uninstallable #470712
app-portage/g-ctan

# Michael Weber <xmw@gentoo.org> (18 Apr 2013)
# Masked due test failures
=app-arch/advancecomp-1.17

# Sergey Popov <pinkbyte@gentoo.org> (02 Apr 2013)
# Masking =media-libs/ffmpegsource-2.17.4_pre753
# by maintainer's request.
# This version does not work properly, see bug #464078
=media-libs/ffmpegsource-2.17.4_pre753

# Richard Freeman <rich0@gentoo.org> (24 Mar 2013)
# Contains known buffer overflows.  Package generally works
# but should not be fed untrusted input (eg from strangers).
# Masked to ensure users are aware before they install.
app-text/cuneiform

# Tom Wijsman <TomWij@gentoo.org> (12 Mar 2013)
# 2.5.* has known security and other issues due to an affected
# bundled ffmpeg, see bugs #446468 and #444262.
<media-video/avidemux-2.6.2

# Sven Wegener <swegener@gentoo.org> (21 Dec 2012)
# temporary mask for socket location change
=app-misc/screen-4.0.3-r8

# Rick Farina <zerochaos@gentoo.org> (21 Dec 2012)
# madwifi has been replaced by ath5k and ath9k in kernel
# drivers and is subject to numerous long standing bugs
# stable wpa_supplicant sometimes wants madwifi-ng-tools
#net-wireless/madwifi-ng-tools
net-wireless/madwifi-ng

# Pacho Ramos <pacho@gentoo.org> (25 Oct 2012)
# obexd changed its API without any warning, it's recommended to ship
# 0.46 until https://bugzilla.gnome.org/682106 is fixed to prevent
# bluetooth-sendto breakage.
>=app-mobilephone/obexd-0.47

# Ralph Sennhauser <sera@gentoo.org> (18 Jul 2012)
# Unmaintained, multiple vulnarabilities. #351626
# A more recent source build maintained by the community is available in the
# seden overlay. A more recent binary is available in the java-overlay.
<=dev-util/eclipse-sdk-3.5.1-r1

# Robin H. Johnson <robbat2@gentoo.org> (09 Feb 2012)
# Needs to be slotted better
=dev-libs/yaz-4*

# Andreas K. Huettel <dilfridge@gentoo.org> (22 Mar 2012)
# Even its author admits that it's an ugly hack. Crashes e.g.
# firefox with kde-4.8. Unmask at your own risk.
kde-misc/kgtk

# Samuli Suominen <ssuominen@gentoo.org> (06 Mar 2012)
# Masked for testing since this is known to break nearly
# every reverse dependency wrt bug 407091
>=dev-lang/lua-5.2.0

# Samuli Suominen <ssuominen@gentoo.org> (30 Oct 2011)
# Masked for security bug #294253, use only at your own risk!
=media-libs/fmod-3*

# Peter Volkov <pva@gentoo.org> (23 Jul 2011)
# Mask release candidates
=dev-libs/guiloader-2.99.0
=dev-libs/guiloader-c++-2.99.0
=dev-util/crow-designer-2.99.0

# Marijn Schouten <hkBst@gentoo.org> (07 April 2011)
# Masked for number of issues, but can be used to
# test against if people are impatient ;P
# Known issues:
# - Broken emacs support (ulm has promised to look)
# - doesn't build when boehm-gc is built without threads
# - no SLOTting yet!
=dev-scheme/guile-2.0.0

# Markos Chandras <hwoarang@gentoo.org> (01 Nov 2010)
# Masking alpha releases
net-analyzer/ncrack

# Luca Barbato <lu_zero@gentoo.org> (21 Jul 2010)
# Not ready for public consumption, clashes with current mesa-git
media-libs/shivavg

# Stefan Briesenick <sbriesen@gentoo.org> (21 Jul 2010)
# doesn't compile against latest media-libs/spandsp.
# not needed anymore for Asterisk 1.6.
net-misc/asterisk-spandsp_codec_g726

# Mike Frysinger <vapier@gentoo.org> (07 Mar 2010)
# Very old packages that people should have upgraded away from
# long ago.  Courtesy mask ... time to upgrade.
# Added <sys-fs/e2fsprogs as well (halcy0n)
<sys-libs/e2fsprogs-libs-1.41.8
<sys-fs/e2fsprogs-1.41.9

# Robert Piasek <dagger@gentoo.org> (23 Feb 2010)
# Masking libmapi as it depends on masked samba4
>=net-libs/libmapi-0.9

# Peter Alfredsen <loki_val@gentoo.org> (21 Oct 2009)
# Masked because this needs a patch to be applied to portage
# to not install the kitchensink and everything else
# into /usr/src/debug with FEATURES=installsources
=dev-util/debugedit-4.4.6-r2

# Diego E. Pettenò <flameeyes@gmail.com> (09 Oct 2009)
# Untested yet; documented only in Russian, help is appreciated.
sys-auth/pam_keystore

# Diego E. Pettenò <flameeyes@gentoo.org> (08 Aug 2009)
#  on behalf of QA Team
#
# Mass-masking of live ebuilds; we cannot guarantee working state of
# live ebuilds, nor the availability of the server hosting them. As
# per QA team policy, all these need to be kept masked by default, if
# available in the tree.
~app-i18n/skk-jisyo-9999
=app-misc/sleepyhead-9999
app-portage/layman-dbtools
=www-plugins/google-talkplugin-9999

# Tiziano Müller <dev-zero@gentoo.org> (08 Apr 2009)
# pre-releases
>=app-editors/gobby-0.4.91

# Diego E. Pettenò <flameeyes@gentoo.org> (03 Jan 2009)
# These packages are not supposed to be merged directly, instead
# please use sys-devel/crossdev to install them.
dev-libs/cygwin
dev-util/mingw-runtime
dev-util/mingw64-runtime
dev-util/w32api
sys-libs/newlib
dev-embedded/msp430-binutils
dev-embedded/msp430-gcc
dev-embedded/msp430-gdb
dev-embedded/msp430-libc
dev-embedded/msp430mcu
dev-embedded/avr-libc

# Chris Gianelloni <wolf31o2@gentoo.org> (03 Mar 2008)
# Masking due to security bug #194607 and security bug #204067
games-fps/doom3
games-fps/doom3-cdoom
games-fps/doom3-chextrek
games-fps/doom3-data
games-fps/doom3-demo
games-fps/doom3-ducttape
games-fps/doom3-eventhorizon
games-fps/doom3-hellcampaign
games-fps/doom3-inhell
games-fps/doom3-lms
games-fps/doom3-mitm
games-fps/doom3-phantasm
games-fps/doom3-roe
games-fps/quake4-bin
games-fps/quake4-data
games-fps/quake4-demo

# MATSUU Takuto <matsuu@gentoo.org> (05 Apr 2007)
# to be tested, seems unstable
>=app-i18n/scim-anthy-1.3.0

# Tavis Ormandy <taviso@gentoo.org> (21 Mar 2006)
# masked pending unresolved security issues #127167
games-roguelike/slashem

# Tavis Ormandy <taviso@gentoo.org> (21 Mar 2006)
# masked pending unresolved security issues #125902
games-util/hearse

# Robin H. Johnson <robbat2@gentoo.org> (11 Feb 2006)
# zlib interaction is badly broken. See bug #124733.
=dev-vcs/cvs-1.12.13*

# <klieber@gentoo.org> (01 Apr 2004)
# The following packages contain a remotely-exploitable
# security vulnerability and have been hard masked accordingly.
#
# Please see https://bugs.gentoo.org/show_bug.cgi?id=44351 for more info
#
games-fps/unreal-tournament-goty
games-fps/unreal-tournament-strikeforce
games-fps/unreal-tournament-bonuspacks
games-fps/aaut