summaryrefslogtreecommitdiff
blob: e0908d5ee0233d5f474e8928ba0e79ad3b3ec960 (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
####################################################################
# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16119 2014/10/25 16:08:38 mrueg 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")
#
## Example:
##
## # Dev E. Loper <developer@gentoo.org> (25 Jul 2014)
## # 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 ---

# Manuel Rüger <mrueg@gentoo.org> (25 Oct 2014)
# Deprecated by upstream, Debian removed it in 2010.
# Contents of this package moved to foomatic-db{,-engine,-ppds}
# and cups-filters.
# Masking for removal in 30 days.
net-print/foomatic-filters-ppds

# Tim Harder <radhermit@gentoo.org> (25 Oct 2014)
# Deprecated project, development continues in dev-util/cmocka.
# Masked for removal in 30 days.
dev-util/cmockery

# Tim Harder <radhermit@gentoo.org> (25 Oct 2014)
# Upstream migrated to nose for testing instead of their own framework.
# Masked for removal in 30 days.
dev-python/pry

# Andreas K. Huettel <dilfridge@gentoo.org> (24 Oct 2014)
# Fails tests (bug 421797), no reverse deps in tree, VERY dead
# upstream, last release 10 years ago. Masked for removal in 30 days.
dev-perl/DateTime-Format-DateManip

# Andreas K. Huettel <dilfridge@gentoo.org> (24 Oct 2014)
# Fails tests (bug 277407), no reverse deps in tree, no releases
# since many years, unlikely to work with uptodate subversion
# Masked for removal in 30 days
dev-perl/SVN-Mirror

# Davide Pesavento <pesa@gentoo.org> (20 Oct 2014)
# Does not build with any in-tree version of cmake since 20140713 (bug 506614).
# Jabber plugin is broken (bug 464690). Masked for removal in 30 days.
net-im/qutim

# Rick Farina <zerochaos@gentoo.org> (19 Oct 2014)
# Masked for removal on 19 Nov 2014, use sys-apps/hwids instead.
net-misc/ieee-oui

# Markos Chandras <18 Oct 2014>
# Not quite ready yet. Reverse deps seem to be broken
# at the moment. Masked until most of them are fixed
# upstream.
=net-libs/rb_libtorrent-1*

# Jauhien Piatlicki <jauhien@gentoo.org> (18 Oct 2014)
# Mask until Qt-5 is unmasked in the tree
>=x11-misc/sddm-0.10.0

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

# Michael Palimaka <kensington@gentoo.org> (15 Oct 2014)
# No longer compatible with online service it depends on.
# Dead upstream. Masked for removal in 30 days. Bug #451868.
app-dicts/gnuvd

# Andreas K. Huettel <dilfridge@gentoo.org> (13 Oct 2014)
# Does not build with current CLucene (bug 420195); dead upstream.
# No consumers in the tree. Masked for removal in 30 days.
dev-perl/Lucene

# Aaron W. Swenson <titanofold@gentoo.org> (11 Oct 2014)
# Beta package not yet ready for production.
=dev-db/postgresql-9.4_beta2
=virtual/postgresql-9.4

# Pacho Ramos <pacho@gentoo.org> (11 Oct 2014)
# Masked for removal in a month.
# Obsolete and unmaintained for years. You should switch
# to one of the many available alternatives like (#508854):
# - >=gnome-base/gnome-3.12 (either with standard or 'Classic' modes)
# - gnome-extra/cinnamon
# - mate-base/mate
# - xfce-base/xfce4-meta
# - ...
<app-accessibility/accerciser-3.8
app-accessibility/gnome-mag
app-accessibility/gnome-speech
app-accessibility/gok
<app-accessibility/orca-3.10
app-admin/gnome-system-tools
app-admin/pessulus
app-admin/sabayon
<app-arch/file-roller-3.10
<app-cdr/brasero-3.10
app-crypt/seahorse-plugins
<app-crypt/seahorse-3.10
<app-editors/gedit-3.10
app-pda/gnome-pilot
app-pda/gnome-pilot-conduits
<app-text/evince-3.10
dev-cpp/libgdamm
dev-cpp/libpanelappletmm
<dev-libs/folks-0.9
<dev-libs/totem-pl-parser-3.10
<dev-libs/libgdata-0.14
<dev-libs/libgweather-3.10
dev-python/brasero-python
dev-python/bug-buddy-python
dev-python/evince-python
dev-python/evolution-python
dev-python/gnome-applets-python
dev-python/gnome-desktop-python
dev-python/gnome-media-python
dev-python/libgda-python
dev-python/libgksu-python
dev-python/libgnomeprint-python
dev-python/libgtop-python
dev-python/totem-python
<app-admin/system-config-printer-common-1.4
<app-admin/system-config-printer-gnome-1.4
<gnome-base/gconf-3.2
<gnome-base/gdm-3.10
gnome-base/gnome-applets
<gnome-base/gnome-control-center-3.10
gnome-base/gnome-fallback
<gnome-base/gnome-keyring-3.10
<gnome-base/gnome-light-3.10
<gnome-base/gnome-menus-3.10
gnome-base/gnome-panel
<gnome-base/gnome-session-3.10
<gnome-base/gnome-settings-daemon-3.10
<gnome-base/gnome-3.10
<gnome-base/libgnome-keyring-3.10
<gnome-base/libgnomekbd-3.6
<gnome-base/nautilus-3.10
<gnome-extra/at-spi-2.8
app-accessibility/morseall
app-accessibility/java-access-bridge
gnome-extra/libgail-gnome
app-accessibility/dasher
gnome-extra/bug-buddy
gnome-extra/deskbar-applet
<gnome-extra/evolution-data-server-3.10
gnome-extra/evolution-exchange
gnome-extra/evolution-webcal
gnome-extra/fast-user-switch-applet
gnome-extra/gcalctool
<gnome-extra/gconf-editor-3
gnome-extra/gnome-audio
<gnome-extra/gnome-color-manager-3.10
gnome-extra/gnome-games-extra-data
gnome-extra/gnome-games
gnome-extra/gnome-media
<gnome-extra/gnome-power-manager-3.10
gnome-extra/gnome-screensaver
gnome-extra/gnome-swallow
<gnome-extra/gnome-system-monitor-3.10
<gnome-extra/gnome-user-docs-3.10
<gnome-extra/gnome-user-share-3.10
<gnome-extra/gnome-utils-3.8
<gnome-extra/gtkhtml-4
gnome-extra/hamster-applet
<gnome-extra/libgda-5
gnome-extra/lock-keys-applet
<gnome-extra/mousetweaks-3.10
=gnome-extra/nautilus-actions-3.2.2-r200
gnome-extra/nautilus-open-terminal
<gnome-extra/nautilus-sendto-3.8
gnome-extra/panflute
gnome-extra/sensors-applet
gnome-extra/file-browser-applet
gnome-extra/gnome-hdaps-applet
media-gfx/byzanz
net-analyzer/gnome-netstatus
net-analyzer/netspeed_applet
<net-mail/gnubiff-2.2.15-r2
x11-misc/glunarclock
gnome-extra/swfdec-gnome
gnome-extra/tasks
<gnome-extra/yelp-3.10
<gnome-extra/zenity-3.8
<media-gfx/eog-3.10
media-gfx/shared-color-profiles
app-office/pinpoint
<media-libs/clutter-gst-2.0.10
net-libs/gupnp-vala
<media-libs/gupnp-dlna-0.10.2
media-libs/swfdec
<media-sound/pulseaudio-5
<media-sound/sound-juicer-3
<media-video/cheese-3.10
<media-video/totem-3.10
<net-analyzer/gnome-nettool-3.8
<net-im/empathy-3.10
<net-im/telepathy-connection-managers-2-r2
<net-im/telepathy-logger-0.8
<net-im/telepathy-mission-control-5.14.1
net-libs/farsight2
<net-libs/gtk-vnc-0.5.3
<net-misc/vinagre-3.10
net-libs/libepc
net-misc/drivel
net-misc/blogtk
net-misc/gnome-blog
net-misc/tsclient
<net-misc/vino-3.10
<net-voip/telepathy-gabble-0.16.7
<net-voip/telepathy-haze-0.8
<net-voip/telepathy-rakia-0.8
<sys-apps/gnome-disk-utility-3.10
www-client/epiphany-extensions
<www-client/epiphany-3.10
www-plugins/swfdec-mozilla
<x11-misc/alacarte-3.10
<x11-terms/gnome-terminal-3.10
<x11-themes/gnome-backgrounds-3.10
<x11-themes/gnome-icon-theme-3.10
x11-themes/gnome-themes-extras
x11-themes/gnome-themes
x11-themes/gtk-engines-cleanice
x11-themes/gtk-engines-dwerg
<mail-client/evolution-3.10
<net-wireless/gnome-bluetooth-3.10
<app-dicts/verbiste-0.1.38-r1
x11-plugins/wmlife
<app-misc/ddccontrol-0.4.2_p20140105-r1
<dev-ml/lablgtk-2.18.0-r1
<app-i18n/uim-1.8.6-r1
<app-i18n/im-ja-1.5-r3
=app-misc/gourmet-0.15.9
dev-dotnet/gtkhtml-sharp
dev-util/mono-tools
<dev-vcs/giggle-0.7-r1
<gnome-extra/cinnamon-2
<gnome-extra/nemo-2
<mail-client/balsa-2.4.14
<media-video/gxine-0.5.907-r1
<dev-python/nautilus-python-1.1-r1
<dev-vcs/bzr-gtk-0.103.0
<media-gfx/postr-0.13-r1
<net-im/minbif-1.0.5-r1
<net-im/pidgin-2.10.9-r1
net-libs/telepathy-farsight
<net-libs/telepathy-glib-0.24
<x11-misc/revelation-0.4.14-r1
<x11-misc/xmonad-log-applet-2.0.0-r301
x11-themes/gdm-themes
x11-themes/metacity-themes
x11-wm/metacity
<gnome-base/gnome-desktop-2.32.1-r2
<app-office/grisbi-1.0.0
<dev-util/gob-2.0.20
<net-irc/telepathy-idle-0.2.0
<media-video/gnome-video-effects-0.4.1
<net-misc/modemmanager-1.2.0-r1
<net-libs/telepathy-qt-0.9.3-r2
gnome-base/libgdu
<gnome-base/gvfs-1.20
rox-base/rox-media

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

# Manuel Rüger <mrueg@gentoo.org> (11 Oct 2014)
# Dead upstream use kde-misc/kcm-touchpad instead
kde-misc/kcm_touchpad

# Andreas K. Huettel <dilfridge@gentoo.org> (9 Oct 2014)
# The sys-devel/libperl ebuild is only a dummy and will be removed
# in 30 days; libperl is provided by dev-lang/perl.
sys-devel/libperl

# Andreas K. Huettel <dilfridge@gentoo.org> (9 Oct 2014)
# Masked for removal in 30 days; see e.g. bug 446376
# Please upgrade to stable Perl 5.18
=dev-lang/perl-5.16.3
=virtual/perl-ExtUtils-Install-1.580.0-r1
=virtual/perl-File-Temp-0.220.0-r3
=virtual/perl-I18N-LangTags-0.380.0
=virtual/perl-Math-BigInt-1.998.0
=virtual/perl-Math-BigRat-0.260.300
=virtual/perl-Net-Ping-2.38
=virtual/perl-Text-ParseWords-3.270.0-r1
=virtual/perl-Thread-Queue-2.120.0-r3
=virtual/perl-Version-Requirements-0.101.22
=virtual/perl-threads-shared-1.400.0-r2
perl-core/Version-Requirements

# Brian Evans <grknight@gentoo.org> (8 Oct 2014)
# Mask all versions of suhosin until upstream revival is sustained and tested
dev-php/suhosin

# Manuel Rüger <mrueg@gentoo.org> (6 Oct 2014)
# Mask texlive-2014
=dev-libs/kpathsea-6.2.0_p20140523
=dev-tex/luatex-0.79.1

# Jauhien Piatlicki <jauhien@gentoo.org> (5 Oct 2014)
# Masked because of bug 524390: privilege escalation
# until upstream fixes this security issue.
# Use at your own risk
<x11-misc/sddm-0.10.0

# Brian Evans <grknight@gentoo.org> (2 Oct 2014)
# Masked for removal in 30 days. (Bug #524310)
# Broken on >=dev-lang/php-5.4. Replace with dev-php/xcache,
# dev-php/pecl-zendopcache, or dev-lang/php[opcache].
# If you need pecl-apc's variable storage use dev-php/pecl-apcu.
dev-php/eaccelerator
dev-php/pecl-apc

# Brian Evans <grknight@gentoo.org> (2 Oct 2014)
# Masked for removal in 30 days. (Bug #524310)
# Broken on >=dev-lang/php-5.4.  No replacements known.
dev-php/adodb-ext
dev-php/pecl-id3
dev-php/pecl-mogilefs
dev-php/pecl-sca_sdo

# Pawel Hajdan jr <phajdan.jr@gentoo.org> (30 Sep 2014)
# Reverse dependencies need to be tested and fixed, bug #521406.
>=dev-libs/protobuf-2.6.0

# Pacho Ramos <pacho@gentoo.org> (27 Sep 2014)
# >=0.5 broke API, bug #523838, wait for next major tracker
# version
>=media-libs/libmediaart-0.7

# Brian Dolbec <dolsen@gentoo.org> (25 Sep 2014)
# Mask new setup.py based release due to regressions
# A new fixed version is being released soon
=sys-apps/portage-2.2.13

# Michael Sterrett <mr_bones_@gentoo.org> (24 Sep 2014)
# No updates since 2007 and games-board/scid is actively maintained.
# masked for removal on 20141024
games-board/chessdb

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

# Dion Moult <moult@gentoo.org> (15 Sep 2014)
# Ancient and unmaintained (bug #515028)
# Masked for removal in 30 days
net-misc/netcomics-cvs

# Dion Moult <moult@gentoo.org> (15 Sep 2014)
# It has no support for new API since 2012. A good replacement of this package,
# app-text/pastebinit, is already stabilized (bug #434366)
# Masked for removal in 30 days
app-text/pastebin

# Maxim Koltsov <maksbotan@gentoo.org> (12 Sep 2014)
# Requires masked libav-10
# If you use media-video/ffmpeg, it's absolutely safe to unmask this package.
# Sorry for the inconvenience!
#
# Developers: Please DO NOT REMOVE this mask, which was discussed and
# agreed on #gentoo-dev by mgorny, patrick and others
=media-video/mpv-0.4*
=media-video/mpv-0.5*
=media-video/mpv-0.6*

# Patrick Lauer <patrick@gentoo.org> (11 Sep 2014)
# Unsatisfiable dependencies after firebird removal
# Should be treecleaned #522344 #522348 #522346
dev-python/kinterbasdb
dev-libs/ibpp
dev-php/PEAR-MDB2_Driver_ibase

# Davide Pesavento <pesa@gentoo.org> (11 Sep 2014)
# Mask Qt 5.3.x for wider testing to ensure that it does
# not break or conflict with other packages (bug #454132)
=dev-qt/assistant-5.3.2*
=dev-qt/designer-5.3.2*
=dev-qt/linguist-5.3.2*
=dev-qt/linguist-tools-5.3.2*
=dev-qt/pixeltool-5.3.2*
=dev-qt/qdbus-5.3.2*
=dev-qt/qdbusviewer-5.3.2*
=dev-qt/qdoc-5.3.2*
=dev-qt/qtconcurrent-5.3.2*
=dev-qt/qtcore-5.3.2*
=dev-qt/qtdbus-5.3.2*
=dev-qt/qtdeclarative-5.3.2*
=dev-qt/qtdiag-5.3.2*
=dev-qt/qtgraphicaleffects-5.3.2*
=dev-qt/qtgui-5.3.2*
=dev-qt/qthelp-5.3.2*
=dev-qt/qtimageformats-5.3.2*
=dev-qt/qtmultimedia-5.3.2*
=dev-qt/qtnetwork-5.3.2*
=dev-qt/qtopengl-5.3.2*
=dev-qt/qtpaths-5.3.2*
=dev-qt/qtpositioning-5.3.2*
=dev-qt/qtprintsupport-5.3.2*
=dev-qt/qtquick1-5.3.2*
=dev-qt/qtquickcontrols-5.3.2*
=dev-qt/qtscript-5.3.2*
=dev-qt/qtsensors-5.3.2*
=dev-qt/qtserialport-5.3.2*
=dev-qt/qtsql-5.3.2*
=dev-qt/qtsvg-5.3.2*
=dev-qt/qttest-5.3.2*
=dev-qt/qttranslations-5.3.2*
=dev-qt/qtwebkit-5.3.2*
=dev-qt/qtwebsockets-5.3.2*
=dev-qt/qtwidgets-5.3.2*
=dev-qt/qtx11extras-5.3.2*
=dev-qt/qtxml-5.3.2*
=dev-qt/qtxmlpatterns-5.3.2*
dev-python/PyQt5
kde-frameworks/attica
kde-frameworks/frameworkintegration
kde-frameworks/kactivities
kde-frameworks/kapidox
kde-frameworks/karchive
kde-frameworks/kauth
kde-frameworks/kbookmarks
kde-frameworks/kcmutils
kde-frameworks/kcodecs
kde-frameworks/kcompletion
kde-frameworks/kconfig
kde-frameworks/kconfigwidgets
kde-frameworks/kcoreaddons
kde-frameworks/kcrash
kde-frameworks/kdbusaddons
kde-frameworks/kdeclarative
kde-frameworks/kded
kde-frameworks/kdelibs4support
kde-frameworks/kdesignerplugin
kde-frameworks/kdesu
kde-frameworks/kdewebkit
kde-frameworks/kdnssd
kde-frameworks/kdoctools
kde-frameworks/kemoticons
kde-frameworks/kf-env
kde-frameworks/kglobalaccel
kde-frameworks/kguiaddons
kde-frameworks/khtml
kde-frameworks/ki18n
kde-frameworks/kiconthemes
kde-frameworks/kidletime
kde-frameworks/kimageformats
kde-frameworks/kinit
kde-frameworks/kio
kde-frameworks/kitemmodels
kde-frameworks/kitemviews
kde-frameworks/kjobwidgets
kde-frameworks/kjs
kde-frameworks/kjsembed
kde-frameworks/kmediaplayer
kde-frameworks/knewstuff
kde-frameworks/knotifications
kde-frameworks/knotifyconfig
kde-frameworks/kparts
kde-frameworks/kplotting
kde-frameworks/kpty
kde-frameworks/kross
kde-frameworks/krunner
kde-frameworks/kservice
kde-frameworks/ktexteditor
kde-frameworks/ktextwidgets
kde-frameworks/kunitconversion
kde-frameworks/kwallet
kde-frameworks/kwidgetsaddons
kde-frameworks/kwindowsystem
kde-frameworks/kxmlgui
kde-frameworks/plasma
kde-frameworks/solid
kde-frameworks/sonnet
kde-frameworks/threadweaver
www-client/otter
=app-text/calibre-2*

# Sergey Popov <pinkbyte@gentoo.org> (04 Sep 2014)
# Security mask, wrt bugs #488212, #498164, #500260,
# #507802 and #518718
<virtual/mysql-5.5
<dev-db/mysql-5.5.39
<dev-db/mariadb-5.5.39

# Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> (03 Sep 2014)
# Temporary mask until it is verified to work
=media-libs/raspberrypi-userland-0_pre20140830

# Markos Chandras <hwoarang@gentoo.org> (02 Sep 2014)
# MSN service terminated.
# You can still use your MSN account in net-im/skype
# or switch to an open protocol instead
# Masked for removal in 30 days
net-im/kmess
net-im/amsn
x11-themes/amsn-skins

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

# Brian Dolbec <dolsen@gentoo.org> (1 sept 2014)
# Mask NON-MAINTAINER commit, due lack of testing portage team, releng
# Mask for review
=sys-apps/portage-2.2.12-r1

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

# Sergey Popov <pinkbyte@gentoo.org> (27 Aug 2014)
# Does not work since late 2013, due to update servers shutdown
# See bug #520858, removal in a month
games-server/halflife-steam

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

# Sergey Popov <pinkbyte@gentoo.org> (14 Aug 2014)
# Mask new version of Boost - it's known to cause breakages,
# according to it's ChangeLog
~dev-util/boost-build-1.56.0
~dev-libs/boost-1.56.0

# Samuli Suominen <ssuominen@gentoo.org> (09 Aug 2014)
# usleep command is part of the app-admin/killproc package,
# and adding this separate usleep package was a mistake
# emerge -C sys-apps/usleep
# emerge app-admin/killproc
# removal in about 30 days wrt bug #467212
sys-apps/usleep

# Sergey Popov <pinkbyte@gentoo.org> (05 Aug 2014)
# Lacks patch in FILESDIR => fails to build
# Masked by QA until maintainer will sort things out
=app-emulation/fuse-1.1.1

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

# Alexis Ballier <aballier@gentoo.org> (4 Aug 2014)
# <vlc-2.2 will not work with this ffmpeg version; others to be investigated.
>=media-video/ffmpeg-2.3
# bug #525070
>=media-video/mplayer-1.2_pre20141011

# Mikle Kolyada <zlogene@gentoo.org>
# Masked due to upstream QA issues.
=dev-perl/Alien-SDL-1.444.0

# Patrick Lauer <patrick@gentoo.org> (25 Jul 2014)
# Upstream has declared it EOL, please migrate to
# newer versions
=dev-db/postgresql-base-8.4*
=dev-db/postgresql-server-8.4*
=dev-db/postgresql-docs-8.4*

# Pacho Ramos <pacho@gentoo.org> (24 Jul 2014)
# It's a development version that was included without
# notifying gnome team.
=dev-python/pygobject-3.13.3

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

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

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

# Jeroen Roovers <jer@gentoo.org> (26 Jun 2014)
# Development has halted (see <http://www.perihel.at/sec/mz/index.html>)
# See net-analyzer/netsniff-ng for a replacement (bug #515210)
net-analyzer/mausezahn

# Alexandre Rostovtsev <tetromino@gentoo.org> (22 Jun 2014)
# Breaks gitg-0.3.2 (most recent released version), bug #514468
>=dev-libs/libgit2-glib-0.0.14

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

# Mike Gilbert <floppym@gentoo.org> (13 Jun 2014)
# Masked due to security bug 499870.
# Please migrate to net-misc/libreswan.
# If you are a Gentoo developer, feel free to pick up maintenence of openswan
# and remove this mask after resolving the security issue.
net-misc/openswan

# Mike Gilbert <floppym@gentoo.org> (10 Jun 2014)
# Masked due to pending dev-python/imaging removal, bug 471488.
media-sound/decibel-audio-player
=net-im/pymsn-t-0.11.3-r3
sci-physics/camfr

# Tom Wijsman <TomWij@gentoo.org> (8 Jun 2014)
# Mask VLC ebuilds that are affected with security bug CVE-2013-6934:
#
#     A vulnerability has been discovered in VLC Media Player, which can be
#     exploited by malicious people to compromise a user's system.
#
# Some ebuilds also have other buffer and integer overflow security bugs like
# CVE-2013-1954, CVE-2013-3245, CVE-2013-4388 and CVE-2013-6283.
#
# Users should consider to upgrade VLC Media Player to at least version 2.1.2.
<media-video/vlc-2.1.2

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

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

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

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

# Ryan Hill <rhill@gentoo.org> (22 May 2014)
# Big API break.  Masked until something needs it.
>=dev-libs/isl-0.13

# Ian Delaney <idella4@gentoo.org> (22 May 2014)
# The bumped version has been given added py3.4 support.
# Given testsuite failures, a period of masking allows for possible
# patching from upstream to be added to this version.
# Masked until py3.4 support is added to media-gfx/cairosvg
=dev-python/weasyprint-0.22

# Justin Lecher <jlec@gentoo.org> (07 May 2014)
# Still doesn't work as expected
=sci-chemistry/ccpn-2.4.0_p140425-r1

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

# Tom Wijsman <TomWij@gentoo.org> (02 May 2014)
# Bluetooth support in MATE has incompatibilities with recent BlueZ versions.
# If you want to try to get this working, unmask net-wireless/mate-bluetooth as
# well as the bluetooth USE flag on mate-extra/mate-user-share; I can't support
# this until the relevant upstreams have moved forward with their compatibility.
#
# https://bugs.gentoo.org/show_bug.cgi?id=508086
# https://github.com/mate-desktop/mate-bluetooth/issues/22
# http://mate-desktop.org/blog/2014-03-11-mate-desktop-singing-the-bluez
net-wireless/mate-bluetooth

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

# Patrick Lauer <patrick@gentoo.org> (09 Apr 2014)
# Dead upstream, has known dataloss bugs.
# Please use something more sane: rsnapshot, backuppc, obnam, ...
app-backup/rdiff-backup
app-backup/pybackpack
sys-fs/rdiff-backup-fs

# Markos Chandras <hwoarang@gentoo.org> (08 Apr 2014)
# Masked for futher testing with various pam setups
=x11-misc/lightdm-1.11*

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

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

# Tom Wijsman <TomWij@gentoo.org> (31 Mar 2014)
# Prevent users from switching JDK / JRE implementation.
#
# Unmask this if you want to upgrade or switch to Oracle JDK / JRE 1.8.
>=virtual/jdk-1.8
>=virtual/jre-1.8

# Luca Barbato <lu_zero@gentoo.org> (30 Mar 2014)
# Current stable for upstream, pending a tinderbox run.
# Note: mask restored because of #509294, #519258.
=media-video/libav-10*
=media-video/libav-11*

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

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

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

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

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

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

# Christian Ruppert <idl0r@gentoo.org> (19 Jan 2014)
# Experimental, for now
=dev-vcs/gitolite-gentoo-3*

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

# Eray Aslan <eras@gentoo.org> (18 Jan 2014)
# Mask experimental software
=mail-mta/postfix-2.12*

# Alexis Ballier <aballier@gentoo.org> (18 Jan 2014)
# Rev. deps fail to build
>=media-libs/aubio-0.4

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

# Tom Wijsman <TomWij@gentoo.org> (09 Jan 2014)
# Monolithic dev-dotnet/{gnome,gtk}-sharp introduction mask, see bug #382491.
>=dev-dotnet/gnome-sharp-2.24.2-r1
>=dev-dotnet/gtk-sharp-2.12.21

# Julian Ospald <hasufell@gentoo.org> (30 Dec 2013)
# breaks every consumer
=dev-games/ogre-1.9.0

# Michał Górny <mgorny@gentoo.org> (15 Dec 2013)
# Masked for testing due to almost complete redesign. It is now
# completely split and no longer has an integrated GUI. Currently,
# the only working GUI is the PyQt4 GUI and it has license issues
# (bug #494524).
>=games-emulation/mupen64plus-2
games-emulation/mupen64plus-core
games-emulation/mupen64plus-audio-sdl
games-emulation/mupen64plus-input-sdl
games-emulation/mupen64plus-rsp-hle
games-emulation/mupen64plus-ui-console
games-emulation/mupen64plus-video-glide64mk2
games-emulation/mupen64plus-video-rice
games-emulation/m64py

# Ben de Groot <yngwin@gentoo.org> (11 Nov 2013)
# Mask older roboto versions to give users a regular upgrade path
# now that we've switched to upstream versioning
>media-fonts/roboto-9999

# Lars Wendler <polynomial-c@gentoo.org> (28 Oct 2013)
# Masked alpha/beta releases for testing.
=app-arch/xz-utils-5.1*

# Tiziano Müller <dev-zero@gentoo.org> (24 Oct 2013)
# Mask mainline version branch
=www-servers/nginx-1.5*

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

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

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

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

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

# Tom Wijsman <TomWij@gentoo.org> (15 Aug 2013)
# Dependencies are unable to satisfy current version,
# broken; needs a version bump from bug #475552.
dev-java/itext:5

# Jeroen Roovers <jer@gentoo.org> (31 Jul 2013)
# Needs >=dev-lang/lua-5.2
>net-analyzer/nmap-6.40

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

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

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

# Sergey Popov <pinkbyte@gentoo.org> (12 Jul 2013)
# Probably new versions will work with hexchat too.
# Do not lastrite this, just leave mask by Lars Wendler's request.
net-irc/xchat-otr

# Michael Weber <xmw@gentoo.org> (9 Jul 2013)
# Masked for security bug 450746, CVE-2012-6095
<net-ftp/proftpd-1.3.4c

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

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

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

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

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

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

# Patrick Lauer <patrick@gentoo.org> (09 Apr 2013)
# Masked to get 0.10 tested
=net-libs/nodejs-0.11*

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

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

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

# Doug Goldstein <cardoe@gentoo.org> (22 Jan 2013)
# Masked for development
=sys-block/open-iscsi-2.0.873

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

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

# Markos Chandras <hwoarang@gentoo.org> (03 Nov 2012)
# Kernel module support is disabled due to sandbox violations.
# As a result of which, the package is not fully working at the moment
# but it can still be used to track userland regressions.
=app-benchmarks/ltp-ltp-2014082

# Alexis Ballier <aballier@gentoo.org> (1 Nov 2012)
# Still requires ocaml-3, mask it until it is ported. If this does not happen in
# the near future, we should consider removing it.
dev-ml/ocamlduce

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

# Eray Aslan <eras@gentoo.org> (24 Oct 2012)
# Mask experimental software
=mail-client/squirrelmail-1.4.23*

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

# Michael Weber <xmw@gentoo.org> (07 Jul 2012)
# Masked for testing only beta (bug 424866)
=sci-electronics/eagle-6.2.1_beta

# Ian Stakenvicius <axs@gentoo.org> (19 Jun 2012)
# Mask new spidermonkeys until rdeps can accept it
# 1.8.7 will be masked indefinitely and will be removed
# from the tree soon.
~dev-lang/spidermonkey-1.8.7

# Michael Weber <xmw@gentoo.org> (13 Jun 2012)
# Mask beta versions for testing
>sci-electronics/magic-8

# Alexandre Rostovtsev <tetromino@gentoo.org> (20 May 2012)
# Requires dev-scheme/guile-2.0.5 which is in lisp overlay and masked;
# bug #416683
>=games-board/aisleriot-3.3.1

# Ultrabug <ultrabug@gentoo.org> (16 May 2012)
# Masked for testing
>=sys-cluster/corosync-2.0.0

# Johannes Huber <johu@gentoo.org> (03 May 2012)
# Unstable dev channel release. Fixes build with gcc47
# (bug #413941).
>=media-sound/mp3diags-1.1

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

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

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

# Diego E. Pettenò <flameeyes@gentoo.org> (30 Oct 2011)
# Working on more reliable versioning, consider experimental for now.
#
# Rafael G. Martins <rafaelmartins@gentoo.org> (27 May 2013)
# Remove generic mask. These versions will be removed later.
=dev-lang/luajit-2.0.0_beta8_p1
=dev-lang/luajit-2.0.0_beta10
=dev-lang/luajit-2.0.0

# Samuli Suominen <ssuominen@gentoo.org> (30 Oct 2011)
# Masked for security bug #294253, use only at your own risk!
=media-libs/fmod-3*
games-puzzle/candycrisis
games-simulation/stoned-bin
games-sports/racer-bin
games-strategy/dark-oberon
games-strategy/savage-bin

# MATSUU Takuto <matsuu@gentoo.org> (27 Oct 2011)
# Mask for testing
>=sys-devel/distcc-3.2_rc1

# Justin Bronder <jsbronder@gentoo.org> (27 Sep 2011)
# Masking the torque 2.3 series due to bug #372959.  This allows
# sites that are ok with the vulnerability but prefer the stability
# of 2.3.x to continue to get updates (if any).
dev-perl/perl-PBS

# Alexis Ballier <aballier@gentoo.org> (20 Aug 2011)
# dev-tex/pdftex-1.40.11 is 100% identical to the one in TeX Live 2010;
# TeX Live 2011 has a newer version, which makes the standalone package useless;
# mask it for now, we'll see about removing it later.
dev-tex/pdftex

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

# Justin Lecher <jlec@gentoo.org> (27 Jun 2011)
# Only avalable version isn't in the tree.
# Mask until it is bumped
sci-chemistry/webmo

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

# 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-irmc-0.30
>=app-pda/libopensync-plugin-palm-0.30
>=app-pda/libopensync-plugin-python-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-gnokii
app-pda/libopensync-plugin-gpe
app-pda/multisync-gui

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

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

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

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

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

# Patrick Lauer <patrick@gentoo.org> (07 Apr 2010)
# Lars Wendler <polynomial-c@gentoo.org> (14 Oct 2013)
# Keeping samba-4.0 masked until bug #447022 is fixed. 4.1 masked for testing.
=net-fs/samba-4.0*
=net-fs/samba-4.1*

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

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

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

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

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

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

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

# Markus Ullmann <jokey@gentoo.org> (07 Jul 2008)
# mask for security bug #190667 (CVE-2007-{4584,5839})
# and for various other build problems (bug #425634)
#
# both CVEs are fixed in upstream version control as per:
# http://bitchx.svn.sourceforge.net/svnroot/bitchx/trunk/Changelog
net-irc/bitchx

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

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

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

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

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

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

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