summaryrefslogtreecommitdiff
blob: a71e5456133f06bf32299d47532426c74bc75625 (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
####################################################################
# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.11750 2010/07/08 23:44:39 jer Exp $
#
# 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")
# d) the word "removal"
#
## Example:
##
## Dev E. Loper <developer@gentoo.org> (25 Jan 2012)
## 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 ---

# Jeroen Roovers <jer@gentoo.org> (08 Jil 2010)
# Alphas and snapshots are not for everyday use
# <http://my.opera.com/desktopteam/blog>
=www-client/opera-10.70*

# Markos Chandras <hwoarang@gentoo.org> (08 Jul 2010)
# Masking rc releases
=net-p2p/qbittorrent-2.3.0_rc*

# Bernard Cafarelli <voyageur@gentoo.org> (07 Jul 2010)
# Broken with current stable gnustep base packages
# Details in bugs #318137, #327371, #327389
# Masked for removal in 30 days
gnustep-libs/gdl2
gnustep-libs/gsweb
gnustep-libs/rigs
gnustep-libs/steptalk
gnustep-apps/stshell

# Doug Goldstein <cardoe@gentoo.org> (07 Jul 2010)
# No actual Gentoo support yet. If you're interested, please see bug #295993
net-misc/netcf

# Pacho Ramos <pacho@gentoo.org> (07 Jul 2010)
# Dead upstream, no new release since 2006, no longer builds (bug #316623).
# Masked for removal in 30 days
dev-dotnet/heap-buddy

# Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> (06 Jul 2010)
# Replaced by dev-python/numpy. Masked for deletion in 30 days (bug #198154).
dev-python/numarray

# Joe Peterson <lavajoe@gentoo.org> (05 Jul 2010)
# Replaced by package media-sound/squeezeboxserver (see bug #287257)
# Masked for removal in 30 days
media-sound/squeezecenter

# Markos Chandras <hwoarang@gentoo.org> (06 Jul 2010)
# Masking development releases
=x11-misc/treeline-1.3.3

# Tobias Heinlein <keytoaster@gentoo.org> (05 Jul 2010)
# Severe security issues (bug #322855)
=www-plugins/adobe-flash-10.0*

# Matti Bickel <mabi@gentoo.org> (04 Jul 2010)
# Dead upstream (bug #324825)
# Masked for removal in 30 days
dev-php5/znf

# Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> (04 Jul 2010)
# Python 2.7 masked until sufficient number of reverse dependencies is fixed.
=dev-lang/python-2.7*

# Michał Januszewski <spock@gentoo.org> (03 Jul 2010)
# Temporary mask until the 256 series nvidia-drivers are unmasked.
>=dev-util/nvidia-cuda-sdk-3.1
>=dev-util/nvidia-cuda-toolkit-3.1

# Samuli Suominen <ssuominen@gentoo.org> (01 Jul 2010)
# Fails to compile with asneeded, bug 247768
# Fails to compile with dcParser errors, bug 253381
# Needs a version bump, bug 277620 with proper python.eclass
# handling, bug 313543
# Masked for removal in 30 days
media-libs/panda3d

# Vlastimil Babka <caster@gentoo.org> (30 Jun 2010)
# Masked for removal due to EOL and security, bug #292001.
# Do this to avoid pulling other 1.5 JDK:
#   emerge -av --depclean sun-jdk:1.5 jdk:1.5 jre:1.5
=dev-java/sun-jdk-1.5*

# Vlastimil Babka <caster@gentoo.org> (30 Jun 2010)
# Masked for removal due to 1.5 JDK removal, bug #292001.
# Use dev-java/tijmp for the 1.6 java replacement.
dev-java/jmp

# Justin Lecher <jlec@gentoo.org> (30 Jun 10)
# Not working
# Hopefully to be rescued
dev-libs/excelformat

# Diego E. Pettenò <flameeyes@gentoo.org> (30 Jun 2010)
#  on behalf of QA team
#
# Modules fail to build with relatively-recent kernels (at
# least since .30); librraies fial to build since at least
# July 2009 in ~arch for built_with_use (and now in stable
# as well). The other two are reverse dependencies.
#
# These packages need a maintainer _with hardware_.
#
# Removal on 2010-08-29
media-video/em84xx-modules
media-video/em84xx-libraries
media-plugins/vdr-em84xx
media-video/packetcommand

# Samuli Suominen <ssuominen@gentoo.org> (29 Jun 2010)
# Only supports bluez-3, see bug 248192
# Masked for removal in 30 days
net-wireless/blueproxy

# Nirbheek Chauhan <nirbheek@gentoo.org> (29 Jun 2010)
# Mask dev-libs/seed; several ebuild issues, and missing pure-runtime deps
# Also needs USE=introspection to be unmasked
dev-libs/seed

# Lennart Kolmodin <kolmodin@gentoo.org> (28 Jun 2010)
# Mask dev-haskell/filepath for removal, not earlier than Aug 2010.
# It's already part of dev-lang/ghc since version 6.6.1.
# See bug #324411.
dev-haskell/filepath

# Samuli Suominen <ssuominen@gentoo.org> (28 Jun 2010)
# Vulnerable xulrunner, bug #324953
#
# himerge needs gtk2hs compiled with xulrunner:1.8
#
# Masked for removal in 30 days
=net-libs/xulrunner-1.8*
app-portage/himerge

# Samuli Suominen <ssuominen@gentoo.org> (28 Jun 2010)
# Fails to compile, bug #274385
# Internal copy of old libpcap and libtomcrypt, bug #278419
# File collision with dev-lang/mono, bug #303957
# Masked for removal in 30 days
net-analyzer/paketto

# Christian Faulhammer <fauli@gentoo.org> (28 Jun 2010)
# Beta version
~dev-lang/erlang-14.1

# Samuli Suominen <ssuominen@gentoo.org> (28 Jun 2010)
# Wrongly stripping -Wl, from LDFLAGS causing sane-compiler-check
# to fail from autoconf based script.
# Broken OpenCV check, doesn't find the cvCreateImage symbol it's looking 
# from -lcv. Orphaned library and ebuild been broken since 2008.
# Masked for removal in 30 days. Bug 280922.
media-libs/libdecodeqr

# Samuli Suominen <ssuominen@gentoo.org> (27 Jun 2010)
# Obsolete lm_sensors and kernel modules for Linux 2.4.
# time to upgrade to lm_sensors-3.
#
# Masked for removal in 30 days
=sys-apps/lm_sensors-2*
sys-apps/lm_sensors-modules

# Samuli Suominen <ssuominen@gentoo.org> (26 Jun 2010)
# Vulnerable and now unused xulrunner-bin, support was dropped from acroread.
#
# Masked for removal in 30 days, bug 324953.
net-libs/xulrunner-bin

# Diego E. Pettenò <flameeyes@gentoo.org> (26 Jun 2010)
#  on behalf of QA team
#
# Fails to build since at least June 2009 (bug #274332). No
# activity since initial import in November 2008.
#
# Removal on 2010-08-25
app-i18n/adaptit

# Diego E. Pettenò <flameeyes@gentoo.org> (26 Jun 2010)
#  on behalf of QA team
#
# Debian-related package; no maintainer; no ebuild activity
# since 2005. Broken install phase as per bug #294975.
#
# Removal on 2010-08-25
dev-util/pbuilder

# Samuli Suominen <ssuominen@gentoo.org> (26 Jun 2010)
# Masked for QA
# 
# Fails to compile with stable xulrunner, see bug 317275
# Fails to compile with GTK+-2.20, see bug 325661
# Ignores LDFLAGS, see bug 268491
# Current stable is using vulnerable xulrunner, see bug 324953
#
# Removal in 30 days
www-client/kazehakase

# Samuli Suominen <ssuominen@gentoo.org> (25 Jun 2010)
# Depends on old unslotted media-libs/ming which fails to build
# Ignores build flags wrt bug 240820
# Needs version bump wrt bug 272974, still using old ming
# built_with_use cleanup, bug 286253
# masked for removal in 30 days
media-libs/ploticus

# Diego E. Pettenò <flameeyes@gentoo.org> (24 Jun 2010)
#  on behalf of QA team
#
# Fails to build with Berkeley DB 5.0 (#319937); current
# stable fails to build with current stable glibc (bug
# #320645), last activity in both ebuild and upstream in 2008
# (and even then it wasn't from maintainers); uses $EDITOR
# and $PAGER at build-time (bug #294762, and slightly related
# bug #262150. One configure test becomes interactive if
# app-editors/elvis is installed (bug #323541). Multiple
# collisions.
#
# Feel free to pick this up and maintain it properly, but
# unless a new maintainer can be found, this package is
# slated for removal.
#
# Removal on 2010-08-23
mail-client/exmh
mail-client/nmh

# Samuli Suominen <ssuominen@gentoo.org> (24 Jun 2010)
# poorly written ebuild and sources are no longer available,
# mirror restricted
# masked for removal in 30 days
app-editors/xxe

# Kacper Kowalik <xarthisius@gentoo.org> (24 Jun 2010)
# Last release in 2002. fails with --as-needed Bug 248356
# Build system beyond repair, automagic dependency on Tcl
# Fails to build with fortran
#
# masked for removal in 30 days
sci-geosciences/vis5d+

# Samuli Suominen <ssuominen@gentoo.org> (24 Jun 2010)
# these are included in KDE 4.4, so no need for separate ebuilds
#
# qalculate-applet, bug 321255
# aurorae, bug 325061
# blogilo is now kde-base/blogilo
#
# masked for removal in 30 days
kde-misc/qalculate-applet
x11-themes/aurorae
kde-misc/blogilo

# Michał Januszewski <spock@gentoo.org> (24 Jun 2010)
# Temporary mask to be removed once the ebuild is confirmed to work
# reliably on all supported architectures.
>=x11-drivers/nvidia-drivers-200.0
>=media-video/nvidia-settings-200.0

# Pawel Hajdan jr <phajdan.jr@gentoo.org> (22 Jun 2010)
# Masked for testing. It's quite "challenging" to package.
>=sci-mathematics/nusmv-2.5.0

# Samuli Suominen <ssuominen@gentoo.org> (22 Jun 2010)
# Replaced by sys-kernel/dracut
#
# Unresolved bugs 127542, 144365, 174068, 181685, 268285
#
# Removal in 30 days, see bug 324741
sys-apps/mkinitrd

# Christian Faulhammer <fauli@gentoo.org> (22 Jun 2010)
# Masked for removal in 30 days
# Never really took off, unusable state for years
# No upstream activity
x11-misc/gaia

# Kacper Kowalik <xarthisius@gentoo.org> (21 Jun 2010)
# New version modular version of heartbeat
# Waiting for migration guide and extensive set of tests
#
>=sys-cluster/heartbeat-3.0.3

# Thomas Beierlein <tomjbe@gentoo.org> (22 Jun 2010)
# Restrict mask to only the sci-libs/libgeda-1.4.3* ebuilds as 
# otherwise the stable sci-electronics/geda-1.4.0 misses a dep.
#
# Diego E. Pettenò <flameeyes@gentoo.org> (21 Jun 2010)
#  on behalf of QA team
#
# The geda-1.4.3-r1 is the only split ebuild for geda;
# most of its dependencies are stable x86 but not all, so
# the split itself is not stable; the latest stable on x86 is
# 1.4.0-r1. The newer versions are no longer split. There is
# *no* proper blocker or dependency range to avoid collisions
# between them.
#
# Removal on 2010-08-20
=sci-electronics/geda-1.4.3*
=sci-libs/libgeda-1.4.3*
sci-electronics/geda-gattrib
sci-electronics/geda-gnetlist
sci-electronics/geda-gschem
sci-electronics/geda-gsymcheck
sci-electronics/geda-symbols
sci-electronics/geda-utils
sci-electronics/geda-docs
sci-electronics/geda-examples

# Markos Chandras <hwoarang@gentoo.org> (20 Jun 2010)
# Bundles ffmpeg copy, doens't work with systems' ffmpeg
# Bug #258042. Replacement is media-video/recordmydesktop
# Pending removal in 2010-07-20
x11-misc/xvidcap

# Markos Chandras <hwoarang@gentoo.org> (19 Jun 2010)
# Multiple failures. Look at bugs #197617, #297946, #297947. #299753
# Not maintained by upstream anymore.
# Pending removal in 2010-07-19
app-doc/repodoc

# Diego E. Pettenò <flameeyes@gentoo.org> (18 Jun 2010)
#  on behalf of QA team
#
# Collides with FFmpeg, which is a dependency of it. Its
# functionality should now be part of the main package
# (officially since 0.6, but also in our previous
# snapshots). See bug #314985.
#
# Removal on 2010-08-17
media-video/ffprobe

# Patrick Lauer <patrick@gentoo.org> (18 Jun 2010)
# Only one provider left, so the virtuals serve
# no purpose and will be removed soon
virtual/postgresql-base
virtual/postgresql-server

# Alexis Ballier <aballier@gentoo.org> (17 Jun 2010)
# Beta release
>=dev-lang/ocaml-3.12.0_beta

# Justin Lecher <jlec@gentoo.org> (16 Jun 10)
# Just working with the masked experimental version of refmac
>=sci-libs/monomer-db-5.16

# Diego E. Pettenò <flameeyes@gentoo.org> (16 Jun 2010)
#  on behalf of QA team
#
# Has a number of QA issues, see bug #278192. Build happens
# in src_test or src_install, and it has been failing since
# July 2009 in the tinderbox. No reverse dependencies to
# take into consideration.
#
# Removal on 2010-08-15
sci-biology/mpiblast

# Diego E. Pettenò <flameeyes@gentoo.org> (16 Jun 2010)
# Beta version, used to fall-in behind with older releases
=app-admin/sudo-1.7.3_beta*

# Peter Volkov <pva@gentoo.org> (13 Jun 2010)
# Mask release candidate
=net-analyzer/wireshark-1.4.0*

# Matti Bickel <mabi@gentoo.org> (13 Jun 2010)
# Dead upstream (bug #321685)
# Removal on 2010-07-13
dev-php5/jargon
dev-php5/creole

# Samuli Suominen <ssuominen@gentoo.org> (13 Jun 2010)
# Masked for QA, bugs 252122, 297956 and 297958.
#
# Replaced by oroborus-desklaunch, oroborus-deskmenu and oroborus-keylaunch.
#
# Removal in 30 days.
x11-wm/oroborus-extras

# Jeremy Olexa <darkside@gentoo.org> (12 Jun 2010)
# Use in-kernel drivers. Removed in 60 days by treecleaners. bug 321535
net-wireless/prism54

# Jeremy Olexa <darkside@gentoo.org> (12 Jun 2010)
# Orphaned library, nothing uses it. Removed in 60 days by treecleaners.
# bug 316535
net-libs/libbo2k

# Jeremy Olexa <darkside@gentoo.org> (12 Jun 2010)
# Nothing uses it, replaced by app-pda/libimobiledevice.
# Removed in 60 days by treecleaners. bug 315509
app-pda/libiphone

# Jeremy Olexa <darkside@gentoo.org> (12 Jun 2010)
# Depends on HAL, replacement is x11-plugins/wmudmount
# Removed in 60 days by treecleaners. bug 313395
x11-plugins/wmvolman

# Jeremy Olexa <darkside@gentoo.org> (12 Jun 2010)
# Dead upstream, last update from 2005, no maintainer.
# Removed in 60 days by treecleaners, bug 311533
app-misc/mved

# Jeremy Olexa <darkside@gentoo.org> (12 Jun 2010)
# Removed at maintainer's request. Needs new maintainer to stick around.
# Removed in 60 days by treecleaners, bug 311189
app-emulation/point2play

# Jeremy Olexa <darkside@gentoo.org> (12 Jun 2010)
# Does not compile with latest kernel. Not supported by upstream
# Removed in 60 days by treecleaners, bug 309655
net-firewall/ipp2p

# Jeremy Olexa <darkside@gentoo.org> (12 Jun 2010)
# Dead upstream, last release from 2005. Nothing depends on it. Multiple open
# bugs. Removed in 60 days by treecleaners, bug 309113
app-pda/pilot-mailsync

# Jeremy Olexa <darkside@gentoo.org> (12 Jun 2010)
# Fails with forced as-needed but most importantly no maintainer.
# Removed in 60 days by treecleaners, bug 277640
app-text/fmt-ptrn

# Jeremy Olexa <darkside@gentoo.org> (12 Jun 2010)
# Many, many ebuild issues. No maintainer
# Removed in 60 days by treecleaners, bug 261745
net-misc/hamachi

# Jeremy Olexa <darkside@gentoo.org> (12 Jun 2010)
# Depends on deprecated gtk functionality in media-libs/imlib
# Removed in 60 days by treecleaners, bug 215341
x11-plugins/gkacpi

# Jeremy Olexa <darkside@gentoo.org> (12 Jun 2010)
# Old, useless, no maintainer
# Removed in 60 days by treecleaners, bug 185292
net-wireless/ieee80211

# Hans de Graaff <graaff@gentoo.org> (12 Jun 2010)
# Abandoned by upstream, no releases since 2003. Test suite fails and
# generates many deprecation warnings.
# Masked for removal in 30 days.
dev-ruby/amrita

# Ben de Groot <yngwin@gentoo.org> (11 Jun 2010)
# Masked for removal in 30 days, see bug #315067
media-video/whaawmp

# Pacho Ramos <pacho@gentoo.org> (11 Jun 2010)
# Drop old and deprecated bluez-libs and bluez-utils. Use bluez instead.
# Masked for removal in 30 days.
# See bug 301630.
net-wireless/bluez-libs
net-wireless/bluez-utils

# Samuli Suominen <ssuominen@gentoo.org> (11 Jun 2010)
# Only used by old bluez-libs and bluez-utils.
# Masked for removal in 30 days.
# See bug 301630.
gnome-extra/gnome-vfs-obexftp

# Markus Meier <maekke@gentoo.org> (10 Jun 2010)
# mask inkscape prereleases for testing
>=media-gfx/inkscape-0.48_pre0

# Robin H. Johnson <robbat2@gentoo.org> (09 Jun 2010)
# Fails to self-verify/sign in FIPS mode, pending upstream response before
# usage for GSoC project.
app-crypt/hmaccalc

# Tony Vroon <chainsaw@gentoo.org> (09 Jun 2010)
# Alpha releases, should you wish to dip your toes in the
# water... please be aware of the sharks.
# Bugs upstream: http://jira.atheme.org/ and *not* into
# the Gentoo bug tracker.
=media-plugins/audacious-plugins-2.4_alpha*
=media-sound/audacious-2.4_alpha*

# Stanislav Ochotnicky <sochotnicky@gentoo.org> (08 Jun 2010)
#
# Ebuild failing after recent python changes. Needs changes, dead
# upstream and there are plenty of alternatives.
#
# Masked for removal in 30 days (bz323269)
net-p2p/Circle

# Tiziano Müller <dev-zero@gentoo.org> (03 Jun 2010)
# Masked for testing (changes in dependencies, flags and building)
# ... and not my call to unmask it
>=sys-fs/xfsprogs-3.1.2

# Diego E. Pettenò <flameeyes@gentoo.org> (29 May 2010)
#  on behalf of QA team
#
# Maintainer needed, no reverse dependencies. Fails tests,
# code has a strcpy() overflow that aborts with fortified
# sources (gcc 4.5 for instance). See bug #278139 and 321983.
#
# Removal on 2010-07-28
dev-util/awka

# Diego E. Pettenò <flameeyes@gentoo.org> (26 May 2010)
#  on behalf of QA team
#
# cl-smtp fails to fetch since at least September 2007
# (bug #193627); cl-pop needs the former.
#
# Removal on 2010-07-25
dev-lisp/cl-smtp
dev-lisp/cl-pop

# Diego E. Pettenò <flameeyes@gentoo.org> (26 May 2010)
#  on behalf of QA team
#
# Fails to build since at least November 2008, improper
# dependencies over freetype, bug #247917.
#
# Removal on 2010-07-25
media-video/w3cam

# Luca Barbato <lu_zero@gentoo.org> (21 May 2010)
# development release
=dev-db/mongodb-1.5*

# Alex Alexander <wired@gentoo.org> (20 May 2010)
# development releases
=www-client/uget-1.5.9*

# Hans de Graaff <graaff@gentoo.org> (19 May 2010)
# Obsolete dependencies for prawn which were never released
# by upstream on their own. Newer versions are vendored into
# dev-ruby/prawn-core and nothing in the tree depends on them.
# Pending removal on 2010-06-19
dev-ruby/pdf-inspector
dev-ruby/ttfunk

# Diego E. Pettenò <flameeyes@gentoo.org> (18 May 2010)
# Ebuild broken in many ways, not really updated, unneeded.
# Pending removal 2010-06-18
dev-ruby/nimage

# Justin Lecher <jlec@gentoo.org> (16 May 2010)
# Upstreams testing version
# Added on request
>=sci-chemistry/refmac-5.6

# Torsten Veller <tove@gentoo.org> (15 May 2010)
# Perl 5.12 masks:
# - Mask dev-lang/perl-5.12.1 for testing
=dev-lang/perl-5.12.1*
# - Mask dev-perl/Data-Alias for removal
#   It does not work with perl-5.12 and is
#   not needed by any package
dev-perl/Data-Alias

# Tony Vroon <chainsaw@gentoo.org> (11 May 2010)
# The following Asterisk add-ons fail to build correctly against
# current Asterisk 1.6.1 and 1.6.2 branch ebuilds. These are masked for
# removal on or after June 15 unless a developer is willing to port
# these forward. Relevant bug reports:
# http://bugs.gentoo.org/show_bug.cgi?id=298682
# http://bugs.gentoo.org/show_bug.cgi?id=299338
# http://bugs.gentoo.org/show_bug.cgi?id=312433
# http://bugs.gentoo.org/show_bug.cgi?id=313663
# http://bugs.gentoo.org/show_bug.cgi?id=316365
# http://bugs.gentoo.org/show_bug.cgi?id=316761
net-misc/asterisk-app_authenticate_ldap
net-misc/asterisk-app_event
net-misc/asterisk-app_iconv
net-misc/asterisk-app_intercept
net-misc/asterisk-app_ldap
net-misc/asterisk-app_notify

# Robin H. Johnson <robbat2@gentoo.org> (11 May 2010)
# Masked for testing, and some testsuite failures.
# Bug 313769
=sys-libs/db-5*

# Peter Volkov <pva@gentoo.org> (09 May 2010)
# Fails to build/work, bug #319085
net-analyzer/ipac-ng

# Joe Sapp <nixphoeni@gentoo.org> (07 May 2010)
# Doesn't work with python 2.6 (see bug #288887),
# more recent stable version available.
#
# Masked for removal in 30 days.
=app-misc/gourmet-0.13.8


# Samuli Suominen <ssuominen@gentoo.org> (06 May 2010)
# Orphaned library, see bug 309809.
#
# Use Hercules drivers from bug 272100 or ones from upstream
# HOMEPAGE instead.
#
# Masked for removal in 30 days.
media-libs/libdjconsole

# Stanislav Ochotnicky <sochotnicky@gentoo.org> (05 May 2010)
# Masked for testing.
=app-arch/rpm-4.8.0

# Tony Vroon <chainsaw@gentoo.org> (02 May 2010)
# Fails to build, 1.6.1/1.6.2 patched to provide equivalent functionality.
# Removal at end of May.
net-misc/asterisk-app_nv_faxdetect

# Tomáš Chvátal <scarabeus@gentoo.org> (27 Apr 2010)
# Replaced by >sci-libs/netcdf-4.0
sci-libs/libnc-dap

# Diego E. Pettenò <flameeyes@gentoo.org> (25 Apr 2010)
#  on behalf of QA team <qa@gentoo.org
#
# Mask SElinux packages on all the profile and unmask it only for
# selinux itself; automagic dependencies can break systems otherwise
#
# Please keep this mask in sync between profiles/package.mask and
# selinux/package.mask (with - prefix there).
app-admin/setools
dev-python/python-selinux
dev-python/sepolgen
sys-apps/checkpolicy
sys-apps/policycoreutils
sys-libs/libselinux
sys-libs/libsemanage
sec-policy/selinux-acpi
sec-policy/selinux-apache
sec-policy/selinux-arpwatch
sec-policy/selinux-asterisk
sec-policy/selinux-audio-entropyd
sec-policy/selinux-avahi
sec-policy/selinux-base-policy
sec-policy/selinux-bind
sec-policy/selinux-bluez
sec-policy/selinux-clamav
sec-policy/selinux-clockspeed
sec-policy/selinux-courier-imap
sec-policy/selinux-cups
sec-policy/selinux-cyrus-sasl
sec-policy/selinux-daemontools
sec-policy/selinux-dante
sec-policy/selinux-dbus
sec-policy/selinux-desktop
sec-policy/selinux-dhcp
sec-policy/selinux-distcc
sec-policy/selinux-djbdns
sec-policy/selinux-dnsmasq
sec-policy/selinux-ftpd
sec-policy/selinux-games
sec-policy/selinux-gnupg
sec-policy/selinux-gpm
sec-policy/selinux-hal
sec-policy/selinux-inetd
sec-policy/selinux-ipsec-tools
sec-policy/selinux-jabber-server
sec-policy/selinux-kerberos
sec-policy/selinux-logrotate
sec-policy/selinux-lpd
sec-policy/selinux-munin
sec-policy/selinux-mysql
sec-policy/selinux-nfs
sec-policy/selinux-ntop
sec-policy/selinux-ntp
sec-policy/selinux-openldap
sec-policy/selinux-openvpn
sec-policy/selinux-pcmcia
sec-policy/selinux-portmap
sec-policy/selinux-postfix
sec-policy/selinux-postgresql
sec-policy/selinux-ppp
sec-policy/selinux-privoxy
sec-policy/selinux-procmail
sec-policy/selinux-publicfile
sec-policy/selinux-pyzor
sec-policy/selinux-qmail
sec-policy/selinux-razor
sec-policy/selinux-samba
sec-policy/selinux-screen
sec-policy/selinux-snmpd
sec-policy/selinux-snort
sec-policy/selinux-spamassassin
sec-policy/selinux-squid
sec-policy/selinux-stunnel
sec-policy/selinux-sudo
sec-policy/selinux-tcpd
sec-policy/selinux-tftpd
sec-policy/selinux-ucspi-tcp
sec-policy/selinux-wireshark

# Nicholas Wolfwood <blackace@gentoo.org> (24 Apr 2010)
# Unmaintained/abandoned by upstream (#317079).
# Masked for removal in 30 days.
app-office/nostaples

# Mark Loeser <halcy0n@gentoo.org> (24 Apr 2010)
# Masked for testing.  Only use this version of gcc if you know what you are
# doing
=sys-devel/gcc-4.5*

# Peter Volkov <pva@gentoo.org> (22 Apr 2010)
# Masking development kernels. Test it and report bugs upstream.
=sys-kernel/openvz-sources-2.6.32*

# Torsten Veller <tove@gentoo.org> (20 Apr 2010)
# Bundles a copy of libsqlite (#258464)
# Tests fail (#294218)
dev-perl/DBD-SQLite2
# (23 Apr 2010)
# Requested but never used (#136223)
# and does not work (#242524), HOMEPAGE dead
dev-perl/perlmenu
# (24 Apr 2010)
# Unmaintained and probably broken (see rt bugs and cpanratings) (#276745)
dev-perl/Net-XWhois

# Mounir Lamouri <volkmar@gentoo.org> (18 Apr 2010)
# The add-on/extension manager should now be used instead of the package
# from the tree, bug 315999. Masked for removal in 30 days.
www-plugins/noscript

# Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> (16 Apr 2010)
# Masked to enforce upgrade which looks like downgrade.
>=dev-python/drpython-160

# Michael Sterrett <mr_bones_@gentoo.org> (14 Apr 2010)
# gtk+-1 is old and nasty.
# Start transitioning away from these packages.
# Read man 5 portage about package.unmask to unmask the package locally.
games-arcade/cervi
games-emulation/darcnes
games-emulation/epsxe
games-emulation/gtuxnes
games-emulation/infones
games-emulation/pcsx
games-emulation/pcsx2
games-emulation/ps2emu-cddvdlinuz
games-emulation/ps2emu-cdvdiso
games-emulation/ps2emu-dev9null
games-emulation/ps2emu-gssoft
games-emulation/ps2emu-padxwin
games-emulation/ps2emu-spu2null
games-emulation/ps2emu-usbnull
games-emulation/psemu-cdriso
games-emulation/psemu-padjoy
games-emulation/psemu-padxwin
games-emulation/psemu-peopssoftgpu
games-emulation/psemu-peopsspu
games-fps/wmquake
games-kids/gtans
games-kids/stickers
games-mud/gMOO
games-puzzle/codebreaker
games-puzzle/glickomania
games-puzzle/xphotohunter
games-puzzle/xpuyopuyo
games-simulation/corewars
games-strategy/xscorch

# Bernard Cafarelli <voyageur@gentoo.org> (12 Apr 2010)
# Mask until bug #314833 is fixed
=net-ftp/filezilla-3.3.2.1-r1
=net-ftp/filezilla-3.3.3-r1

# Pacho Ramos <pacho@gentoo.org> (10 Apr 2010)
# This version provides packages from testing to let people using
# latest Xorg (from ~arch or overlay) have 3D support. If you don't need it,
# keep with unmasked versions.
#
# Please don't ask for including testing packages in other emul
# packages, this is an exception to current policy because some people
# from X11 team needed 3D support even with bleeding edge Xorg.
=app-emulation/emul-linux-x86-opengl-20100410_pre
=app-emulation/emul-linux-x86-opengl-20100611-r99

# Robert Piasek <dagger@gentoo.org> (09 Apr 2010)
# Mask as it does have some regressions comparing to version 3
=net-misc/modemmanager-0.3_p20100401

# Patrick Lauer <patrick@gentoo.org> (07 Apr 2010)
# Mask the 2.0_beta until release of 2.0 final
>=net-mail/dovecot-2.0_beta4

# Patrick Lauer <patrick@gentoo.org> (07 Apr 2010)
# Migrating back to unsplit samba ebuilds. Keeping samba-4 masked until release.
net-fs/samba-libs
net-fs/samba-server
net-fs/samba-client
>net-fs/samba-4

# Michael Sterrett <mr_bones_@gentoo.org> (05 Apr 2010)
# Needs dev-python/numeric which is going away.
# No release since 2006
# Masked for removal on 20100505
games-strategy/castle-combat

# Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> (05 Apr 2010)
# Mask misversioned ebuilds.
=dev-python/visual-5.12
=dev-python/visual-5.13

# Steev Klimaszewski <steev@gentoo.org> (04 Apr 2010)
# Mask dbus-1.3.0 because it is the development version.
# Please use 1.2.24, if you think you need something from 1.3.0
>=sys-apps/dbus-1.3.0

# Mounir Lamouri <volkmar@gentoo.org> (24 Mar 2010)
# Masked because breaking backward compatibility and still not needed.
>dev-util/bam-0.2.0

# Alistair Bush <ali_bush@gentoo.org> (22 Mar 2010)
# Masked due to producing build failures in stable
# lucene and possibly others. see #309961
=dev-java/javacc-5.0

# Samuli Suominen <ssuominen@gentoo.org> (16 Mar 2010)
# Masked for QA and security.
#
# Several symlink vulnerabilities
#
# http://bugs.gentoo.org/show_bug.cgi?id=253657#c6
#
# Removal in 30 days
mail-filter/MailScanner

# Torsten Veller <tove@gentoo.org> (14 Mar 2010)
# Mask "End Of Life" versions
<www-apps/bugzilla-3.2

# Ulrich Mueller <ulm@gentoo.org> (10 Mar 2010)
# Emacs live ebuilds. Use at your own risk.
~app-editors/emacs-vcs-23.2.9999
~app-editors/emacs-vcs-24.0.9999
~virtual/emacs-24

# Mounir Lamouri <volkmar@gentoo.org> (09 Mar 2010)
# net-voip/wengophone-bin has been superseeded by net-im/qutecom
# and suffers of QA issues, see bug 251575
# Masked for removal in 30 days
net-voip/wengophone-bin

# Lance Albertson <ramereth@gentoo.org> (07 Mar 2010)
# Cfengine 3 is mostly incompatible with Cfengine 2, so lets mask 3.x
# for a while until a sane upgrade path can be assumed in Gentoo.
>=net-misc/cfengine-3

# 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/com_err
sys-libs/ss
<sys-libs/e2fsprogs-libs-1.41.8
<sys-fs/e2fsprogs-1.41.9

# Samuli Suominen <ssuominen@gentoo.org> (03 Mar 2010)
# Masked for QA, security
#
# After more than a year of no word from maintainers
#
# Internal copy of vulnerable libpcre, bug 258330
# Remote command execution, CVE-2009-4016, bug 303735
# Build issues, bug 212255
#
# Masked for removal in 60 days.
net-irc/ircd-hybrid

# Jeroen Roovers <jer@gentoo.org> (28 Feb 2010)
# Development release
=app-admin/sysstat-9.1*

# Theo Chatzimichos <tampakrap@gentoo.org> (26 Feb 2010)
# Mask knetworkmanager as it is crashy, unusable, under
# heavy development, and snapshot
=kde-misc/knetworkmanager-4.4*

# Torsten Veller <tove@gentoo.org> (25 Feb 2010)
# Masked for removal as soon as possible
# Merged in dev-perl/Email-MIME
dev-perl/Email-MIME-Modifier
dev-perl/Email-MIME-Creator
# Merged in dev-perl/Email-Simple (#304683)
dev-perl/Email-Simple-Creator
# Merged in dev-perl/XML-LibXML (#304685)
dev-perl/XML-LibXML-Common
# Merged in dev-perl/Class-XSAccessor (#275520)
dev-perl/Class-XSAccessor-Array

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

# Robin H. Johnson <robbat2@gentoo.org> (01 Feb 2010)
# Upstream discontinued the split of -community and -enterprise specific
# tarballs of source. You must move to dev-db/mysql as the -community split has
# security vulnerabilities only fixed in the main package.
# To be removed 2010/07/01.
dev-db/mysql-community

# Robin H. Johnson <robbat2@gentoo.org> (01 Feb 2010)
# Mask 5.4 series that is nearly a release candidate upstream (expected within the next 6 months)
# Mask 5.5/6.0 series that are alpha and and crazy experimental.
=dev-db/mysql-5.4*
=virtual/mysql-5.4*
>=dev-db/mysql-5.5
>=virtual/mysql-5.5

# Lennart Kolmodin <kolmodin@gentoo.org> (26 Jan 2010)
# Masked earlier releases of dev-lang/ghc-6.12*.
# We want to use ghc-6.12.3, not the older versions.
=dev-lang/ghc-6.12.1*
=dev-lang/ghc-6.12.2*

# Nirbheek Chauhan <nirbheek@gentoo.org> (25 Jan 2010)
# Final rc of networkmanager-0.8 and friends
# Mask for testing
=net-misc/networkmanager-pptp-0.7.999*
=net-misc/networkmanager-vpnc-0.7.999*
=net-misc/networkmanager-openvpn-0.7.999*
=gnome-extra/nm-applet-0.7.999*

# Matthias Schwarzott <zzam@gentoo.org> (22 Jan 2010)
# since long time included in media-tv/gentoo-vdr-scripts
media-tv/vdr-dvd-scripts
media-tv/vdrplugin-rebuild

# Olivier Crête <tester@gentoo.org> (07 Jan 2010)
# Mask for removal. Replaced by net-libs/telepathy-farsight and farsight2
net-voip/telepathy-stream-engine
media-libs/farsight
media-plugins/gst-plugins-farsight
net-libs/libjingle

# Patrick Lauer <patrick@gentoo.org> (07 Jan 2010)
# Mask for removal. Migrate to dev-db/postgresql-{base,server}
# still being used.
dev-db/libpq
dev-db/postgresql

# Pawel Hajdan jr <phajdan.jr@gentoo.org> (07 Jan 2010)
# Dev channel releases are only for people who are developers or want more
# experimental features and accept a more unstable release.
~www-client/chromium-6.0.437.1
~www-client/chromium-6.0.437.3
~www-client/chromium-6.0.453.1

# Diego E. Pettenò <flameeyes@gentoo.org> (07 Jan 2010)
#  on behalf of QA team
#
# Fails to fetch, bug #228929, open June 2008, still not
# fixed.
#
# Removal on 2010-03-08
# Masking breaks deps for ia64.  Address before re-masking (mr_bones_@gentoo.org)
#dev-java/jrockit-jdk-bin

# Christian Parpart <trapni@gentoo.org> (23 Dec 2009)
# Masked for testing/feedback.
media-sound/teamspeak-server-bin

# Doug Goldstein <cardoe@gentoo.org> (17 Dec 2009)
# Mask nvidia-drivers-71.x.y since it will not work
# with xorg-server-1.5 and later which are the only
# available versions in the tree
<x11-drivers/nvidia-drivers-72.0.0

# Rémi Cardona <remi@gentoo.org> (13 Dec 2009)
# ttmkfdir had multiple QA issues and bugs (bugs #209616, #235354 and #262945)
# xfs is completely useless, even on thin clients
# and xfsinfo is useless if xfs goes
x11-apps/ttmkfdir
x11-apps/xfs
x11-apps/xfsinfo

# Joerg Bornkessel <hd_brummy@gentoo.org> (02 Dec 2009)
# cvs ebuild vdr-xineliboutput-9999 masked for lifetime
=media-plugins/vdr-xineliboutput-9999

# Torsten Veller <tove@gentoo.org> (26 Nov 2009)
# Complete reorganization (and almost complete rewrite),
# depends on perl-5.10, needs testing
>=dev-perl/DateManip-6.0

# Krzysztof Pawlik <nelchael@gentoo.org> (23 Nov 2009)
# Borken TPM patch, see bug #294119
=sys-apps/rng-tools-2-r2

# Ulrich Mueller <ulm@gentoo.org> (15 Nov 2009)
# Keep pre-alpha development snapshot and live ebuild masked.
=app-emacs/gnus-5.13_p*
~app-emacs/gnus-9999

# Alexis Ballier <aballier@gentoo.org> (14 Nov 2009)
# beta release
>=dev-ml/ocamlnet-3.0_beta

# Doug Goldstein <cardoe@gentoo.org> (07 Nov 2009)
# upstream MythTV development versions
# complain upstream if something is broken
# or if it's specific to the ebuild, any bugs that get
# filed require a patch. i.e. if you can't patch it
# you shouldn't be running this version
>=media-tv/mythtv-0.24_alpha1
>=x11-themes/mythtv-themes-0.24_alpha1
>=x11-themes/mythtv-themes-extra-0.24_alpha1
>=media-plugins/mytharchive-0.24_alpha1
>=media-plugins/mythbrowser-0.24_alpha1
>=media-plugins/mythcontrols-0.24_alpha1
>=media-plugins/mythgallery-0.24_alpha1
>=media-plugins/mythgame-0.24_alpha1
>=media-plugins/mythmovies-0.24_alpha1
>=media-plugins/mythmusic-0.24_alpha1
>=media-plugins/mythnetvision-0.24_alpha1
>=media-plugins/mythnews-0.24_alpha1
>=media-plugins/mythphone-0.24_alpha1
>=media-plugins/mythvideo-0.24_alpha1
>=media-plugins/mythweather-0.24_alpha1
>=www-apps/mythweb-0.24_alpha1
>=media-plugins/mythzoneminder-0.24_alpha1

# Rémi Cardona <remi@gentoo.org> (05 Nov 2009)
# Broken, will stay masked until fixed.
# see bug #290086 for more info
=x11-apps/xdm-1.1.9

# Víctor Ostorga <vostorga@gentoo.org> (02 Nov 2009)
# If you use a kernel >= 2.6.29 it is needed >=linux-headers-2.6.29
# as well, otherwise net-firewall/ipsec-tools won't compile.
# See bug #264233 for reference
=net-firewall/ipsec-tools-0.7.2

# Samuli Suominen <ssuominen@gentoo.org> (24 Oct 2009)
# Masked for testing. Waiting for xfdesktop release.
#
# See, http://bugs.gentoo.org/show_bug.cgi?id=289867
# Relatively safe to unmask and test.
#
# Note that you need USE flags menu-plugin and thunar
# disabled for old xfdesktop to test these
>=xfce-base/exo-0.5.1
>=xfce-base/xfce4-settings-4.7.0
>=xfce-base/thunar-1.1.0
>=xfce-extra/thunar-media-tags-plugin-0.1.2-r1
>=xfce-base/xfce4-panel-4.7.0
xfce-extra/thunar-vfs

# Diego E. Pettenò <flameeyes@gentoo.org> (23 Oct 2009)
#
# Starting work toward supporting Linux Containers in Gentoo.
# Currently, it's a tentative ebuild based upon Tiziano Müller
# (dev-zero)'s overlay, with some differences from the upstream paths
# and handling.
#
# Will be unmasked when felt ready (and openrc'll support it as
# guest).
app-emulation/lxc

# 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> (9 Oct 2009)
# Untested yet; documented only in Russian, help is appreciated.
sys-auth/pam_keystore

# Markus Meier <maekke@gentoo.org> (03 Oct 2009)
# mask libpano13 beta versions for testing
>=media-libs/libpano13-2.9.15_beta3

# Peter Alfredsen <loki_val@gentoo.org> (09 Sep 2009)
# Fails to build with newest mono, causing dependency
# conflicts (#259700).
dev-lang/nemerle

# Christian Faulhammer <fauli@gentoo.org> (24 Aug 2009)
# Has bundled security-vulnerable expat library, see bug 250049
dev-tex/mpm

# Diego E. Pettenò <flameeyes@gentoo.org> (8 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.
dev-lisp/cl-arnesi-darcs
dev-lisp/cl-fiveam-darcs
dev-lisp/cl-parenscript-darcs
dev-lisp/cl-rfc2109-darcs
dev-lisp/cl-rfc2388-darcs
dev-lisp/cl-yaclml-darcs
media-tv/v4l-dvb-hg
dev-embedded/sdcc-svn
net-irc/irssi-svn
~app-doc/repodoc-9999
~app-i18n/skk-jisyo-9999
~net-wireless/wpa_supplicant-9999
net-misc/netcomics-cvs
dev-lisp/cl-ansi-tests-cvs
app-portage/layman-dbtools

# Federico Ferri <mescalinum@gentoo.org> (08 Aug 2009)
# Doesn't build with Tcl 8.5, has several bugs open
=dev-tcltk/tcl-debug-2.0

# Steve Dibb <beandog@gentoo.org> (31 Jul 2009)
# Unsupported, but popular.  No plans for removal.
media-sound/alsa-driver

# Marijn Schouten <hkBst@gentoo.org> (29 Jul 2009)
# Masked for increasingly many problems. Upstream is flaky and hasn't released since 2005.
# Maxima is the only consumer and can be built with sbcl or clisp.
# Hopefully upstream will do a release that we can add to revive this package.
dev-lisp/gcl

# Jeremy Olexa <darkside@gentoo.org> (28 Jul 2009)
# On behalf of Robin H. Johnson <robbat2@gentoo.org>.
# These versions are vulnerable to GLSA's and should not be used. They will stay
# in the tree because they are useful to tracking down bugs. You have been
# warned. bug 271686
<dev-db/mysql-5.0.60-r1
<virtual/mysql-5.0

# Tomáš Chvátal <scarabeus@gentoo.org> (28 Jul 2009)
# Upstream decided to support only r600 and newer.
# We should no longer use them or depend on them.
# For more info:
#  http://dev.gentoo.org/~scarabeus/ati-mask-reason.txt
<x11-drivers/ati-drivers-9.6

# Jim Ramsay <lack@gentoo.org> (1 Feb 2008)
# Weird boost dependencies, need to solve this in a different way: Probably by
# actually doing 'amazonmp3-libcompat' for both x86 and amd64. (bug #272699)
net-misc/amazonmp3

# Ben de Groot <yngwin@gentoo.org> (25 Jun 2009)
# Mask the Qt4 meta ebuild, to prevent devs from being silly and depend on
# the meta ebuild instead of on the specific split Qt ebuilds needed. See
# bug 217161 comment 11. Users may unmask this if they want to pull in all
# Qt modules, but packages in portage (or overlays) will pull in the split
# modules they need as dependency. Unmasking this will most likely pull in
# more than you need. This meta ebuild will be removed when we can add sets
# to the portage tree.
=x11-libs/qt-4*

# Nirbheek Chauhan <nirbheek@gentoo.org> (10 Jun 2009)
# Several feature regressions that will make our users
# go on a witchhunt if unmasked
# * No XDMCP connection UI
# * No configuration/theming support
# * No support for auth backends other than PAM
# * Many more...
>=gnome-base/gdm-2.26

# Torsten Veller <tove@gentoo.org> (10 Jun 2009)
# Mask unstable releases. Read the warning!
=app-office/gnucash-2.3*

# Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> (30 May 2009)
# Development versions.
=net-libs/gnutls-2.9*

# Peter Alfredsen <loki_val@gentoo.org> (01 June 2009)
# Development version, Work-In-Progress
=media-sound/banshee-1.5*

# Diego E. Pettenò <flameeyes@gentoo.org> (27 Apr 2009)
# Mask libopensync 0.38 since no plugin was fixed for this
~app-pda/libopensync-0.38

# Alin Năstac <mrness@gentoo.org> (26 Apr 2009)
# Beta version
=net-proxy/squid-3.1*

# Jeroen Roovers <jer@gentoo.org> (21 Apr 2009)
# Masked until out of beta
=dev-libs/libevent-2*

# Benedikt Böhm <hollow@gentoo.org> (19 Apr 2009)
# masked for testing
=net-analyzer/centreon-1.4.2.7

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

# Paul Varner <fuzzyray@gentoo.org> (06 Apr 2009)
# Dead upstream and has issues with newer portages.
# Due to popular demand and no suitable replacement, it will stay in the tree
# in a masked status until it completely breaks or is replaced.
app-portage/udept

# Tony Vroon <chainsaw@gentoo.org> (30 Mar 2009)
# The v4 branch of DHCP has a new build system and a "minimal" dhclient-only
# build is not yet supported. The IPv6 support seems a bit rough at the edges
# as well. As such, this is for the adventurous only.
# Bug reports are welcome if they carry patches.
>=net-misc/dhcp-4.0.0

# Alex Legler <a3li@gentoo.org> (20 Mar 2009)
# Ruby 1.9.1 for preliminary testing of libraries depending on it, bug 203706.
# Expect (many) breakages and incompatibilities.
# Want to help testing? #gentoo-ruby on Freenode
>=dev-lang/ruby-1.9.1

# Matti Bickel <mabi@gentoo.org> (1 Mar 2009)
# Mask testing branch
=x11-libs/fox-1.7*

# Jim Ramsay <lack@gentoo.org> (1 Feb 2008)
# This isn't actually used by anyone, but hopefully will be soon to allow
# net-misc/amazonmp3 to be used by amd64 users.  Once I get around to it.
# Until then, mask it.
net-misc/amazonmp3-libcompat

# mask pending removal
# Benedikt Böhm <hollow@gentoo.org> (10 Jan 2009)
# baselayout-vserver is unmaintained and obsoleted by baselayout-2/openrc.
# Please, upgrade to openrc. removal after openrc goes stable, bug #254519
sys-apps/baselayout-vserver

# Zac Medico <zmedico@gentoo.org> (05 Jan 2009)
# Portage 2.2 is masked due to known bugs in the
# package sets and preserve-libs features.
>=sys-apps/portage-2.2_pre

# 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

# Mike Pagano <mpagano@gentoo.org> (17 Dec 2008)
# Masked waiting on >=portage-2.2* to be unmasked
>=app-portage/portpeek-1.6

# Robin H. Johnson <robbat2@gentoo.org> (06 Dec 2008)
# The init.d scripts and default rules need updating and serious testing.
# Do not use the old ones with the new versions of audit, you will get weird
# crashes.
>sys-process/audit-1.7.4

# Peter Volkov <pva@gentoo.org> (16 Nov 2008)
# The development branch, to be unmasked when out of beta by upstream.
=net-misc/socat-2.0.0*

# Steve Dibb <beandog@gentoo.org> (5 Nov 2008)
# Mask realplayer codecs for security bug 245662
# http://forums.gentoo.org/viewtopic-t-713051.html
media-libs/amd64codecs
media-libs/realcodecs

# Alin Năstac <mrness@gentoo.org> (21 Sep 2008)
# Breaks L2TP connections (see http://bugs.xelerance.com/view.php?id=1004)
=net-misc/openswan-2.6*

# Doug Goldstein <cardoe@gentoo.org> (17 Sep 2008)
# under development
gnome-extra/gnome-lirc-properties

# Raúl Porcel <armin76@gentoo.org> (1 Aug 2008)
# This is just for preview
>=www-client/seamonkey-bin-2.0_alpha1

# Markus Ullmann <jokey@gentoo.org> (7 Jul 2008)
# mask for security bug #190667
net-irc/bitchx

# Rémi Cardona <remi@gentoo.org> (14 Nov 2009)
# Masked for removal, until there is 2.0 branch release this must go.
# See bug #156583.
<app-text/gtranslator-1.9

# Vlastimil Babka <caster@gentoo.org> (20 May 2008)
# Masked for testing
=app-arch/rpm-5*

# Rémi Cardona <remi@gentoo.org> (16 Apr 2008)
# Masked until somebody picks it up
dev-cpp/bakery

# Chris Gianelloni <wolf31o2@gentoo.org> (3 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

# Alon Bar-Lev <alonbl@gentoo.org> (23 Feb 2008)
# These are not yet stable.
sys-fs/redirfs

# Raúl Porcel <armin76@gentoo.org> (18 Feb 2008)
# Probably breaks a lot of stuff, needs testing
=net-wireless/wireless-tools-30_pre*

# Sebastien Fabbro <bicatali@gentoo.org> (05 Feb 2008)
# sci-libs/metis-5.* still experimental
>=sci-libs/metis-4.99

# Raúl Porcel <armin76@gentoo.org> (12 Dec 2007)
# Segfaults with IMAP
=x11-plugins/replytolist-0.3.0

# Piotr Jaroszyński <peper@gentoo.org> (26 Nov 2007)
# opensync svn ebuilds
=app-pda/libsyncml-9999
=app-pda/libopensync-9999
=app-pda/osynctool-9999
=app-pda/libopensync-plugin-evolution2-9999
=app-pda/libopensync-plugin-file-9999
=app-pda/libopensync-plugin-gnokii-9999
=app-pda/libopensync-plugin-google-calendar-9999
=app-pda/libopensync-plugin-gpe-9999
=app-pda/libopensync-plugin-irmc-9999
=app-pda/libopensync-plugin-palm-9999
=app-pda/libopensync-plugin-python-9999
=app-pda/libopensync-plugin-syncml-9999
=app-pda/libopensync-plugin-vformat-9999

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

# Marcelo Goes <vanquirius@gentoo.org> (3 Apr 2007)
# Nessus 2.3.x was discontinued
# 2.3.x users, please migrate to 2.2.9
# See bug 169466 for more information
>=net-analyzer/nessus-libraries-2.3.1
>=net-analyzer/libnasl-2.3.1
>=net-analyzer/nessus-core-2.3.1
>=net-analyzer/nessus-plugins-2.3.1
>=net-analyzer/nessus-2.3.1

# Stefaan De Roeck <stefaan@gentoo.org> (09 Sep 2006)
# 1.5.x is a development branch, people should test 1.4.x by default
=net-fs/openafs-1.5*
=net-fs/openafs-kernel-1.5*

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

# 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-roguelike/nethack
games-util/hearse
games-roguelike/noegnud-nethack

# Robin H. Johnson <robbat2@gentoo.org> (11 Mar 2006)
# Work-in-progress to clean this up
# TODO
# - properly fix lazy bindings
# - fix read-only stuff
# - seperate data files from binaries
# - fix crappy state of runnable only in source tree.
# - provide log output to /var/log somewhere intelligently
app-benchmarks/ltp

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

# Fernando J. Pereda <ferdy@gentoo.org> (25 April 2005)
# mask these until the new mailwrapper/mailer-config scheme is ready
# it is secure to unmask them to test
net-mail/mailer-config
=net-mail/mailwrapper-0.2.1-r1

# <klieber@gentoo.org> (01 Apr 2004)
# The following packages contain a remotely-exploitable
# security vulnerability and have been hard masked accordingly.
#
# Please see http://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