summaryrefslogtreecommitdiff
blob: 8770e6cb1362067be20b6cfeb34a2243bbea4a97 (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
####################################################################
#
# 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 ---

# Aaron Bauman <bman@gentoo.org> (1 Apr 2018)
# Unmaintained upstream. Relies on old PHP. EAPI=0.
# Masked for removal in 30 days.
www-apps/freeradius-dialupadmin

# Andreas K. Hüttel <dilfridge@gentoo.org> (30 Mar 2018)
# Fails to build (bug 408463). EAPI=3 (bug 648452).
# Masked for removal in 30 days.
dev-scheme/ikarus

# Mart Raudsepp <leio@gentoo.org> (30 Mar 2018)
# GStreamer mp3 decoder plugin based on libmad is removed with gstreamer-1.12.
# media-plugins/gst-plugins-mpg123 is the suggested replacement.
# Masked for removal in 30 days. Bug 631128
media-plugins/gst-plugins-mad:1.0

# Andreas Sturmlechner <asturm@gentoo.org> (30 Mar 2018)
# Package moved to kde-frameworks. Masked for removal in 30 days.
kde-apps/kholidays

# Andreas Sturmlechner <asturm@gentoo.org> (30 Mar 2018)
# Depends on deprecated Qt4, no revdeps left.
# Masked for removal in 30 days.
kde-apps/kscd
kde-apps/kde4-l10n

# Lars Wendler <polynomial-c@gentoo.org> (27 Mar 2018)
# Breaks a couple of revdeps. See tracker bug at
# https://bugs.gentoo.org/651698
=dev-libs/icu-61.1
=dev-libs/icu-layoutex-61.1

# Tony Vroon <chainsaw@gentoo.org> (24 Mar 2018)
# This is a vulnerable version of Asterisk and should not be used except
# to troubleshoot a purported memory leak in the 11.25.3 release.
# Bug 629682.
=net-misc/asterisk-11.25.1

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

# Aaron W. Swenson <titanofold@gentoo.org> (22 Mar 2018)
# EOL. No longer receives bug or security fixes. Recommended to update
# to latest available.
# Removal in 30 days (21 Apr 2018). Bug 634028.
<dev-db/postgresql-9.3

# Kent Fredric <kentnl@gentoo.org> (21 Mar 2018)
# Not usable with versions of Bugzilla shipped by Gentoo since 2013,
# Dead upstream. Use dev-perl/BZ-Client instead.
# Removal in 30 days. Bug 651056
dev-perl/WWW-Bugzilla

# Michał Górny <mgorny@gentoo.org> (20 Mar 2018)
# Poorly tested version bump followed by a series of quick hacks
# that do not make it any more working. Bug #651030.
>=sys-devel/distcc-3.3

# Brian Evans <grknight@gentoo.org (20 Mar 2018)
# These PEAR packages are unmaintained upstream and
# are difficult to test or have no tests.
# PHP team no longer wants to maintain these for PHP7 and beyond
# Removal in 30 days. Bug 650988
dev-php/PEAR-File_Passwd
dev-php/PEAR-HTML_QuickForm
dev-php/PEAR-HTML_QuickForm_Controller
dev-php/PEAR-HTML_QuickForm_advmultiselect
dev-php/PEAR-HTML_Select
dev-php/PEAR-I18Nv2

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Unresolved security issues (#606652), tests fail (#628622, #337249).
# Removal in a month.
net-dns/hesiod

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Depends on gstreamer:0.10 and many more dead libs (#629174), upstream dead
# for ages (#634490). Removal in a month.
games-arcade/monkey-bubble

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Fails to build (#629622, #614576, #627408). Removal in a month.
app-shells/scsh-install-lib

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Upstream dead, not compatible with MariaDB (#629902). Removal in a month.
dev-db/mysql-udf-infusion

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Doesn't build (#630252). Removal in a month.
dev-python/visual

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Version bump pending for a long time, depends in QT4 (#630476). Removal in
# a month.
x11-misc/treeline

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Security vulnerable (#630954, #635548). Removal in a month. 
media-sound/mp3gain
media-sound/aacgain

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Security vulnerable (#631602). Removal in a month.
net-proxy/httpush

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Security vulnerable (#631720), dead since 2008, uses doman with compressed
# man pages (#619952). Removal in a month.
mail-filter/p3scan

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Doesn't build (#634116), use games-action/dxx-rebirth instead. Removal in
# a month.
games-action/d2x-rebirth

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Fails at runtime (#634258). Removal in a month.
net-irc/savirc

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Fails to build (#634662), version bump long time pending (#596162).
# Removal in a month.
games-emulation/sdlmame

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Multiple vulnerabilities (#635598). Removal in a month.
www-apps/b2evolution
 
# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Superseeded by adwaita-icon-theme for years, also having both installed at
# the same time causes some apps to use old icons over new ones (#638142).
# Removal in a month.
x11-themes/gnome-icon-theme

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Completely dead and unmaintained for years, multiple alternatives in the
# tree (#638812). Removal in a month.
media-gfx/pornview

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Not installable (#639130), version bump long time pending (#489156),
# restricts userpriv (#516578). Removal in a month.
mail-filter/qmail-scanner

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Fail to fetch (#640544, #640596, #640602). Removal in a month.
media-video/vcdgear
net-misc/yangcli-pro

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Outdated and useless (#642158). Removal in a month.
app-i18n/man-pages-ro

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Forces the usage of obsolete dev-python/mysql-python (#643502). Dead since
# 2013. Removal in a month.
app-backup/holland-lib-mysql
app-backup/holland-backup-mysqldump
app-backup/holland-backup-mysql-meta
app-backup/holland-backup-mysql-lvm
app-backup/holland-backup-mysqlhotcopy

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Forces downgrade of mock (#643506). Removal in a month.
dev-python/django-social-auth

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Requires old psycopg (#643614). Removal in a month.
dev-python/adodb-py

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Requires old whoosh (#643690). Removal in a month.
dev-python/flask-whooshalchemy

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Requires old leveldb, live ebuild, dead since 2013 (#644310). Removal in a
# month.
net-p2p/datacoin-hp

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Dead since 2011, relies on dead libraries (#644322, #644326, #644330, #644332
# #644340, #647600, #647608, #647698, #647700, #648998). Removal in a month.
dev-util/alleyoop
gnome-extra/gnome-color-chooser
media-sound/neutrino
media-video/camorama
www-misc/gurlchecker
games-board/gnome-mastermind
media-sound/quark
app-office/gtimelog
x11-libs/libdesktop-agnostic
x11-misc/dockmanager
games-arcade/monster-masher

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Relies on dead QT4 (#644422), build issues (#629728). Removal in a month.
media-video/videocut

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Depends on dead QT4 (#644480). Removal in a month.
sci-electronics/plcedit

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Tests fail, package has no reverse deps and is not really needed at
# present time (#645166). Removal in a month.
dev-python/jenkins-autojobs

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Dead since 2004, doesn't run (#645512). Removal in a month.
media-video/cpdvd

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# No reverse deps, not working properly with python3 (#646718). Removal in a
# month.
dev-python/async

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Relies on dead libs, upstream dead for ages, buggy (#647486). Removal in a
# month.
gnome-extra/gpointing-device-settings

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Relies on dead libraries, not really useful at present time, upstream is
# dead for ages (#647598). Removal in a month.
app-mobilephone/gnome-phone-manager

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Doesn't honor LINGUAS (#402681), no reverse deps, unmaintained, dead for a
# long time (#647840). Removal in a month.
app-editors/cooledit

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Dead for years, not really useful at present time (#647842). Removal in a
# month.
app-mobilephone/ringtonetools

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Dead for years, probably not needed anymore at present time (#648102).
# Removal in a month.
app-laptop/lphdisk

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Dead for a long time, broken with current kernels (#648392). Removal in a
# month.
net-dialup/hcfpcimodem

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Not useful anymore without warsow (#648676). Removal in a month.
games-fps/warsow-community-map-pack

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Needs QT4, fails to build (#648706, #650640). Removal in a month.
media-sound/qarecord

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Library dead for years, finally nothing in the tree requires it anymore
# (#648996). Removal in a month.
dev-cpp/libgnomemm

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Dead for years (#650390), buggy (#504728). Removal in a month.
www-apps/collectd-web

# Pacho Ramos <pacho@gentoo.org> (18 Mar 2018)
# Dead for ages, ebuild needs to be cleaned and updated if you still need
# this old themes (#650744). Removal in a month.
media-gfx/qingy-themes

# Matt Turner <mattst88@gentoo.org> (17 Mar 2018)
# Dead. Unlikely to be of any use today. Removal in 30 days.
# Bug #415611
x11-misc/Xorgautoconfig

# Lars Wendler <polynomial-c@gentoo.org> (17 Mar 2018)
# Dead upstream. Authors not reachable. Unclear license situation.
# Masked for removal in 30 days. See bug #650746
x11-themes/icewm-themes

# Pacho Ramos <pacho@gentoo.org> (17 Mar 2018)
# Not needed for a long time since fbsd kernel 10 (#586344). Removal in a
# month.
sys-freebsd/virtio-kmod

# Pacho Ramos <pacho@gentoo.org> (17 Mar 2018)
# Doesn't build (#591918, #587392). Removal in a month.
games-fps/alephone
games-fps/alephone-infinity

# Pacho Ramos <pacho@gentoo.org> (17 Mar 2018)
# Broken for a long time (#587806). Removal in a month.
app-text/zemberek-server
app-text/zpspell
 
# Pacho Ramos <pacho@gentoo.org> (17 Mar 2018)
# 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.
# Removal in a month (#588102)
dev-lang/rubinius

# Pacho Ramos <pacho@gentoo.org> (17 Mar 2018)
# Dead since 2002, many alternatives better maintained in the tree
# (#590056). Removal in a month.
x11-terms/hanterm

# Pacho Ramos <pacho@gentoo.org> (17 Mar 2018)
# Obsoleted by sys-cluster/drbd-utils many time ago (#590872). Removal in a
# month.
sys-cluster/drbd
sys-cluster/drbd-kernel

# Pacho Ramos <pacho@gentoo.org> (17 Mar 2018)
# Not buildable for a long time (#592066), wrong license (#638454). Removal
# in a month.
media-plugins/vdr-graphtft
x11-themes/vdrgraphtft-avp
x11-themes/vdrgraphtft-deepblue
x11-themes/vdrgraphtft-deeppurple
x11-themes/vdrgraphtft-poetter

# Pacho Ramos <pacho@gentoo.org> (17 Mar 2018)
# Branch unmaintained for a long time (#593878). Migrate to dev-python/rtslib-fb
# and sys-block/targetcli-fb. Removal in a month.
dev-python/rtslib
sys-block/targetcli

# Pacho Ramos <pacho@gentoo.org> (17 Mar 2018)
# Fails to build (#594190, #649224). Removal in a month.
games-puzzle/ngstar

# Pacho Ramos <pacho@gentoo.org> (17 Mar 2018)
# Multiple build failures (#514348, #594908). Removal in a month.
sys-fabric/mstflint

# Pacho Ramos <pacho@gentoo.org> (17 Mar 2018)
# Cannot reach upstream, fails at runtime (#594986). Removal in a month.
dev-vcs/bzr-git

# Pacho Ramos <pacho@gentoo.org> (17 Mar 2018)
# Unable to bump, fails to build (#601208). Removal in a month.
games-board/freedoko

# Pacho Ramos <pacho@gentoo.org> (17 Mar 2018)
# Obsolete and with security vulnerabilities for a long time (#603760).
# Removal in a month.
www-apps/sugarcrm

# Pacho Ramos <pacho@gentoo.org> (17 Mar 2018)
# Version in the tree really old, multiple build failures (#604556, #604580,
# #604586). Removal in a month.
net-misc/pavuk

# Pacho Ramos <pacho@gentoo.org> (17 Mar 2018)
# Doesn't use pludev group properly (#396571), buggy (#503214), upstream
# dead, fails to build (#608780). Removal in a month.
app-misc/cwiid

# Pacho Ramos <pacho@gentoo.org> (17 Mar 2018)
# ebuild needs fixing (#612916), upstream dead since 2006. Removal in a
# month.
mail-filter/anomy-sanitizer

# Pacho Ramos <pacho@gentoo.org> (17 Mar 2018)
# ebuild needs fixing (#612998), our version is completely outdated
# (#592836). Removal in a month.
dev-util/bluej

# Pacho Ramos <pacho@gentoo.org> (17 Mar 2018)
# Many build issues (#576612, #605318, #605320, #608772, #613824), doesn't
# use python eclasses (#615946). Removal in a month.
media-gfx/k3d

# Pacho Ramos <pacho@gentoo.org> (17 Mar 2018)
# Not compatible with current NetworkManager versions, use net-misc/networkmanager-libreswan
# instead (#615142). Removal in a month.
net-misc/networkmanager-openswan

# Pacho Ramos <pacho@gentoo.org> (17 Mar 2018)
# Dead for years, many alternatives in the tree (#616146). Removal in a
# month.
net-firewall/gshield

# Pacho Ramos <pacho@gentoo.org> (17 Mar 2018)
# Not buildable (#616674). Removal in a month.
app-laptop/powerprefs

# Pacho Ramos <pacho@gentoo.org> (17 Mar 2018)
# Security vulnerable (#619770). Removal in a month.
dev-java/jad-bin

# Pacho Ramos <pacho@gentoo.org> (17 Mar 2018)
# Fails to build (#620276, #636000). Removal in a month.
games-puzzle/shaaft

# Pacho Ramos <pacho@gentoo.org> (17 Mar 2018)
# Not buildable (#625668, #649378). Removal in a month.
games-server/cyphesis

# Pacho Ramos <pacho@gentoo.org> (17 Mar 2018)
# Not buildable (#627102, #630850). Removal in a month.
dev-games/crystalspace

# Pacho Ramos <pacho@gentoo.org> (17 Mar 2018)
# Dead for years, nothing needs it (#627464). Removal in a month.
dev-java/commons-betwixt

# Fabian Groffen <grobian@gentoo.org> (16 Mar 2018)
# Exim release candidates, use at your own risk
=mail-mta/exim-4.91_rc*

# Georgy Yakovlev <ya@sysdump.net> (13 Mar 2018)
# 1.x version is no longer maintained by upstream
# 2.x is in the tree and is better in almost every way
# Removal in 90 days. Bug #650464
=net-dns/dnscrypt-proxy-1.9.5-r1

# Pacho Ramos <pacho@gentoo.org> (13 Mar 2018)
# Tests need network, nothing requires this old lib anymore and upstream is
# dead for a long time (#335233). Removal in a month.
net-libs/netembryo

# Pacho Ramos <pacho@gentoo.org> (13 Mar 2018)
# Fails to build (#371401, #642676). Removal in a month.
net-misc/netkit-rwall

# Pacho Ramos <pacho@gentoo.org> (13 Mar 2018)
# Incomplete and unclear LICENSE, missing files in SRC_URI (#472602).
# Removal in a month.
sci-electronics/balsa

# Pacho Ramos <pacho@gentoo.org> (13 Mar 2018)
# Upstream dead for a long time, requires obsolete gstreamer and other old
# libs (#629192), buggy (#490344). Removal in a month.
media-tv/me-tv

# Pacho Ramos <pacho@gentoo.org> (13 Mar 2018)
# Doesn't build for a long time (#514432). Removal in a month.
sci-biology/beast-mcmc

# Pacho Ramos <pacho@gentoo.org> (13 Mar 2018)
# Fails to build (#514632, #585606, #588710). Removal in a month.
sys-power/phc-k8

# Pacho Ramos <pacho@gentoo.org> (13 Mar 2018)
# Fails to build for a long time (#515734, 649840). Removal in a month.
sys-fs/gfs2-utils

# Pacho Ramos <pacho@gentoo.org> (13 Mar 2018)
# Not buildable for a long time (#531586), pending many version bumps.
# Removal in a month.
media-sound/mup

# Pacho Ramos <pacho@gentoo.org> (13 Mar 2018)
# Many other ident daemons in the tree over this completely dead and
# unmaintained (since 2003) implementation (#535868). Removal in a month.
net-misc/linux-identd

# Pacho Ramos <pacho@gentoo.org> (13 Mar 2018)
# Major version bump pending (#540322), current version in the tree is
# completely broken in several ways (#471428, #598260, #621784, #638364).
# Removal in a month.
sys-cluster/gearmand
dev-php/pecl-gearman

# Pacho Ramos <pacho@gentoo.org> (13 Mar 2018)
# Not buildable and ends up needing old guile-1.8 (#547186, #617802), major
# version bump pending (#515888). Removal in a month.
media-sound/denemo

# Pacho Ramos <pacho@gentoo.org> (13 Mar 2018)
# Hard to bump (#547418), build issues (#600308). Removal in a month.
app-forensics/libewf
app-forensics/rdd

# Pacho Ramos <pacho@gentoo.org> (13 Mar 2018)
# Many pending version bumps (#574874), doesn't run (#587112), doesn't use
# python eclasses (#613892), needs obsolete libs (#640888). Removal in a
# month.
net-p2p/tribler

# Tobias Klausmann <klausman@gentoo.org> (13 Mar 2018)
# Has a bug in the storage engine, details:
# https://www.robustperception.io/new-features-in-prometheus-2-2-0/
# https://github.com/prometheus/prometheus/issues/3943
=net-analyzer/prometheus-2.2.0

# Sebastian Pipping <sping@gentoo.org> (11 Mar 2018)
# Breaks XFCE, 1.19.6 was fine (in that regard). Bug #650228
>=x11-base/xorg-server-1.19.7

# Andreas Sturmlechner <asturm@gentoo.org> (11 Mar 2018)
# Dead upstream, no revdeps left. Bug #639358
app-i18n/libguess

# José María Alonso <nimiux@gentoo.org> (09 Mar 2018)
# Obsolete package
# Masked for removal in 30 days. Bug #646742
dev-lisp/common-lisp-controller
dev-lisp/asdf-binary-locations

# José María Alonso <nimiux@gentoo.org> (08 Mar 2018)
# Obsolete package
# Masked for removal in 30 days. Bug #648448
dev-lisp/gentoo-init

# Michael Palimaka <kensington@gentoo.org> (07 Mar 2018)
# Depends on deprecated Qt 4. Dead upstream.
# Masked for removal in 30 days. Bug #649116.
media-video/qt-recordmydesktop

# Michael Palimaka <kensington@gentoo.org> (07 Mar 2018)
# Depends on deprecated Qt 4. Dead upstream.
# Masked for removal in 30 days. Bug #644424.
media-gfx/qosmic

# Brian Evans <grknight@gentoo.org> (06 Mar 2018)
# MariaDB MaxScale 1.x depends on the deprecated libmysqld
# Newer versions bundle software that require git access
# and modify system libraries for their own purposes making
# it exteremely difficult to package.
# Bug 649764 Removal in 30 days.
dev-db/maxscale

# Andreas Sturmlechner <asturm@gentoo.org> (06 Mar 2018)
# Maintainer not responding, depends on deprecated Qt4.
# Masked for removal in 30 days. Bug 598651, 635192, 644396
media-gfx/photivo

# Andreas Sturmlechner <asturm@gentoo.org> (05 Mar 2018)
# Dead upstream, depends on deprecated Qt4.
# Masked for removal in 30 days. Bug 644404
net-fs/smbtatools

# Andreas K. Hüttel <dilfridge@gentoo.org> (03 Mar 2018)
# Fails to build without rpc support in glibc (bug 631044);
# no maintainer, requires obsolete hardware. Removal in
# 30 days.
app-pda/p3nfs

# Andreas K. Hüttel <dilfridge@gentoo.org> (03 Mar 2018)
# Fails to build without rpc support in glibc (bug 377867);
# fails to build with libtirpc; apparently functionality is
# now included in libtirpc. No consumers. Removal in 30 days.
net-libs/librpcsecgss

# Andreas K. Hüttel <dilfridge@gentoo.org> (03 Mar 2018)
# Marked obsolete on CTAN. EAPI=3 ebuild. No consumers.
# Masked for removal in 30 days. Bug 644258
app-text/noweb

# Jason Zaman <perfinion@gentoo.org> (02 Mar 2018)
# Became sys-apps/selinux-python in release 2.7
# Masked for removal in 30 days.
dev-python/sepolgen

# Tim Harder <radhermit@gentoo.org> (01 Mar 2018)
# Masked for testing.
>=dev-python/aiohttp-3

# Ulrich Müller <ulm@gentoo.org> (01 Mar 2018)
# Very old (Open)Motif version 2.2 installing libXm.so.3.
# Released in 2004. Non-free. No revdeps in Gentoo repo.
# Depends on x11-libs/libXp which is on its way out.
# If you still need this for third-party binaries, try the
# workaround outlined in https://bugs.gentoo.org/210021#c19.
# Masked for removal in 90 days. Bug #649080.
x11-libs/motif:2.2

# Anthony G. Basile <blueness@gentoo.org> (25 Feb 2018)
# Upstream has been dead since 2012.  Migrate to uclibc-ng.
# See https://wiki.gentoo.org/wiki/Project:Hardened_uClibc
sys-libs/uclibc

# Mart Raudsepp <leio@gentoo.org> (23 Feb 2018)
# Old net-libs/webkit-gtk SLOTs have hundreds of known security issues.
# Use the security safe net-libs webkit-gtk SLOT=4 instead via
# libraries and applications ported to gtk3 and webkit2gtk API.
# Please keep this package.mask entry until at least 25th May 2018 for
# extra notification of the security vulnerabilities. Bug #577068.
net-libs/webkit-gtk:2
net-libs/webkit-gtk:3

# Steve Dibb <beandog@gentoo.org> (22 Feb 2018)
# Very old project of mine, hasn't worked in years, no plans to
# support, and mpv can provide resume playback by default.
# Masked for removal in 30 days. Bug #648568
media-video/mplayer-resume

# Steve Dibb <beandog@gentoo.org> (22 Feb 2018)
# Dead upstream, never really used, libdvdread and libdvdnav provide
# DVD access.
# Masked for removal in 30 days. Bug #648566
media-libs/libdvdplay

# Steve Dibb <beandog@gentoo.org> (22 Feb 2018)
# Dead upstream, long since replaced by libaacs for functionality.
# Masked for removal in 30 days. Bug #648560
media-video/aacskeys

# Brian Evans <grknight@gentoo.org> (22 Feb 2018)
# Multiple vulnerablities, EOL upstream.
# Masked for removal in 30 days. Bug #604182
dev-php/ZendFramework

# Michael Palimaka <kensington@gentoo.org> (22 Feb 2018)
# Plugin for removed package media-sound/amarok. Dead upstream.
# Depends on vulnerable gstreamer:0.10.
# Masked for removal in 30 days. Bug #629184.
media-sound/moodbar

# Eray Aslan <eras@gentoo.org> (08 Feb 2018)
# Mask experimental software
=mail-mta/postfix-3.4*

# Thomas Deutschmann <whissi@gentoo.org> (07 Feb 2018)
# Intel recommends to pull these versions because they could
# cause higher than expected reboots and other unpredictable
# system behavior. Bug #646646
=sys-firmware/intel-microcode-20171117_p20171215
=sys-firmware/intel-microcode-20171117_p20171215-r1
=sys-firmware/intel-microcode-20180108
=sys-firmware/intel-microcode-20180108-r1

# Patrice Clement <monsieurp@gentoo.org> (26 Jan 2018)
# Has different symbols. Known to cause issues with i3bar/swaybar.
media-fonts/fontawesome:0/5

# Eray Aslan <eras@gentoo.org> (22 Jan 2018)
# Vulnerable - see https://bugs.gentoo.org/630684
# Please migrate to cyrus-imapd-3.0 releases
=net-mail/cyrus-imapd-2.5*

# Patrice Clement <monsieurp@gentoo.org> (18 Jan 2018)
# mpv >= 0.28.0 requires changes currently only available in ffmpeg-9999.
>=media-video/mpv-0.28.0

# Richard Freeman <rich0@gentoo.org> (09 Jan 2018)
# Bug 644048 - temp QA mask until it can get sorted out
# Lars Wendler <polynomial-c@gentoo.org> (26 Feb 2018)
# See also tracker bug: https://bugs.gentoo.org/648864
~sys-apps/attr-2.4.48

# Lars Wendler <polynomial-c@gentoo.org> (10 Jan 2018)
# Mask followup bugfixes for =sys-apps/attr-2.4.48 as well until proper
# testing has been conducted.
=sys-apps/acl-2.2.52-r2

# Matthias Maier <tamiko@gentoo.org> (26 Dec 2017)
# gcc depends on mpfr and this version changes soname. Spare users with
# FEATURES=-preserve-libs from completely frying their system.
>=dev-libs/mpfr-4.0.0

# Thomas Beierlein <tomjbe@gentoo.org> (23 Dec 2017)
# To adapt to changed version naming by upstream 
# (pcb-yyyymmdd to pcb-x.y.z) we move the ebuild to
# pcb-0_pyyyymmdd and mask >=pcb-20000000.
# Do not remove the mask until newer version gets stable
>=sci-electronics/pcb-20000000

# Andreas Sturmlechner <asturm@gentoo.org> (21 Dec 2017)
# Masked for testing
=dev-libs/libical-3.0.1

# James Le Cuirot <chewi@gentoo.org> (17 Dec 2017)
# Java 9 is not yet fully supported on Gentoo. Packages cannot depend
# on it so these virtuals are not yet required. If you wish to use
# Java 9 now then install oracle-(jdk|jre)-bin:9 directly.
virtual/jdk:9
virtual/jre:9

# Patrice Clement <monsieurp@gentoo.org> (12 Dec 2017)
# Masked due to a hard dependency on an ancient versions of dev-libs/msgpack
# (<0.6) that have been punted from the tree.
net-misc/cocaine-core

# Andreas Sturmlechner <asturm@gentoo.org> (03 Dec 2017)
# Depends on dead Qt4, upstream porting inquiry pending. Bug #631788
games-kids/crayon-physics

# Michał Górny <mgorny@gentoo.org> (25 Nov 2017)
# Testing branch GTK+3 release. Changes API, breaks xfce-base/xfdesktop.
# Masked until the latter sees a new release.
>=dev-python/thunarx-python-0.4.0
>=xfce-base/thunar-1.7
>=xfce-extra/thunar-archive-plugin-0.4.0
>=xfce-extra/thunar-media-tags-plugin-0.3.0
>=xfce-extra/thunar-shares-plugin-0.3.0

# Andreas Sturmlechner <asturm@gentoo.org> (16 Nov 2017)
# Depends on dead Qt4. Last-rites on hold for chance of Qt5-port. Bug #620702
<media-gfx/freecad-0.18

# Mike Gilbert <floppym@gentoo.org> (05 Nov 2017)
# Breaks several reverse dependencies.
# https://bugs.gentoo.org/635934
>=dev-util/scons-3.0.0

# Patrice Clement <monsieurp@gentoo.org> (28 Oct 2017)
# Missing dependencies.
>=dev-python/scrapy-1.4.0

# Robin H. Johnson <robbat2@gentoo.org> (22 Oct 2017)
# Masking for testing, contains Fedora Hobbled-EC for USE=bindist
=dev-libs/openssl-1.0.2l-r1

# Andreas K. Hüttel <dilfridge@gentoo.org> (22 Oct 2017)
# Broken with recent Perl (5.26) and not used by anything
# in the Gentoo repository. Please uninstall.
sys-devel/autoconf:2.59
sys-devel/autoconf:2.61
sys-devel/autoconf:2.62
sys-devel/autoconf:2.63
sys-devel/autoconf:2.65
sys-devel/autoconf:2.67
sys-devel/autoconf:2.68

# Andreas K. Hüttel <dilfridge@gentoo.org> (18 Oct 2017)
# sys-devel/automake versions 1.4, 1.5, 1.6, 1.7, 1.8
# have known security vulnerabilities, are broken with
# recent Perl (>=5.26.0), and are not used by anything in
# the Gentoo repository. Please uninstall.
sys-devel/automake:1.4
sys-devel/automake:1.5
sys-devel/automake:1.6
sys-devel/automake:1.7
sys-devel/automake:1.8

# Kent Fredric <kentnl@gentoo.org> (11 Oct 2017)
# This package should now be provided entirely by dev-lang/perl,
# stable perl 5.24 provides Unicode-Collate-1.140.0
# testing perl 5.26 provides Unicode-Collate-1.190.0
# This should only be unmasked if you're locking to perl-5.24 and need
# a newer version of virtual/perl-Unicode-Collate
# If you're upgrading to perl-5.26, please do:
#   emerge -C perl-core/Unicode-Collate
# See bug #634040
<perl-core/Unicode-Collate-1.190.0-r99

# Michał Górny <mgorny@gentoo.org> (05 Oct 2017)
# (on behalf of QA)
# Rogue version bumps that reintroduce QA violations that were fixed
# in #598527 and #598529, breaking the current verison
# of app-portage/eix as a result, #633424. Do not reintroduce without
# prior review from QA.
=app-shells/push-3.0
=app-shells/quoter-4.0

# Patrice Clement <monsieurp@gentoo.org> (01 Oct 2017)
# Mask Atom betas for testing.
app-editors/atom:beta

# Patrice Clement <monsieurp@gentoo.org> (09 Sep 2017)
# Python 3 port is almost complete with version 0.6.0. Users might run into
# minor bumps here and there which is why the mask is still in place for the
# time being.
>=dev-java/javatoolkit-0.6.0

# Gilles Dartiguelongue <eva@gentoo.org> (04 Sep 2017)
# Incompatible changes in API in Enchant 2. Bug #629838.
>=app-text/enchant-2

# Gilles Dartiguelongue <eva@gentoo.org> (2 Sep 1017)
# Gnome 3.26 package mask
>=app-text/libgepub-0.5

# Anthony G. Basile <blueness@gentoo.org> (27 Aug 2017)
# Upstream is no longer providing public patches
sys-kernel/hardened-sources

# Patrice Clement <monsieurp@gentoo.org> (23 Aug 2017)
# Packages depending on this library need to be tested first before
# it is unmasked. Possibly some slotting is still needed.
# Package testing tracked in bug #611022.
>=dev-libs/msgpack-1.4.2

# Hanno Boeck <hanno@gentoo.org> (21 Aug 2017)
# Open security bugs, no upstream, bug 628432
# Alternatives: app-arch/libarchive, app-arch/unar
app-arch/unrar-gpl

# Sébastien Fabbro <bicatali@gentoo.org> (19 Aug 2017)
# ipython-6 is python-3 only and causes circular dependencies
# Unset python_targets_python2_7 for ipykernel and ipyparallel if needed.
>=dev-python/ipython-6

# Michael Orlitzky <mjo@gentoo.org> (18 Aug 2017)
# Last version from 2011, and has a vulnerable init script
# (bug 603382). The proxy-maintainer is unknown to bugzilla,
# and the previous maintainer jmbsvicetto is OK with masking.
<net-misc/vde-2.3.2-r4

# Mats Lidell <matsl@gentoo.org> (17 Aug 2017)
# Masked ede and all its dependencies due to security reasons. 
# bug #398241
app-xemacs/ede
app-xemacs/semantic
app-xemacs/jde
app-xemacs/xslt-process
app-xemacs/xetla
app-xemacs/cogre
app-xemacs/ecb
app-xemacs/xemacs-packages-all

# Kent Fredric <kentnl@gentoo.org> (21 Jul 2017)
# Masked due to serious regression that introduces widespread data
# corruption when storing data in blobs. Masked, because any code
# that is written to use this version is now dependent on this version
# and older versions will corrupt your code instead.
# However, any existing packages should not use this version.
# See: https://github.com/perl5-dbi/DBD-mysql/issues/117
=dev-perl/DBD-mysql-4.42.0

# Ian Stakenvicius <axs@gentoo.org> (19 Jul 2017)
# Mask spidermonkey:52 as it is a self-rolled release, no official
# release has been rolled.  Is only committed to support development
# versions of gjs.  Will unmask when gnome-3.26 is ready for testing
# or when upstream releases an official tarball.
dev-lang/spidermonkey:52

# Nicolas Bock <nicolasbock@gentoo.org> (17 Jul 2017)
# Keep shotwell development series masked.
>=media-gfx/shotwell-0.27

# Nicolas Bock <nicolasbock@gentoo.org> (31 Oct 2017)
# There are multiple unresolved upstream issues with >=jabref-bin-4.0 (#636036).
# If you still would like to use this version, please report any issues to
# upstream.
>=app-text/jabref-bin-4.0

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Doesn't work with >=openvpn-2.3, bug 470696
# Fix is work in progress, see above bug. dilfridge@g.o
net-vpn/kvpnc

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Randomly broken due to sys-devel/binutils-config bug (#584296).
# Unmask when it is finally fixed, so people can build the package.
dev-util/mutrace

# Matthias Schwarzott <zzam@gentoo.org> (03 Jul 2017)
# The snapshots got a wrong version number assigned.
# They are from before version 2.0.0. Masking them to force
# an update to version 2.0.0 as soon as it is added to the tree.
=media-plugins/vdr-xineliboutput-2.0.0_p20130821
=media-plugins/vdr-xineliboutput-2.0.0_p20150220

# Thomas Deutschmann <whissi@gentoo.org> (28 Jun 2017)
# New strip feature which is enabled by default causes genkernel
# to create unbootable kernel/initramfs images. Bug #622716
=sys-kernel/genkernel-3.5.1.0

# Hans de Graaff <graaff@gentoo.org> (05 Jun 2017)
# Bundles obsolete and vulnerable webkit version.
# Upstream has stopped development and recommends using
# headless mode in >=www-client/chromium-59.
# Masked for removal in 90 days. Bug #589994.
www-client/phantomjs
dev-ruby/poltergeist

# Thomas Deutschmann <whissi@gentoo.org> (24 May 2017)
# Broken runscript/changed behavior causing lvm2 to fail
# on boot. Bug #617578
>=sys-fs/lvm2-2.02.171

# Michał Górny <mgorny@gentoo.org> (22 May 2017)
# for Maciej S. Szmigiero <mail@maciej.szmigiero.name>
# Any version above 5.100.138 breaks b43 driver in various ways.
# Also, b43 wiki page says to use 5.100.138. Bug #541080.
>=sys-firmware/b43-firmware-6.30.163.46

# Michał Górny <mgorny@gentoo.org>, Andreas K. Hüttel <dilfridge@gentoo.org>,
# Matthias Maier <tamiko@gentoo.org> (21 May 2017)
# These old versions of toolchain packages (binutils, gcc, glibc) are no
# longer officially supported and are not suitable for general use. Using
# these packages can result in build failures (and possible breakage) for
# many packages, and may leave your system vulnerable to known security
# exploits.
# If you still use one of these old toolchain packages, please upgrade (and
# switch the compiler / the binutils) ASAP. If you need them for a specific
# (isolated) use case, feel free to unmask them on your system.
# (updated 27 Dec 2017 with gcc < 5.4)
<sys-devel/gcc-5.4
<sys-libs/glibc-2.25-r9
<sys-devel/binutils-2.29.1-r1

# Michał Górny <mgorny@gentoo.org> (20 May 2017)
# Old versions of CUDA and their reverse dependencies. They do not
# support GCC 5+, and are really old.
# (updated 27 Dec 2017 with cuda < 8 because of gcc < 5 mask)
<dev-python/pycuda-2016
<dev-util/nvidia-cuda-sdk-8
<dev-util/nvidia-cuda-toolkit-8
net-wireless/cpyrit-cuda

# Bernard Cafarelli <voyageur@gentoo.org> (8 May 2017)
# Coordinated conversion to wxGTK:3.0-gtk3
# Drop mask after migration of existing wxGTK:3.0 users
=net-ftp/filezilla-3.30.0-r300
=net-ftp/filezilla-3.31.0-r300

# Rick Farina <zerochaos@gentoo.org> (17 Apr 2017)
# Masking old versions because upstream changed versioning
# Please keep this mask for 1 year to ease upgrades for users
=app-crypt/hashcat-3.10-r1
=app-crypt/hashcat-3.30
=app-crypt/hashcat-3.40

# Lars Wendler <polynomial-c@gentoo.org> (24 Mar 2017)
# Masked until Mozilla and Chrome agreed how to handle
# Symantec trust issues properly (bug #613714)
=app-misc/ca-certificates-20161130.3.30-r1

# Mart Raudsepp <leio@gentoo.org> (16 Feb 2017)
# Old gstreamer 0.10 version, which is security vulnerable.
# Use gstreamer:1.0 with media-plugins/gst-plugins-libav
# instead (despite the name, it uses media-video/ffmpeg too).
# Please keep this mask entry until gstreamer:0.10 is still
# in tree or at least gets an affecting GLSA from bug 601354
# Bug #594878.
media-plugins/gst-plugins-ffmpeg

# Kent Fredric <kentnl@gentoo.org> (04 Feb 2017)
# Unsecure versions that have been only restored to tree
# to resolve compatibility problems with mail-filter/amavisd-new
# Use with caution due to these being removed for CVE-2016-1251
# Bug: #601144
# Bug: #604678
<dev-perl/DBD-mysql-4.41.0

# Alon Bar-Lev <alonbl@gentoo.org> (06 Feb 2017)
# Needs openssl-1.1
>=dev-libs/opencryptoki-3.6

# Bernard Cafarelli <voyageur@gentoo.org> (30 Jan 2017)
# Alpha release with new features, masked for testing
=app-text/tesseract-4.00.00_alpha*

# Yixun Lan <dlan@gentoo.org> (16 Jan 2017)
# Masked, Vulnerable due to RGW Denial of Service (bug #598206)
# We mask it instead of removing them, due user may need them while
# upgrade from old versions (<0.94.x)
<sys-cluster/ceph-10.2.3-r1

# Jeroen Roovers <jer@gentoo.org> (12 Jan 2017)
# Use x11-drivers/nvidia-drivers[tools] instead.
media-video/nvidia-settings

# Michael Orlitzky <mjo@gentoo.org> (07 Jan 2017)
# This package has some dangerous quality and security issues, but
# people may still find it useful. It is masked to prevent accidental
# use. See bugs 603346 and 604998 for more information.
app-admin/amazon-ec2-init

# Robin H. Johnson <robbat2@gentoo.org> (05 Jan 2017)
# Masking for testing
=app-emulation/ganeti-2.16*
=app-emulation/ganeti-2.17*

# Michał Górny <mgorny@gentoo.org> (17 Nov 2016)
# New version masked for testing. It supports source-window buffer size
# over 2G but it 'currently performs 3-5% slower and has 1-2% worse
# compression'.
>=dev-util/xdelta-3.1.0

# Tim Harder <radhermit@gentoo.org> (03 Nov 2016)
# Masked for testing
=sys-fs/fuse-3*
=net-fs/sshfs-3*

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

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

# 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

# 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

# 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

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

# 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

# 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
~net-misc/iputils-20161105

# Justin Lecher <jlec@gentoo.org> (28 Feb 2015)
# Unfixed security problems
# No upstream support anymore
# CVE-2015-{0219,0220,0221,0222,5145}
# CVE-2016-{9013,9014},CVE-2017-{7233,7234}
# #536586
# #554864
=dev-python/django-1.4*
=dev-python/django-1.5*
=dev-python/django-1.6*
=dev-python/django-1.7*
=dev-python/django-1.9*

# 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

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

# 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
# Rafael Martins <rafaelmartins@gentoo.org> (04 Dec 2016)
# Adding Lua 5.3 to mask
app-eselect/eselect-lua
=dev-lang/lua-5.1.5-r2
=dev-lang/lua-5.1.5-r100
=dev-lang/lua-5.1.5-r101
=dev-lang/lua-5.2.3
=dev-lang/lua-5.2.3-r1
=dev-lang/lua-5.2.3-r2
=dev-lang/lua-5.3.3
=dev-lang/lua-5.3.3-r1

# 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

# 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

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

# 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

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