summaryrefslogtreecommitdiff
blob: 36a44f772190c485cc095f8b502ab1825236e05c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

####################################################################
#
# When you add an entry to the top of this file, add your name, the date
# in the UTC timezone, 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> (2019-07-01)
## # 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> (2019-07-01)
## # 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 ---

# Michał Górny <mgorny@gentoo.org> (2019-12-30)
# The PyPy packages have been restructured and dev-python/pypy is now
# used unconditionally as the main package.  If you wish to continue
# using prebuilt executables, install dev-python/pypy{,3}-exe-bin
# along with it.
# Removal in 30 days.
dev-python/pypy-bin
dev-python/pypy3-bin

# Andreas Sturmlechner <asturm@gentoo.org> (2019-12-29)
# Currently breaks app-text/texlive-core-2019-r5, bug #704166
~app-text/poppler-0.84.0

# Hans de Graaff <graaff@gentoo.org> (2019-12-27)
# Causes compatibility issues with the bundled versions in some
# dev-lang/ruby slots. Use the bundled version instead. The only
# reverse dependency is dev-ruby/jeweler, which is no longer
# maintained upstream and ruby24-only.
# Removal in 30 days. Bug #703950.
dev-ruby/psych
dev-ruby/jeweler

# Miroslav Šulc <fordfrog@gentoo.org> (2019-12-26)
# Deprecated by upstream, not used anymore in the tree.
# Removal in 30 days.  Bug #703196.
media-libs/libclalsadrv

# David Seifert <soap@gentoo.org> (2019-12-25)
# Py2 only, dead upstream, no py3 port in sight.
# Removal in 30 days.  Bug #703792.
games-rpg/dragonhunt

# David Seifert <soap@gentoo.org> (2019-12-25)
# Py2 only, dead upstream, no py3 port in sight.
# Removal in 30 days.  Bug #703784.
games-puzzle/jools

# David Seifert <soap@gentoo.org> (2019-12-25)
# Py2 only, dead upstream, no py3 port in sight.
# Removal in 30 days.  Bug #703782.
games-puzzle/hexamine

# David Seifert <soap@gentoo.org> (2019-12-25)
# Py2 only, dead upstream, no py3 port in sight.
# Removal in 30 days.  Bug #703780.
games-puzzle/4stattack

# David Seifert <soap@gentoo.org> (2019-12-25)
# Py2 only, dead upstream, no py3 port in sight.
# Removal in 30 days.  Bug #703774.
games-arcade/watermelons

# David Seifert <soap@gentoo.org> (2019-12-25)
# Py2 only, dead upstream, no py3 port in sight.
# Removal in 30 days.  Bug #703772.
games-arcade/triplexinvaders

# David Seifert <soap@gentoo.org> (2019-12-25)
# Py2 only, dead upstream, no py3 port in sight.
# Removal in 30 days.  Bug #703770.
games-arcade/pydance
games-arcade/pydance-songs

# David Seifert <soap@gentoo.org> (2019-12-25)
# Py2 only, no other distro packages it anymore.
# Removal in 30 days.  Bug #703768.
games-arcade/pycadia

# David Seifert <soap@gentoo.org> (2019-12-25)
# Py2 only, no other distro packages it anymore.
# Removal in 30 days.  Bug #703764.
games-arcade/bub-n-bros

# David Seifert <soap@gentoo.org> (2019-12-25)
# Py2 only, upstream abandoned since 2005.
# Removal in 30 days.  Bug #703762.
games-action/accelerator3d

# David Seifert <soap@gentoo.org> (2019-12-25)
# Py2 only, upstream abandoned further development, Broken.
# Removal in 30 days.  Bug #693032.
games-kids/tuxmathscrabble

# Ulrich Müller <ulm@gentoo.org> (2019-12-25)
# Broken SRC_URI. Most distfiles have no license,
# so we cannot distribute them on mirrors.
# Masked for removal in 30 days. Bug #635372.
x11-themes/audacious-themes

# David Seifert <soap@gentoo.org> (2019-12-24)
# Unmaintained, uses dead POSIX streams interface, EAPI 4.
# Bug #692228, Removal in 30 days.
x11-terms/multi-aterm

# James Le Cuirot <chewi@gentoo.org> (2019-12-23)
# No license. HOMEPAGE and SRC_URI are dead.
# Removal in 30 days. See bug #703552.
games-util/xboxgw

# David Seifert <soap@gentoo.org> (2019-12-22)
# Unmaintained, dead upstreams, monstrous build systems.
# Bug #568364, Removal in 30 days.
sci-libs/jmol-acme
sci-libs/libcore
sci-libs/naga
sci-libs/spooles
sci-libs/vecmath-objectclub

# Alfredo Tupone <tupone@gentoo.org> (2019-12-20)
# dev-tcltk/tkXwin functionality is >=dev-lang/tk-8.5
# Removal in 30 days
dev-tcltk/tkXwin

# Brian Evans <grknight@gentoo.org> (2019-12-19)
# PHP 7.1 is end of life and has security issues Bug 703326
# Associated packages are not ready for new versions tracked in bug 702110
# Removal in 30 days
dev-lang/php:7.1
dev-php/pecl-cassandra
<dev-php/pecl-event-2.5
virtual/httpd-php:7.1

# Tomáš Mózes <hydrapolic@gentoo.org> (2019-12-19)
# Needs more testing.
=app-emulation/xen-4.13.0
=app-emulation/xen-pvgrub-4.13.0
=app-emulation/xen-tools-4.13.0

# Ulrich Müller <ulm@gentoo.org> (2019-12-18)
# Live ebuilds for Emacs from Git have been consolidated
# into separate slots of the app-editors/emacs package.
# Please update your package.accept_keywords file accordingly.
# Masked for removal in 30 days. Bug #291296.
app-editors/emacs-vcs

# Anthony G. Basile <blueness@gentoo.org> (2019-12-17)
# Project has been dead upstream for years.
# Removal in 30 days.
app-benchmarks/spew

# Jason A. Donenfeld <zx2c4@gentoo.org> (2019-12-16)
# Simplify FOX packages. Adie, calculator, pathfinder, and shutterbug
# can now be found behind x11-libs/fox[tools], and reswrap is always
# installed by it.
# Removal in 30 days.  Bug #703088. Bug #703084.
app-editors/adie
dev-util/reswrap
sci-calculators/calculator
x11-misc/pathfinder
x11-misc/shutterbug

# Michał Górny <mgorny@gentoo.org> (2019-12-15)
# Live ebuild only.  Not touched since 2012.  Unsurprisingly,
# the included patch no longer applies.  Actually, there's
# sys-fs/yaffs2utils duplicate which is a release.
# Removal in 14 days.  Bug #703040.
sys-fs/yaffs2-utils

# Michał Górny <mgorny@gentoo.org> (2019-12-15)
# Repo gone in 2014.  Never had a release ebuild.  Apparently was broken
# before anyway (bug #508924).
# Removal in 14 days.  Bug #533052.
net-analyzer/gsm-receiver

# Michał Górny <mgorny@gentoo.org> (2019-12-15)
# Unmaintained.  Most of those packages haven't been bumped since 2013,
# few have been updated in 2015.
# Removal in 30 days.  Bug #703032.
dev-util/obs-service-cpanspec
dev-util/obs-service-download_files
dev-util/obs-service-download_src_package
dev-util/obs-service-download_url
dev-util/obs-service-extract_file
dev-util/obs-service-format_spec_file
dev-util/obs-service-generator_driver_update_disk
dev-util/obs-service-github_tarballs
dev-util/obs-service-git_tarballs
dev-util/obs-service-meta
dev-util/obs-service-rearchive
dev-util/obs-service-recompress
dev-util/obs-service-set_version
dev-util/obs-service-source_validator
dev-util/obs-service-tar_scm
dev-util/obs-service-update_source
dev-util/obs-service-verify_file
dev-util/osc
dev-util/suse-build

# Joerg Bornkessel <hd_brummy@gentoo.org> (2019-12-15)
#media-plugins/vdr-console failed after glibc update.
#see wrt bug 692334
#The project is given up by upstream years ago.
#There is no HOMAPAGE and SRC_URI available.
#Package will be removed on ~15 Jan 2020.
media-plugins/vdr-console

# Aaron Bauman <bman@gentoo.org> (2019-12-13)
# These are (mostly) leaf packages with only py2.7
# Please review commit msg. Removal in 30 days
dev-python/arrayterator
dev-python/bjoern
dev-python/carrot
dev-python/cfgparse
dev-python/dbutils
dev-python/dingus
dev-python/ed2551911
dev-python/flask-evolution
dev-python/fpconst
dev-python/functest
dev-python/librharris
dev-python/mocker
dev-python/pyamazon
dev-python/pychart
dev-python/pychecker
dev-python/pyosd
dev-python/pyptlib
dev-python/pysctp
dev-python/python-biggles
dev-python/python-daap
dev-python/python-digest
dev-python/pyutmp
dev-python/pyxenstore
dev-python/py-xmlrpc
dev-python/quixote
dev-python/rackspace-monitoring-cli
dev-python/reconfigure
dev-python/sampy
dev-python/shm
dev-python/simples3
dev-python/yolk
dev-python/yolk-portage

# Aaron Bauman <bman@gentoo.org> (2019-12-13)
# Dead upstream. Fork is available as sci-electronics/drahnr-oregano
# Removal in 30 days
sci-electronics/oregano

# Michał Górny <mgorny@gentoo.org> (2019-12-13)
# The first part of cleanup post the dead ML project.  Those packages
# have no reverse dependencies (except one another, in some cases).
# Due to lack of interest, we are limiting the Gentoo ML packages
# to those that are needed by programs packages for Gentoo.
# Many of those packages are outdated and/or buggy.
# Removal in 30 days.  Bug #695782.
<dev-ml/ANSITerminal-0.8
<dev-ml/OCaml-ImageMagick-0.34-r2
<dev-ml/angstrom-0.10
<dev-ml/angstrom-async-0.10
<dev-ml/angstrom-lwt-unix-0.10
<dev-ml/angstrom-unix-0.10
<dev-ml/async_js-0.10
<dev-ml/atd-1.12
<dev-ml/atdgen-1.12
<dev-ml/bignum-0.10
<dev-ml/bolt-1.4-r1
dev-ml/bson
<dev-ml/camlimages-5
dev-ml/capnp-ocaml
<dev-ml/core_bench-0.10
<dev-ml/core_profiler-0.10
dev-ml/dns-async
dev-ml/dns-lwt
dev-ml/dns-lwt-unix
dev-ml/enumerate
<dev-ml/flow_parser-0.100
dev-ml/fort
dev-ml/gd4o
<dev-ml/gen_js_api-1.0.5
dev-ml/herelib
<dev-ml/incremental-0.10
dev-ml/incremental_kernel
<dev-ml/io-page-2
dev-ml/js-build-tools
<dev-ml/kaputt-1.2-r4
<dev-ml/lambda-term-2
<dev-ml/lwt_glib-1.1
<dev-ml/mccs-1.1.10
<dev-ml/merlin-3.3
<dev-ml/mirage-profile-0.9
dev-ml/mongo
dev-ml/ocaml-bigstring
dev-ml/ocaml-cairo
dev-ml/ocaml-containers
dev-ml/ocamldap
dev-ml/ocamldsort
<dev-ml/ocaml-extunix-0.2
<dev-ml/ocaml-make-6.39.2
<dev-ml/ocaml-mysql-1.2.4
dev-ml/ocamlpam
dev-ml/ocaml-pcap
dev-ml/ocaml-redis
dev-ml/ocaml-redis-lwt
dev-ml/ocaml-redis-sync
dev-ml/ocaml-safepass
dev-ml/ocaml-sha
<dev-ml/ocaml-snappy-0.1.1
dev-ml/ocaml-stdint
<dev-ml/ocaml-text-0.8-r1
dev-ml/ocaml-uint
dev-ml/ocaml-webmachine
dev-ml/ocaml-websocket
<dev-ml/ocsigen-i18n-3.5.0
<dev-ml/ocsigen-start-2
<dev-ml/ocsigen-toolkit-2
dev-ml/odns
dev-ml/ojquery
dev-ml/onanomsg
<dev-ml/opam-file-format-2.0.0
dev-ml/pa_bench
dev-ml/pa_ounit
dev-ml/pa_sexp_conv
dev-ml/pa_structural_sexp
dev-ml/pipebang
<dev-ml/pomap-4.1
dev-ml/postgresql-ocaml
<dev-ml/ppx_deriving_yojson-3.5
<dev-ml/ppx_import-1.6
<dev-ml/pxp-1.2.9-r2
<dev-ml/reason-3
dev-ml/reason-parser
<dev-ml/res-5.0.1
<dev-ml/sedlex-1.99.4-r1
dev-ml/sequence
dev-ml/typerep_extended
<dev-ml/ulex-1.2
<dev-ml/utop-2.4
<dev-ml/uuidm-0.9.7
<dev-ml/xmlm-1.3.0-r1
dev-ml/xstr
<dev-ml/zed-2

# Aaron Bauman <bman@gentoo.org> (2019-12-12)
# EAPI 4, new versions upstream, not bumped
# Removal in 30 days
dev-lang/opendylan
dev-lang/opendylan-bin
dev-libs/mps

# Aaron Bauman <bman@gentoo.org> (2019-12-12)
# Multiple QA issues and docs no longer build
# Removal in 30 days
dev-util/cmt

# Ulrich Müller <ulm@gentoo.org> (2019-12-11)
# No license. HOMEPAGE and SRC_URI are dead.
# Last visible upstream activity in 2000.
# The package contains only 7 man pages in total.
# Masked for removal in 30 days. Bug #702468
app-i18n/man-pages-da

# Aaron Bauman <bman@gentoo.org> (2019-12-10)
# EAPI=4, dead upstream/srcurl/homepage. cannot find new home
# Compression has come along way. Removal in 30 days
media-gfx/tic98

# Lars Wendler <polynomial-c@gentoo.org> (2019-12-10)
# Dead upstream, no homepage, requires grub-0 which is gone
# Also no UEFI support!
# Masked for removal in 30 days (bug #702416)
app-admin/grubconfig

# Aaron Bauman <bman@gentoo.org> (2019-12-10)
# EAPI=4, dead upstream, can't locate new home
# Removal in 30 days
dev-util/kelbt

# Aaron Bauman <bman@gentoo.org> (2019-12-10)
# EAPI=4, fails to build
# Removal in 30 days
dev-util/idutils

# David Seifert <soap@gentoo.org> (2019-12-10)
# Abandoned upstream, broken ncurses linking, last release 8 years ago.
# Bug #677742, #696228. Removal in 30 days.
media-sound/vitunes

# Aaron Bauman <bman@gentoo.org> (2019-12-09)
# EAPI=4, unmaintained upstream, rdep as well
# Removal in 30 days. Open bugs #552934
dev-libs/cityhash
dev-db/hyperdex

# David Seifert <soap@gentoo.org> (2019-12-08)
# Unmaintained, build hangs, tons of other build failures, missing
# dependencies.  Bug #663794, #666916, #666922, #667062, #678068,
# #681678, #684420, #694488. Removal in 30 days.
dev-db/clickhouse

# David Seifert <soap@gentoo.org> (2019-12-08)
# No revdeps, py2 only, needs version bump, practically unmaintained
# in Gentoo. Removal in 30 days.
sci-chemistry/pymol-plugins-psico

# Michał Górny <mgorny@gentoo.org> (2019-12-08)
# Not touched by maintainer since mid-2018.  Fails to build with gcc-9.
# Requires llvm:6 (which is being removed).  Pending version bump.
# Removal in 30 days.  Bug #686162.
sys-devel/byfl

# David Seifert <soap@gentoo.org> (2019-12-08)
# No revdeps, py2 only (the py3 targets don't work properly), last
# release in 2015. Use sci-mathematics/pymc3 as modern replacement.
# Removal in 30 days.
sci-mathematics/pymc

# David Seifert <soap@gentoo.org> (2019-12-08)
# No revdeps, py2 only, upstream HOMEPAGE gone, last release in 2007.
# Removal in 30 days.
sci-mathematics/lybniz

# David Seifert <soap@gentoo.org> (2019-12-08)
# Yet another NIH machine learning package in python. Last release in
# 2012, no revdeps, py2 only. Removal in 30 days.
sci-mathematics/mlpy

# David Seifert <soap@gentoo.org> (2019-12-08)
# No revdeps, py2 only, last release in 2015, lots of QA issues.
# Bug #343743, #347928, #451394, #547714, #623756, #697562.
# Removal in 30 days.
sci-mathematics/nusmv

# David Seifert <soap@gentoo.org> (2019-12-08)
# No revdeps, py2 only, last release in 2008. Removal in 30 days.
sci-mathematics/p9m4

# David Seifert <soap@gentoo.org> (2019-12-08)
# No revdeps, py2 only, bump required and very involved and messy
# buildsystem, tons of QA issues.
# Bug #345233, #459640, #474782, #474784, #474788, #474790, #474792,
# #620942, #631876, #671130. Removal in 30 days.
sci-mathematics/Macaulay2

# David Seifert <soap@gentoo.org> (2019-12-08)
# No revdeps, py2 only, upstream dead, last release in 2011.
# file collisions with sci-chemistry/tinker, bug #597702.
# Removal in 30 days.
sci-mathematics/snns

# David Seifert <soap@gentoo.org> (2019-12-08)
# No revdeps, py2 only, upstream HOMEPAGE gone.
# Removal in 30 days.
sci-mathematics/factmsieve

# David Seifert <soap@gentoo.org> (2019-12-08)
# No revdeps, py2 only, bump required and very involved buildsystem,
# has QA issues, bug #598840. Removal in 30 days.
sci-mathematics/xmds

# Andreas Sturmlechner <asturm@gentoo.org> (2019-12-07)
# Runtime errors/segfaults, ancient, unmaintained, depends on py27.
# Bug 590986, removal in 30 days.
x11-misc/calise

# Andreas Sturmlechner <asturm@gentoo.org> (2019-12-07)
# Fails to build against dev-libs/boost-1.71.0, depends on py27.
# Bug 624222, removal in 30 days.
sci-astronomy/casacore

# Michał Górny <mgorny@gentoo.org> (2019-12-05)
# Last maintainer activity in 2016.  Does not build for quite some time
# already.  Needs a version bump, at the very least.
# Removal in 30 days.  Bug #602024.
app-laptop/nvidiabl

# Michał Górny <mgorny@gentoo.org> (2019-12-05)
# Unmaintained since 2016.  Last touched in 2018.  Pending bump since
# Feb 2019.  Does not build anymore.
# Removal in 30 days.  Bug #695580.
net-wireless/ndiswrapper

# Aaron Bauman <bman@gentoo.org> (2019-12-04)
# These are (mostly) leaf packages with only py2.7
# Please review commit msg. Removal in 30 days
# THIS MASK HAS BEEN CONFIRMED BY THE QA TEAM VIA
# MAJORITY VOTE. YOU CAN REMOVE SINGLE PACKAGES
# IF YOU PERSONALLY STEP IN TO MAINTAIN THEM (AND
# ADD YOURSELF TO THEIR METADATA).
app-misc/hachoir-subfile
app-misc/yworklog
app-text/pdfshuffler
dev-python/anyvc
dev-python/asciitree
dev-python/beanstalkc
dev-python/bicyclerepair
dev-python/buzhug
dev-python/cement
dev-python/cherrytemplate
dev-python/clientcookie
dev-python/dib-utils
dev-python/dirq
dev-python/disqus-python
dev-python/figleaf
dev-python/flask-dashed
dev-python/foolscap
dev-python/gdmodule
dev-python/graphy
dev-python/guppy
dev-python/hachoir-regex
dev-python/happydoc
dev-python/hcluster
dev-python/hcs-utils
dev-python/hp3parclient
dev-python/htmlgen
dev-python/inotifyx
dev-python/irman-python
dev-python/jonpy
dev-python/keyczar
dev-python/keyrings_alt
dev-python/libextractor-python
dev-python/libiscsi-python
dev-python/libnatpmp
dev-python/log4py
dev-python/louie
dev-python/lp_solve
dev-python/lupy
dev-python/m2secret
dev-python/mwlib-ext
dev-python/newt_syrup
dev-python/numdisplay
dev-python/optcomplete
dev-python/piddle
dev-python/pp
dev-python/pyamf
dev-python/pyao
dev-python/pycdf
dev-python/pychef
dev-python/pyclamav
dev-python/pycryptopp
dev-python/pydvdread
dev-python/pyelemental
dev-python/pyifp
dev-python/pykota
dev-python/pylibpcap
dev-python/pyml
dev-python/pynag
dev-python/pyndex
dev-python/py-notify
dev-python/pyoembed
dev-python/pyPdf
dev-python/pyrax
dev-python/py-smbpasswd
dev-python/pystatgrab
dev-python/python-caja
dev-python/python-catcher
dev-python/python-cdb
dev-python/python-exconsole
dev-python/python-fastcgi
dev-python/python-mhash
dev-python/python-oembed
dev-python/python-pam
dev-python/python-pluginloader
dev-python/pyvtk
dev-python/PyZilla
dev-python/qserve
dev-python/RecSQL
dev-python/rlcompleter2
dev-python/ropeide
dev-python/ropemacs
dev-python/sancho
dev-python/sclapp
dev-python/simplesettings
dev-python/slowaes
dev-python/snakefood
dev-python/sphinxcontrib-ditaa
dev-python/sqlitecachec
dev-python/stapler
dev-python/stripogram
dev-python/sudsds
dev-python/superlance
dev-python/supervisor-quick
dev-python/telarchive
dev-python/tgmochikit
dev-python/ttfquery
dev-python/turbolift
dev-python/ushlex
dev-python/vatnumber
dev-python/weberror
dev-python/webhelpers
dev-python/webpy
dev-python/workerpool
dev-util/Orange
dev-vcs/hg-fast-export
dev-vcs/rabbitvcs
net-analyzer/namebench
net-fs/tahoe-lafs
net-misc/irrtree
net-misc/pycnb
net-p2p/pybitmessage
net-print/pykota
www-apps/blohg-tumblelog
x11-misc/magick-rotation

# Miroslav Šulc <fordfrog@gentoo.org> (2019-12-03)
# Project does not exist anymore.
# Removal in 30 days.  Bug #680452.
dev-java/balloontip

# Michał Górny <mgorny@gentoo.org> (2019-12-01)
# Unmaintained Rust packages with incorrect license information.
# Removal in 30 days.  Bug #694414.
app-misc/rq

# Michał Górny <mgorny@gentoo.org> (2019-12-01)
# Multiple unmaintained Go packages with incorrect license information.
# No reverse dependencies.
#
# app-admin/linux-bench: #699274
# dev-go/glide: #694384
# dev-util/drone{,-cli}: #695240  // TODO: promu?
# net-misc/istioctl: #695288
#
# Removal in 30 days.
app-admin/linux-bench
dev-go/glide
net-misc/istioctl

# Michał Górny <mgorny@gentoo.org> (2019-12-01)
# Added in 2013 and not updated since.  Unmaintained upstream since
# inception.  Never had any keywords.
# Removal in 30 days.  Bug #701462.
net-dns/pdns-ldap-backend

# Michał Górny <mgorny@gentoo.org> (2019-12-01)
# Unmaintained.  Incorrect license and potential copyright infringement.
# Removal in 30 days.  Bug #634332.
games-misc/fortune-mod-powerpuff

# Michał Górny <mgorny@gentoo.org> (2019-12-01)
# Unmaintained.  No license and potential copyright infringement.
# Removal in 30 days.  Bug #634318.
games-misc/fortune-mod-smac

# Michał Górny <mgorny@gentoo.org> (2019-12-01)
# Not updated since 2009 and 2004 respectively.  Suspicious license.
# Removal in 30 days.  Bugs #691084 and #701732.
games-misc/fortune-mod-gentoo-dev
games-misc/fortune-mod-gentoo-forums

# Michał Górny <mgorny@gentoo.org> (2019-12-01)
# The plugin is broken with multiple dependencies.  It is also dead
# upstream.  Removing per maintainer's request.
# Removal in 30 days.  Bug #314309.
media-plugins/vdr-coverviewer
media-plugins/vdr-music

# Michał Górny <mgorny@gentoo.org> (2019-12-01)
# Unresolved vulnerability.  Also apparently fails to build (#574048).
# Removal in 30 days.  Bug #463338.
sys-fabric/ibutils

# Michał Górny <mgorny@gentoo.org> (2019-12-01)
# Unmaintained.  Not bumped since 2015.
# Removal in 30 days.  Bug #585126.
www-servers/hiawatha
www-apps/hiawatha-monitor

# Michał Górny <mgorny@gentoo.org> (2019-12-01)
# Unmaintained.  Last release in 2012.  Buggy ebuild.
# Removal in 30 days.  Bug #658302.
app-text/pdfshuffler

# Michał Górny <mgorny@gentoo.org> (2019-12-01)
# Not updated since 2015.  No reverse dependencies.
# Removal in 30 days.  Bug #695392.
dev-python/quixote

# Matt Turner <mattst88@gentoo.org> (2019-12-01)
# browserpass ebuild ported to go-modules, so these modules now have no reverse
# dependencies.
# Removal in 30 days. Bugs #683286, #683310, #687462, #700792
=www-plugins/browserpass-3.0.6
dev-go/zglob
dev-go/logrus

# Bernard Cafarelli <voyageur@gentoo.org> (2019-11-29)
# Beta for new major version with initial Python 3 support
=app-backup/rdiff-backup-1.4.0_beta*

# Jonas Stein <jstein@gentoo.org> (2019-11-26)
# Package is obsolete. Successor is net-wireless/b43-fwcutter
# Bug #537786.
# Removal after 2020-01-01
net-wireless/bcm43xx-fwcutter

# Sergei Trofimovich <slyfox@gentoo.org> (2019-11-25)
# Mask for removal from main tree into ::nix-guix overlay.
# Removal in 30 days.
sys-apps/nix
sys-apps/guix

# Lars Wendler <polynomial-c@gentoo.org> (2019-11-14)
# Breaks archives containing relative paths
# when being called with --no-absolute-filenames
# https://bugs.gentoo.org/700020
=app-arch/cpio-2.13

# Michał Górny <mgorny@gentoo.org> (2019-10-20)
# Testing version that breaks multiple plugins.  Let's keep it masked
# until upstream releases fixed versions.
~xfce-base/xfce4-panel-4.15.0

# Mikle Kolyada <zlogene@gentoo.org> (2019-10-16)
# not needed due to openpam removal. Please
# update your packages running emerge with the
# --changed-deps option if you have problems
# with your system.
virtual/pam

# Lars Wendler <polynomial-c@gentoo.org> (2019-10-16)
# Depends on apache-2.2
dev-libs/OpenSRF

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

# Miroslav Šulc <fordfrog@gentoo.org> (2019-10-16)
# Depends on >=virtual/{jdk,jre}-11 which is masked
dev-java/ant-eclipse-ecj:4.13
dev-java/eclipse-ecj:4.13

# Sergei Trofimovich <slyfox@gentoo.org> (2019-10-16)
# Binary-only slot that provides libmpfr.so.1. If you need that
# library please add a note to describe use case to the bug #697822.
# Masked for removal in a year.
dev-libs/mpfr:1

# Sergei Trofimovich <slyfox@gentoo.org> (2019-10-16)
# Binary-only slot that provides libgmp.so.3. If you need that
# library please add a note to describe use case to the bug #697826.
# Masked for removal in a year.
dev-libs/gmp:3

# Mike Gilbert <floppym@gentoo.org> (2019-10-11)
# Inactive upstream for many years.
# Several open bugs.
# Please migrate to sys-apps/man-db.
sys-apps/man

# Brian Evans <grknight@gentoo.org> (2019-10-01)
# End of life.  Please upgrade.
# Removal in 90 days. Bug 651784
dev-lang/php:5.6
virtual/httpd-php:5.6

# Brian Evans <grknight@gentoo.org> (2019-10-01)
# Old slots for support of PHP <7
# Removal in 90 days. Bug 651784
dev-php/pecl-oauth:0
dev-php/pecl-propro:0
dev-php/pecl-ps:0
dev-php/pecl-raphf:0
dev-php/pecl-rrd:0
dev-php/pecl-ssh2:0
dev-php/pecl-stomp:0
dev-php/pecl-xdiff:0
dev-php/pecl-yaml:0

# Brian Evans <grknight@gentoo.org> (2019-10-01)
# Old extensions which only work with PHP <7
# pecl-mongo is replaced by pecl-monogodb
# Removal in 90 days. Bug 651784
dev-php/PEAR-MDB2_Driver_mysql
dev-php/magickwand
dev-php/pecl-bbcode
dev-php/pecl-cairo
dev-php/pecl-dbx
dev-php/pecl-haru
dev-php/pecl-htscanner
dev-php/pecl-libevent
dev-php/pecl-mongo
dev-php/pecl-mysqlnd_ms
dev-php/pecl-mysqlnd_qc
dev-php/pecl-sphinx
dev-php/pecl-spl_types
dev-php/pecl-svn
dev-php/pecl-xrange
dev-php/suhosin
dev-php/xcache
<dev-php/xhprof-0.9.10

# Stefan Strogin <steils@gentoo.org> (2019-09-27)
# Requires >=dev-lang/lua-5.3 which is masked
>=dev-util/bam-0.5.0

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

# Lars Wendler <polynomial-c@gentoo.org> (2019-09-04)
# Unofficial build. Superseded by official 2.49.5 release.
# Masked for removal.
=www-client/seamonkey-2.49.9.1_p0

# Matt Turner <mattst88@gentoo.org> (2019-09-01)
# <dev-scheme/guile-2 is package.mask'd
<media-sound/lilypond-2.19

# Matt Turner <mattst88@gentoo.org> (2019-09-01)
# TeXmacs is the only remaining package in tree that requires guile-1.8, which
# is unsupported upstream. A TeXmacs port to Guile-2 has been in progress for a
# few years. Bug #436400
app-office/texmacs
<dev-scheme/guile-2

# Mart Raudsepp <leio@gentoo.org> (2019-08-18)
# Fails to dbus activate properly for me. Help welcome figuring it out.
net-misc/gnome-remote-desktop

# Mart Raudsepp <leio@gentoo.org> (2019-07-28)
# GNOME 3.33 development release packages
>=dev-libs/vala-common-0.45
dev-lang/vala:0.46

# Georgy Yakovlev <gyakovlev@gentoo.org> (2019-07-26)
# Mask 5.x version
# It breaks hundreds of py2 ebuilds and not all deps are keyworded
>=dev-python/pytest-5.0.1

# Robin H. Johnson <robbat2@gentoo.org> (2019-07-08)
# Needs LOTS of testing, broke boot on my laptop in early attempts, maybe needs
# matching genkernel work?
>=sys-fs/lvm2-2.03

# Daniel Pielmeier <billie@gentoo.org> (2019-07-06)
# Requires >=dev-lang/lua-5.2 which is masked
>=app-admin/conky-1.11.4

# Andreas K. Hüttel <dilfridge@gentoo.org> (2019-05-11)
# Perl 5.24 will be removed soon. Please upgrade.
<dev-lang/perl-5.26.2
=virtual/perl-Archive-Tar-2.40.100_rc-r6
=virtual/perl-B-Debug-1.230.0-r3
=virtual/perl-CPAN-2.110.100_rc-r6
=virtual/perl-CPAN-Meta-2.150.5-r1
=virtual/perl-Carp-1.400.0-r1
=virtual/perl-Compress-Raw-Bzip2-2.69.0-r1
=virtual/perl-Compress-Raw-Zlib-2.69.0-r1
=virtual/perl-DB_File-1.835.0-r3
=virtual/perl-Data-Dumper-2.160.0-r1
=virtual/perl-Devel-PPPort-3.320.0-r1
=virtual/perl-Digest-MD5-2.540.0-r3
=virtual/perl-Digest-SHA-5.950.100_rc-r6
=virtual/perl-Encode-2.800.100_rc-r4
=virtual/perl-ExtUtils-MakeMaker-7.100.200_rc-r4
=virtual/perl-ExtUtils-ParseXS-3.310.0-r1
=virtual/perl-File-Spec-3.630.100_rc-r4
=virtual/perl-Filter-Simple-0.920.0-r3
=virtual/perl-Getopt-Long-2.480.0-r1
=virtual/perl-HTTP-Tiny-0.56.1_rc-r4
=virtual/perl-I18N-LangTags-0.400.0-r5
=virtual/perl-IO-1.360.100_rc-r4
=virtual/perl-IO-Compress-2.69.1_rc-r4
=virtual/perl-IO-Socket-IP-0.370.0-r3
=virtual/perl-IPC-Cmd-0.920.100_rc-r6
=virtual/perl-JSON-PP-2.273.0.100_rc-r6
=virtual/perl-Locale-Maketext-1.260.100_rc-r6
=virtual/perl-Math-BigInt-1.999.715-r2
=virtual/perl-Math-BigInt-FastCalc-0.400.0-r1
=virtual/perl-Math-BigRat-0.260.802-r1
=virtual/perl-Math-Complex-1.590.0-r9
=virtual/perl-Module-CoreList-5.201.709.220-r2
=virtual/perl-Module-Load-Conditional-0.640.0-r3
=virtual/perl-Module-Metadata-1.0.31-r1
=virtual/perl-Net-Ping-2.430.100_rc-r6
=virtual/perl-Parse-CPAN-Meta-1.441.700.100_rc-r4
=virtual/perl-Perl-OSType-1.9.0-r1
=virtual/perl-Pod-Simple-3.320.0-r1
=virtual/perl-Safe-2.390.0-r3
=virtual/perl-Scalar-List-Utils-1.420.200_rc-r1
=virtual/perl-Storable-2.560.100_rc-r4
=virtual/perl-Sys-Syslog-0.330.100_rc-r6
=virtual/perl-Term-ANSIColor-4.40.0-r1
=virtual/perl-Term-ReadLine-1.150.0-r3
=virtual/perl-Test-1.280.100_rc-r4
=virtual/perl-Test-Harness-3.360.100_rc-r3
=virtual/perl-Test-Simple-1.1.14_p522-r2
=virtual/perl-Thread-Queue-3.90.0-r1
=virtual/perl-Thread-Semaphore-2.120.0-r9
=virtual/perl-Unicode-Collate-1.140.0-r2
=virtual/perl-XSLoader-0.220.0-r4
=virtual/perl-bignum-0.420.100_rc-r4
=virtual/perl-libnet-3.80.100_rc-r4
=virtual/perl-parent-0.234.0-r1
=virtual/perl-podlators-4.70.0-r1
=virtual/perl-threads-2.70.0-r1
=virtual/perl-threads-shared-1.510.0-r1
=virtual/perl-version-0.991.600-r1

# Georgy Yakovlev <gyakovlev@gentoo.org> (2019-04-17)
# The Oracle JDK License has changed for releases starting 2019-04-16
# While it may be fine to use for some usecases it's not comepletely clear
# what is considered "personal use" and if we can legally distribute it.
# License states:
# "You may not:
# make the Programs available in any manner to any third party"
# masking all future versions, removal will follow soon.
# Alternatives: icedtea, icedtea-bin, openjdk, openjdk-bin, openjdk-jre-bin
# Bug: https://bugs.gentoo.org/681828
>dev-java/oracle-jdk-bin-1.8.0.202:1.8
>dev-java/oracle-jre-bin-1.8.0.202:1.8

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

# Matt Turner <mattst88@gentoo.org> (2019-03-16)
# 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

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

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

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

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

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

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

# Andreas Sturmlechner <asturm@gentoo.org> (2018-11-25)
# 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> (2018-11-07)
# 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

# Thomas Deutschmann <whissi@gentoo.org> (2018-10-12)
# 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> (2018-10-07)
# Masked for more testing especially of reverse-deps.
>=dev-games/ogre-1.11.2

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

# Andreas K. Hüttel <dilfridge@gentoo.org> (2018-09-11)
# 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

# James Le Cuirot <chewi@gentoo.org> (2017-12-17)
# 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> (2017-10-18)
# 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
sys-devel/automake:1.9
sys-devel/automake:1.10

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

# Nicolas Bock <nicolasbock@gentoo.org> (2017-10-31)
# 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

# Michał Górny <mgorny@gentoo.org> (2017-05-22)
# 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> (2017-05-21 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.28
<sys-devel/binutils-2.32-r1
<sys-devel/binutils-hppa64-2.32-r1
<sys-libs/binutils-libs-2.32-r1

# Michał Górny <mgorny@gentoo.org> (2017-05-20)
# Old versions of CUDA and their reverse dependencies. They do not
# support GCC 5+, and are really old.
# (updated 2017-12-27 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

# Michael Orlitzky <mjo@gentoo.org> (2017-01-07)
# 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> (2017-01-05)
# Masking for testing
=app-emulation/ganeti-2.16*
=app-emulation/ganeti-2.17*

# Michał Górny <mgorny@gentoo.org> (2016-11-17)
# 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

# 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

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

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

# Matti Bickel <mabi@gentoo.org> (2014-04-22)
# Masked slotted lua for testing
# William Hubbs <williamh@gentoo.org> (2016-08-07)
# Taking this mask since Mabi is retired
# Rafael Martins <rafaelmartins@gentoo.org> (2016-12-04)
# 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.2.4
=dev-lang/lua-5.2.4-r1
=dev-lang/lua-5.3.3
=dev-lang/lua-5.3.3-r1
=dev-lang/lua-5.3.3-r2
=dev-lang/lua-5.3.5
=dev-lang/lua-5.3.5-r1

# 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

# 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

# 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/mingw64-runtime
sys-libs/newlib
dev-embedded/avr-libc