summaryrefslogtreecommitdiff
blob: 72e7075174351b1da496866ec0139616af12f73d (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
####################################################################
#
# 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 ---

# Matt Turner <mattst88@gentoo.org> (16 Jul 2017)
# Header package for removed x11-libs/libXevie. No dependencies. Removal in a
# month (#615314)
x11-proto/evieext

# Thomas Deutschmann <whissi@gentoo.org> (16 Jul 2017)
# Discontinued project with multiple vulnerabilities, removal in a month (#620802)
media-gfx/autotrace

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Not usable, dead since 2003, removal in a month (#24706)
app-mobilephone/esms

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Proprietary software, fetch restricted, not actively maintained, needs to
# be updated, with multiple QA issues, bug #622414. Removal in a month.
sci-chemistry/icm

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Doesn't work with >=openvpn-2.3, removal in a month (#470696).
net-vpn/kvpnc

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Doesn't work with any django version in the tree, tests fail, removal in a
# month (#482498).
dev-python/south

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# No reverse deps, doesn't build, bug #569068. Removal in a month.
net-misc/jumpgate

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Lots of unresolved bugs, not compatible with QT 5.7 either, bug #574672.
# Removal in a month.
net-p2p/bitcoinxtd
net-p2p/bitcoinxt-qt

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Our package is completely outdated and needs a major version bump (and
# pkgmove). Bug #541410. Removal in a month.
dev-util/febootstrap

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Buggy, doesn't compile for a long time, bug #575772. Removal in a month.
dev-python/python-sipsimple
net-voip/blink

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Doesn't compile, one of the last consumers of obsolete gnet library
# (#579400). Removal in a month.
net-irc/loqui

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Doesn't compile, upstream dead, removal in a month (#584296).
dev-util/mutrace

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# QA issues, upstreams dead, multiple alternatives, bug #587284 and bug
# #587288. Removal in a month.
sys-libs/libacpi
sys-power/yacpi

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Doesn't build for a long time, bug #587942
sci-mathematics/cado-nfs

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Doesn't build (#592992), dead since 2011 and nothing needs it in the tree.
# Removal in a month.
dev-libs/mozldap

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Not compatible with gcc6 (#594390), also removed from other distributions
# due it being unmaintained and buggy. Removal in a month.
net-analyzer/nepenthes

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Upstream inactive, not buildable with gcc6, not needed by anything in the
# tree (#594668). Removal in a month.
app-text/mbtpdfasm

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# No reverse deps, not buildable with gcc6 (#595396). Removal in a month.
media-libs/embree

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Not compatible with QT 5.7, bug #595452. Removal in a month.
net-p2p/litecoin-qt

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Not buildable (#596602), no reverse deps, removal in a month.
app-pda/fusepod

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Not buildable for a long time (#597040). Removal in a month.
dev-util/lorax

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Security issues (#600524), upstream dead, removal in a month.
dev-db/recutils

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Multiple unresolved bugs (#600680), need major version bumps and a
# maintainer, removal in a month.
dev-libs/libRocket
games-fps/warsow

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Fails to build, no reverse deps (#600768). Removal in a month.
app-editors/mp

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Needs obsolete splitted dev-dotnet/gnome-sharp (#600960). Removal in a
# month.
media-video/gnome-subtitles

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Development stopped 4 years ago, relies on dead vte:2.90 and upstream
# refused to even try to migrate it (#601350). Also security issues
# (#611290). Removal in a month.
x11-terms/evilvte

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Not compatible with gcc6, nothing needs this in the tree (#603900).
# Removal in a month.
dev-libs/qcodeedit

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Not compatible with gperf-3.1 (#604816). Removal in a month.
app-misc/flasm

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Upstream is dead, lots of unresolved bug reports (#606154), it needs a
# real maintainer taking care about fixing this. Removal in a month.
sys-apps/v86d

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Doesn't build anymore (#607482). Removal in a month.
net-irc/irssi-xmpp

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Doesn't work with current flash-player versions, bug #609016. Removal in a
# month.
media-libs/hal-flash

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Nothing needs this, pending to migrate to pycryptodome (#611574). Removal
# in a month.
app-admin/kedpm

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Needs migration to pycryptodome, also relies on many other dead libs
# (#611584). Removal in a month.
app-misc/relevation

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Buggy and needs someone to take care of trying to bump it (#614860).
# Removal in a month.
sci-astronomy/skychart

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Wrapper not generated properly (#616330), no reverse deps, removal in a
# month.
dev-python/colout

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Obsolete version in the tree, nothing needs this old library,
# unmaintained, bug #616550. Removal in a month.
net-libs/txtorcon

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Not compatible with current perl (#616900). Removal in a month.
www-client/w3mir

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Relies on no longer available dependencies (#617236) and many other
# obsolete libs. Removal in a month.
dev-util/pida

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Not compatible with guile2, bug #617794. Removal in a month.
net-irc/bobotpp

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Fails to build (#618950), dead for a long time. Removal in a month.
net-p2p/dclib
net-p2p/valknut

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Fails to build (#619210), dead and no reverse deps. Removal in a month.
dev-db/lib_mysqludf_xql

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Not compatible with latest imagemagick, upstream dead for ages (#619454).
# Removal in a month.
media-plugins/vdr-tvguide

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Not compatible with recent python versions (#619998). Removal in a month.
net-misc/leapcast

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Rely on vulnerable webkit (#620698, #620728, #620816, #620830, #621554).
# Removal in a month.
dev-embedded/pikdev
net-misc/clipgrab
dev-util/ninja-ide
app-crypt/yubikey-neo-manager
dev-python/pywebkitgtk

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Dead for a long time and really buggy (#620772). Removal in a month.
net-im/psimedia
net-im/psi
x11-themes/psi-themes

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Not needed and neither compatible with current kernels, bug #621744 and
# #621748. Removal in a month.
net-wireless/adm8211
net-wireless/orinoco-usb

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# More than 5 years dead, relies on a lot of dead/deprecated libraries, bug
# #622008. Removal in a month.
dev-util/a8

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Dead for ages, relies on dead libs (#622010), you can move to moserial, cutecom or
# minicom. Removal in a month.
net-dialup/gtkterm

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Relies on dead libs, it is not developed for ages, bug #622018. Removal in
# a month.
app-misc/gnomecatalog

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# No reverse deps, dead since 2000, bug #622154. Removal in a month.
dev-libs/djb

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Doesn't build (#622842) and many other bugs, removal in a month.
app-emulation/fuse

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Not compatible with new perl, not needed by anything in the tree (#623214,
# #623216), removal in a month.
app-backup/snapback2
app-editors/XML-XSH2

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Doesn't build (#623562). Removal in a month.
media-plugins/vdr-skinnopacity

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Not needed in the tree, upstream stopped developing it long time ago, bug
# #623706. Removal in a month.
net-libs/dhcpcd-dbus

# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
# Not compatible with python >= 3.5 but neither needed by anything in the
# tree anymore, bug #624670. Removal in a month.
=dev-python/beautifulsoup-3.1.0.1-r2

# Hans de Graaff <graaff@gentoo.org> (09 Jul 2017)
# Upstream has removed the code and the published gem.
# Removal in 30 days.
dev-ruby/modernizr

# Lars Wendler <polynomial-c@gentoo.org> (07 Jul 2017)
# Masked until >=net-fs/samba-4.7 is in the tree and 
# unmasked. (bug #624106)
# See also https://bugzilla.samba.org/show_bug.cgi?id=12859
>=sys-libs/ldb-1.1.30

# Michael Palimaka <kensington@gentoo.org> (06 Jul 2017)
# Obsolete. l10n is now included in app-office/calligra:5.
# Masked for removal in 30 days. Exported to kde-sunset overlay.
app-office/calligra-l10n

# Lars Wendler <polynomial-c@gentoo.org> (06 Jul 2017)
# Masked for testing due to new dependencies which
# were not packaged in Gentoo previously.
>=sys-fs/udisks-2.7.0

# Göktürk Yüksek <gokturk@gentoo.org> (05 Jul 2017)
# Declared dead by upstream. Removal in 30 days.
# See: http://www.haildb.com/2015/08/19/shutting-down-haildb/
# Bug #623654.
dev-db/haildb

# Patrice Clement <monsieurp@gentoo.org> (05 Jul 2017)
# Part of the JRE since 1.6.
# Masked for removal in 30 days. Bug #553188.
java-virtual/jaf

# 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

# Michał Górny <mgorny@gentoo.org> (02 Jul 2017)
# The eselect module has been integrated into app-shells/bash-completion
# and all the old versions (not having it) are gone. Removal in 14 days.
app-eselect/eselect-bashcomp

# Alon Bar-Lev <alonbl@gentoo.org> (01 Jul 2017)
# Unmaintained and segfaults.
# Masked for removal in 30 days. Bug#623276.
app-crypt/mdcrack

# Andreas Sturmlechner <asturm@gentoo.org> (01 Jul 2017)
# All revdeps have been ported to app-crypt/gpgme[cxx].
# Masked for removal in 30 days.
kde-apps/gpgmepp

# Andreas Sturmlechner <asturm@gentoo.org> (01 Jul 2017)
# Depends on vulnerable qtwebkit:4. Dead upstream.
# Masked for removal in 30 days. Bug #621558.
kde-misc/krecipes

# Michael Palimaka <kensington@gentoo.org> (01 Jul 2017)
# Depends on vulnerable qtwebkit:4. Dead upstream.
# Masked for removal in 30 days. Bug #620836.
media-gfx/picturewall

# Michael Palimaka <kensington@gentoo.org> (01 Jul 2017)
# Depends on vulnerable qtwebkit:4. Dead upstream.
# Masked for removal in 30 days. Bug #620704.
media-gfx/smile

# Michael Palimaka <kensington@gentoo.org> (01 Jul 2017)
# Depends on vulnerable qtwebkit:4. Dead upstream.
# Masked for removal in 30 days. Bug #620700.
kde-misc/semantik

# Michael Palimaka <kensington@gentoo.org> (01 Jul 2017)
# Depends on vulnerable qtwebkit:4. Dead upstream.
# Masked for removal in 30 days. Bug #620688.
app-cdr/acetoneiso

# 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

# Mike Gilbert <floppym@gentoo.org> (24 Jun 2017)
# Obsolete package: use sys-apps/systemd[sysv-utils] instead.
# Removal in 30 days.
sys-apps/systemd-sysv-utils

# Hans de Graaff <graaff@gentoo.org> (23 Jun 2017)
# Mask ruby21-only packages for removal in 30 days
# Old slots that are ruby21-only
dev-ruby/prawn:1
dev-ruby/rspec:0
# ruby21-only package that does not work with current
# dev-ruby/parslet versions.
dev-ruby/toml
# ruby21-only, no maintainer, fails tests
www-apps/jekyll-paginate

# Patrice Clement <monsieurp@gentoo.org> (20 Jun 2017)
# Fails to build with Java 8. Project is active on Github yet ebuild has never
# been marked stable.
# Masked for removal in 30 days.
dev-java/jdbc-jaybird

# Thomas Deutschmann <whissi@gentoo.org> (17 Jun 2017)
# Unmaintained in Gentoo repository; Multiple vulnerabilities
# People using VMware in Gentoo should switch to Gentoo's VMware overlay
# Bugs 619398, 621910, 616958, 536364, 614666, 612804 ...
app-emulation/vmware-workstation
app-emulation/vmware-player
app-emulation/vmware-modules
app-emulation/vmware-tools

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

# Raymond Jennings <shentino@gmail.com> (11 Jun 2017)
# Upstream announced EOL effective July 2017.
# Depends on qt4 which is being deprecated.
# Possible alternative is skypeforlinux,
# which uses the same account information but has different features.
# See bug #620722 and bug #608174.
dev-python/skype4py
media-sound/skype-call-recorder
net-im/skype
net-im/skypetab-ng

# Michał Górny <mgorny@gentoo.org> (07 Jun 2017)
# The new release changes API and *breaks* core Xfce components.
# Upstream lists xfce-base/xfce4-settings and xfce-base/xfce4-panel
# as being incompatible. The breakage is not exhibited at build time
# but results in broken executables. Masked until upstream releases
# fixed versions and for further testing.
>=xfce-base/xfconf-4.13
>=xfce-base/xfce4-settings-4.13.1

# Michał Górny <mgorny@gentoo.org> (05 Jun 2017)
# (on behalf of Treecleaner project)
# Unmaintained in Gentoo. The current Gentoo version no longer builds.
# Removal in 30 days. Bug #602820.
media-plugins/vdr-xineliboutput

# 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

# Andreas K. Hüttel <dilfridge@gentoo.org> (5 June 2017)
# Masked for initial testing.
=dev-lang/perl-5.26.0
=virtual/perl-Archive-Tar-2.240.0
=virtual/perl-B-Debug-1.240.0
=virtual/perl-CPAN-2.180.0
=virtual/perl-CPAN-Meta-2.150.10
=virtual/perl-Carp-1.420.0
=virtual/perl-Compress-Raw-Bzip2-2.74.0
=virtual/perl-Compress-Raw-Zlib-2.74.0
=virtual/perl-DB_File-1.840.0
=virtual/perl-Data-Dumper-2.167.0
=virtual/perl-Devel-PPPort-3.350.0
=virtual/perl-Digest-MD5-2.550.0
=virtual/perl-Digest-SHA-5.960.0
=virtual/perl-Encode-2.880.0
=virtual/perl-ExtUtils-MakeMaker-7.240.0
=virtual/perl-ExtUtils-ParseXS-3.340.0
=virtual/perl-File-Spec-3.670.0
=virtual/perl-Filter-Simple-0.930.0
=virtual/perl-Getopt-Long-2.490.0
=virtual/perl-HTTP-Tiny-0.70.0
=virtual/perl-I18N-LangTags-0.420.0
=virtual/perl-IO-1.380.0
=virtual/perl-IO-Compress-2.74.0
=virtual/perl-IO-Socket-IP-0.380.0
=virtual/perl-IPC-Cmd-0.960.0
=virtual/perl-JSON-PP-2.274.0.200_rc
=virtual/perl-Locale-Maketext-1.280.0
=virtual/perl-Math-BigInt-1.999.806-r1
=virtual/perl-Math-BigInt-FastCalc-0.500.500
=virtual/perl-Math-BigRat-0.261.100
=virtual/perl-Math-Complex-1.590.100
=virtual/perl-Module-Load-Conditional-0.680.0
=virtual/perl-Module-Metadata-1.0.33
=virtual/perl-Net-Ping-2.550.0
=virtual/perl-Parse-CPAN-Meta-2.150.10
=virtual/perl-Perl-OSType-1.10.0
=virtual/perl-Pod-Simple-3.350.0
=virtual/perl-Safe-2.400.0
=virtual/perl-Scalar-List-Utils-1.460.200_rc
=virtual/perl-Storable-2.620.0
=virtual/perl-Sys-Syslog-0.350.0
=virtual/perl-Term-ANSIColor-4.60.0
=virtual/perl-Term-ReadLine-1.160.0
=virtual/perl-Test-1.300.0
=virtual/perl-Test-Harness-3.380.0
=virtual/perl-Test-Simple-1.302.73
=virtual/perl-Thread-Queue-3.120.0
=virtual/perl-Thread-Semaphore-2.130.0
=virtual/perl-Time-HiRes-1.974.100
=virtual/perl-Time-Local-1.250.0
=virtual/perl-XSLoader-0.270.0
=virtual/perl-bignum-0.470.0
=virtual/perl-libnet-3.100.0
=virtual/perl-parent-0.236.0
=virtual/perl-podlators-4.90.0
=virtual/perl-threads-2.150.0
=virtual/perl-threads-shared-1.560.0
=virtual/perl-version-0.991.700
#
# The following masks are technically not part of the Perl 5.26 block,
# but with the unmasking of Perl 5.26 they become obsolete and can be
# removed:
#
>=perl-core/ExtUtils-MakeMaker-7.180.0
>=dev-perl/Net-Twitter-4.10.420
>=perl-core/Math-BigInt-1.999.726
>=dev-perl/Math-BigInt-GMP-1.600.0
=perl-core/Test-Simple-1.302.75
=virtual/perl-Test-Simple-1.302.75
dev-perl/Test2-Suite
>=dev-perl/Data-Validate-Domain-0.120.0
dev-perl/Test2-Plugin-NoWarnings
dev-perl/Params-ValidationCompiler
>=dev-perl/DateTime-Locale-1.60.0
>=dev-perl/DateTime-TimeZone-2.20.0
>=dev-perl/DateTime-1.370.0
>=dev-perl/DateTime-Format-Strptime-1.710.0
>=dev-perl/Log-Dispatch-2.590.0

# Michał Górny <mgorny@gentoo.org> (25 May 2017)
# First GTK+3 version with known regressions:
# https://mail.xfce.org/pipermail/xfce-announce/2017-May/000517.html
# Masked (+ reverse dependencies) for opt-in testing.
>=xfce-base/xfce4-panel-4.13

# 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
# in case of gcc switch the compiler) ASAP. If you need them for a specific
# (isolated) use case, feel free to unmask them on your system.
<sys-devel/gcc-4.9
<sys-libs/glibc-2.23

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

# Maciej Mrozowski <reavertm@gentoo.org> (18 May 2017)
# Experimental, most consumers does not support it yet
>=dev-games/openscenegraph-3.5.5
>=dev-games/openscenegraph-qt-3.5.5

# 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
# and wxGTK-3.0.3 bump in tree
>=net-ftp/filezilla-3.25.2-r1

# Zac Medico <zmedico@gentoo.org> (01 May 2017)
# Possible API incompatibilities, bug #617174.
# http://aiohttp.readthedocs.io/en/latest/migration.html
>=dev-python/aiohttp-2
>=dev-python/yarl-0.10

# 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

# Aaron W. Swenson <titanofold@gentoo.org> (17 Apr 2017)
# Masked for removal by 17 May 2017. Past end of life. Susceptible to security
# bugs (603716 and 603720). Upgrade to latest version.
=dev-db/postgresql-9.1.24

# NP-Hardass <NP-Hardass@gentoo.org> (10 Apr 2017)
# Masked for testing
virtual/wine
app-eselect/eselect-wine
app-emulation/wine-desktop-common
app-emulation/wine-gecko
app-emulation/wine-mono
app-emulation/wine-vanilla
app-emulation/wine-staging
app-emulation/wine-d3d9
app-emulation/wine-any

# Yixun Lan <dlan@gentoo.org> (30 Mar 2017)
# Masked, broken due to emoji support which requre npm package installed (bug #612218)
=app-i18n/ibus-1.5.15

# 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

# Gnome Team <gnome@gentoo.org> (08 Mar 2017)
# GNOME 3.24 mask (#611270)
>=x11-themes/adwaita-icon-theme-3.23
>=app-accessibility/at-spi2-core-2.23
>=dev-libs/atk-2.23
>=dev-cpp/atkmm-2.25
>=sys-apps/baobab-3.23
>=media-gfx/eog-3.23
>=www-client/epiphany-3.23
>=app-text/evince-3.23
>=gnome-extra/evolution-data-server-3.23
>=gnome-base/gdm-3.23
>=sci-geosciences/geocode-glib-3.23
>=dev-libs/gjs-1.47
>=dev-libs/glib-2.51
>=net-libs/phodav-2.2
>=dev-util/gdbus-codegen-2.51
>=dev-cpp/glibmm-2.51
>=x11-themes/gnome-backgrounds-3.23
>=gnome-extra/gnome-boxes-3.23
>=gnome-extra/gnome-calculator-3.23
>=gnome-extra/gnome-calendar-3.23
>=gnome-extra/gnome-clocks-3.23
>=gnome-base/gnome-control-center-3.23
>=gnome-base/gnome-desktop-3.23
>=sys-apps/gnome-disk-utility-3.23
>=gnome-extra/gnome-logs-3.23
>=sci-geosciences/gnome-maps-3.23
>=net-libs/gnome-online-accounts-3.23
>=media-gfx/gnome-photos-3.23
>=gnome-base/gnome-session-3.23
>=gnome-base/gnome-settings-daemon-3.23
>=gnome-base/gnome-shell-3.23
>=gnome-extra/gnome-shell-extensions-3.23
>=gnome-extra/gnome-software-3.23
>=gnome-extra/gnome-system-monitor-3.23
>=x11-terms/gnome-terminal-3.23
>=dev-libs/gobject-introspection-1.51
>=dev-libs/gobject-introspection-common-1.51
>=gnome-base/gsettings-desktop-schemas-3.23
>=app-text/gspell-1.3
>=net-libs/gtk-vnc-0.7
>=x11-libs/gtksourceview-3.23
>=gnome-base/gvfs-1.31
>=dev-libs/libgee-0.19
>=gnome-base/libgtop-2.35
>=net-libs/libsoup-2.57
>=x11-wm/mutter-3.23
>=gnome-base/nautilus-3.23
>=app-accessibility/orca-3.23
>=dev-cpp/pangomm-2.41
>=media-video/totem-3.23
>=app-misc/tracker-1.11
>=dev-lang/vala-0.35
>=x11-libs/vte-0.47
>=gnome-base/dconf-editor-3.23
>=dev-util/devhelp-3.23
>=mail-client/evolution-3.23
>=games-board/gnome-mines-3.23
>=media-sound/gnome-music-3.23
>=games-arcade/gnome-nibbles-3.23
>=games-puzzle/hitori-3.23
>=games-puzzle/lightsoff-3.23
>=net-irc/polari-3.23
>=net-misc/rygel-0.33
>=games-puzzle/swell-foop-3.23

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

# Davide Pesavento <pesa@gentoo.org> (25 Feb 2017)
# Library name changed in 2.10, breaking many consumers.
# Needs full revdep testing.
>=dev-python/qscintilla-python-2.10
>=x11-libs/qscintilla-2.10

# Michael Palimaka <kensington@gentoo.org> (19 Feb 2017)
# Revdeps need patching.
>=media-gfx/libopenraw-0.1.0

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

# Michał Górny <mgorny@gentoo.org> (26 Jan 2017)
# Pre-release, masked for testing. Major changes since 2.0.4,
# including dropped support for BlueZ 4.
=net-wireless/blueman-2.1_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

# Mart Raudsepp <leio@gentoo.org> (07 Jan 2017)
# No releases of this API version since March 2001, abandoned
# in favour of glib:2 for 14 years; bug 604966.
# Removed at 2017-02-08, mask kept for longer display to users.
dev-libs/glib:1

# Mart Raudsepp <leio@gentoo.org> (06 Jan 2017)
# No releases of this API version since April 2001, abandoned
# in favour of gtk+:2 for 14 years; bug 604862.
# Removed at 2017-02-08, mask kept for longer display to users.
x11-libs/gtk+:1

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

# Markos Chandras <hwoarang@gentoo.org> (10 Dec 2016)
# Reverse dependencies need testing, wrt bug #580760
>=net-libs/libtorrent-rasterbar-1.1.1

# Robin H. Johnson <robbat2@gentoo.org> (18 Nov 2016)
# Depends on slotted lua, 
# odd revisions are slotted lua, 
# even revisions are unslotted lua
=dev-db/redis-3.2.5-r1
=dev-db/redis-3.2.5-r5
=dev-db/redis-3.2.6-r1
=dev-db/redis-3.2.6-r5
=dev-db/redis-3.2.8-r1
=dev-db/redis-3.2.8-r3

# Ian Stakenvicius (17 Nov 2016)
# Does not honour LD_LIBRARY_PATH set in the environment, causing
# all mozilla packages to fail in src_install() when xpcshell is
# called in ${WORKDIR}, #580726
# Segfaults when creating directories #578582
=sys-apps/sandbox-2.11*

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

# Marc Schiffbauer <mschiff@gentoo.org> (14 Jul 2017)
# Breaks often because upstream always releases new version
# under the same filename so checksums will break every now and then.
# Additionally, packaging this program is a pita, so use at your
# own risk.
sci-geosciences/googleearth

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

# Brian Evans <grknight@gentoo.org> (18 Aug 2016)
# Mask new MariaDB alphas for testing
>=dev-db/mariadb-10.2.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> (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

# 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

# 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

# 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

# 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

# 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

# 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

# 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

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

# 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

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

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

# 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

# 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

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

# 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.2.3
=dev-lang/lua-5.2.3-r1
=dev-lang/lua-5.3.3

# 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

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

# 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

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