summaryrefslogtreecommitdiff
blob: 20d2dfc77ced2f61dccf618af61f31510e993afa (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
####################################################################
#
# 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 ---

# David Seifert <soap@gentoo.org> (15 Apr 2019)
# Masked for testing, Bug #653878.
>=dev-libs/boost-1.70.0
>=dev-util/boost-build-1.70.0

# Patrice Clement <monsieurp@gentoo.org> (14 Apr 2019)
# Old, unmaintained and sometimes abandoned Java libraries/programs.
# Removal in 30 days.
dev-java/idm-console-framework
dev-java/matrix-toolkits-java
dev-java/sat4j-pseudo
dev-java/sat4j-core
dev-java/swarmcache
dev-java/dbus-java
dev-java/jinklevel
dev-java/proguard
dev-java/nailgun
dev-java/jgroups
dev-java/libmso
dev-java/jicmp
media-sound/jtagger
app-admin/389-console

# Michał Górny <mgorny@gentoo.org> (14 Apr 2019)
# The ebuild violates EAPI and relies on STRIP_MASK.  The default
# behavior makes it capable of executing arbitrary commands when running
# files from untrusted sources.  Last maintainer activity in 2015.  Last
# upstream release in 2011.
# Removal in 30 days.  Bug #651430.
app-text/active-dvi

# Michał Górny <mgorny@gentoo.org> (14 Apr 2019)
# The ebuild violates EAPI and relies on STRIP_MASK.  Also has
# suspicious USE=debug logic.  Not touched since 2016.
# Removal in 30 days.  Bug #651450.
dev-util/cyclo

# Michał Górny <mgorny@gentoo.org> (14 Apr 2019)
# The ebuild violates EAPI and relies on STRIP_MASK.  Also has
# suspicious USE=debug logic.  Not touched since 2016.
# Removal in 30 days.  Bug #651446.
dev-util/cccc

# Michał Górny <mgorny@gentoo.org> (14 Apr 2019)
# Integrated into dev-python/python-ldap-3.0+, and declared a deprecated
# fork by upstream.  No reverse dependencies left.
# Removal in 30 days.  Bug #668066.
dev-python/pyldap

# Aaron Bauman <bman@gentoo.org> (13 Apr 2019)
# Unmaintained in Gentoo and outstanding vulnerability
# Masked for removal in 30 days. Bug #522578
dev-libs/ace
net-proxy/bfilter

# Ulrich Müller <ulm@gentoo.org> (13 Apr 2019)
# Last release in 2001, HOMEPAGE and SRC_URI are gone.
# Byte-compilation with recent Emacs versions fails.
# Masked for removal in 30 days, bug #683248.
app-emacs/prom-wl

# Michał Górny <mgorny@gentoo.org> (13 Apr 2019)
# Unmaintained.  Contains vulnerable code and a large number of unsolved
# (upstream) issues.  The current version is from 2004, and carries
# some local patches.  Last upstream commits are from 2013, and involve
# three successive branches, the 0.7.x not having a release since 2004,
# and the two remaining branches never seeing a single release.
# The suggested alternatives are net-analyzer/{netcat,openbsd-netcat}.
# Removal in 30 days.  Bug #601742.
net-analyzer/gnu-netcat

# Michał Górny <mgorny@gentoo.org> (13 Apr 2019)
# net-libs/ftplib: Unmaintained.  The ebuild suffers build failures due
# to broken multilib conversion.  Last bumped in 2014, and needs local
# patches to even work.  Obscure library with only two revdeps.
#
# media-video/hasciicam: Unmaintained.  The only unconditional revdep
# of ftplib.  Upstream's FTP is down, and the current release is
# no newer than 2011.  Upstream removed ftplib usage afterwards,
# so a snapshot could help.
#
# Removal in 30 days.  Bug #520026.
media-video/hasciicam
net-libs/ftplib

# Michał Górny <mgorny@gentoo.org> (13 Apr 2019)
# Unmaintained.  Does not build (again).  Last release in 2000.  Carries
# a large number of patches already.
# Removal in 30 days.  Bug #637484.
net-misc/netkit-rwho

# Michał Górny <mgorny@gentoo.org> (13 Apr 2019)
# Apparently this was last updated in 2012.  It's unclear if the proxied
# maintainer actually ever maintained it since it was imported in 2010.
# The HOMEPAGE is now empty.  app-admin/pass is a good alternative.
# Removal in 30 days.  Bug #682914.
app-crypt/sgeps

# Hans de Graaff <graaff@gentoo.org> (13 Apr 2019)
# Old ruby24-only slots of Rails-related packages
# These no longer have reverse dependencies or newer
# versions are available.
# Masked for removal in 30 days.
dev-ruby/arel:7.0
dev-ruby/coffee-rails:4.1
dev-ruby/d3_rails:0
dev-ruby/i18n:0.6
dev-ruby/i18n:0.8
dev-ruby/mail:2.6
dev-ruby/mysql2:0.3
dev-ruby/sprockets-rails:2.3
dev-ruby/uglifier:0
dev-ruby/uglifier:3

# Hans de Graaff <graaff@gentoo.org> (13 Apr 2019)
# No longer maintained upstream. Does not work
# with ruby25.
# Masked for removal in 30 days.
dev-ruby/celluloid
dev-ruby/celluloid-essentials
dev-ruby/celluloid-extras
dev-ruby/celluloid-fsm
dev-ruby/celluloid-io
dev-ruby/celluloid-pool
dev-ruby/celluloid-supervision

# Aaron Bauman <bman@gentoo.org> (12 Apr 2019)
# Multiple security vulnerabilities
# No revbumps in several years.
# Removal in 30 days. Bug #675682
dev-java/jackson-databind
app-text/languagetool
app-vim/languagetool
dev-java/jackson-dataformat-xml
dev-java/jackson-dataformat-yaml
dev-java/jackson-module-jaxb-annotations

# Virgil Dupras <vdupras@gentoo.org> (12 Apr 2019)
# Dead upstream, no revdeps.
# Removal in 30 days. Bug #683146
dev-python/readme

# Georgy Yakovlev  (11 Apr 2019)
# Rust provides zsh completion.
# This one is old, unmaintained obsolete version.
# Removal in 30 days.
app-shells/rust-zshcomp

# Michał Górny <mgorny@gentoo.org> (10 Apr 2019)
# Unresolved vulnerability.  Last apparent upstream activity in 2015,
# with the code last touched in 2010.  Local patches are already
# necessary for it to build.
# Removal in 30 days.  Bug #630254.
media-sound/aacplusenc

# Michał Górny <mgorny@gentoo.org> (10 Apr 2019)
# Fails to build for more than 3 years.  The project has been abandoned
# upstream, with the current (and last) release made in 2010.
# The author itself suggests media-gfx/eog as a replacement, though
# there is a plenty of other image viewers worth considering.
# Removal in 30 days.  Bug #561392.
media-gfx/gliv

# Michał Górny <mgorny@gentoo.org> (09 Apr 2019)
# Obsolete XFCE library with its remaining dependencies.  In all cases,
# the relevant plugins have been abandoned upstream and the upstream
# repository is dead or not to be found.  All of them are unlikely
# to be ported away from libxfcegui4 and/or into GTK+3.
# Removal in 30 days.  Bug #590306.
xfce-base/libxfcegui4
xfce-extra/xfce4-gvfs-mount
xfce-extra/xfce4-linelight-plugin
xfce-extra/xfce4-messenger-plugin
xfce-extra/xfce4-modemlights-plugin

# Michał Górny <mgorny@gentoo.org> (09 Apr 2019)
# Marked deprecated upstream.  Still uses xfce-base/libxfcegui4.
# Unlikely to be ported to GTK+3.
# Removal in 30 days.  Bug #682956.
app-text/xfbib

# Michał Górny <mgorny@gentoo.org> (09 Apr 2019)
# Marked deprecated upstream.  Uses xfce-base/libxfcegui4.  Unlikely
# to be ported to GTK+3.
# Removal in 30 days.  Bug #682954.
xfce-extra/xfce4-cellmodem-plugin

# Michał Górny <mgorny@gentoo.org> (09 Apr 2019)
# Marked deprecated upstream.  Uses xfce-base/libxfcegui4.  Unlikely
# to be ported to GTK+3.  Still uses xfconf.eclass.
# Removal in 30 days.  Bug #682950.
xfce-extra/xfswitch-plugin

# Michał Górny <mgorny@gentoo.org> (09 Apr 2019)
# Unofficial plugin abandoned upstream.  The only release is from 2014,
# last commits are from 2015.  Little chances of porting to GTK+3.
# Still uses xfconf.eclass.
# Removal in 30 days.  Bug #682940.
xfce-extra/xfce4-soundmenu-plugin

# Michał Górny <mgorny@gentoo.org> (09 Apr 2019)
# Marked deprecated upstream.  Uses xfce-base/libxfcegui4.  Little
# chances of porting to GTK+3.  Still uses xfconf.eclass.
# Removal in 30 days.  Bug #682938.
xfce-extra/xfce4-wmdock-plugin

# Michał Górny <mgorny@gentoo.org> (09 Apr 2019)
# Marked as deprecated upstream.  Does not build against modern kernels.
# Little chances of GTK+3 port.  Still uses xfconf.eclass.
# Removal in 30 days.  Bug #604134.
xfce-extra/xfce4-radio-plugin

# Michał Górny <mgorny@gentoo.org> (09 Apr 2019)
# Marked as deprecated upstream.  Little chances of GTK+3 port.
# Still uses xfconf.eclass.
# Removal in 30 days.  Bug #682934.
xfce-extra/xfce4-quicklauncher-plugin

# Michał Górny <mgorny@gentoo.org> (09 Apr 2019)
# Unofficial panel plugin whose upstream disappeared and sources are
# nowhere to be found.  Possibly does not even work (#499156).
# Unlikely to be ported to GTK+3.  Still uses xfconf.eclass.
# Removal in 30 days.  Bug #682930.
xfce-extra/xfce4-playercontrol-plugin

# Michał Górny <mgorny@gentoo.org> (09 Apr 2019)
# Unofficial panel plugin that has been abandoned upstream.
# Last activity in 2013.  Unlikely to be ported to GTK+3.  Ebuild still
# uses xfconf.eclass.
# Removal in 30 days.  Bug #682928.
xfce-extra/xfce4-netspeed-plugin

# Hans de Graaff <graaff@gentoo.org> (8 Apr 2019)
# Ruby 2.3 is no longer maintained and only receives security patches
# until March 2019. Please use Ruby 2.4 or newer instead.
# Masked for removal in 30 days
dev-lang/ruby:2.3
dev-ruby/did_you_mean:1

# Andreas K. Hüttel <dilfridge@gentoo.org> (06 Apr 2019)
# Preparations for the Perl 5.28.2 version bump.
# DO NOT USE, work in progress.
=dev-lang/perl-5.28.2*
=virtual/perl-Module-CoreList-5.201.904.190
=virtual/perl-Storable-3.80.100_rc

# Zac Medico <zmedico@gentoo.org> (04 Apr 2019)
# Ebuild is not needed since consumers use EGO_VENDOR.
# Removal in 30 days.  Bug #656972.
dev-go/go-resiliency

# Michał Górny <mgorny@gentoo.org> (03 Apr 2019)
# Does not build with ncurses[tinfo].  The current version is from 2004,
# and it seems to have been abandoned upstream.
# Removal in 30 days.  Bug #678866.
games-roguelike/zangband

# Michał Górny <mgorny@gentoo.org> (03 Apr 2019)
# Unmaintained.  Multiple unresolved build failures (#630280, #638618,
# #639648).  The current version was added in 2012, and haven't been
# bumped since.  Upstream has released 1.0.0 in 2016 (#638464).
# Removal in 30 days.  Bug #682402.
dev-libs/blitz

# Michał Górny <mgorny@gentoo.org> (03 Apr 2019)
# Bundles dev-libs/rapidjson.  Fails to build with gcc-6+.  The packaged
# version is from 2015, and needs bump for almost 2 years.
# Removal in 30 days.  Bug #580358.
dev-libs/handystats

# Michał Górny <mgorny@gentoo.org> (03 Apr 2019)
# Does not build against ffmpeg-4.  Last release in 2012.  Last upstream
# commits in 2017.
# Removal in 30 days.  Bug #673826.
media-plugins/vdr-markad

# Virgil Dupras <vdupras@gentoo.org> (31 Mar 2019)
# Unmaintained, no revdeps.
# Removal in 30 days. Bug #616596
dev-python/statistics
dev-python/reverend

# Michał Górny <mgorny@gentoo.org> (31 Mar 2019)
# Unmaintained.  Broken with new openssl (#674192) and new glibc
# (#643460).  Last upstream beta release in 2002.  Carries ever-growing
# pile of patches.  No reverse dependencies.
# Removal in 30 days.  Bug #674192.
net-analyzer/dsniff

# Michał Górny <mgorny@gentoo.org> (31 Mar 2019)
# Unmaintained.  The current snapshot was added by a non-maintainer to
# stop blocking Qt4 removal.  Fails to build with new glibc.
# Last upstream release in 2015, latest commits mid-2018.
# No reverse dependencies.
# Removal in 30 days.  Bug #656096.
sci-chemistry/ball

# Michał Górny <mgorny@gentoo.org> (31 Mar 2019)
# Undermaintained.  Fails to build with new glibc (#638048), OpenGL
# headers (#516292).  Missing dependencies (#586186).  No reverse
# dependencies.
# Removal in 30 days.  Bug #638048.
sci-biology/arb

# Michał Górny <mgorny@gentoo.org> (31 Mar 2019)
# Unmaintained.  Still broken with new glibc.  Carries a lot of local
# patches.  Last upstream release in 2011, with a few commits in git
# since.  The only revdep is app-admin/rsyslog[grok].
# Removal in 30 days.  Bug #660332.
dev-libs/grok

# Michał Górny <mgorny@gentoo.org> (31 Mar 2019)
# Unmaintained.  Needs bump.  The current Gentoo version is from 2004,
# with last upstream release in 2015.  Carries local patches and hacks
# to even build.  Has format-security warnings.
# Removal in 30 days.  Bug #532502.
net-ftp/weex

# Aaron Bauamn <bman@gentoo.org> (29 Mar 2019)
# Longstanding security vulnerabilities
# No upstream releases in years
# Removal in 30 days. Bug #650888
media-gfx/swftools

# Michał Górny <mgorny@gentoo.org> (29 Mar 2019)
# Unmaintained.  Fails to build with ncurses[tinfo]; fixing it reveals
# further build failures.  Last release in 2001.  Upstream has shortly
# revived coding in 2015 but did not finish the update.
# Removal in 30 days.  Bug #617184.
media-sound/playmidi

# Michał Górny <mgorny@gentoo.org> (29 Mar 2019)
# Unmaintained.  The current version was added in 2008, and a bump
# was requested in 2010.  Since then, upstream has disappeared,
# and the tool requires fetching extra files from the upstream website.
# Removal in 30 days.  Bug #305121.
media-video/episoder

# Robin H. Johnson <robbat2@gentoo.org> (25 Mar 2019)
# Requires >=dev-lang/lua-5.3 which is masked
sys-apps/likwid

# Michael Haubenwallner <haubi@gentoo.org> (25 Mar 2019)
# Obsolete, in favor of app-portage/prefix-toolkit.
# Removal in 30 days.  Bug #658572
app-portage/prefix-chain-setup
sys-apps/prefix-chain-utils

# Michał Górny <mgorny@gentoo.org> (23 Mar 2019)
# Unmaintained.  Fails to build against current sys-auth/libfprint.
# Obsoleted upstream, in favor of libfprint[examples].
# Removal in 30 days.  Bug #665174.
sys-auth/fprint_demo

# Michał Górny <mgorny@gentoo.org> (23 Mar 2019)
# Unmaintained.  Fails to build due to patch that does not apply.
# Even if that weren't the case, it would need to be updated for modern
# kernel versions.
# Removal in 30 days.  Bug #663180.
sys-power/phc-intel

# Michał Górny <mgorny@gentoo.org> (23 Mar 2019)
# Unmaintained.  Fails to build, probably due to Linux kernel changes.
# Removal in 30 days.  Bug #646806.
net-misc/batman-adv

# Michał Górny <mgorny@gentoo.org> (23 Mar 2019)
# Unmaintained.  Fails to build against ncurses[tinfo].  Last upstream
# release in 2009.  No apparent fix in upstream git.
# Removal in 30 days.  Bug #646922.
app-editors/efte

# Michał Górny <mgorny@gentoo.org> (23 Mar 2019)
# Unmaintained.  Vulnerable.  Fails to build (#612236, #620916).
# Removal in 30 days.  Bug #670028.
app-misc/freeplane

# Michał Górny <mgorny@gentoo.org> (23 Mar 2019)
# Unmaintained.  No reverse dependencies.  Fails to link.  Last upstream
# activity in 2012.
# Removal in 30 days.  Bug #632066.
dev-cpp/libassa

# Michał Górny <mgorny@gentoo.org> (23 Mar 2019)
# Unmaintained and ancient.  Upstream has abandoned the PAR 2.0 spec
# effort in 2003-2004, and the code has not seen any attention since.
# Removal in 30 days.  Bug #681364.
app-arch/par

# Michał Górny <mgorny@gentoo.org> (23 Mar 2019)
# No maintainer.  Both the program and the ebuild are of bad quality,
# the former requiring a patch and the latter failing to build in some
# circumstances.  Last upstream activity in 2005.
# Removal in 30 days.  Bug #456954.
app-benchmarks/gtkperf

# Michał Górny <mgorny@gentoo.org> (23 Mar 2019)
# Proprietary executable with unclear license.  Unmaintained.
# The current version in Gentoo is from 2004.  QA issues (#430712).
# Removal in 30 days.  Bug #681360.
app-cdr/poweriso

# Andreas Sturmlechner <asturm@gentoo.org> (23 Mar 2019)
# Everything breaks again. bug #681336
>=app-text/poppler-0.75.0

# Michał Górny <mgorny@gentoo.org> (22 Mar 2019)
# Unmaintained.  No reverse dependencies.  The current Gentoo version
# is from 2015, and upstream has made a lot of releases since.
# It suffers from heavy bundling of dependencies.
# Removal in 30 days.  Bug #469194.
dev-lua/luvit

# Michał Górny <mgorny@gentoo.org> (22 Mar 2019)
# Unmaintained.  Last release in 2013, last commits in 2015.  Nested
# bundled libraries (#253259, also causing #515384).  Fails to build
# with [-dbus] (#560208).
# Removal in 30 days.  Bug #681294.
x11-wm/afterstep

# Michał Górny <mgorny@gentoo.org> (22 Mar 2019)
# Unmaintained, dead homepage (#680752).  Fails to build against
# ncurses[tinfo] (#459490), fails to build against ncurses-6 (#649794).
# Also has some unresolved segv (#407983).
# Removal in 30 days.  Bug #459490.
games-roguelike/rogue

# Michał Górny <mgorny@gentoo.org> (22 Mar 2019)
# SixXS has been discontinued, rendering the package defunct.
# Removal in 30 days.  Bug #670678.
net-vpn/aiccu

# Michał Górny <mgorny@gentoo.org> (22 Mar 2019)
# Homepage dead, and package is mirror-restricted.  Current release
# was added in 2006 and has not been updated since.
# Removal in 30 days.  Bug #681230.
net-misc/sjphone

# Michał Górny <mgorny@gentoo.org> (21 Mar 2019)
# Upstream EOL-ed Python 3.4 on 2019-03-19.  The last release fails
# to build against openssl-1.1+.
# Removal in 30 days.  Bug #673960.
=dev-lang/python-3.4*

# Andreas Sturmlechner <asturm@gentoo.org> (21 Mar 2019)
# Replaced by split packages: kde-apps/dolphin-plugins-bazaar,
# -dropbox, -git, -mercurial, -subversion. Masked for removal in 30 days.
kde-apps/dolphin-plugins

# Michał Górny <mgorny@gentoo.org> (21 Mar 2019)
# Not really maintained anymore.  Last upstream release is from 2015.
# Fails to build against modern versions of app-crypt/mit-krb5, may have
# more hidden issues.  It is probably time to move to net-print/cups.
# net-print/magicfilter is the only reverse dependency (from 2011).
# Removal in 30 days.  Bug #496922.
net-print/lprng
net-print/magicfilter

# Michał Górny <mgorny@gentoo.org> (21 Mar 2019)
# Fails to build on modern systems.  Really bad quality ebuild (#670524)
# with a growing pile of patches.  The current version dates back
# to 2003.  The homepage is dead.  No reverse dependencies.
# Removal in 30 days.  Bug #542924.
dev-libs/libmcal

# Michał Górny <mgorny@gentoo.org> (21 Mar 2019)
# Library with no maintainer and no reverse dependencies.  Fails
# to build with sandbox violations.
# Removal in 30 days.  Bug #676190.
x11-libs/hippo-canvas

# Michał Górny <mgorny@gentoo.org> (21 Mar 2019)
# The following packages are unmaintained and fail to build against
# openssl-1.1+.
#
# app-crypt/keynote: #675010, last updated upstream in 2000
# dev-util/skipfish: #675124, last upstream commit in 2012
# dev-util/wsta: #674004, no fix upstream, also #631610, #674526
# games-util/gtkevemon: #675988, upstream API shut down
# mail-client/nail: #676008, last commit in 2010, also #508480
# mail-client/nmh: #676938, needs bump, 2014, also #676938, #680596
# mail-filter/libdkim: #674892, no revdeps, last release in 2010
# net-analyzer/bro: #675014, needs bump, current version is from 2015
# net-analyzer/ffp: #674244, dead homepage, current version added 2005
# net-analyzer/nodebrain: #674796, last commits in 2015
# net-analyzer/postal: #677478, last release in 2012
# net-ftp/netkit-ftpd: #676000, last rel in 2000, also #236290, #540330
# net-im/ayttm: #676242, last commits in 2011 (+ one secfix in 2015)
# net-im/climm: #674160, dead homepage, last commits in 2010
# net-irc/bip: #674240, may need new snapshot, current ver is from 2013
# net-irc/epic4: #677734, needs bump, current is from 2009, also #613120
# net-irc/shadowircd:  #674528, dead homepage, last commits in 2012
# net-mail/peephole: #675012, last release from 2006
# net-mail/qpopper: #674896, discontinued, from 2011, also #541996
# net-mail/up-imapproxy: #674234, last commits in 2016, also #643898
# net-mail/uw-imap: #678606, last upstream release in 2011
# net-mail/uw-mailutils: #674174, same as uw-imap
# net-misc/sslwrap: #674524, last updated upstream in 2000
# net-misc/stone: #675612, needs new snapshot, current ver is from 2008
# net-misc/tn5250: #678684, last commits in 2012
# net-proxy/ufdbguard: #677482, needs bump, current ver is from 2016
# sys-apps/nca: #676240, last updated upstream in 2004
# x11-plugins/wmpeople: revdep of net-mail/peephole, from 2004
#
# Removal in 30 days.
app-crypt/keynote
dev-util/skipfish
dev-util/wsta
games-util/gtkevemon
mail-client/nail
mail-client/nmh
mail-filter/libdkim
net-analyzer/bro
net-analyzer/ffp
net-analyzer/nodebrain
net-analyzer/postal
net-ftp/netkit-ftpd
net-im/ayttm
net-im/climm
net-irc/bip
net-irc/epic4
net-irc/shadowircd
net-mail/peephole
net-mail/qpopper
net-mail/up-imapproxy
net-mail/uw-imap
net-mail/uw-mailutils
net-misc/sslwrap
net-misc/stone
net-misc/tn5250
net-proxy/ufdbguard
sys-apps/nca
x11-plugins/wmpeople

# Michał Górny <mgorny@gentoo.org> (21 Mar 2019)
# Last release in 2010.  No reverse dependencies.  No maintainer.
# Apparently bundles libraries.
# Removal in 30 days.  Bug #252500.
dev-util/synopsis

# Miroslav Šulc <fordfrog@gentoo.org> (19 Mar 2019)
# Depends on >=virtual/{jdk,jre}-11 which is masked
=www-servers/tomcat-9.0.17

# Sobhan Mohammadpour <sobhan@gentoo.org> (17 Mar 2019)
# Masked for testing
=mail-client/geary-3.32.0-r1

# Michał Górny <mgorny@gentoo.org> (17 Mar 2019)
# The current Gentoo version has been added in 2015 and has not been
# bumped since.  It fails to build with new versions of gperf (#609272)
# and ffmpeg (#671256).  No maintainer.
# Removal in 30 days.  Bug #680800.
media-sound/forked-daapd

# Michał Górny <mgorny@gentoo.org> (17 Mar 2019)
# Unmaintained.  Last bump in 2016, leaving Gentoo a few releases
# behind.  The current version fails to build, with two different
# issues (#610966, #651278).
# Removal in 30 days.  Bug #610966.
net-analyzer/netsniff-ng

# Michał Górny <mgorny@gentoo.org> (17 Mar 2019)
# bzr-fastimport: Unmaintained.  Does not work with current Gentoo
# versions of dev-python/python-fastimport.  No upstream release since
# 2012.
#
# git-bzr-ng: Unmaintained.  Reverse depedency of bzr-fastimport.
# Gentoo carries a 2012 snapshot, upstream did not touch the code
# since 2013.
#
# Removal in 30 days.  Bug #591446.
dev-vcs/bzr-fastimport
dev-vcs/git-bzr-ng

# Michał Górny <mgorny@gentoo.org> (17 Mar 2019)
# Added in 2012, started to fail at digest verification shortly
# afterwards and not mirrored by Gentoo.  Not touched by maintainer
# since.
# Removal in 30 days.  Bug #434158.
x11-misc/xwinwrap

# Michał Górny <mgorny@gentoo.org> (17 Mar 2019)
# Unmaintained, the previous maintainer last touched it in ~2013
# and others have bumped it since (last in 2017).  The current version
# fails tests, is outdated and really needs a bump.  net-misc/youtube-dl
# is a suitable (and more frequently updated) replacement.
# Removal in 30 days.  Bug #407381.
media-video/get_flash_videos

# Michał Górny <mgorny@gentoo.org> (16 Mar 2019)
# The current Gentoo version has been added in 2011, and a bump is
# pending since at least 2012.  Last touched upstream in 2015.
# A library with no reverse dependencies.
# Removal in 30 days.  Bug #404299.
media-libs/rply

# Michał Górny <mgorny@gentoo.org> (16 Mar 2019)
# Added in 2004 and not updated since (even though upstream made new
# releases).  Never had a dedicated maintainer.  Fails to build
# with parallel make.
# Removal in 30 days.  Bug #314667.
net-nntp/xrn

# Matt Turner <mattst88@gentoo.org> (16 Mar 2019)
# Previously packaged drivers, now removed from Gentoo.
# Keep this mask in place so users are aware, but can also easily unmask them
# in an overlay if so desired.
x11-drivers/xf86-input-citron
x11-drivers/xf86-video-apm
x11-drivers/xf86-video-ark
x11-drivers/xf86-video-chips
x11-drivers/xf86-video-cirrus
x11-drivers/xf86-video-cyrix
x11-drivers/xf86-video-i128
x11-drivers/xf86-video-i740
x11-drivers/xf86-video-impact
x11-drivers/xf86-video-mach64
x11-drivers/xf86-video-neomagic
x11-drivers/xf86-video-newport
x11-drivers/xf86-video-nsc
x11-drivers/xf86-video-rendition
x11-drivers/xf86-video-s3
x11-drivers/xf86-video-s3virge
x11-drivers/xf86-video-savage
x11-drivers/xf86-video-sis
x11-drivers/xf86-video-sisusb
x11-drivers/xf86-video-sunbw2
x11-drivers/xf86-video-suncg14
x11-drivers/xf86-video-suncg3
x11-drivers/xf86-video-suncg6
x11-drivers/xf86-video-sunffb
x11-drivers/xf86-video-sunleo
x11-drivers/xf86-video-suntcx
x11-drivers/xf86-video-tdfx
x11-drivers/xf86-video-tga
x11-drivers/xf86-video-trident
x11-drivers/xf86-video-tseng
x11-drivers/xf86-video-voodoo

# Michał Górny <mgorny@gentoo.org> (16 Mar 2019)
# The current Gentoo version of Nessus is from 2006 (!).  It does
# not build for quite some time (#590226), also -client fails with new
# openssl (#674424).  Upstream has stopped releasing non-proprietary
# versions.  While at it, remove prelude-nessus that practically
# has not been touched since 2003.  net-analyzer/openvas is a suggested
# open source replacement; net-analyzer/nessus-bin provides (outdated)
# proprietary versions of Nessus.
# Removal in 30 days.  Bug #680636.
net-analyzer/libnasl
net-analyzer/nessus
net-analyzer/nessus-client
net-analyzer/nessus-core
net-analyzer/nessus-libraries
net-analyzer/nessus-plugins
net-analyzer/prelude-nessus
sec-policy/selinux-nessus

# Michał Górny <mgorny@gentoo.org> (16 Mar 2019)
# MayaVi requires Python 2, at the same time depending on IPython
# which removed Python 2 support.  The current Gentoo version is
# from 2016 and has not been bumped.  It fails with various versions
# of sci-libs/vtk (#624082, #663152).
#
# ETS is a suite of NIH packages that have no reverse dependencies
# except for MayaVi and Py2.7 support in recently added
# dev-python/construct.  The packages were added without a dedicated
# maintainer and were incidentally updated since.  Some of them have
# various unsolved issues including segfaults (#654090), bundled
# libraries (#450466), semi-broken ebuilds (#678042).
#
# Removal in 30 days.  Bug #672412.
dev-python/apptools
dev-python/blockcanvas
dev-python/chaco
dev-python/codetools
dev-python/enable
dev-python/enaml
dev-python/encore
dev-python/envisage
dev-python/ets
dev-python/etsdevtools
dev-python/etsproxy
dev-python/graphcanvas
dev-python/pyface
dev-python/scimath
=dev-python/traits-4.5.0
=dev-python/traits-4.6.0
dev-python/traitsui
sci-visualization/mayavi

# Michał Górny <mgorny@gentoo.org> (16 Mar 2019)
# ProDy was added in 2015 and not bumped since (with upstream making
# frequent releases).  The primary maintainer abandoned it.  The Gentoo
# version requires Python 2, while it depends on IPython which dropped
# support for Python 2.
#
# pymol-plugins-dynamics is its only revdep, added and abandoned
# by the primary maintainer about the same time as ProDy.  Last bumped
# in 2017, making it behind upstream.
#
# Removal in 30 days.  Bug #672410.
sci-chemistry/prody
sci-chemistry/pymol-plugins-dynamics

# Michał Górny <mgorny@gentoo.org> (16 Mar 2019)
# Major browsers stopped supporting NPAPI plugins a while ago.
# Furthermore, modern browsers carry built-in multimedia support,
# rendering media plugins redundant.  Last release in 2014.
# Removal in 30 days.  Bug #671854.
www-plugins/mozplugger

# Eray Aslan <eras@gentoo.org> (01 Mar 2019)
# Mask experimental software
=mail-mta/postfix-3.5*

# Miroslav Šulc <fordfrog@gentoo.org> (10 Feb 2019)
# Depends on >=virtual/{jdk,jre}-11 which is masked
=www-servers/tomcat-9.0.16

# Dennis Lamm <expeditioneer@gentoo.org> (29 Jan 2019)
# Depends on >=app-text/enchant-2.0.0 which is masked
=gnome-extra/gtkhtml-4.10.0-r1

# Dennis Lamm <expeditioneer@gentoo.org> (28 Jan 2019)
# Depends on >=app-text/enchant-2.0.0 which is masked
>=app-text/gtkspell-3.0.10

# Dennis Lamm <expeditioneer@gentoo.org> (28 Jan 2019)
# Depends on >=app-text/enchant-2.1.3 which is masked
>=app-text/gspell-1.8.1

# Miroslav Šulc <fordfrog@gentoo.org> (23 Jan 2019)
# Depends on >=virtual/{jdk,jre}-11 which is masked
=dev-java/ant-eclipse-ecj-4.10
=dev-java/eclipse-ecj-4.10
=www-servers/tomcat-9.0.14

# Craig Andrews <candrews@gentoo.org> (1 Jan 2019)
# Requires dev-libs/openssl-1.1.1, Bug 674148
dev-libs/gost-engine

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

# Hanno Boeck <hanno@gentoo.org (23 Dec 2018)
# Needs new OpenSSL, should be unmasked together with
# OpenSSL 1.1.1
>=app-crypt/osslsigncode-2.0

# Thomas Deutschmann <whissi@gentoo.org> (10 Dec 2018)
# Requires >=dev-lang/lua-5.2 which is masked
>=app-admin/lsyncd-2.2.3

# Andreas Sturmlechner <asturm@gentoo.org> (25 Nov 2018)
# Masked per security vulnerability CVE-2018-14345, bug #661510
# Keeping it masked while users have unsolved issues with >0.15.0.
<x11-misc/sddm-0.18.0

# Ian Stakenvicius <axs@gentoo.org> (07 Nov 2018)
# on behalf of Mozilla Project <mozilla@gentoo.org>
# Mask old/vuln thunderbird for removal by 2019,
# see security bug 670102
<mail-client/thunderbird-60.0
<mail-client/thunderbird-bin-60.0

# Brian Evans <grknight@gentoo.org> (05 Nov 2018)
# Causes a dependency loop in the OpenRC script. Bug #651998
=sys-fs/cryptsetup-2.0.5-r1

# Aaron W. Swenson <titanofold@gentoo.org> (25 Oct 2018)
# Fails to build against up to date OpenSSL library (Bug 663966). No longer
# supported upstream. Use dev-db/pgadmin4.
# Masked for removal on 2018-11-24, bug #669650.
dev-db/pgadmin3

# Lars Wendler <polynomial-c@gentoo.org> (22 Oct 2018)
# Breaks dev-libs/gobject-introspection and its consumers
# See #669278
=xfce-base/xfconf-4.13.6

# Thomas Deutschmann <whissi@gentoo.org> (12 Oct 2018)
# EOL and has known vulnerabilities. Please move to
# Firefox 60 or newer if you can.
<www-client/firefox-60
<www-client/firefox-bin-60

# Andreas Sturmlechner <asturm@gentoo.org> (07 Oct 2018)
# Masked for more testing especially of reverse-deps.
>=dev-games/ogre-1.11.2

# Thomas Deutschmann <whissi@gentoo.org> (06 Oct 2018)
# Outdated and vulnerable snapshot; libav-12.3 is the better
# version for now
=media-video/libav-13_pre20171219

# Michał Górny <mgorny@gentoo.org> (24 Sep 2018)
# Apparently breaks sys-devel/gcc.  Bug #666954.
=dev-util/debugedit-4.14.2

# Andreas K. Hüttel <dilfridge@gentoo.org> (11 Sep 2018)
# Mask transition ebuilds that were needed only for <glibc-2.26
# We will keep them in the tree as long as we have masked
# <glibc-2.26.
~net-libs/libnsl-0
~net-libs/rpcsvc-proto-0

# Bernard Cafarelli <voyageur@gentoo.org> (13 Aug 2018)
# Beta release with new features, masked for testing
=app-text/tesseract-4.0.0_beta*

# Michał Górny <mgorny@gentoo.org> (01 Aug 2018)
# Multiprocessing versions of gemato.  They are known to hang on some
# users, so let's keep them masked until somebody figures out what's
# wrong.  Bug #647964.
~app-portage/gemato-14.0m
~app-portage/gemato-9999m

# Kent Fredric <kentnl@gentoo.org> (27 May 2018)
# Subject to Man-in-the-middle security bypass vulnerability.
# Retained in tree only for users who need older versions
# for compatibility reasons.
# Bug: #623942
<dev-perl/DBD-mysql-4.44.0

# Matt Turner <mattst88@gentoo.org> (25 May 2018)
# New package. Needs to interact with media-libs/mesa and
# x11-drivers/nvidia-drivers. Work in progress.
media-libs/libglvnd

# Aaron Bauman <bman@gentoo.org> (30 Apr 2018)
# Masked for testing. Will implement more of the 1.1 API
# Which will require patch updates across the tree
=dev-libs/libressl-2.9*

# Brian Evans <grknight@gentoo.org> (20 Apr 2018)
# Likely to break a lot of software
# Masked for initial testing
>=dev-db/mysql-connector-c++-8.0.0

# 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+ then install oracle-(jdk|jre)-bin or openjdk(-bin) directly.
virtual/jdk:11
virtual/jre:11

# 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

# 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

# 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

# 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

# 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

# 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

# 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 and later updates)
# 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.
<sys-devel/gcc-5.4
<sys-libs/glibc-2.27
<sys-devel/binutils-2.30-r2
<sys-libs/binutils-libs-2.30-r2

# 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

# 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

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

# 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

# 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
# Lars Wendler <polynomial-c@gentoo.org> (25 Jan 2019)
# Also masked because of mostly incompatible license (AGPL-3)
=sys-libs/db-6.1*
=sys-libs/db-6.2*
=sys-libs/db-18.1*

# 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/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-r100
=dev-lang/lua-5.1.5-r101
=dev-lang/lua-5.1.5-r102
=dev-lang/lua-5.2.3
=dev-lang/lua-5.2.3-r1
=dev-lang/lua-5.2.3-r2
=dev-lang/lua-5.2.3-r3
=dev-lang/lua-5.3.3
=dev-lang/lua-5.3.3-r1
=dev-lang/lua-5.3.3-r2

# 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

# 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