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

#--- END OF EXAMPLES ---

# Sergey Popov <pinkbyte@gentoo.org> (01 Nov 2016)
# Project is dead.
# Please migrate to it's successor - net-misc/bgpq3
net-misc/bgpq

# James Le Cuirot <chewi@gentoo.org> (30 Oct 2016)
# This was renamed by upstream years ago to jnr-ffi, which we have
# long had a package for. Removal in 30 days.
dev-java/jaffl

# David Seifert <soap@gentoo.org> (29 Oct 2016)
# Unmaintained, broken, do not work with GCC 6
# Bugs #594506, #597780, removal in 30 days.
<dev-cpp/xsd-4.0.0
<dev-cpp/libxsd-frontend-2.0.0
dev-cpp/libfrontend-elements
dev-cpp/libbackend-elements
dev-cpp/libcult
<dev-util/build-0.3.10

# David Seifert <soap@gentoo.org> (29 Oct 2016)
# Unmaintained, depends on ancient and broken C++ libraries
# Removal in 30 days.
net-libs/libkolab
net-libs/libkolabxml

# Lars Wendler <polynomial-c@gentoo.org> (27 Oct 2016)
# Breaks build of some packages. See tracker bug #598186
=sys-devel/flex-2.6.2

# Craig Andrews <candrews@integralblue.com> (25 Oct 2016)
# >=media-tv/kodi-17.0_alpha requires >=media-video/ffmpeg-3.0
# which is hard masked see #574788
>=media-tv/kodi-17.0_beta3

# Mike Gilbert <floppym@gentoo.org> (24 Oct 2016)
# Dev channel releases are only for people who are developers or want more
# experimental features and accept a more unstable release.
>=www-client/chromium-56

# Hanno Böck <hanno@gentoo.org> (16 Oct 2016)
# The current package is broken (depends on perl modules
# not in the tree) and there is probably no interest in
# keeping it, as mp is irrelevant these days.
# Masked for removal in 30 days.
sci-geosciences/osm2mp

# Hanno Böck <hanno@gentoo.org> (14 Oct 2016)
# Both haven't been updated in years and are likely not
# usable in their current form in the tree. Upstream
# provides jar files for download that can be used
# instead.
# Masked for removal in 30 days.
sci-geosciences/osmosis
sci-geosciences/mkgmap

# Michael Palimamka <kensington@gentoo.org> (12 Oct 2016)
# Dead upstream. Requires dead and vulnerable qtwebkit4.
# Consider www-client/qupzilla or www-client/otter instead.
# Masked for removal in 30 days.
www-client/rekonq

# Patrice Clement <monsieurp@gentoo.org> (11 Oct 2016)
# Upstream's homepage is dead and nowhere to be found.
# Masked for removal in 30 days.
dev-python/oosuite

# Patrice Clement <monsieurp@gentoo.org> (10 Oct 2016)
# Note from upstream (https://github.com/Pylons/pylons):
# Pylons has merged with repoze.bfg, and is now in maintenance-only mode. It's
# highly recommended that new projects start with the new merged web framework,
# pyramid. Masked for removal in 30 days.
dev-python/pylons-sphinx-themes
dev-python/pylons

# Michael Palimaka <kensington@gentoo.org> (09 Oct 2016)
# Abandoned and declared dead by upstream. Not recommended for use with recent
# versions of kaffeine. Masked for removal in 30 days.
www-plugins/kaffeine-mozilla-plugin

# Patrice Clement <monsieurp@gentoo.org> (09 Oct 2016)
# Although still available for download, the JMF API is a dead project which
# hasn't been updated in years and hence very old.
# Masked for removal in 30 days.
dev-java/jmf-bin

# Sebastian Pipping <sping@gentoo.org> (08 Oct 2016)
# Dead upstream for years, ebuild needs work, 5 open bugs
# Masked for removal in 30 days.
media-gfx/drqueue

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Multiple QA problems for a long time, all ADA stuff is heavily broken.
# (#251873). Removal in a month.
dev-ada/cbind

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Links statically always (#273333), consumer of the completely dead
# capi4kutils package. Removal in a month.
net-dialup/dtrace

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Dead since 2012 and not compatible with mono-4 (#330203). Removal in a
# month.
net-nds/lat

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Ignores CFLAGS, dead and upstream suggested to remove it (#428114).
# Removal in a month.
app-pda/jpilot-mail


# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Dead for ages, multiple QA issues (#448476), relies on dead capi4kutils.
# Removal in a month.
net-dialup/drdsl

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Not compatible with itcl-4 (needed for tcktk 8.6), needs lots of patching
# and a dedicated maintainer. Removal in a month.
dev-util/insight

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Upstream dead, relies in obsolete and vulnerable gksu (#486444). Removal
# in a month.
app-laptop/configure-trackpoint

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Dead since 2012, relies on obsolete and vulnerable gksu (#486462), uses
# precompiled jars (#388517). Removal in a month.
x11-misc/lxmed

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Doesn't work properly (#501612), needs migration to new python eclasses, a
# newer snapshot would also be needed. Removal in a month.
dev-util/ketchup

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Upstream dead, multiple issues (#505914), needs migration to new python
# eclasses. Removal in a month.
media-gfx/skencil

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Dead since 2006, broken in several ways (#510850). Removal in a month.
net-wireless/chillispot

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Fails to build (#515294), nothing needs it, relies on obsolete capi4kutils. 
# Removal in a month.
net-dialup/fcpci

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Broken in several ways (#529282), completely dead. Removal in a month.
media-plugins/vdr-channelblocker

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Upstream dead for ages, probably not working anymore (#533806), not needed
# by anything in the tree. Removal in a month.
app-mobilephone/sms

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Dead for ages, not ported to current nautilus (#541466). Removal in a
# month.
gnome-extra/nautilus-share

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Doesn't run by default (#544710), broken for a long time. Removal in a
# month.
dev-lang/pocl

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Broken with mono-4 (#546056), nothing needs it in the tree. Removal in a
# month.
dev-dotnet/nant

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Nothing needs it in the tree, relies on old reportlab-2 (#548218). Removal
# in a month.
dev-python/xhtml2pdf

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Nothing requires this, it relies in completely broken ada stuff, has
# multiple issues (#554966). Removal in a month.
dev-ada/glade

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Dead for ages, done for kernel 2.4, nothing needs it (#555344). Removal in
# a month.
sys-fs/siefs

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Broken with mono-4 (#561186), nothing needs it. Removal in a month.
dev-util/mono-debugger

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Broken with mono-4 (#562474), nothing needs it. Removal in a month.
dev-dotnet/mono-nat

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Broken with mono-4 (#562550), nothing needs it. Removal in a month.
dev-dotnet/monotorrent

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Broken with recent ffmpeg, upstream dead (#575274). Removal in a month.
x11-misc/electricsheep

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Broken with recent ffmpeg, upstream dead (#576094). Removal in a month.
media-sound/squeezeslave

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Doesn't work with mono-4 (#581140). Removal in a month.
media-gfx/paint-mono

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Relies on obsolete libs, vulnerable webkit-gtk, upstream is dead for ages,
# needs porting to new python eclasses (#584174). Removal in a month.
gnome-extra/avant-window-navigator
gnome-extra/avant-window-navigator-extras

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Relies in dead and vulnerable webkit-gtk:{2,3} versions (#584184). Removal in
# a month.
www-client/jumanji

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Removal in a month (#585726)
# Anthony G. Basile <blueness@gentoo.org> (29 Jun 2016)
# Masked for bug #585726
net-dns/namecoind
net-dns/namecoin-qt

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Fails to build, dead since 2012 (#587804). Removal in a month
net-nntp/nzb

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Fails to build (#588316), current kernels shouldn't need this. Removal in
# a month.
app-laptop/easy-slow-down-manager
app-laptop/samsung-tools

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Dead since 2008, not compatible with guile-2 (#592084). Removal in a
# month.
net-dialup/gnuradius

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Not compatible with current ffmpeg, needs someone to try to update it
# (#592700). Removal in a month.
games-simulation/corsix-th

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Fails to build (#592994). Nothing needs it. Removal in a month.
sci-geosciences/osgearth

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Upstream is dead for a long time, and it is one of the last apps still
# requiring all the deprecated/obsolete gnome2-python bindings (#593592).
# Removal in a month.
x11-plugins/screenlets

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Upstream is dead since 2010, also, it is one of the last apps still
# needing the obsolete gnome2-python bindings (#593594). Removal in a month.
x11-misc/gdevilspie

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Dead for a long time, nothing needs it (#594210). Removal in a month.
media-libs/mash

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# It is one of the last consumers of old slot for gnonlin, also relies on
# completely obsolete libs and gstreamer-0.10 and upstream looks dead
# (#594350). Removal in a month.
media-sound/jokosher

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Removal in a month (#594562)
# 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

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Replaced by dev-dotnet/xsp (#594596). Removal in a month.
www-apache/mod_mono

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# This relies on gst-plugins-ffmpeg that is dead for ages and broken with ffmpeg-3.
# Also relies on gstreamer-0.10, pygobject:2 and some other deprecated/dead
# libs, upstream looks dead (#594880). Removal in a month.
media-radio/radiotray

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Homepage tagged as "dangerous" by Google, looks dead for ages, relies on
# dead capi4kutils (#595666). Removal in a month.
app-mobilephone/yaps

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Upstream dead for a long time, relies on dead capi4k-utils (#595668).
# Removal in a month.
net-dialup/capidivert

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Upstream dead for a long time, relies on dead capi4k-utils (#595670).
# Removal in a month.
net-dialup/capifwd

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Dead since 2006, relies on dead capi4k-utils (#595672). Removal in a
# month.
net-dialup/itund

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Dead since 2005, relies on dead capi4k-utils (#595676). Removal in a
# month.
net-misc/capiisdnmon

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Dead for a long time, even upstream asked other distributions to remove it
# (#595680). Removal in a month.
app-pda/jpilot-plucker
app-pda/jpilot-backup

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Upstream dead since 2009, relies on obsolete libs and buggy (#595888).
# Removal in a month.
app-editors/mlview

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Dead since 2006, relies on obsolete libs, nothing needs it (#595898).
# Removal in a month.
dev-tcltk/tcl-gtk

# Pacho Ramos <pacho@gentoo.org> (08 Oct 2016)
# Dead since 2013, we only provide a live ebuild, unmaintained, needs
# porting to vte:2.91 (#595914). Removal in a month.
x11-terms/terra

# Fabian Groffen <grobian@gentoo.org> (25 Sep 2016)
# Mask Exim RCs
=mail-mta/exim-4.88_rc2

# Christoph Junghans <ottxor@gentoo.org> (20 Sep 2016)
# Switch to a non-stable scheme  following google-chrome
# please unmask latest version yourself
=www-plugins/google-talkplugin-5.4.2.0

# Gnome Team <gnome@gentoo.org> (19 sep 2016)
# Gnome 3.22 mask
>=app-accessibility/at-spi2-atk-2.21
>=app-accessibility/at-spi2-core-2.21
>=app-accessibility/orca-3.21
>=app-arch/file-roller-3.21
>=app-crypt/gcr-3.21
>=app-crypt/seahorse-3.21
>=app-dicts/gnome-dictionary-3.21
>=app-editors/gedit-3.21
>=app-editors/gedit-plugins-3.21
>=app-editors/latexila-3.21
>=app-misc/bijiben-3.21
>=app-misc/gnote-3.21
>=app-misc/tracker-1.9
>=app-text/evince-3.21
>=dev-cpp/glibmm-2.49
>=dev-cpp/gtkmm-3.21
>=dev-cpp/pangomm-2.41
>=dev-lang/vala-0.33
>=dev-libs/atk-2.21
>=dev-libs/gdl-3.21
>=dev-libs/glib-2.49
>=dev-libs/gobject-introspection-1.49
>=dev-libs/gobject-introspection-common-1.49
>=dev-libs/libgames-support-1.1
>=dev-libs/libgnome-games-support-1.1
>=dev-libs/libgweather-3.21
>=dev-libs/libpeas-1.19
>=dev-libs/libsigc++-2.9
>=dev-libs/vala-common-0.33
>=dev-python/pyatspi-2.21
>=dev-python/pygobject-3.21
>=dev-util/anjuta-3.21
>=dev-util/devhelp-3.21
>=dev-util/gdbus-codegen-2.49
>=dev-util/gnome-devel-docs-3.21
>=dev-util/gtk-update-icon-cache-3.21
>=dev-vcs/gitg-3.21
>=games-arcade/gnome-nibbles-3.21
>=games-arcade/gnome-robots-3.21
>=games-board/aisleriot-3.21
>=games-board/four-in-a-row-3.21
>=games-board/gnome-chess-3.21
>=games-board/gnome-mahjongg-3.21
>=games-board/gnome-mines-3.21
>=games-board/iagno-3.21
>=games-board/tali-3.21
>=games-puzzle/atomix-3.21
>=games-puzzle/five-or-more-3.21
>=games-puzzle/gnome-klotski-3.21
>=games-puzzle/gnome-sudoku-3.21
>=games-puzzle/gnome-taquin-3.21
>=games-puzzle/gnome-tetravex-3.21
>=games-puzzle/gnome2048-3.21
>=games-puzzle/hitori-3.21
>=games-puzzle/lightsoff-3.21
>=games-puzzle/quadrapassel-3.21
>=games-puzzle/swell-foop-3.21
>=gnome-base/dconf-0.27
>=gnome-base/dconf-editor-3.21
>=gnome-base/gdm-3.21
>=gnome-base/gnome-3.21
>=gnome-base/gnome-control-center-3.21
>=gnome-base/gnome-core-apps-3.21
>=gnome-base/gnome-core-libs-3.21
>=gnome-base/gnome-desktop-3.21
>=gnome-base/gnome-extra-apps-3.21
>=gnome-base/gnome-keyring-3.21
>=gnome-base/gnome-light-3.21
>=gnome-base/gnome-session-3.21
>=gnome-base/gnome-settings-daemon-3.21
>=gnome-base/gnome-shell-3.21
>=gnome-base/gsettings-desktop-schemas-3.21
>=gnome-base/gvfs-1.29
>=gnome-base/libgtop-2.35
>=gnome-base/nautilus-3.21
>=gnome-extra/evolution-data-server-3.21
>=gnome-extra/evolution-ews-3.21
>=gnome-extra/gnome-boxes-3.21
>=gnome-extra/gnome-builder-3.21
>=gnome-extra/gnome-calculator-3.21
>=gnome-extra/gnome-calendar-3.21
>=gnome-extra/gnome-characters-3.21
>=gnome-extra/gnome-clocks-3.21
>=gnome-extra/gnome-color-manager-3.21
>=gnome-extra/gnome-contacts-3.21
>=gnome-extra/gnome-documents-3.21
>=gnome-extra/gnome-getting-started-docs-3.21
>=gnome-extra/gnome-logs-3.21
>=gnome-extra/gnome-packagekit-3.21
>=gnome-extra/gnome-power-manager-3.21
>=gnome-extra/gnome-shell-extensions-3.21
>=gnome-extra/gnome-software-3.21
>=gnome-extra/gnome-system-monitor-3.21
>=gnome-extra/gnome-tweak-tool-3.21
>=gnome-extra/gnome-user-docs-3.21
>=gnome-extra/gnome-weather-3.21
>=gnome-extra/nautilus-tracker-tags-1.9
>=gnome-extra/sushi-3.21
>=gnome-extra/yelp-3.21
>=gnome-extra/yelp-xsl-3.21
>=gnome-extra/zenity-3.21
>=mail-client/evolution-3.21
>=media-gfx/eog-3.21
>=media-gfx/gnome-font-viewer-3.21
>=media-gfx/gnome-photos-3.21
>=media-gfx/gnome-screenshot-3.21
>=media-gfx/simple-scan-3.21
>=media-libs/clutter-1.27
>=media-libs/clutter-gtk-1.8.2
>=media-sound/gnome-music-3.21
>=media-sound/gnome-sound-recorder-3.21
>=media-sound/sound-juicer-3.21
>=media-video/cheese-3.21
>=media-video/totem-3.21
>=net-irc/polari-3.21
>=net-libs/glib-networking-2.49
>=net-libs/gnome-online-accounts-3.21
>=net-libs/libsoup-2.55
>=net-libs/webkit-gtk-2.13
>=net-misc/gnome-online-miners-3.21
>=net-misc/rygel-0.31
>=net-misc/vinagre-3.21
>=net-misc/vino-3.21
>=net-wireless/gnome-bluetooth-3.21
>=sci-geosciences/geocode-glib-3.21
>=sci-geosciences/gnome-maps-3.21
>=sys-apps/baobab-3.21
>=sys-apps/gnome-disk-utility-3.21
>=www-client/epiphany-3.21
>=x11-libs/gdk-pixbuf-2.35
>=x11-libs/gtk+-3.21
>=x11-libs/gtksourceview-3.21
>=x11-libs/libwnck-3.21
>=x11-libs/pango-1.41
>=x11-libs/vte-0.45
>=x11-terms/gnome-terminal-3.21
>=x11-themes/adwaita-icon-theme-3.21
>=x11-themes/gnome-backgrounds-3.21
>=x11-themes/gnome-themes-standard-3.21
>=x11-wm/mutter-3.21

# Michael Palimaka <kensington@gentoo.org> (15 Sep 2016)
# KDE PIM 5 masked for wider testing.
=kde-apps/akonadi-16.08*
=kde-apps/akonadi-calendar-16.08*
=kde-apps/akonadi-contacts-16.08*
=kde-apps/akonadi-import-wizard-16.08*
=kde-apps/akonadi-mime-16.08*
=kde-apps/akonadi-notes-16.08*
=kde-apps/akonadi-search-16.08*
=kde-apps/akonadiconsole-16.08*
=kde-apps/akregator-16.08*
=kde-apps/blogilo-16.08*
=kde-apps/calendarjanitor-16.08*
=kde-apps/calendarsupport-16.08*
=kde-apps/eventviews-16.08*
=kde-apps/grantlee-editor-16.08*
=kde-apps/grantleetheme-16.08*
=kde-apps/incidenceeditor-16.08*
=kde-apps/kaddressbook-16.08*
=kde-apps/kalarm-16.08*
=kde-apps/kalarmcal-16.08*
=kde-apps/kblog-16.08*
=kde-apps/kcalutils-16.08*
=kde-apps/kdepim-addons-16.08*
=kde-apps/kdepim-apps-libs-16.08*
=kde-apps/kdepim-meta-16.08*
=kde-apps/kdepim-runtime-16.08*
=kde-apps/kidentitymanagement-16.08*
=kde-apps/kimap-16.08*
=kde-apps/kldap-16.08*
=kde-apps/kmail-16.08*
=kde-apps/kmail-account-wizard-16.08*
=kde-apps/kmailtransport-16.08*
=kde-apps/kmbox-16.08*
=kde-apps/knotes-16.08*
=kde-apps/konsolekalendar-16.08*
=kde-apps/kontact-16.08*
=kde-apps/kontactinterface-16.08*
=kde-apps/korganizer-16.08*
=kde-apps/ktnef-16.08*
=kde-apps/libgravatar-16.08*
=kde-apps/libkdepim-16.08*
=kde-apps/libksieve-16.08*
=kde-apps/libktnef-16.08*
=kde-apps/mailcommon-16.08*
=kde-apps/mailimporter-16.08*
=kde-apps/mbox-importer-16.08*
=kde-apps/messagelib-16.08*
=kde-apps/pim-data-exporter-16.08*
=kde-apps/pim-sieve-editor-16.08*
=kde-apps/pim-storage-service-manager-16.08*
=kde-apps/pimcommon-16.08*
=kde-apps/syndication-16.08*

# Denis Dupeyron <calchan@gentoo.org> (12 Sep 2016)
# Masked for testing, see bug #588894.
=x11-misc/light-locker-1.7.0-r1

# James Le Cuirot <chewi@gentoo.org> (12 Sep 2016)
# Now only available on Steam. Binaries were removed by the publisher
# and Humble Bundle over 2 years ago. Removal in 60 days. Bug #588110.
games-action/awesomenauts

# Lars Wendler <polynomial-c@gentoo.org> (06 Sep 2016)
# Breaks samba's nmbd process (bug #592502)
# Masked the possible fixed samba version until more testing has been performed.
>=sys-libs/tevent-0.9.30
>=net-fs/samba-4.5.0-r1

# Ian Stakenvicius <axs@gentoo.org> (31 Aug 2016)
# Mask old versions of thunderbird as they are no longer supported,
# but we keep them in the repo for now in case there is a need
# for them for upgrading old user profiles, etc.
~mail-client/thunderbird-24.8.0
~mail-client/thunderbird-31.8.0
~mail-client/thunderbird-38.8.0

# Lars Wendler <polynomial-c@gentoo.org> (26 Aug 2016)
# Masked while being tested and reverse deps aren't fully compatible
=dev-libs/openssl-1.1*

# Christian Tietz <christian.tietz@mailbox.org> (23 Aug 2016)
# Depends on masked xfce-base/exo-0.11.1
>=xfce-extra/xfce4-whiskermenu-plugin-2.0.1

# Brian Evans <grknight@gentoo.org> (22 Aug 2016)
# PHP 5.5 has reached end of life and will no longer receive security updates.
# Also include associated packages which do not work on newer versions
# Removal in 90 days
virtual/httpd-php:5.5
dev-lang/php:5.5
dev-php/pecl-http:0
=dev-php/pecl-mailparse-2.1.6-r1

# Pacho Ramos <pacho@gentoo.org> (21 Aug 2016)
# Security issues (#562898)
=app-admin/lsyncd-2.1.5

# Brian Evans <grknight@gentoo.org> (18 Aug 2016)
# Mask new MariaDB alphas for testing
>=dev-db/mariadb-10.2.0

# Michael Palimaka <kensington@gentoo.org> (12 Aug 2016)
# Requires revdeps to build with at least C++11. Bug 589412.
# Masked for wider testing.
~dev-qt/assistant-5.7.0
~dev-qt/designer-5.7.0
~dev-qt/linguist-5.7.0
~dev-qt/linguist-tools-5.7.0
~dev-qt/pixeltool-5.7.0
~dev-qt/qdbus-5.7.0
~dev-qt/qdbusviewer-5.7.0
~dev-qt/qdoc-5.7.0
~dev-qt/qt3d-5.7.0
~dev-qt/qtbluetooth-5.7.0
~dev-qt/qtcharts-5.7.0
~dev-qt/qtconcurrent-5.7.0
~dev-qt/qtcore-5.7.0
~dev-qt/qtdatavis3d-5.7.0
~dev-qt/qtdbus-5.7.0
~dev-qt/qtdeclarative-5.7.0
~dev-qt/qtdiag-5.7.0
~dev-qt/qtgraphicaleffects-5.7.0
~dev-qt/qtgui-5.7.0
~dev-qt/qthelp-5.7.0
~dev-qt/qtimageformats-5.7.0
~dev-qt/qtlocation-5.7.0
~dev-qt/qtmultimedia-5.7.0
~dev-qt/qtnetwork-5.7.0
~dev-qt/qtopengl-5.7.0
~dev-qt/qtpaths-5.7.0
~dev-qt/qtplugininfo-5.7.0
~dev-qt/qtpositioning-5.7.0
~dev-qt/qtprintsupport-5.7.0
~dev-qt/qtquickcontrols2-5.7.0
~dev-qt/qtquickcontrols-5.7.0
~dev-qt/qtscript-5.7.0
~dev-qt/qtscxml-5.7.0
~dev-qt/qtsensors-5.7.0
~dev-qt/qtserialport-5.7.0
~dev-qt/qtsql-5.7.0
~dev-qt/qtsvg-5.7.0
~dev-qt/qttest-5.7.0
~dev-qt/qttranslations-5.7.0
~dev-qt/qtwayland-5.7.0
~dev-qt/qtwebchannel-5.7.0
~dev-qt/qtwebengine-5.7.0
~dev-qt/qtwebkit-5.7.0
~dev-qt/qtwebsockets-5.7.0
~dev-qt/qtwidgets-5.7.0
~dev-qt/qtx11extras-5.7.0
~dev-qt/qtxml-5.7.0
~dev-qt/qtxmlpatterns-5.7.0
=dev-qt/qt-docs-5.7*
>=kde-apps/minuet-16.08.0
>=media-sound/drumstick-1.1.0

# Mike Gilbert <floppym@gentoo.org> (07 Aug 2016)
# Fails to switch cpufreq governor.
# https://bugs.gentoo.org/590780
~sys-power/cpupower-4.7.0

# Michał Górny <mgorny@gentoo.org> (7 Aug 2016)
# Issue with thunar detailed view
# Masked for more restrictive testing.
=xfce-base/exo-0.11.1

# Alexis Ballier <aballier@gentoo.org> <2 Aug 2016>
# Doesn't install .so, causing all its revdeps to fail to build.
# Doesn't honour USE=static-libs.
# Bugs #590272, #590270, #590268, #590266 etc.
=sci-libs/fftw-3.3.5

# Michał Górny <mgorny@gentoo.org> (18 Jul 2016)
# Pre-release of a complete rewrite, provided for early testing. Not all
# functionality is provided yet. Use --pretend to make sure correct
# files will be removed.
>=app-admin/eclean-kernel-1.99

# Kent Fredric <kentnl@gentoo.org> (16 Jul 2016)
# Radically changed upstream and is critical to all Perl modules.
# Masked for extended testing.
# Will likely not be unmasked till equivalent versions ship in Perl itself.
>=perl-core/Test-Simple-1.301.0
>=virtual/perl-Test-Simple-1.301.0

# Mike Pagano <mpagano@gentoo.org> (15 Jul 2016)
# These two kernels have a serious OOM regression
# Fix in 4.1.28-r1 and 3.18.37-r1
=sys-kernel/gentoo-sources-3.18.37
=sys-kernel/gentoo-sources-4.1.28-r1
=sys-kernel/gentoo-sources-4.1.28

# Anthony G. Basile <blueness@gentoo.org> (11 Jul 2016)
# Upstream is in bad shape, bug #585726
net-dns/namecoind
net-dns/namecoin-qt

# Andrew Savchenko <bircoph@gentoo.org> (09 Jul 2016)
# Vulnerable due to wrong suid binary permissions (#345337)
<app-cdr/xcdroast-0.98_alpha16-r2

# Aaron Bauman <bman@gentoo.org> (30 Jun 2016)
# Unpatched security vulnerability per bug #509920
www-apps/egroupware

# Michał Górny <mgorny@gentoo.org> (27 Jun 2016)
# (on behalf of QA & proxy-maint)
# Major QA violations, bug #587342 (#585722 in particular).
games-emulation/ppsspp

# Aaron Bauman <bman@gentoo.org> (26 Jun 2016)
# Unpatched security vulnerability per bug #475120
media-video/motion

# Chris Reffett <creffett@gentoo.org> (25 May 2016)
# The webkit-gtk:4 backend for Xiphos has known text display issues.
# Use at your own risk.
=app-text/xiphos-4.0.4-r1

# Luca Barbato <lu_zero@gentoo.org> (23 May 2016)
# Masked for testing, vlc-2.2 configure rejects it.
=media-video/libav-12*

# Kent Fredric <kentfredric@gmail.com> (15 May 2016)
# Andreas K. Hüttel <dilfridge@gentoo.org> (21 May 2016)
# Has been broken since app-arch/rar-5.0.0 due to List()
# format changing. Will require upstream revision bump
# or some helpful person to supply a parser patch.
# Bug #483888
<=dev-perl/Archive-Rar-2.20.0-r1

# Alon Bar-Lev <alonbl@gentoo.org> (13 May 2016)
# Force gnutls-3.4 testing so we can stabilize it.
>=net-libs/gnutls-3.5.0

# Lars Wendler <polynomial-c@gentoo.org> (2 May 2016)
# Broken reverse deps. At least one header file has been moved around.
>=media-gfx/imagemagick-7.0.1.0

# Andreas K. Hüttel <dilfridge@gentoo.org> (16 Apr 2016)
# Masked because of security bug 580210
=www-misc/monitorix-3.6.0
=www-misc/monitorix-3.8.1

# Richard Freeman <rich0@gentoo.org> (16 Apr 2016)
# Masked for extended testing, and porting of openrc scripts
# if necessary.
>=media-tv/mythtv-0.28
>=media-plugins/mythplugins-0.28
>=www-apps/mythweb-0.28

# Patrick Lauer <patrick@gentoo.org> (05 Apr 2016)
# --configtest is broken, mask until 2.3.1 release
=app-admin/logstash-bin-2.3.0*

# James Le Cuirot <chewi@gentoo.org> (03 Apr 2016)
# Masking Spring Framework for the time being as 3.2.4 is old, has
# multiple vulnerabilities, and we're not likely to update it
# soon. Hopefully we can revisit it when the Maven stuff works out.
dev-java/spring-aop
dev-java/spring-beans
dev-java/spring-core
dev-java/spring-expression
dev-java/spring-instrument

# Andreas K. Hüttel <dilfridge@gentoo.org> (03 Apr 2016)
# Can exhaust all available memory depending on task
# but is made available for experts who heed this warning
# as newer versions produce different output. Contact
# the proxied maintainer Matthew Brewer <tomboy64@sina.cn>
# for questions.
<=media-gfx/slic3r-1.1.9999

# Patrick Lauer (30 Mar 2015)
# Segfaults when creating directories #578582
=sys-apps/sandbox-2.11*

# José María Alonso <nimiux@gentoo.org> (24 Mar 2016)
# Fails to build dev-lisp/sbcl-1.3.3 #563812
=dev-lisp/asdf-3.1.7
=dev-lisp/uiop-3.1.7

# Aaron Bauman <bman@gentoo.org> (19 Mar 2016)
# Unpatched security vulnerability per bug #512356.
=app-forensics/chkrootkit-0.49

# Patrick Lauer <patrick@gentoo.org> (22 Feb 2016)
# Inactive upstream, build failures, obsoleted by rakudo/perl6
dev-lang/niecza
dev-lang/niecza-bin

# Eray Aslan <eras@gentoo.org> (22 Feb 2016)
# Mask experimental software
=mail-mta/postfix-3.2*

# Sergey Popov <pinkbyte@gentoo.org> (15 Feb 2016)
# Security mask, wrt bug #519730
<app-emulation/ganeti-2.11.6-r2

# Alexis Ballier <aballier@gentoo.org> (15 Feb 2016)
# Breaks some of its reverse dependencies.
# Bug 574788
>=media-video/ffmpeg-3.0
>=media-video/mplayer-1.3.0

# James Le Cuirot <chewi@gentoo.org> (07 Feb 2016)
# Masked until 2.0 final arrives, which hopefully won't depend on
# commons-dbcp:0 as that requires Java 6. Note that the 2.0 in the
# tree should have actually been 2.0_beta1. There are no revdeps.
dev-java/jcs

# Mike Frysinger <vapier@gentoo.org> (18 Jan 2016)
# Force people to migrate to the new combined libraries:
# media-libs/elementary & dev-libs/efl. #571796
app-benchmarks/expedite
dev-games/etrophy
dev-libs/ecore
dev-libs/edbus
dev-libs/eet
dev-libs/eeze
dev-libs/efreet
dev-libs/eina
dev-libs/eio
dev-libs/embryo
dev-libs/eobj
dev-libs/ephysics
media-libs/edje
media-libs/emotion
media-libs/ethumb
media-libs/evas
x11-plugins/echievements

# Andreas K. Hüttel <dilfridge@gentoo.org> (9 Jan 2016)
# Errorneously added. Is already in perl-core. Please uninstall.
dev-perl/ExtUtils-Constant

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

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

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

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

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

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

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

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

# Lars Wendler <polynomial-c@gentoo.org> (20 Aug 2015)
# Releases are not from original upstream but from a fork.
# Masked as requested by vapier.
~net-misc/iputils-20160308

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

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

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

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

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

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

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

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

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

# Sergey Popov <pinkbyte@gentoo.org> (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

# 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*
=sys-libs/db-6.2*

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

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

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

# Hans de Graaff <graaff@gentoo.org> (1 Jun 2014)
# Mask new rubinius version for testing. This needs more work
# to fully integrate it in our Gentoo ruby handling. Volunteers
# welcome.
=dev-lang/rubinius-3*

# 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/weakling

# Matti Bickel <mabi@gentoo.org> (22 Apr 2014)
# Masked slotted lua for testing
# William Hubbs <williamh@gentoo.org> (07 Aug 2016)
# Taking this mask since Mabi is retired
app-eselect/eselect-lua
=dev-lang/lua-5.1.5-r2
=dev-lang/lua-5.1.5-r100
=dev-lang/lua-5.2.3
=dev-lang/lua-5.2.3-r1

# 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

# 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

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

# 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

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

# 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

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

# 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

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

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

# 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

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

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

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