summaryrefslogtreecommitdiff
blob: f32568b63dda64257f12d0c712d798bb79a7698b (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
####################################################################
# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.12649 2011/04/03 01:30:32 dirtyepic 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 ---

# Ryan Hill <dirtyepic@gentoo.org> (02 Apr 2011)
# Masked for testing
>=sys-devel/gcc-4.6.0

# Samuli Suominen <ssuominen@gentoo.org> (31 Mar 2011)
# Missing V4L2 support wrt #359773 and fails to build with
# linux-headers-2.6.38. Still uses imlib1 which will go away
# soon. Removal in 30 days.
media-video/motioneye

# Samuli Suominen <ssuominen@gentoo.org> (31 Mar 2011)
# In kernel since 2.6.26. Fails to compile wrt bugs
# 252553 and 359811. Masked for removal in 30 days.
media-video/linux-uvc

# Samuli Suominen <ssuominen@gentoo.org> (31 Mar 2011)
# Fails to compile with linux-headers-2.6.38. 5 years old package and upstream status
# unclear.  After conversion to libv4l1, fails to run:
# http://bugs.gentoo.org/show_bug.cgi?id=359793#c2
# Removal in 30 days.
media-video/mvc

# Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> (31 Mar 2011)
# Mask libdrm-2.4.23 incompatible version
=x11-drivers/xf86-video-nouveau-0.0.16_pre20110323

# Pacho Ramos <pacho@gentoo.org> (31 Mar 2011)
# Upstream dead for a long time, packages still needing it
# will be dropped also. Removal in 30 days (bug #355309)
=gnome-extra/libgda-1.2.4

# Pacho Ramos <pacho@gentoo.org> (31 Mar 2011)
# Upstream dead for a long time, many unresolved bugs.
# Removal in 30 days (see bug #354243)
gnome-extra/libgnomedb
dev-db/mergeant

# Samuli Suominen <ssuominen@gentoo.org> (31 Mar 2011)
# Deprecated and doesn't build since linux-headers-2.6.38. Use gst-plugins-v4l2
# instead. Masked for removal in 30 days. See bug 359647.
media-plugins/gst-plugins-v4l

# Eray Aslan <eras@gentoo.org> (29 Mar 2011)
# Abandoned project.  Last release in 2005.  Bugs #158003, #97589,
# #359411.
# Removal in 90 days
net-mail/mailwrapper
net-mail/mailer-config

# Samuli Suominen <ssuominen@gentoo.org> (29 Mar 2011)
# Use more freedesktop.org compatible icon theme instead, such as
# tango-icon-theme or gnome-icon-theme.   This one is outdated one
# from Xfce 4.4.0 and doesn't provide useful icon links to Xfce 4.8.0
# anymore.
#
# http://standards.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html
# http://standards.freedesktop.org/icon-theme-spec/icon-theme-spec-latest.html
#
x11-themes/xfce4-icon-theme

# Sebastien Fabbro <bicatali@gentoo.org> (28 Mar 2011)
# Still beta 
=dev-python/numpy-1.6*

# Diego E. Pettenò <flameeyes@gentoo.org> (28 Mar 2011)
#  on behalf of QA team
#
# Fails to build with recent libX11 (bug #351001); homepage
# and src_uri are gone.
#
# Removal on 2011-05-27
x11-plugins/wmnetmon

# Diego E. Pettenò <flameeyes@gentoo.org> (28 Mar 2011)
#  on behalf of QA team
#
# Doesn't respect LDFLAGS (bug #336954). Build log can easily
# show a number of other issues: doesn't respect cc, doesn't
# respect _FORTIFY_SOURCE (since headers are not properly
# included), and trying to fix it shows that the "as-is"
# license is not properly applied. The software was first
# published in 1997, then released in 2001 as a package,
# but has seen no development since.
#
# As a replacement, rather use zsh's zmv module.
#
# Removal on 2011-05-27
sys-apps/ren

# Samuli Suominen <ssuominen@gentoo.org> (28 Mar 2011)
# Masked for QA.
# Not installable for almost an year now wrt bugs #326613,
# #284921, #316515, #315411.    Other minor bugs, #336126.
# Removal in 30 days.
sci-libs/openfoam-kernel
sci-libs/openfoam-meta
sci-libs/openfoam-solvers
sci-libs/openfoam-utilities
sci-libs/openfoam-src
sci-libs/openfoam-wmake
sci-libs/openfoam
dev-python/PyFoam

# Samuli Suominen <ssuominen@gentoo.org> (28 Mar 2011)
# Masked temporarily until bug 360849 is solved so people
# can emerge udev.
=sys-apps/pciutils-3.1.7-r1

# Diego E. Pettenò <flameeyes@gentoo.org> (27 Mar 2011)
# Last release in 2006, nobody looking after it.
# Pending removal on 2011-04-27
app-text/ssddiff

# Diego E. Pettenò <flameeyes@gentoo.org> (27 Mar 2011)
# Abandoned project of mine. Nothing really use it.
# Pending removal on 2011-04-27
app-text/mxml2man

# Diego E. Pettenò <flameeyes@gentoo.org> (27 Mar 2011)
# Abandoned project of mine; doesn't work as intended on Linux
# nowadays.
# Pending removal on 2011-04-27
sys-block/unieject

# Jeroen Roovers <jer@gentoo.org> (27 Mar 2011)
# Unmaintained, does not work with IPv6 (bug #257353), forked to iptraf-ng (bug
# #305781) - please use net-analyzer/iptraf-ng instead.
# To be removed in 30 days.
net-analyzer/iptraf

# Samuli Suominen <ssuominen@gentoo.org> (27 Mar 2011)
# Orphaned libraries. No longer required.
# emerge -C eggdbus glitz
# If you have problems, use revdep-rebuild and lafilefixer
# to correct your system. Don't symlink anything and don't
# try to restore these.
# Remove this mask message in 60 days.
media-libs/glitz
dev-libs/eggdbus

# Samuli Suominen <ssuominen@gentoo.org> (27 Mar 2011)
# Last packages with hardcoded sys-apps/hal depend.
# Upstream has either stopped development, or it's too slow.
# Bugs 313425, 358935 and finally 313389.
# Removal in 30 days.
app-crypt/luks-tools
media-video/thoggen
sys-auth/pam_usb

# Pawel Hajdan jr <phajdan.jr@gentoo.org> (26 Mar 2011)
# Mask v8 versions used for www-client/chromium dev channel releases.
# Currently v8-3.2 versions are used for chromium-12.x versions.
>=dev-lang/v8-3.2

# Christoph Mende <angelos@gentoo.org> (26 Mar 2011)
# Unmaintained upstream and replaced by media-plugins/gmpc-libnotify
# and gmpc's built in notifications.
# Will be removed in 30 days.
media-plugins/gmpc-osd
media-plugins/gmpc-qosd

# Thomas Beierlein <tomjbe@gentoo.org> (25 Mar 2011)
# Masked for removal.
# No longer required by sci-electronics/geda.
# Removal in 30 days.
sci-libs/libgeda

# Markos Chandras <hwoarang@gentoo.org> (25 Mar 2011)
# Masking qt-creator beta releases
~dev-util/qt-creator-2.2.0_beta

# Pawel Hajdan jr <phajdan.jr@gentoo.org> (25 Mar 2011)
# Dev channel releases are only for people who are developers or want more
# experimental features and accept a more unstable release.
>=www-client/chromium-12

# Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> (25 Mar 2011)
# Some packages fail to build or work with GnuTLS built with Nettle crypto backend.
=net-libs/gnutls-2.12*

# Samuli Suominen <ssuominen@gentoo.org> (23 Mar 2011)
# Fails to compile wrt bug #322219.
# Runtime error wrt bug #318763.
# Installs docs into wrong directory wrt bug #297639.
# Needs a version bump and switch from autotools to scons wrt
# bug 290671.   Masked for removal in 30 days.
dev-util/bugle

# Torsten Veller <tove@gentoo.org> (23 Mar 2011)
# Mask app-misc/filer for removal (#360093)
# - HOMEPAGE dead
# - list archives
#   - full of spam
#   - last on-topic mails from Jan/Jun/Jul 2006, one topic was "still alive?"
app-misc/filer

# Samuli Suominen <ssuominen@gentoo.org> (22 Mar 2011)
# Masked for removal wrt bug 310821, Comment #61.
# The new versions of mixxx require portmidi, bug 90614.
# Portmidi doesn't have a sane build system and is therefore
# not ready for inclusion in Portage.
# Removal in about 30 days.
<media-sound/mixxx-1.8.0

# Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> (20 Mar 2011)
# Depends on p.masked libxmlpp
>=www-plugins/lightspark-0.4.6.1

# Aaron W. Swenson <titanofold@gentoo.org> (20 Mar 2011)
# Masking 9.1 pre-release versions
>=dev-db/postgresql-docs-9.1_alpha4
>=dev-db/postgresql-base-9.1_alpha4
>=dev-db/postgresql-server-9.1_alpha4

# Samuli Suominen <ssuominen@gentoo.org> (20 Mar 2011)
# Masked for QA
# Fails to build in various ways, see tracker bug 359605.
# Removal in 30 days
www-misc/zoneminder
media-plugins/mythzoneminder

# Ole Markus With <olemarkus@gentoo.org> (20 Mar 2011)
# Dead upstream. No stable release since 2002. Superseeded by 
# dev-php/PEAR-XML_Serializer.
# Removal on 20 Apr 2011
dev-php/PEAR-XML_Tree
# Will be removed with dev-php/PEAR-XML_Tree
dev-php/PEAR-File_XSPF

# Stefaan De Roeck <stefaan@gentoo.org> (19 Mar 2011)
# New major upstream release.
# Needs testing before going to ~arch.
>=net-fs/openafs-1.6
>=net-fs/openafs-kernel-1.6

# Jeroen Roovers <jer@gentoo.org> (18 Mar 2011)
# Snapshots are not supported
>=www-client/opera-11.10.2053

# Markos Chandras <hwoarang@gentoo.org> (17 Mar 2011)
# Masking openocd prelease snapshot
=dev-embedded/openocd-0.5.0_pre*

# Aaron W. Swenson <titanofold@gentoo.org> (15 Mar 2011)
# Upstream no longer exists. Superseded by dev-lib/libpqxx.
# Removal 15 Apr 2011 (bug #348359)
dev-cpp/libpqpp

# Pacho Ramos <pacho@gentoo.org> (14 Mar 2011)
# Still relies on deprecated libgnomeprint, there are many other
# apps to manage photos, no update since 2007.
# Removal in 30 days (bug #358437)
media-gfx/gpp

# Markos Chandras <hwoarang@gentoo.org> (13 Mar 2011)
# Masked for testing
>=dev-util/boost-build-1.45
>=dev-libs/boost-1.45

# Sergei Trofimovich <slyfox@gentoo.org> (13 Mar 2011)
# Removal of pre ghc-6.10 haskell package versions.
# Will be removed in 60 days.
<dev-lang/ghc-6.10
<dev-haskell/cabal-1.8.0.6-r1
=dev-haskell/quickcheck-1.0
=dev-haskell/parsec-2.0
=dev-haskell/network-1.0
=dev-haskell/mtl-1.0
=dev-haskell/hunit-1.1
=dev-haskell/http-2006.7.7
=dev-haskell/html-1.0
=dev-haskell/haxml-1.13-r1
=dev-haskell/fgl-5.2
=dev-haskell/cabal-install-0.6.2
=dev-haskell/cabal-install-0.6.4
=dev-haskell/lhs2tex-1.11
=dev-haskell/haddock-0.8
=dev-haskell/haddock-0.9
=dev-haskell/haddock-2.4.1
=dev-vcs/darcs-1.0.9
<dev-haskell/http-4000
=dev-lang/helium-1.2-r1

# Christoph Mende <angelos@gentoo.org> (13 Mar 2011)
# Unmaintained upstream and doesn't work with current gmpc.
# Will be removed in 30 days.
media-plugins/gmpc-coveramazon

# Joerg Bornkessel <hd_brummy@gentoo.org> (12 Mar 2011)
# no maintainer, dead on upstream, dead Homepage
# bug 358591
# Removal April 10 2011
media-plugins/vdr-vdricq

# Pacho Ramos <pacho@gentoo.org> (12 Mar 2011)
# Old, unused, no longer developed (bug #355825).
# Removal in 30 days.
=dev-cpp/gtkmm-1.2.9-r2

# Ulrich Mueller <ulm@gentoo.org> (12 Mar 2011)
# Part of app-editors/emacs since version 23.2.
# Cannot be compiled with Emacs 23. Last release in 2003.
# Masked for removal in 60 days, bug 358351.
app-emacs/htmlfontify

# Christian Faulhammer <fauli@gentoo.org> (12 Mar 2011)
# Mask for testing
>=www-apps/joomla-1.6.0

# Hans de Graaff <graaff@gentoo.org> (12 Mar 2011)
# Mask for removal on 20110412 (#358431)
# Needs libgnomeprint that is deprecated and unsupported for 
# a long time. Nothing in the tree needs this.
dev-ruby/ruby-gnomeprint
dev-ruby/ruby-gnomeprintui

# Torsten Veller <tove@gentoo.org> (11 Mar 2011)
# Mask deprecated dev-perl/gnome2-print for removal (#358423)
dev-perl/gnome2-print

# Andreas K. Huettel <dilfridge@gentoo.org> (11 Mar 2011)
# Already in TeXlive since 2008, so the separate packages
# are obsolete. Masked for removal in 30 days.
dev-tex/memoir
dev-tex/listings

# Ulrich Mueller <ulm@gentoo.org> (11 Mar 2011)
# Part of app-editors/emacs since version 22.1 or 23.1.
# Masked for removal in 60 days, bug 358351.
app-emacs/calc
app-emacs/easypg
app-emacs/ibuffer
app-emacs/table
app-emacs/tramp

# Alex Alexander <wired@gentoo.org> (11 Mar 2011)
# not needed anymore. the cairo[qt4] blocker issue was fixed and
# the style is once again provided by qt-gui[gtk]
x11-themes/qgtkstyle

# Diego E. Pettenò <flameeyes@gentoo.org> (01 Mar 2011)
# Messed up build system, automagic dependencies.
dev-util/perf

# Tomáš Chvátal <scarabeus@gentoo.org> (08 Mar 2011)
# Broken ldflags, should not work
# Masked for removal in 30 days per bug #335586
media-libs/glide-v3

# Torsten Veller <tove@gentoo.org> (06 Mar 2011)
# Mask for testing
=virtual/perl-Module-Build-0.380.0
=perl-core/Module-Build-0.380.0

# Justin Lecher <jlec@gentoo.org> (04 Mar 2011)
# Probably API change, packages fail to compile
~sci-libs/mmdb-1.23.2

# Pawel Hajdan jr <phajdan.jr@gentoo.org> (04 Mar 2011)
# Masked for removal in 90 days.
# Multiple hard to fix and time consuming maintenance problems:
#  - history of bugs (bug #304527, bug #335101, bug #347175,
#    bug #349249, bug #356609)
#  - upstream's binary builds cannot be used on Gentoo
#    as easily as other -bin packages (ubuntu-specific
#    library names that require compatibility symlinks,
#    bundling libraries, mirror/redistribution policy, and so on)
#  - dependencies for the -bin package are harder to manage;
#    often we have source compatibility, but not binary compatibility
www-client/chromium-bin

# Ole Markus With <olemarkus@gentoo.org> (03 Mar 2011)
# Masked 30 days for removal.
# Fetch restrictions. Does not work with >=dev-lang/php-5.3
dev-php5/ZendOptimizer

# Markos Chandras <hwoarang@gentoo.org> (03 Mar 2011)
# Masking zen-kernel snapshot release
=sys-kernel/zen-sources-2.6.37_p20110303

# Sebastien Fabbro <bicatali@gentoo.org> (02 Mar 2011)
# Mask 30 days for removal (bug #316061)
# unmaintained, multiple bugs, and tar ball absent upstream (no mirror allowed)
# will be replaced with goto2 or openblas
sci-libs/blas-goto

# Jeremy Olexa <darkside@gentoo.org> (01 Mar 2011)
# # Masked for removal in 60 days by treecleaners
# - Multiple bugs tracked in bug 355971
# - One security bug!
# - No Gentoo maintainer
# - Upstream moved to a commercial license, no future upgrades to the free
# version
media-libs/pdflib
# pecl-pdflib will be removed with pdflib's removal
dev-php5/pecl-pdflib

# Diego E. Pettenò <flameeyes@gentoo.org> (01 Mar 2011)
#
# New "major" version, while it is a stable release it might be worth
# not using it by default for a little while.
=app-admin/sudo-1.8*

# Ulrich Mueller <ulm@gentoo.org> (01 Mar 2011)
# Christian Faulhammer <fauli@gentoo.org>
# Emacs live ebuilds. Use at your own risk.
~app-editors/emacs-vcs-23.3.9999
~app-editors/emacs-vcs-24.0.9999

# Hans de Graaff <graaff@gentoo.org> (27 Feb 2011)
# Deprecated by upstream. Latest version already installs stubs only.
# Nothing in the tree still depends on it.
# Masked for removal in 30 days.
dev-ruby/bones-extras

# Gilles Dartiguelongue <eva@gentoo.org> (23 Feb 2011)
# Masked for removal due to libgnome ABI breakage
# See bug #348644.
games-arcade/monster-masher
games-puzzle/gtetrinet

# Jeremy Olexa <darkside@gentoo.org> (22 Feb 2011)
# Masked for removal in 60 days by treecleaners
# - Open bugs, tracked in bug 355961
# - Fixes submitted but no gentoo dev is interested
# - Last release in 2005
# - Multiple alternatives
net-ftp/yafc

# Jeremy Olexa <darkside@gentoo.org> (22 Feb 2011)
# Masked for removal in 60 days by treecleaners
# - Open bugs: tracked in bug 323883
# - Dead upstream
# - No maintainer
net-ftp/atftp

# Jeremy Olexa <darkside@gentoo.org> (22 Feb 2011)
# Masked for removal in 60 days by treecleaners
# Doesn't build, gentoo maintainer is not interested. bug 316501 & bug 247043
dev-lang/gwydion-dylan

# Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> (21 Feb 2011)
# Python 3.2 masked until sufficient number of reverse dependencies is fixed.
=dev-lang/python-3.2*

# Tomáš Chvátal <scarabeus@gentoo.org> (15 Feb 2011)
# Dropping support for 1.7 xorg-server series.
# Please upgrade to xorg-server-1.9.
# These ebuilds will be removed in 30 days.
<x11-apps/xinit-1.3.0-r1
=x11-base/xorg-drivers-1.7
<x11-base/xorg-server-1.9.0
<x11-libs/libSM-1.2.0
<x11-libs/libX11-1.4.0
<x11-libs/libXdmcp-1.1.0
<x11-libs/libXext-1.2.0
<x11-libs/libXft-2.2.0
<x11-libs/libXi-1.4.0
<x11-libs/libXmu-1.1.0
<x11-libs/libXtst-1.1.0
<x11-libs/libfontenc-1.1.0
<x11-libs/libxcb-1.7
=net-misc/tigervnc-1.0.1_p20100914
=x11-drivers/nvidia-drivers-256.44
=x11-drivers/nvidia-drivers-195.36.31
=x11-drivers/nvidia-drivers-195.36.24
=x11-drivers/nvidia-drivers-190.53-r1
=x11-drivers/nvidia-drivers-173.14.27
=x11-drivers/nvidia-drivers-173.14.25
=x11-drivers/nvidia-drivers-96.43.18
=x11-drivers/nvidia-drivers-96.43.16
=x11-drivers/ati-drivers-10.9-r1
=x11-drivers/ati-drivers-10.8
x11-drivers/nouveau-firmware
=x11-base/nouveau-drm-20100316

# Tomáš Chvátal <scarabeus@gentoo.org> (14 Feb 2011)
# I felt in love with this package so I am taking it with me.
# On serious note, this is not maintained anymore + has known
# bugs. Based on bug #348001 I am masking it for removal in
# 30 days. Use x11-drivers/xf86-video-sis (if supported) or
# x11-drivers/xf86-video-vesa instead.
x11-drivers/xf86-video-xgi

# Christian Faulhammer <fauli@gentoo.org> (12 Feb 2011)
# dev-vcs/bzr-gtk, dev-vcs/bzr-rewrite and dev-vcs/bzr-svn are not
# compatible with new version, upstream is notified.
>=dev-vcs/bzr-2.3.0
>=dev-vcs/bzrtools-2.3.0
~dev-vcs/qbzr-0.20.0
~dev-vcs/bzr-gtk-0.100.0
~dev-vcs/bzr-rewrite-0.6.2
~dev-vcs/bzr-svn-1.1.0

# Ryan Hill <dirtyepic@gentoo.org> (30 Mar 2011)
# Masked indefinitely (until 0.40 is released).
# http://bugs.gentoo.org/354423
>=app-pda/libopensync-0.30
>=app-pda/libopensync-plugin-file-0.30
>=app-pda/libopensync-plugin-google-calendar-0.30
>=app-pda/libopensync-plugin-irmc-0.30
>=app-pda/libopensync-plugin-palm-0.30
>=app-pda/libopensync-plugin-python-0.30
>=app-pda/libopensync-plugin-sunbird-0.30
app-pda/libopensync-plugin-syncml
app-pda/libopensync-plugin-vformat
app-pda/osynctool

# Ryan Hill <dirtyepic@gentoo.org> (30 Mar 2011)
# Work in progress
# http://bugs.gentoo.org/show_bug.cgi?id=354423
app-pda/libopensync-plugin-evolution2
app-pda/libopensync-plugin-gnokii
app-pda/libopensync-plugin-gpe
app-pda/multisync-gui

# Hans de Graaff <graaff@gentoo.org> (09 Feb 2011)
# No longer supported by upstream, and has open security bug.
# Bug 354249. Masked for removal in 60 days.
=dev-ruby/rails-2.2*
=dev-ruby/activerecord-2.2*
=dev-ruby/activeresource-2.2*
=dev-ruby/activesupport-2.2*
=dev-ruby/actionmailer-2.2*
=dev-ruby/actionpack-2.2*

# Samuli Suominen <ssuominen@gentoo.org> (07 Feb 2011)
# Using old :0 slot of vala which includes broken bindings for libnotify-0.7.
# Doesn't work with latest twitter API.
# Either this will be removed, or unmasked when new 0.3 version is out.
net-misc/pino

# Hans de Graaff <graaff@gentoo.org> (02 Feb 2011)
# Masked for removal in 30 days. Superseded by
# dev-libs/Ice[ruby].
dev-ruby/IceRuby

# Andreas K. Huettel <dilfridge@gentoo.org> (31 Jan 2011)
# New package, masked for an initial testing period. Needs exotic
# hardware. Please post feedback on bug 165399.
>=sci-libs/linux-gpib-3.2.15

# Tony Vroon <chainsaw@gentoo.org> (30 Jan 2011)
# Alpha releases; marked for your protection. If you
# choose to use them, you will report your bugs upstream.
>=dev-libs/libmowgli-0.9.50
=media-plugins/audacious-plugins-2.5*
=media-sound/audacious-2.5*

# MATSUU Takuto <matsuu@gentoo.org> (30 Jan 2011)
# mask for security bug #352569
>=net-dns/maradns-2

# Pacho Ramos <pacho@gentoo.org> (26 Jan 2011)
# It makes gnome-panel-2.32 to crash, since upstream looks dead
# any help on fixing bug 348123 is highly appreciated.
# Will be removed around 2011-04-07.
gnome-extra/quick-lounge-applet

# Pacho Ramos <pacho@gentoo.org> (26 Jan 2011)
# Doesn't work with mono-2.8, upstream tarballs for 2.99.x
# are incomplete, if you want to help on bumping, please 
# refer to bug #340375
www-plugins/moonlight

# Diego E. Pettenò <flameeyes@gentoo.org> (25 Jan 2011)
#  on behalf of QA team
#
# Missing a dedicated maintainer; problems regarding LDFLAGS
# (bug #335471), overflows (bug #340671), W|X sections,
# and misc problems (bug #224209) as well as missing version
# bumps for about two years now (bug #273890).
#
# Removal on 2011-03-26
dev-util/plan9port

# Doug Goldstein <cardoe@gentoo.org> (24 Jan 2011)
# Masked beta versions
>=x11-drivers/nvidia-drivers-270

# Markos Chandras <hwoarang@gentoo.org> (22 Jan 2011)
# Mask for testing. Bug #329377
=net-misc/remmina-0.9.3
=net-misc/remmina-plugins-0.9.2

# Ryan Hill <dirtyepic@gentoo.org> (22 Jan 2011)
# Mask development versions due to unstable API
# as requested by leio
>=dev-python/wxpython-2.9
>=x11-libs/wxGTK-2.9

# Michael Sterrett <mr_bones_@gentoo.org> (20 Jan 2010)
# testing mask for upcoming exult release
>=games-engines/exult-1.3

# Michael Sterrett <mr_bones_@gentoo.org> (20 Jan 2011)
# wxgtk:2.6 is going away so mask these for removal on 20110219
games-misc/jugglemaster
=games-util/taxidraw-0.3.2

# Joerg Bornkessel <hd_brummy@gentoo.org> (18 Jan 2011)
# Masked for removel on 18 Feb 2011
# dead on upstream
# no maintainer
# bug #352037
media-plugins/vdr-avolctl

# Pacho Ramos <pacho@gentoo.org> (17 Jan 2011)
# Upstream considers it as development version but it's needed
# to prevent lightspark crashes (bug #350150)
>=dev-cpp/libxmlpp-2.33.1

# Diego E. Pettenò <flameeyes@gentoo.org> (15 Jan 2011)
#  on behalf of QA team
#
# Fails to build without automake-1.7 (not in deps), as per
# bug #233049, open 2008-07. Last bumped in 2005, and not
# even touched since.
#
# Removal on 2011-03-16
net-print/gqueue

# Andreas K. Hüttel <dilfridge@gentoo.org> (12 Jan 2011)
# Starting with KOffice version 2.2.0, the functionality of app-office/kchart
# is provided by the app-office/koffice-libs ebuild. If you still have
# >=app-office/kchart-2.2.0 installed, please just unmerge it (it is only a dummy).
>=app-office/kchart-2.2.0

# Diego E. Pettenò <flameeyes@gentoo.org> (11 Jan 2011)
#  on behalf of QA team
#
# Fails to build (but does not die in compile), see bug
# #298587. The package fails to build since January 2006.
#
# Removal on 2011-03-12
net-mail/cyrus-imspd

# Diego E. Pettenò <flameeyes@gentoo.org> (10 Jan 2011)
#  on behalf of QA team
#
# Fails to build with berkdb 5 (bug #319689) and uses bundled
# copy on -gdbm if berkdb cannot be used; ignores LDFLAGS
# (bug #337651), not updated since 2007, requires domain
# knowledge to maintain.
#
# Removal on 2011-03-11
app-i18n/skktools

# Torsten Veller <tove@gentoo.org> (06 Jan 2011)
# Next step to remove old perl and libperl versions.
# Versions prior 5.12 are masked and will be removed when 5.14 is available.
# If you are a sparc-fbsd user and your only keyworded perl version was masked,
# test perl-5.12.2 and reply to bug 288028
# For other complaints go to bug 350785
<dev-lang/perl-5.12.2
<sys-devel/libperl-5.10.1

# Diego E. Pettenò <flameeyes@gentoo.org> (26 Dec 2010)
#  on behalf of QA team
#
# Can't be installed since at least October (bug #341151),
# fails sanity checks.
#
# Removal on 2011-02-24
dev-util/devel-chroots

# Sergei Trofimovich <slyfox@gentoo.org> (18 Dec 2010)
# Uses custom buildsystem. As a result has a lot of QA
# issues (like bug #282909). Known to be broken on ghc-6.10+.
# Upstream it not dead, but package needs cabal adoption
# to be maintainable.
dev-haskell/hsshellscript

# Tiziano Müller <dev-zero@gentoo.org> (13 Dec 2010)
# Mask for testing the passenger-3.0.1 module
=www-servers/nginx-0.8.53-r1

# Gilles Dartiguelongue <eva@gentoo.org> (07 Dec 2010)
# Part of GNOME 2.32 release set by breaks my machine as hell
# Needs more testing before unleashing
>=gnome-base/libbonobo-2.32

# Michal Januszewski <spock@gentoo.org> <1 Dec 2010)
# Beta NVIDIA drivers.  This is the first 260.x release that works on GF330M,
# so it might be useful for some users.
=x11-drivers/nvidia-drivers-260.19.26

# Alex Legler <a3li@gentoo.org> (28 Nov 2010)
# Not maintained, multiple security issues.
# Use the split horde ebuilds instaed.
www-apps/horde-webmail
www-apps/horde-groupware

# Sebastian Pipping <sping@gentoo.org> (27 Nov 2010)
# Test suite gives one error, previous version did not.
# Upcoming bump seems too risky for ~arch right now.
~app-text/xmlstarlet-1.0.3

# Mike Pagano <mpagano@gentoo.org> (20 Nov 2010)
# Mask this version of gentoo-sources while we test
# the effectiveness of the TTY-based group scheduling
# patch.
=sys-kernel/gentoo-sources-2.6.36-r2

# Alex Alexander <wired@gentoo.org> (14 Nov 2010)
# the qt-gui/qgtkstyle split keeps backfiring at me
# masking the stable bits for now, we'll revisit this later
=x11-libs/qt-gui-4.6.3-r1
~x11-themes/qgtkstyle-4.6.3

# Alexis Ballier <aballier@gentoo.org> (13 Nov 2010)
# Last rites: app-text/ptex
# Ebuilds have been unmaintained for years. ptex is now merged in TeX Live with
# the 2010 version: enable the cjk useflag. If you have any feature ptex had
# that is not available with TeX Live, please file a bug.
# Will be removed on max{13 Dec 2010, TeX Live 2010 stabilized}.
# Bugs: 303965, 323559 and 344585
app-text/ptex

# Eray Aslan <eras@gentoo.org> (10 Nov 2010)
# masking prerelease versions
=mail-filter/amavisd-new-2.7.0_pre*

# MATSUU Takuto <matsuu@gentoo.org> (08 Oct 2010)
# testing mask for development series
>=app-i18n/ibus-1.3.99
>=app-i18n/ibus-pinyin-1.3.99

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

# Peter Volkov <pva@gentoo.org> (29 Oct 2010)
# mask beta release
=net-analyzer/tcpreplay-3.4.5*

# Michael Sterrett <mr_bones_@gentoo.org> (28 Oct 2010)
# testing mask for upcoming nasm releases
>=dev-lang/nasm-2.09.999

# Tony Vroon <chainsaw@gentoo.org> (27 Oct 2010)
# This is very new, very exciting and quite probably not ready for your
# production kit yet. Bug reports? Sure, if they have patches!
>=net-misc/asterisk-1.8.0

# Markos Chandras <hwoarang@gentoo.org> (26 Oct 2010)
# master branch is heavily broken at the moment. Use
# 2.0.9999 instead if you want a kmess
# that actually builds
=net-im/kmess-9999

# Arun Raghavan <ford_prefect@gentoo.org> (26 Oct 2010)
# Mask development versions of Rygel
>=net-misc/rygel-0.9.1

# Jeroen Roovers <jer@gentoo.org> (25 Oct 2010)
# Masked until reverse dependencies are sorted out (bug #342461)
>dev-libs/libnl-2

# Samuli Suominen <ssuominen@gentoo.org> (16 Oct 2010)
# dev-libs/soprano with USE redland is unported to raptor2 API
# see bug 341237
>=dev-libs/rasqal-0.9.20
>=dev-libs/redland-1.0.12

# Bernard Cafarelli <voyageur@gentoo.org> (13 Oct 2010)
# New Objective-C Runtime for GNUstep
# Masked until I add proper support for it in gnustep-base
gnustep-base/libobjc2

# Robin H. Johnson <robbat2@gentoo.org> (08 Oct 2010)
# Masked for testing, and some testsuite failures.
>=sys-libs/db-5.1

# Luca Barbato <lu_zero@gentoo.org> (01 Oct 2010)
# beta version, has known issues
=x11-drivers/ati-drivers-8.780*

# Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> (13 Sep 2010)
# Unmaintained. Masked so that Zope 2.12/2.13 is preferred.
=net-zope/zope-3*

# Doug Goldstein <cardoe@gentoo.org> (8 Sep 2010)
# masked live version
=x11-libs/cairo-9999*

# Kacper Kowalik <xarthisius@gentoo.org> (7 Sep 2010)
# Mask until fully tested
x11-misc/lightdm

# Sebastian Pipping <sping@gentoo.org> (1 Sep 2010)
# Mask upcoming bumps, potentially too hot to push to everyone
=media-libs/libdvdread-4.1.3_p1217
=media-video/dvdbackup-0.4.1

# Doug Goldstein <cardoe@gentoo.org> (28 Aug 2010)
# Need to investigate build errors on some kernels
=app-emulation/kvm-kmod-2.6.35

# Tiziano Müller <dev-zero@gentoo.org> (11 Aug 2010)
# reasons for masking:
# spice and spice-protocol: those are unstable versions
# celt-0.8.1: not my responsability, just bumped it while doing 0.5.1.3
# opennebula: beta, testing
# qemu-kvm-spice: is going away as soon as spice patches are in qemu
=app-emulation/spice-0.7*
=app-emulation/spice-protocol-0.7*
app-emulation/opennebula
app-emulation/qemu-kvm-spice
=media-libs/celt-0.8.1

# Diego E. Pettenò <flameeyes@gentoo.org> (10 Aug 2010)
#  on behalf of QA team
#
# The ebuild breaks about any QA policy regarding not touching
# live filesystem as it writes to LVM configuration,
# cron configuration, current-running kernel modules, RPM
# library, ...
#
# Removal on 2010-10-09
app-admin/webmin

# Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> (22 Jul 2010)
# Development versions.
=net-libs/gnutls-2.11*

# 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

# Stefan Briesenick <sbriesen@gentoo.org> (21 Jul 2010)
# Abandoned upstream. Won't work with current kernels.
net-dialup/e2220pc
net-dialup/e5520pc
net-dialup/fcclassic
net-dialup/fcdsl
net-dialup/fcdsl2
net-dialup/fcdslsl
net-dialup/fcdslslusb
net-dialup/fcdslusb
net-dialup/fcdslusba
net-dialup/fcpcmcia
net-dialup/fcpnp
net-dialup/fcusb
net-dialup/fcusb2
net-dialup/fritzcapi
net-dialup/fxusb
net-dialup/fxusb_CZ
net-wireless/fwlanusb

# Daniel Black <dragonheart@gentoo.org> (18 Jul 2010)
# Abandoned upstream.
# Difficulties transitioning to python3 as per bug 308271
# Performs same functionality as kwallet
app-admin/kedpm

# Daniel Black <dragonheart@gentoo.org> (18 Jul 2010)
# Abandoned upstream.
# Difficulties transitioning to python3 as per bug 308331
app-cdr/sync2cd

# Jeroen Roovers <jer@gentoo.org> (13 Jul 2010)
# The ebuild still needs work, but if you can help testing
# it, then please unmask (bug #317325)
=net-analyzer/net-snmp-5.5*

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

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

# 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

# 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

# Alexis Ballier <aballier@gentoo.org> (17 Jun 2010)
# New major release, some packages fail to build
# Mask until they are fixed
# Also mask packages _requiring_ ocaml 3.12
>=dev-lang/ocaml-3.12.0_beta
>=dev-ml/type-conv-2.0.0
>=dev-ml/bin-prot-1.3.0
>=dev-ml/ocamlduce-3.12.0

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

# 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

# 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*

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

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

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

# 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

# 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-mud/gMOO
games-puzzle/codebreaker
games-puzzle/glickomania
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-20110129-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)
# 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

# 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

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

# 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

# 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)
# 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.
# Mask 5.2 virtual that exists in the overlay as well (it is MariaDB only)
=dev-db/mysql-5.4*
=virtual/mysql-5.4*
>=dev-db/mysql-5.5
>=virtual/mysql-5.5
=virtual/mysql-5.2*

# 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

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

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

# 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

# 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

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

# 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

# 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

# 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

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

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

# 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

# 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

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

# 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

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

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

# 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

# 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 live 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