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
|
####################################################################
# $Id$
#
# When you add an entry to the top of this file, add your name, the date, and
# an explanation of why something is getting masked. Please be extremely
# careful not to commit atoms that are not valid, as it can cause large-scale
# breakage, especially if it ends up in the daily snapshot.
#
## Example:
##
## # Dev E. Loper <developer@gentoo.org> (2012-06-28)
## # 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> (2015-05-23)
## # 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 ---
# James Le Cuirot <chewi@gentoo.org> (2016-04-25)
# Long dead upstream and no longer needed. Removal in 30 days.
dev-java/charva
dev-java/jakarta-slide-webdavclient
dev-java/xml-im-exporter
# Alex Brandt <alunduil@gentoo.org> (3016-04-23)
# Contains collisions with dev-python/ipaddress. See #580388 for more details.
# Masked for removal in 30 days.
dev-python/py2-ipaddress
# Michael Palimaka <kensington@gentoo.org> (2016-04-21)
# Requires package no longer in the tree to be useful. Unmaintained.
# Dead upstream. Masked for removal in 30 days.
app-misc/tablix
# Michael Sterrett <mr_bones_@gentoo.org> (2016-04-19)
# No release in 6 years and segfaults on modern systems. (bug #311809)
# Masked for removal on 20160519
games-sports/toycars
# Sergey Popov <pinkbyte@gentoo.org> (2016-04-19)
# Security mask, wrt bug #577156
# Should be kept in tree for some time
# for users, that may experience problems with new versions
<net-misc/quagga-1.0.20160315
# Patrice Clement <monsieurp@gentoo.org> (2016-04-17)
# Unmaintained ebuilds (EAPI 0!) which don't compile with Java 8.
# Removal in 30 days. See bug 580094.
dev-java/freehep-export
dev-java/freehep-graphics2d
dev-java/freehep-graphicsio
dev-java/freehep-graphicsio-emf
dev-java/freehep-graphicsio-java
dev-java/freehep-graphicsio-pdf
dev-java/freehep-graphicsio-ps
dev-java/freehep-graphicsio-svg
dev-java/freehep-graphicsio-swf
dev-java/freehep-graphicsio-tests
dev-java/freehep-io
dev-java/freehep-mcfio
dev-java/freehep-misc-deps
dev-java/freehep-parameterdatabase
dev-java/freehep-record
dev-java/freehep-rootio
dev-java/freehep-rtti
dev-java/freehep-sio
dev-java/freehep-stdhep
dev-java/freehep-swing
dev-java/freehep-util
dev-java/freehep-xdr
dev-java/freehep-xml
# Andreas K. Hüttel <dilfridge@gentoo.org> (2016-04-16)
# Masked because of security bug 580210
=www-misc/monitorix-3.6.0
=www-misc/monitorix-3.8.1
# Richard Freeman <rich0@gentoo.org> (2016-04-16)
# 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
# Andreas K. Hüttel <dilfridge@gentoo.org> (2016-04-16)
# Work in progress. Do not unmask! Unmasking these ebuilds
# is like fiddling with the infinite improbability drive;
# expect unexpected, weird, and potentially fatal results.
=dev-lang/perl-5.22.2*
=dev-lang/perl-5.24*
# Michael Sterrett <mr_bones_@gentoo.org> (2016-04-06)
# These pin an old crufty version of media-libs/libsfml
# and aren't used by anything in the tree.
# Masked for removal on 20160506
media-libs/csfml
dev-python/pysfml
# Michael Palimaka <kensington@gentoo.org> (2016-04-07)
# Obsolete. Merged into media-libs/libexif.
# Masked for removal in 30 days.
media-libs/libmnote
# Michael Palimaka <kensington@gentoo.org> (2016-04-06)
# Fails to build. Dead upstream. Bug #579020.
# Masked for removal in 30 days.
net-libs/libqinfinity
# Michael Palimaka <kensington@gentoo.org> (2016-04-06)
# Fails to build. Dead upstream. Masked for removal in 30 days.
kde-misc/kte-collaborative
# David Seifert <soap@gentoo.org> (2016-04-05)
# No upstream release since 2007, no revdeps in tree,
# version in tree outdated, bug #454702.
# Masking for removal in 30 days
dev-libs/ptypes
# Patrick Lauer <patrick@gentoo.org> (2016-04-05)
# --configtest is broken, mask until 2.3.1 release
=app-admin/logstash-bin-2.3.0*
# Anthony G. Basile <blueness@gentoo.org> (2016-04-04)
# Dead upstream and no real users
# Masking for removal in 30 days
sys-apps/rsbac-admin
sys-kernel/rsbac-sources
# James Le Cuirot <chewi@gentoo.org> (2016-04-03)
# Legacy migration package that is no longer needed. See
# bug #549508. Removal in 30 days.
dev-java/java-config-wrapper
# James Le Cuirot <chewi@gentoo.org> (2016-04-03)
# 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> (2016-04-03)
# 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
# Michael Sterrett <mr_bones_@gentoo.org> (2016-04-02)
# Doesn't work with latest dev-lang/ocaml; dead upstream
# Masked for removal on 20160502
games-simulation/planets
# Patrick Lauer (2015-03-30)
# Segfaults when creating directories #578582
=sys-apps/sandbox-2.11*
# Mike Frysinger <vapier@gentoo.org (2016-03-28)
# Tons-o-bugs and no actual testing by new author. #578490
dev-libs/libtomcrypt
# Pawel Hajdan jr <phajdan.jr@gentoo.org> (2016-03-25)
# Dev channel releases are only for people who are developers or want more
# experimental features and accept a more unstable release.
>=www-client/chromium-51
# Michael Palimaka <kensington@gentoo.org> (2016-03-24)
# Requires old llvm. Dead upstream.
# Masked for removal in 30 days. Bug #571216.
dev-python/llvmpy
dev-python/llvmmath
dev-python/pykit
# José María Alonso <nimiux@gentoo.org> (2016-03-24)
# Fails to build dev-lisp/sbcl-1.3.3 #563812
=dev-lisp/asdf-3.1.7
=dev-lisp/uiop-3.1.7
# Michael Palimaka <kensington@gentoo.org> (2016-03-24)
# Doesn't run. Unmaintained. Bug #304865.
# Masked for removal in 30 days.
app-cdr/qmultirecord
# Michael Palimaka <kensington@gentoo.org> (2016-03-24)
# Fails to build. Bug #368953.
# Masked for removal in 30 days.
net-p2p/hx
# Aaron Bauman <bman@gentoo.org> (2016-03-19)
# Unpatched security vulnerability per bug #521892.
# Masked for removal in 30 days.
net-irc/srvx
# Aaron Bauman <bman@gentoo.org> (2016-03-19)
# Unpatched security vulnerability per bug #261182.
# Masked for removal in 30 days.
media-sound/shoutcast-server-bin
media-sound/shoutcast-trans-bin
# Lars Wendler <polynomial-c@gentoo.org> (2016-03-20)
# Don't work with latest claws-mail package. Most plugins are now part of
# claws-mail sources and can be en-/disabled via USE flags.
# Masked for removal in 30 days.
mail-client/claws-mail-acpi-notifier
mail-client/claws-mail-address_keeper
mail-client/claws-mail-archive
mail-client/claws-mail-att-remover
mail-client/claws-mail-attachwarner
mail-client/claws-mail-clamd
mail-client/claws-mail-fancy
mail-client/claws-mail-fetchinfo
mail-client/claws-mail-gdata
mail-client/claws-mail-gtkhtml
mail-client/claws-mail-mailmbox
mail-client/claws-mail-newmail
mail-client/claws-mail-notification
mail-client/claws-mail-pdf-viewer
mail-client/claws-mail-perl
mail-client/claws-mail-python
mail-client/claws-mail-rssyl
mail-client/claws-mail-spam-report
mail-client/claws-mail-tnef-parse
mail-client/claws-mail-vcalendar
# Andreas K. Huettel <dilfridge@gentoo.org> (2016-03-19)
# Dead upstream since 2010, new VMware uses new incompatible
# proprietary libview. No other consumers. Removal in 30 days.
# Bug 569930
x11-libs/libview
# Aaron Bauman <bman@gentoo.org> (2016-03-19)
# Unpatched security vulnerability per bug #512356.
# Masked for removal in 30 days.
=app-forensics/chkrootkit-0.49
# Aaron Bauman <bman@gentoo.org> (2016-03-19)
# Unpatched security vulnerability per bug #529712.
# Masked for removal in 30 days.
www-apps/coppermine
# Aaron Bauman <bman@gentoo.org> (2016-03-19)
# Multiple unpatched security vulnerabilities
# per bug #532040. Masked for removal in 30 days.
dev-libs/matrixssl
# James Le Cuirot <chewi@gentoo.org> (2016-03-14)
# Bye bye Java 6! If you really still need it then gnu_andrew will
# continue to maintain icedtea:6 in java-overlay but it is not
# supported by Java team at all. IBM's JVM is still alive but
# downloads are behind a registration wall and Java team does not wish
# to support it. haubi may provide IBM updates though probably only
# for ppc-aix. Removal in 30 days.
dev-java/apple-jdk-bin
dev-java/hp-jdk-bin
dev-java/ibm-jdk-bin:1.6
dev-java/ibm-jre-bin:1.6
dev-java/icedtea-bin:6
<dev-java/icedtea-6.1.13.10:6
dev-java/soylatte-jdk-bin
virtual/jdk:1.6
virtual/jre:1.6
# Hans de Graaff <graaff@gentoo.org> (2016-03-14)
# Not compatible with ruby21+, no reverse dependencies.
dev-ruby/extlib
# Patrice Clement <monsieurp@gentoo.org> (2016-03-14)
# No activity nor release since 2010. Does not compile with Java 8.
# Masked for removal. See bug 577368.
dev-vcs/statsvn
dev-vcs/statcvs
# Mike Gilbert <floppym@gentoo.org> (2016-03-12)
# Drops libsystemd-{daemon,id128,journal,login}.pc.
# Bug: https://bugs.gentoo.org/577158
=sys-apps/systemd-229-r100
# Ian Stakenvicius <axs@gentoo.org> (2016-03-06)
# Mask old versions of thunderbird as they are no longer supported,
# but we keep them in the repo for now in case there is a need
# for them for upgrading old user profiles, etc.
~mail-client/thunderbird-24.8.0
~mail-client/thunderbird-31.8.0
# Alexis Ballier <aballier@gentoo.org> (2016-03-01)
# Breaks some of its rev deps, still in beta stage
>=dev-lang/ocaml-4.03_beta
>=dev-ml/camlp4-4.03
>=dev-ml/ppx_tools-4.03
# Patrice Clement <monsieurp@gentoo.org> (2016-02-29)
# Duplicate of dev-libs/libedit.
# Masked for removal in 30 days.
sys-libs/libedit
# Patrick Lauer <patrick@gentoo.org> (2016-02-22)
# Inactive upstream, build failures, obsoleted by rakudo/perl6
dev-lang/niecza
dev-lang/niecza-bin
# Eray Aslan <eras@gentoo.org> (2016-02-22)
# Mask experimental software
=mail-mta/postfix-3.2*
# Yixun Lan <dlan@gentoo.org> (2016-02-16)
# Mask early development version, leave only upstream stable version
>=sys-cluster/ceph-10
# Sergey Popov <pinkbyte@gentoo.org> (2016-02-15)
# Security mask, wrt bug #519730
<app-emulation/ganeti-2.11.6-r2
# Alexis Ballier <aballier@gentoo.org> (2016-02-15)
# Breaks some of its reverse dependencies.
# Bug 574788
>=media-video/ffmpeg-3.0
>=media-video/mplayer-1.3.0
# Aaron W. Swenson <titanofold@gentoo.org> (2016-02-11)
# Susceptible to security issues and other bugs. Removal pending
# stabilization of 9.5.1, 9.4.6, 9.3.11, 9.2.15, and 9.1.20.
=dev-db/postgresql-9.0.23-r1
# Aaron Bauman <bman@gentoo.org> (2016-02-10)
# Old, no active or proxy maintainer, dead upstream
# and nothing depends on it.
# Masked for removal in 30 days. See bug 573326
dev-python/simplegui
# James Le Cuirot <chewi@gentoo.org> (2016-02-07)
# 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
# Wolfram Schlich <wschlich@gentoo.org> (2016-02-06)
# Mask live ebuild
=net-im/mcabber-9999
# Bernard Cafarelli <voyageur@gentoo.org> (2016-01-27)
# New llvm version, masked for testing
=sys-devel/llvm-3.8.0*
=sys-devel/clang-3.8.0*
# Sergey Popov <pinkbyte@gentoo.org> (2016-01-20)
# Mask new versions of Boost - they are known to cause breakages
~dev-util/boost-build-1.59.0
~dev-libs/boost-1.59.0
# Mike Frysinger <vapier@gentoo.org> (2016-01-18)
# Force people to migrate to the new combined libraries:
# media-libs/elementary & dev-libs/efl. #571796
app-benchmarks/expedite
dev-games/etrophy
dev-libs/ecore
dev-libs/edbus
dev-libs/eet
dev-libs/eeze
dev-libs/efreet
dev-libs/eina
dev-libs/eio
dev-libs/embryo
dev-libs/eobj
dev-libs/ephysics
media-libs/edje
media-libs/emotion
media-libs/ethumb
media-libs/evas
x11-plugins/echievements
# Sergei Trofimovich <slyfox@gentoo.org> (2016-01-19)
# Mask broken package. Exposes badly designed API
# that can't be transparently used in ghc-7.8 and
# ghc-7.10, bug #561122
dev-haskell/extra:0
# Andreas K. Hüttel <dilfridge@gentoo.org> (2016-01-9)
# Errorneously added. Is already in perl-core. Please uninstall.
dev-perl/ExtUtils-Constant
# Pacho Ramos <pacho@gentoo.org> (2016-01-06)
# Unbuildable for a long time, bug #522916. Removal in a month.
net-im/silc-server
# NP-Hardass <NP-Hardass@gentoo.org> (2016-02-05)
# Security issues bug #536334. Remove this entry in a month.
<net-nds/389-ds-base-1.3.2.22
# NP-Hardass <NP-Hardass@gentoo.org> (2016-02-05)
# Security issues bug #536334. Under investigation by maintainer.
app-admin/389-ds-console
net-nds/389-admin
app-admin/389-admin-console
www-apps/389-dsgw
# Andrey Grozin <grozin@gentoo.org> (2016-01-04)
# Needs a bump and substantial ebuild rewrite
=sci-mathematics/reduce-20110414-r1
# Victor Ostorga <vostorga@gentoo.org> (2015-12-30)
# Mask this liferea version because upstream released it broken
=net-news/liferea-1.10.17
# Anthony G. Basile <blueness@gentoo.org> (2015-12-06)
# Masked until we deal with SSLv3, bug #567554
=dev-libs/libressl-2.3*
# Brian Evans <grknight@gentoo.org> (2015-12-02)
# All current targets are masked.
<dev-php/pecl-taint-1.99.99
# Brian Evans <grknight@gentoo.org> (2015-12-02)
# PHP 5.4 is End Of Life and will not receive any further updates
# Please migrate to 5.5 or, preferably 5.6.
dev-lang/php:5.4
~virtual/httpd-php-5.4
# Michał Górny <mgorny@gentoo.org> (2015-10-30)
# 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> (2015-10-27)
# fails to build dev-lisp/sbcl-1.2.16 #563812
# mgorny: dev-lisp/uiop as version-bound revdep
=dev-lisp/asdf-3.1.6
=dev-lisp/uiop-3.1.6
# Justin Lecher <jlec@gentoo.org> (2015-10-23)
# Breaking changes #563540
=app-text/ghostscript-gpl-9.18
# Mike Frysinger <vapier@gentoo.org> (2015-10-18)
# apache-2.4.17 includes support for http2 now.
www-apache/mod_h2
# Mike Pagano <mpagano@gentoo.org> (2015-10-2)
# A regression in kernel 4.1.9 could lead to a system
# lockup. This has been fixed in gentoo-sources-4.1.9-r1
# and the hope is that this patch will make it to 4.1.10
# Expires (2 Oct 2017)
=sys-kernel/vanilla-sources-4.1.9
=sys-kernel/gentoo-sources-4.1.9
# Andreas K. Huettel <dilfridge@gentoo.org> (2015-09-19)
# Masked for security reasons, bugs 516044, 552644
# Keeping it in the tree for now for users who cannot upgrade
# (commercial product, separate licenses for major versions)
=app-emulation/vmware-workstation-9*
=app-emulation/vmware-modules-271*
# Lars Wendler <polynomial-c@gentoo.org> (2015-09-09)
# Masked for testing
>=net-fs/samba-4.3.0
# Lars Wendler <polynomial-c@gentoo.org> (2015-08-20)
# Releases are not from original upstream but from a fork.
# Masked as requested by vapier.
~net-misc/iputils-20160308
# Sebastian Pipping <sping@gentoo.org> (2015-08-8)
# Upcoming, too young to go into testing unmasked
dev-libs/iniparser:4
# Davide Pesavento <pesa@gentoo.org> (2015-07-23)
# Standalone version of qtwebkit from the 2.3 upstream branch.
# Needs revdep testing. Bug #388207.
=dev-qt/qtwebkit-4.10*
# Ian Delaney <idella4@gentoo.org> (2015-07-21)
# The revbump has versions of lua which are also masked.
# Masked until those slotted versions are unmasked
=sys-apps/roccat-tools-3.5.0-r1
# Ben de Groot <yngwin@gentoo.org> (2015-07-20)
# Version bump is a WIP, see bug #524242
# It works (except USE=vamp) but is not up to Gentoo standards yet
>=media-sound/audacity-2.1.1
# Patrick Lauer <patrick@gentoo.org> (2015-07-1)
# Wrong version #553670
=sys-kernel/gentoo-sources-4.1.1
# Patrick Lauer <patrick@gentoo.org> (2015-06-14)
# Has race condition / failure modes that make systems unusable
# See #551724 and duplicates
=sys-fs/udev-init-scripts-29
# Patrick Lauer <patrick@gentoo.org> (2015-04-10)
# Breaks pretty much all consumers, like samba
# Mask until it's more usable
>=net-libs/gnutls-3.4.0
# Michał Górny <mgorny@gentoo.org> (2015-03-28)
# on behalf of gx86-multilib project <multilib@gentoo.org>
# Removed lastrited emul-linux-x86. The mask is kept post-removal
# per Arfrever's request so that the PM warns about masked packages
# being installed.
app-emulation/emul-linux-x86-baselibs
app-emulation/emul-linux-x86-cpplibs
app-emulation/emul-linux-x86-db
app-emulation/emul-linux-x86-gstplugins
app-emulation/emul-linux-x86-gtklibs
app-emulation/emul-linux-x86-gtkmmlibs
app-emulation/emul-linux-x86-medialibs
app-emulation/emul-linux-x86-motif
app-emulation/emul-linux-x86-opengl
app-emulation/emul-linux-x86-qtlibs
app-emulation/emul-linux-x86-sdl
app-emulation/emul-linux-x86-soundlibs
app-emulation/emul-linux-x86-xlibs
app-emulation/emul-linux-x86-jna
# Justin Lecher <jlec@gentoo.org> (2015-02-28)
# Unfixed security problems
# No upstream support anymore
# CVE-2015-{0219,0220,0221,0222,5145}
# #536586
# #554864
=dev-python/django-1.4*
=dev-python/django-1.5*
=dev-python/django-1.6*
# Not supported by any django version upstream supports
dev-python/south
# Michał Górny <mgorny@gentoo.org> (2015-02-11)
# Potentially destructive to @world, bug #539746.
=sys-apps/portage-2.2.16
# Sergei Trofimovich <slyfox@gentoo.org> (2015-01-29)
# Mask live ebuild
=dev-util/radare2-9999
# Anthony G. Basile <blueness@gentoo.org> (2015-01-9)
# p.mask the -9999 version
=dev-misc/i2pd-9999
# Tony Vroon <chainsaw@gentoo.org> (2015-01-5)
# 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*
# Aaron W. Swenson <titanofold@gentoo.org> (2014-12-28)
# Split ebuilds are no longer maintained. Migrate to the unified
# ebuilds invoking the following, substituting SLOT for the desired
# slot and optionally enabling the server and/or docs USE flags:
# emerge dev-db/postgresql:SLOT
# No further action is required.
dev-db/postgresql-docs
dev-db/postgresql-base
dev-db/postgresql-server
# Jeroen Roovers <jer@gentoo.org> (2014-12-12)
# The 96 and 173 branches are no longer supported and remain vulnerable to
# CVE-2014-8298 (bug #532342). You may be able to mitigate the vulnerability by
# disabling GLX indirect rendering protocol support on the X server.
<x11-drivers/nvidia-drivers-304
# Sergey Popov <pinkbyte@gentoo.org> (2014-12-09)
# Security mask, wrt bug #529728
<app-antivirus/clamav-0.98.5
# Richard Yao <ryao@gentoo.org> (2014-11-29)
# Depends on media-libs/lcms:0, which has unspecified security vulnerabilities.
# Masked until mscms.dll.so that links to media-libs/lcms:2 is backported from
# a newer wine, bug #526806.
<app-emulation/crossover-bin-12.5.0
# Patrick Lauer <patrick@gentoo.org> (2014-11-24)
# Missing deps, uninstallable
www-apps/trac-downloads
# Mike Pagano <mpagano@gentoo.org> (2014-10-16)
# A regression in kernels 3.17.0 lead to file system corruption
# for affected systems. This has been fixed in >= 3.17.1
# Expires (16 Oct 2016)
# See Bug #525548.
=sys-kernel/vanilla-sources-3.17.0
=sys-kernel/gentoo-sources-3.17.0
=sys-kernel/aufs-sources-3.17.0
# Michał Górny <mgorny@gentoo.org> (2014-09-15)
# Causes undefined references few layers down (in mediastreamer),
# someone needs to investigate.
>=net-libs/libzrtpcpp-4
# Christian Faulhammer <fauli@gentoo.org> (2014-09-02)
# website not working anymore and will stay like this,
# tool is useless. See bug 504734
app-admin/hwreport
# Sergey Popov <pinkbyte@gentoo.org> (2014-08-28)
# Security mask, wrt bug #519650
# If your application is broken due to this mask,
# please file a separate bug report
<net-dialup/ppp-2.4.7
# Samuli Suominen <ssuominen@gentoo.org> (2014-08-23)
# Some compile problems with media-libs/openexr >= 2.2.0
# See https://bugs.gentoo.org/520240 for more information
>=media-libs/ilmbase-2.2.0
>=media-libs/openexr-2.2.0
>=media-gfx/openexr_viewers-2.2.0
# Robin H. Johnson <robbat2@gentoo.org> (2014-08-04)
# 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*
# Yixun Lan <dlan@gentoo.org> (2014-07-17)
# Masked for proper testing. (Major updates in the code).
=net-misc/tinc-1.1_pre*
# Ulrich Müller <ulm@gentoo.org> (2014-07-15)
# Permanently mask sys-libs/lib-compat and its reverse dependencies,
# pending multiple security vulnerabilities and QA issues.
# See bugs #515926 and #510960.
sys-libs/lib-compat
sys-libs/lib-compat-loki
games-action/mutantstorm-demo
games-action/phobiaii
games-fps/rtcw
games-fps/unreal
games-strategy/heroes3
games-strategy/heroes3-demo
games-strategy/smac
sys-block/afacli
# Mikle Kolyada <zlogene@gentoo.org> (2014-06-27)
# Masked for proper testing. (Major updates in the code).
~dev-perl/PortageXS-0.02.12
~dev-perl/PortageXS-0.2.12
# Robin H. Johnson <robbat2@gentoo.org> (2014-06-21)
# Needs work, but infra needs it for new VM boxes
app-emulation/openstack-guest-agents-unix
app-emulation/xe-guest-utilities
# Tom Wijsman <TomWij@gentoo.org> (2014-06-6)
# Mask gentoo-sources ebuilds that are affected with security bug CVE-2014-3153.
#
# Pinkie Pie discovered an issue in the futex subsystem that allows a
# local user to gain ring 0 control via the futex syscall. An
# unprivileged user could use this flaw to crash the kernel (resulting
# in denial of service) or for privilege escalation.
#
# https://bugs.gentoo.org/show_bug.cgi?id=CVE-2014-3153
# Expires (6 Jun 2016)
=sys-kernel/gentoo-sources-3.2.58-r2
~sys-kernel/gentoo-sources-3.4.90
=sys-kernel/gentoo-sources-3.4.91
~sys-kernel/gentoo-sources-3.10.40
=sys-kernel/gentoo-sources-3.10.41
~sys-kernel/gentoo-sources-3.12.20
=sys-kernel/gentoo-sources-3.12.21
~sys-kernel/gentoo-sources-3.14.4
=sys-kernel/gentoo-sources-3.14.5
# Hans de Graaff <graaff@gentoo.org> (2014-06-1)
# Mask new rubinius version for testing. Current versions have some
# issues that should be solved in the forthcoming rubinius 2.3
# release.
=dev-lang/rubinius-2*
# Markos Chandras <hwoarang@gentoo.org> (2014-05-30)
# Mask beta release
=app-i18n/transifex-client-0.11_beta
# Tom Wijsman <TomWij@gentoo.org> (2014-05-30)
# CVE-2012-1721 - Remote Code Execution Vulnerability
#
# Vulnerable: IBM Java SE 5.0 SR12-FP5
# URL: http://www.securityfocus.com/bid/53959/
dev-java/ibm-jdk-bin:1.5
# Tom Wijsman <TomWij@gentoo.org> (2014-05-03)
# Needs to be further tested and revised by both Java and Ruby herds.
>=dev-java/jruby-1.7.12
dev-ruby/bitescript
dev-ruby/duby
dev-ruby/weakling
# Matti Bickel <mabi@gentoo.org> (2014-04-22)
# Masked slotted lua for testing
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
# Gilles Dartiguelongue <eva@gentoo.org> (2014-04-06)
# Old release, never stable, not working anymore
# See bug #327837, #382667, #492474
<media-video/pitivi-0.90
# Alexander Vershilov <qnikst@gentoo.org> (2014-04-02)
# Multiple vulnerabilities, see #504724, #505860
<sys-kernel/openvz-sources-2.6.32.85.17
# Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> (2014-03-26)
# Affected by multiple vulnerabilities, #445916, #471098 and #472280
<media-libs/mesa-9.1.4
# Sergey Popov <pinkbyte@gentoo.org> (2014-03-20)
# Security mask of vulnerable versions, wrt bug #424167
<net-nds/openldap-2.4.35
# Lars Wendler <polynomial-c@gentoo.org> (2014-03-14)
# Masked for security reasons.
# Do NOT remove this mask or the affected packages without speaking to
# bonsaikitten first! You have been warned!
<net-fs/samba-3.6
# Mike Gilbert <floppym@gentoo.org> (2014-03-04)
# Dev channel releases are only for people who are developers or want more
# experimental features and accept a more unstable release.
www-plugins/chrome-binary-plugins:unstable
# Samuli Suominen <ssuominen@gentoo.org> (2014-03-03)
# gnome-extra/polkit-gnome is the "GTK+ polkit agent" and has no extra
# dependencies that installing lxde-base/lxpolkit would solve, thus
# the only motivation for creation of lxpolkit was to drop the word
# 'gnome' from the package's name. The packages are near identical
# by the outlook, determined by the used GTK+ theme.
#
# Raise yourself above the word 'gnome' and install the de facto GTK+ agent:
# emerge -C lxpolkit
# emerge -1 polkit-gnome
#
# Removal will happen at later date, but since there is no hurry, give it
# until rest of the year.
lxde-base/lxpolkit
# Tim Harder <radhermit@gentoo.org> (2014-02-04)
# Mask development releases
=media-sound/lilypond-2.19*
# Mike Gilbert <floppym@gentoo.org> (2014-01-19)
# To prevent accidental switching of release channels (bug 498306),
# google-chrome has been split into 3 packages:
#
# www-client/google-chrome
# www-client/google-chrome-beta
# www-client/google-chrome-unstable
#
# The stable channel remains as www-client/google-chrome, but has been
# switched to SLOT="0".
#
# Please unmerge your currently installed version and remerge one of the new
# packages.
www-client/google-chrome:beta
www-client/google-chrome:stable
www-client/google-chrome:unstable
# Tony Vroon <chainsaw@gentoo.org> (2014-01-13)
# Asterisk 12 is a short term "standard" release
# containing significant architectural changes.
# This is not for your production kit quite yet.
=net-misc/asterisk-12*
# Justin Lecher <jlec@gentoo.org> (2013-10-14)
# Seems to break all deps - API change?
>=sci-libs/metis-5
# Diego Elio Pettenò <flameeyes@gentoo.org> (2013-10-13)
# Requires a NPN support in mod_ssl (www-server/apache) to work.
# See #471512 for more details.
www-apache/mod_spdy
# Agostino Sarubbo <ago@gentoo.org> (2013-09-23)
# Masked because of vulnerable versions
# DO NOT REMOVE OLDER VERSIONS
# temporarily disabled as it also breaks s390 keywording
#<net-nds/openldap-2.4.35
# Sergey Popov <pinkbyte@gentoo.org> (2013-09-18)
# 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
# Julian Ospald <hasufell@gentoo.org> (2013-07-21)
# Mask all unfetchable versions and those with tons of random
# bugs and segfaults (all). Don't ask for a version bump unless
# there is a working release.
sci-geosciences/googleearth
# Chris Reffett <creffett@gentoo.org> (2013-07-20)
# Uses vulnerable versions of bzip2, but these versions are
# necessary to reconstruct older archives. Use at your own risk.
=app-portage/deltup-0.4.5
# Michael Weber <xmw@gentoo.org> (2013-07-17)
# Upstream next versions
>=sys-boot/raspberrypi-firmware-1_pre
# Tom Wijsman <TomWij@gentoo.org> (2013-06-30)
# Sun JDK and JRE contain critical vulnerabilities and receive no further
# updates; masking to make users aware of this, users that still need this
# package and have no alternative can unmask at their own risk. See bug #473830.
#
# This is continued by Oracle Corporation, which has acquired Sun Microsystems
# in early 2010; as per https://en.wikipedia.gentoo.org/wiki/Sun_acquisition_by_Oracle
#
# Users are suggested to upgrade to one of the newer Oracle packages like
# dev-java/oracle-jdk-bin or dev-java/oracle-jre-bin or choose another
# alternative we provide; eg. the IBM JDK/JRE or the open source IcedTea.
#
# Most of these packages provide a jce USE flag for those whom need the
# Java Cryptographic Extension Unlimited Strength Policy USE flag; whether that
# works depends from VM to VM, it seems to work for most except for the IBM VMs.
dev-java/sun-jdk
dev-java/sun-jre-bin
dev-java/sun-jce-bin
# Julian Ospald <hasufell@gentoo.org> (2013-06-26)
# Depends on masked dev-lang/lua-5.2
=games-emulation/sdlmame-0.149
=games-emulation/sdlmess-0.149
# Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> (2013-06-25)
# Mask new ptlib/opal for breakage, tracked in bug #474742
# Lars Wendler <polynomial-c@gentoo.org> (2014-04-29)
# Adjusted mask so newer versions get covered as well.
>=net-libs/ptlib-2.12.0
>=net-libs/opal-3.12.0
# Pacho Ramos <pacho@gentoo.org> (2013-06-15)
# Upstream stalled, improper rendering (#470818),
# use app-editors/efte instead.
=app-editors/fte-20110708
# Patrick Lauer <patrick@gentoo.org> (2013-05-21)
# broken dependencies -> uninstallable #470712
app-portage/g-ctan
# Michael Weber <xmw@gentoo.org> (2013-04-18)
# Masked due test failures
=app-arch/advancecomp-1.17
# Sergey Popov <pinkbyte@gentoo.org> (2013-04-02)
# Masking =media-libs/ffmpegsource-2.17.4_pre753
# by maintainer's request.
# This version does not work properly, see bug #464078
=media-libs/ffmpegsource-2.17.4_pre753
# Richard Freeman <rich0@gentoo.org> (2013-03-24)
# Contains known buffer overflows. Package generally works
# but should not be fed untrusted input (eg from strangers).
# Masked to ensure users are aware before they install.
app-text/cuneiform
# Tom Wijsman <TomWij@gentoo.org> (2013-03-12)
# 2.5.* has known security and other issues due to an affected
# bundled ffmpeg, see bugs #446468 and #444262.
<media-video/avidemux-2.6.2
# Rick Farina <zerochaos@gentoo.org> (2012-12-21)
# madwifi has been replaced by ath5k and ath9k in kernel
# drivers and is subject to numerous long standing bugs
# stable wpa_supplicant sometimes wants madwifi-ng-tools
#net-wireless/madwifi-ng-tools
net-wireless/madwifi-ng
# Pacho Ramos <pacho@gentoo.org> (2012-10-25)
# obexd changed its API without any warning, it's recommended to ship
# 0.46 until https://bugzilla.gnome.org/682106 is fixed to prevent
# bluetooth-sendto breakage.
>=app-mobilephone/obexd-0.47
# Robin H. Johnson <robbat2@gentoo.org> (2012-02-09)
# Needs to be slotted better
# Andreas K. Hüttel <dilfridge@gentoo.org> (2016-04-08)
# Add dev-perl/Net-Z3950-ZOOM-1.300.0 which requires yaz-4*
=dev-libs/yaz-4*
>=dev-perl/Net-Z3950-ZOOM-1.300.0
# Andreas K. Huettel <dilfridge@gentoo.org> (2012-03-22)
# Even its author admits that it's an ugly hack. Crashes e.g.
# firefox with kde-4.8. Unmask at your own risk.
kde-misc/kgtk
# Samuli Suominen <ssuominen@gentoo.org> (2012-03-06)
# 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> (2011-10-30)
# Masked for security bug #294253, use only at your own risk!
=media-libs/fmod-3*
# Peter Volkov <pva@gentoo.org> (2011-07-23)
# Mask release candidates
=dev-libs/guiloader-2.99.0
=dev-libs/guiloader-c++-2.99.0
=dev-util/crow-designer-2.99.0
# Marijn Schouten <hkBst@gentoo.org> (2011-04-07)
# Masked for number of issues, but can be used to
# test against if people are impatient ;P
# Known issues:
# - Broken emacs support (ulm has promised to look)
# - doesn't build when boehm-gc is built without threads
# - no SLOTting yet!
=dev-scheme/guile-2.0.0
# Markos Chandras <hwoarang@gentoo.org> (2010-11-01)
# Masking alpha releases
net-analyzer/ncrack
# Luca Barbato <lu_zero@gentoo.org> (2010-07-21)
# Not ready for public consumption, clashes with current mesa-git
media-libs/shivavg
# Stefan Briesenick <sbriesen@gentoo.org> (2010-07-21)
# doesn't compile against latest media-libs/spandsp.
# not needed anymore for Asterisk 1.6.
net-misc/asterisk-spandsp_codec_g726
# Mike Frysinger <vapier@gentoo.org> (2010-03-07)
# Very old packages that people should have upgraded away from
# long ago. Courtesy mask ... time to upgrade.
# Added <sys-fs/e2fsprogs as well (halcy0n)
<sys-libs/e2fsprogs-libs-1.41.8
<sys-fs/e2fsprogs-1.41.9
# Robert Piasek <dagger@gentoo.org> (2010-02-23)
# Masking libmapi as it depends on masked samba4
>=net-libs/libmapi-0.9
# Peter Alfredsen <loki_val@gentoo.org> (2009-10-21)
# Masked because this needs a patch to be applied to portage
# to not install the kitchensink and everything else
# into /usr/src/debug with FEATURES=installsources
=dev-util/debugedit-4.4.6-r2
# Diego E. Pettenò <flameeyes@gmail.com> (2009-10-09)
# Untested yet; documented only in Russian, help is appreciated.
sys-auth/pam_keystore
# Diego E. Pettenò <flameeyes@gentoo.org> (2009-08-08)
# on behalf of QA Team
#
# Mass-masking of live ebuilds; we cannot guarantee working state of
# live ebuilds, nor the availability of the server hosting them. As
# per QA team policy, all these need to be kept masked by default, if
# available in the tree.
~app-i18n/skk-jisyo-9999
=app-misc/sleepyhead-9999
app-portage/layman-dbtools
=www-plugins/google-talkplugin-9999
# Tiziano Müller <dev-zero@gentoo.org> (2009-04-08)
# pre-releases
>=app-editors/gobby-0.4.91
# Diego E. Pettenò <flameeyes@gentoo.org> (2009-01-03)
# These packages are not supposed to be merged directly, instead
# please use sys-devel/crossdev to install them.
dev-libs/cygwin
dev-util/mingw-runtime
dev-util/mingw64-runtime
dev-util/w32api
sys-libs/newlib
dev-embedded/msp430-binutils
dev-embedded/msp430-gcc
dev-embedded/msp430-gdb
dev-embedded/msp430-libc
dev-embedded/msp430mcu
dev-embedded/avr-libc
# Chris Gianelloni <wolf31o2@gentoo.org> (2008-03-03)
# Masking due to security bug #194607 and security bug #204067
games-fps/doom3
games-fps/doom3-cdoom
games-fps/doom3-chextrek
games-fps/doom3-data
games-fps/doom3-demo
games-fps/doom3-ducttape
games-fps/doom3-eventhorizon
games-fps/doom3-hellcampaign
games-fps/doom3-inhell
games-fps/doom3-lms
games-fps/doom3-mitm
games-fps/doom3-phantasm
games-fps/doom3-roe
games-fps/quake4-bin
games-fps/quake4-data
games-fps/quake4-demo
# MATSUU Takuto <matsuu@gentoo.org> (2007-04-05)
# to be tested, seems unstable
>=app-i18n/scim-anthy-1.3.0
# Robin H. Johnson <robbat2@gentoo.org> (2006-02-11)
# zlib interaction is badly broken. See bug #124733.
=dev-vcs/cvs-1.12.13*
# <klieber@gentoo.org> (2004-04-01)
# 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
|