summaryrefslogtreecommitdiff
blob: ea0e1a4ed4c40a88f71eebe9a95e2adb933c9615 (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
# Copyright 1999-2020 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 ---

# James Le Cuirot <chewi@gentoo.org> (2020-09-13)
# License issues. app-arch/arj is a better alternative. Removal in 30
# days. See bug #694746.
app-arch/unarj

# Jonas Stein <jstein@gentoo.org> (2020-09-13)
# mpv bash completion is no longer needed and the package is not
# compatible with the remaining packages.
# Masked for removal after 2020-11-01.
# Bug #742395
app-shells/mpv-bash-completion

# Louis Sautier <sbraz@gentoo.org> (2020-09-13)
# Masked for removal in 30 days, unmaintained, no more revdeps.
dev-python/args

# Sam James <sam@gentoo.org> (2020-09-13)
# Dead upstream, EAPI 4, no maintainer
# Removal in 30 days
net-dialup/tkvoice

# Sam James <sam@gentoo.org> (2020-09-13)
# Dead upstream, EAPI 4, no maintainer
# Removal in 30 days
# bug #740954
dev-lang/cll1h

# Sam James <sam@gentoo.org> (2020-09-12)
# Merged into app-text/texlive-core
# Removal in 30 days
dev-tex/chktex

# Sam James <sam@gentoo.org> (2020-09-12)
# Merged into dev-texlive/texlive-bibtexextra
# Removal in 30 days
dev-tex/biblatex-apa

# Mikle Kolyada <zlogene@gentoo.org> (2020-09-12)
# Merged into the texlive-core package.
# Removal in 30 days
dev-tex/detex

# Mikle Kolyada <zlogene@gentoo.org> (2020-09-12)
# Has been a part of a cstex macro for a long time.
# The cste xmacro is provided by the
# dev-texlive/texlive-langczechslovak package.
# Removal in 30 days
dev-tex/csindex

# Mikle Kolyada <zlogene@gentoo.org> (2020-09-12)
# Dead upstream and does not build.
# Removal in 30 days
dev-tex/dvipost

# Louis Sautier <sbraz@gentoo.org> (2020-09-12)
# Masked for removal in 30 days, unmaintained, no revdeps.
# Former dependency of app-admin/supervisor.
dev-python/meld3

# Zac Medico <zmedico@gentoo.org> (2020-09-11)
# Upstream is inactive and does not support OpenSSL 1.1.
# Removal in 30 days. Bug #741614.
net-vpn/peervpn

# Thomas Deutschmann <whissi@gentoo.org> (2020-09-11)
# These versions are not compatible with current stable
# dev-libs/openssl version, bug #741622.
# Removal in 30 days. Please migrate to newer slots.
=virtual/mysql-5.5-r2
dev-db/mariadb:5.5
dev-db/mariadb:10.1

# Michał Górny <mgorny@gentoo.org> (2020-09-11)
# 7.3.2 release candidates.  Masked for testing.
=dev-python/pypy-7.3.2_rc*
=dev-python/pypy3-7.3.2_rc*
=dev-python/pypy-exe-7.3.2_rc*
=dev-python/pypy3-exe-7.3.2_rc*

# Thomas Beierlein <tomjbe@gentoo.org> (2020-09-09)
# Depends on obsolete gnome-base/libgnomeui. 
# Upstream promised to have a better version 
# for nearly a year now, but no release in sight.
# Masked for removal in 30 days.
sci-electronics/linsmith

# Louis Sautier <sbraz@gentoo.org> (2020-09-10)
# Masked for removal in 30 days, no revdeps.
# All former consumers now use os.sendfile available in Python >= 3.3.
dev-python/pysendfile

# Mikle Kolyada <zlogene@gentoo.org> (2020-09-10)
# Merged into the app-text/texlive-core package.
# Removal in 30 days
dev-tex/dvi2tty

# Michał Górny <mgorny@gentoo.org> (2020-09-09)
# Last release in <2003.  Fails to build (bug #691690).
# Removal in 30 days.  Bug #731008.
media-sound/freebirth

# Michał Górny <mgorny@gentoo.org> (2020-09-09)
# These packages still require Python 3.6.  They are either dead
# upstream or their maintainers are simply unresponsive.
# Please do not remove any packages from this list unless you actually
# port them to Python 3.7 *and* 3.8 (3.9 would also be nice).
# Removal in 30 days.  Please find relevant bugs on tracker bug #695996.
app-crypt/acmebot
app-vim/conque
dev-python/redlock-py
dev-python/root_numpy
dev-python/rootpy
dev-util/setconf
sci-misc/vitables

# Michał Górny <mgorny@gentoo.org> (2020-09-09)
# These packages (or package versions) still require Python 2.7.
# They are either dead upstream, their Python 3 porting efforts are
# not progressing or their maintainers are simply unresponsive.
# Please do not remove any packages from this list unless you actually
# port them to Python 3.
# Removal in 30 days.  Please find relevant bugs on tracker bug #694800.
app-misc/mswinurl_launcher
app-misc/mtail
app-text/silvercity
dev-libs/qrosspython
dev-python/SchemaObject
dev-python/oauth
dev-ruby/pygments_rb
dev-util/doxy-coverage
dev-util/mpatch
dev-vcs/cvs2svn
dev-vcs/gitstats
games-rpg/adonthell
games-rpg/wastesedge
games-strategy/0ad
media-sound/codecgraph
net-misc/pssh
net-misc/ris-linux
net-wireless/mousejack
net-wireless/python-wifi
sci-biology/amos
sci-biology/embassy-meme
sci-biology/meme
sci-biology/shrimp
sci-misc/gato
sci-physics/rivet
sys-cluster/heartbeat
x11-misc/dsx

# Michał Górny <mgorny@gentoo.org> (2020-09-09)
# These packages are stuck on Python 2.7.  While the Python dependency
# is optional, I can't test removing it because the packages fail
# to build anyway.
#
# net-analyzer/mk-livestatus: py3 bug #735394, build failure bug #705430
# sci-biology/vienna-rna: py3 bug #735438, build failure bug #707158
# sys-cluster/ganglia: py3 bug #735496, build failure bug #631270
# sys-fs/owfs: py3 bug #735502, build failure bug #707438
net-analyzer/mk-livestatus
sci-biology/vienna-rna
sys-cluster/ganglia
sys-cluster/ganglia-web
sys-fs/owfs

# Louis Sautier <sbraz@gentoo.org> (2020-09-09)
# Masked for removal in 30 days, no revdeps.
# Backport of a module included in Python >= 3.3.
dev-python/backports-unittest-mock

# Michał Górny <mgorny@gentoo.org> (2020-09-09)
# Multiple unresolved vulnerabilities.  Last release in 2013 (but has
# some activity in git).  Not touched by maintainer since 2015.  Stuck
# on Python 2 (bug #735522) with incorrect eclass usage (bug #710258).
# Apparently broken with openssl-1.1 (bug #674246).
# Removal in 30 days.  Bug #715204.
www-servers/cherokee

# Joonas Niilola <juippis@gentoo.org> (2020-09-07)
# Nothing in the tree uses this lib anymore. Removing as redundant.
# Removal in ~30 days. Bug #740868.
dev-python/mini-amf

# Andreas Sturmlechner <asturm@gentoo.org> (2020-09-04)
# No maintainer, defunct with modern browsers, bug #694024.
# Masked for removal in 30 days.
www-plugins/freshplayerplugin

# Andreas Sturmlechner <asturm@gentoo.org> (2020-09-04)
# Depends on deprecated dev-qt/qtwebkit, maintainer unresponsive for 1.5 yr.;
# Upstream dead, fork available, bug #684678. Masked for removal in 30 days.
app-text/cutemarked

# Andreas Sturmlechner <asturm@gentoo.org> (2020-09-04)
# Depends on deprecated dev-qt/qtwebkit, no more revdeps; bug #737928
# Masked for removal in 30 days.
kde-apps/libkgeomap

# Louis Sautier <sbraz@gentoo.org> (2020-09-04)
# Masked for removal in 30 days, no revdeps. Dependency of
# previously removed dev-python/flask-bootstrap
dev-python/flask-appconfig

# Georgy Yakovlev <gyakovlev@gentoo.org> (2020-09-02)
# Masked for removal. No revdeps.
dev-python/ansimarkup

# Rick Farina <zerochaos@gentoo.org> (2020-09-02)
# Masked for removal in 30 days. Obsolete versions
# of kismet and tools which use it are no longer maintained.
# Users should upgrade to a newer version of kismet which
# is supported.
dev-perl/Net-Kismet
net-wireless/kismet-ubertooth
<net-wireless/kismet-2017

# Bernard Cafarelli <voyageur@gentoo.org> (2020-09-02)
# Abandoned upstream in favor of media-libs/libinsane
# No more in-tree users
# Removal in 30 days. Bug #740100
dev-python/pyinsane

# Arfrever Frehtes Taifersar Arahesis <arfrever.fta@gmail.com> (2020-09-01)
# Abandoned long time ago. Last release in 2008. Not ported to GTK+ 3.
# Masked for deletion in 30 days.
# Replacement: Sinhala Wijesekera input method is also provided by M17N library
# which can be used through:
# - app-i18n/fcitx-m17n
# - app-i18n/ibus-m17n
# - app-i18n/scim-m17n
app-i18n/scim-wijesekera

# Arfrever Frehtes Taifersar Arahesis <arfrever.fta@gmail.com> (2020-09-01)
# Mismatched version (bug #695022). Masked to force upgrade to 2.0.4_pre20200306162733.
# (Mask should remain after ebuilds are deleted, until 2021-03-01 or
# until new upstream release with proper versioning.)
~app-i18n/sunpinyin-3.0.0_rc1
~app-i18n/ibus-sunpinyin-3.0.0_rc1
~app-i18n/scim-sunpinyin-3.0.0_rc1
~app-i18n/xsunpinyin-3.0.0_rc1

# Marek Szuba <marecki@gentoo.org> (2020-09-01)
# Uses golang-* eclasses, only a library, all former reverse
# dependencies have long since switched to vendoring.
# Removal in 30 days. Bug #732130.
dev-go/siphash

# Michał Górny <mgorny@gentoo.org> (2020-09-01)
# The following packages are Python 2 only.  All but sys-boot/udk have
# no reverse dependencies; sys-boot/udk's only revdep is sys-boot/refind
# and it removed support for udk in its newest version.  Their
# maintainers have either not replied or requested removing the package.
# Please do not remove the mask unless you port the package to py3.7+.
# Removal in 30 days.  Package bugs found blocking tracker bug #694800.
dev-cpp/icnc
dev-db/tokumx
net-fs/nfstest
sys-boot/udk
sys-cluster/pbs-python

# Michał Górny <mgorny@gentoo.org> (2020-09-01)
# The GitHub repository is gone and upstream's homepage lists only old
# versions.  Python 2 only.  Debian has a py3 patch but it is incomplete
# and fbless crashes when opening a file.
# Removal in 30 days.  Bug #734578.
app-text/fbless

# Sam James <sam@gentoo.org> (2020-08-30)
# Serious security bug, unmaintained.
# Stuck on long-obsolete EAPI 4.
# Several open bugs.
# bug 720732, bug 729714, bug 722644,
# bug 724184.
dev-db/sqliteodbc

# Sam James <sam@gentoo.org> (2020-08-30)
# Serious security vulns, outdated.
# bug 699834. Removal in 30 days.
www-apps/ampache

# Sam James <sam@gentoo.org> (2020-08-30)
# Collection of quite dead net-irc/* pkgs
# Please speak up if you use any of these
# and a modern alternative doesn't work for you.
# None of these have alive upstreams, and we're
# the only distro packaging them in many cases.
# Unmaintained. Removal in 30 days.
# bug 724940, bug 708408, bug 716264, bug 633346
# bug 706898, bug 731188
net-irc/ptlink-ircd
net-irc/ptlink-opm
net-irc/irc-server
net-irc/xaric
net-irc/nebula

# Aaron Bauman <bman@gentoo.org> (2020-08-29)
# EAPI=4, use dev-embedded/libftd[tools] instead
# Removal in 30 days
dev-embedded/ftdi_eeprom

# Aaron Bauman <bman@gentoo.org> (2020-08-29)
# EAPI=4, latest release 4.3.19 in 2019.
# Unmaintained. Removal in 30 days.
app-cdr/pburn

# Aaron Bauman <bman@gentoo.org> (2020-08-29)
# EAPI=4, simple script, relies on hardcoded
# /usr/dict/words for generation. Removal in 30 days.
app-admin/passook

# Sergei Trofimovich <slyfox@gentoo.org> (2020-08-29)
# Abandoned upstream.
# Does not compile against ghc-8.8. Removal in 30 days.
dev-haskell/process-conduit

# Sergei Trofimovich <slyfox@gentoo.org> (2020-08-29)
# Abandoned upstream.
# Does not compile against ghc-8.8. Removal in 30 days.
dev-haskell/citeproc-hs

# Miroslav Šulc <fordfrog@gentoo.org> (2020-08-29)
# Upstream has version 1.1.2, but only for Windows,
# sources are gone. Removal in 30 days.
media-sound/traverso

# Sergei Trofimovich <slyfox@gentoo.org> (2020-08-29)
# Abandoned upstream. Use dev-haskell/cryptonite instead.
# Does not compile against ghc-8.8. Removal in 30 days.
dev-haskell/cipher-blowfish
dev-haskell/cryptocipher

# Aaron Bauman <bman@gentoo.org> (2020-08-28)
# EAPI=4 and fails to compile
# Dead upstream. Removal in 30 days
net-mail/maildirtree

# Sergei Trofimovich <slyfox@gentoo.org> (2020-08-27)
# Abandoned upstream.
# Does not compile against ghc-8.8. Removal in 30 days.
dev-haskell/bio

# Piotr Karbowski <slashbeast@gentoo.org> (2020-08-28)
# Temporary mask due to multiple reports of segfaults at startup, bug #739056 
=x11-base/xorg-server-1.20.9

# Marek Szuba <marecki@gentoo.org> (2020-08-26)
# ROCm has had open-source OpenCL image support since 3.3, and since 3.7
# it no longer attempts to use the proprietary library even when it is
# present. Last but not least, upstream no longer publishes this.
# Removal in 30 days. Bug #739066.
dev-libs/hsa-ext-rocr

# Sergei Trofimovich <slyfox@gentoo.org> (2020-08-24)
# Abandoned upstream.
# Does not compile against ghc-8.8. Removal in 30 days.
# Bug #736052.
games-roguelike/mazesofmonad

# Sergei Trofimovich <slyfox@gentoo.org> (2020-08-24)
# Obsolete package without reverse dependencies.
# Does not compile against ghc-8.8. Removal in 30 days.
dev-haskell/glade

# Sergei Trofimovich <slyfox@gentoo.org> (2020-08-24)
# Obsolete package without reverse dependencies.
# Does not compile against ghc-8.8. Removal in 30 days.
# Bug #735914.
dev-haskell/drift

# Alfredo Tupone <tupone@gentoo.org> (2020-08-23)
# Ported to py3 but not yet released
# Masked to allow py2.7 removal
dev-lang/spark

# Sergei Trofimovich <slyfox@gentoo.org> (2020-08-22)
# Obsolete package without reverse dependencies.
# Use dev-haskell/mustache instead.
# Does not compile against ghc-8.8. Removal in 30 days.
# Bug #735996.
dev-haskell/hastache

# Sergei Trofimovich <slyfox@gentoo.org> (2020-08-22)
# Obsolete package without reverse dependencies.
# Does not compile against ghc-8.8. Removal in 30 days.
# Bug #735782.
dev-haskell/asn1-data
dev-haskell/certificate

# Sergei Trofimovich <slyfox@gentoo.org> (2020-08-22)
# Obsolete package without reverse dependencies.
# Does not compile against ghc-8.8. Removal in 30 days.
dev-lang/epic

# Michał Górny <mgorny@gentoo.org> (2020-08-22)
# Dead since 2011.  Frowned upon for years now.  Python 2 only.
# Finally all reverse dependencies are masked.
# Tracker bug #706462.  Removal in 30 days.
dev-python/pygtk

# Miroslav Šulc <fordfrog@gentoo.org> (2020-08-22)
# SLV2 has been replaced by Lilv. The latest and final version
# of SLV2 is 0.6.6, released on May 26, 2009.
# Removal in 30 days.  Bug #735380.
media-libs/slv2

# Michał Górny <mgorny@gentoo.org> (2020-08-22)
# These packages still require Python 3.6.  They are either dead
# upstream or their maintainers are simply unresponsive.
# Please do not remove any packages from this list unless you actually
# port them to Python 3.7 *and* 3.8 (3.9 would also be nice).
# Removal in 30 days.  Tracker bug #695996.
app-portage/pqlop
app-text/landslide
dev-python/corner
dev-python/dogpile-core
dev-python/girder-client
dev-python/ipynb
dev-python/jira
dev-python/jplephem
dev-python/natgrid
dev-python/pcapy
dev-python/promises
dev-python/pyds9
dev-python/pyflann
dev-python/pygsl
dev-python/python-ntpdshm
dev-python/sphinxcontrib-napoleon
dev-python/textfsm
dev-python/whelk
dev-util/molecule
dev-util/molecule-core
dev-util/molecule-plugins
dev-vcs/git-spindle
media-gfx/birdfont
media-gfx/sigal
media-libs/libxmlbird
<net-analyzer/nagstamon-3.4.1-r1
net-fs/s3ql
net-misc/dmr_utils
sci-chemistry/ParmEd
sci-chemistry/freeon
sci-chemistry/openbabel-python
sci-libs/minfx
sci-mathematics/pymc3
sci-physics/qutip
sci-visualization/yt
sys-apps/elivepatch-client
sys-apps/elivepatch-server

# Michał Górny <mgorny@gentoo.org> (2020-08-22)
# Python 2 only.  You can use app-office/libreoffice{,-bin} instead.
# Removal in 30 days.  Bug #715400.
app-office/openoffice-bin

# Michał Górny <mgorny@gentoo.org> (2020-08-22)
# Python 2 only.  No reverse dependencies left.
# Removal in 30 days.  Bug #735604.
dev-python/faulthandler
dev-python/fdsend

# Michał Górny <mgorny@gentoo.org> (2020-08-22)
# These packages (or package versions) still require Python 2.7.
# They are either dead upstream, their Python 3 porting efforts are
# not progressing or their maintainers are simply unresponsive.
# Please do not remove any packages from this list unless you actually
# port it to Python 3.
# Removal in 30 days.  Tracker bug #694800.
app-emulation/ganeti
app-emulation/ganeti-instance-debootstrap
app-emulation/ganeti-instance-image
app-emulation/virtualbox-bin
app-forensics/openscap
app-misc/email2trac
app-misc/workrave
app-portage/etc-proposals
app-portage/gpytage
dev-db/mysql-workbench
dev-util/bam
media-gfx/displaycal
media-plugins/gimp-resynthesizer
<net-analyzer/linkchecker-10.0.0_pre
net-analyzer/pbgpp
net-libs/openpgm
<net-mail/mailman-3
net-wireless/chirp
net-wireless/rfcat
sci-geosciences/gdal-grass
sci-geosciences/grass
www-apps/trac

# Michał Górny <mgorny@gentoo.org> (2020-08-22)
# Effectively unmaintained.  Optionally uses Python 2.  I could remove
# that but it fails to build anyway.
# Removal in 30 days.  Bug #646748.
games-action/openclonk

# Sergei Trofimovich <slyfox@gentoo.org> (2020-08-21)
# Obsolete package without reverse dependencies.
# Use dev-haskell/regex-tdfa.
# Does not compile against ghc-8.8. Removal in 30 days.
# Bug #736244.
dev-haskell/regex-tdfa-rc

# Sergei Trofimovich <slyfox@gentoo.org> (2020-08-21)
# Obsolete package without reverse dependencies.
# Does not compile against ghc-8.8. Removal in 30 days.
# Bug #736248.
dev-haskell/testpack

# Michał Górny <mgorny@gentoo.org> (2020-08-18)
# Backports of hash algorithms that are built-in since Python 3.6.
# No reverse dependencies left.
# Removal in 30 days.  Bug #737712.
dev-python/pyblake2
dev-python/pysha3

# Kent Fredric <kentnl@gentoo.org> (2020-08-17)
# No reverse dependencies, and gtk2 support is becoming
# obsolete in Gentoo
# Removal in 30 days
dev-perl/gnome2-vfs-perl

# Michał Górny <mgorny@gentoo.org> (2020-08-17)
# Dead pygtk-2 era library.  No reverse dependencies left.
# Removal in 30 days.  Bug #706480.
dev-python/notify-python

# Alfredo Tupone <tupone@gentoo.org> (2020-08-16)
# Ported to py3.8 but not yet released
# Masked to allow py2.7 removal
dev-ada/langkit
dev-ada/libadalang
dev-ada/libadalang-tools
dev-ada/gps

# Zac Medico <zmedico@gentoo.org> (2020-08-16)
# Not ported to py3.7. No reverse deps.
# Removal in 30 days. Bug #719098.
dev-python/mem_top

# Michał Górny <mgorny@gentoo.org> (2020-08-16)
# Unmaintained.  Not ported to py3.7.  The only revdep is queued
# for removal.
# Removal in 30 days.  Bug #719544.
dev-python/robotframework

# Zac Medico <zmedico@gentoo.org> (2020-08-01)
# Not ported to py3.7. No reverse deps.
# Removal in 30 days. Bug #719542.
dev-python/robotbackgroundlogger

# Sergei Trofimovich <slyfox@gentoo.org> (2020-08-16)
# Obsolete package without reverse dependencies.
# Does not compile against ghc-8.8. Removal in 30 days.
# Bug #735902.
dev-haskell/frown

# Michał Górny <mgorny@gentoo.org> (2020-08-16)
# Unmaintained.  Not ported to py3.7.  Not bumped for over a year.
# Removal in 30 days.  Bug #737400.
media-video/photofilmstrip

# Michał Górny <mgorny@gentoo.org> (2020-08-16)
# Unmaintained.  Broken with py3.7.  Upstream archived the repository.
# No reverse dependencies left.
# Removal in 30 days.  Bug #719554.
dev-python/sleekxmpp

# Michał Górny <mgorny@gentoo.org> (2020-08-16)
# Unmaintained.  Not ported to py3.7.  Not bumped since introduction
# in 2015.
# Removal in 30 days.  Bug #719422.
dev-python/pyminuit

# Michał Górny <mgorny@gentoo.org> (2020-08-16)
# Not maintained since 2017.  Not ported to py3.7.  No reverse
# dependencies.
# Removal in 30 days.  Bug #719412.
dev-python/pygpu

# Michał Górny <mgorny@gentoo.org> (2020-08-16)
# Unmaintained.  Not ported to py3.7.  'blocks' is a snapshot from 2013,
# last activity in 2014.  It is the only revdep of 'maintboot'.
# Removal in 30 days.  Bug #718522.
dev-python/maintboot
sys-block/blocks

# Sergei Trofimovich <slyfox@gentoo.org> (2020-08-16)
# Obsolete package without reverse dependencies.
# A metapackage. Removal in 30 days.
dev-haskell/yesod-platform

# Sergei Trofimovich <slyfox@gentoo.org> (2020-08-16)
# Obsolete package without reverse dependencies.
# Does not compile against current ghc-8.8. Removal in 30 days.
dev-haskell/yesod-routes

# Hans de Graaff <graaff@gentoo.org> (2020-08-16)
# Old unmaintained package without reverse dependencies. Block removal
# of insecure dev-ruby/rack versions, bug 730786. Masked for removal
# in 30 days.
dev-ruby/bcat

# Hans de Graaff <graaff@gentoo.org> (2020-08-16)
# Mask old obsolete slots for removal in 30 days.
# Use a newer slot of the same package instead.
dev-ruby/mysql2:0.4
dev-ruby/regexp_property_values:0
dev-ruby/request_store:1.0.5

# Mart Raudsepp <leio@gentoo.org> (2020-08-15)
# Development release, needs testing to ensure valac-0.50
# works for existing packages
>=dev-libs/vala-common-0.49
dev-lang/vala:0.50

# Sergei Trofimovich <slyfox@gentoo.org> (2020-08-14)
# Was subsumed by dev-haskell/network. Use that instead.
# Removal in 30 days. bug #735796
dev-haskell/network-bytestring

# Sergei Trofimovich <slyfox@gentoo.org> (2020-08-14)
# Was not ported to >=ghc-8. Old dev-vcs/darcs was the only user.
# Removal in 30 days. bug #735998
dev-haskell/hashed-storage

# Rick Farina <zerochaos@gentoo.org> (2020-08-14)
# Obsolete, nothing depends on it. Removal in 30 days.
net-wireless/lorcon-old

# Mikle Kolyada <zlogene@gentoo.org> (2020-08-14)
# Obsolete package. Current version is py2-only.
# py3 port has been abandoned for a long time.
# Use bibtex/biber as a replacement.
# Removal in 30 days.
dev-tex/crosstex

# Matt Turner <mattst88@gentoo.org> (2020-08-13)
# Masked for testing
>=sys-auth/sssd-2.3.0

# Jonas Stein <jstein@gentoo.org> (2020-08-13)
# One of many password generators, but with dead upstream in this case.
# Masked for removal after 2020-10-01.
# Bug #629272
app-admin/apg

# Michał Górny <mgorny@gentoo.org> (2020-08-09)
# Build tool with no revdeps left.
# Removal in 30 days.  Bug #736517.
dev-python/paver

# Michał Górny <mgorny@gentoo.org> (2020-08-09)
# Python 2 only.  No commits since 2015.
# Removal in 30 days.  Bug #735334.
dev-vcs/git-bz

# Hans de Graaff <graaff@gentoo.org> (2020-08-07)
# Slot with known security issues. Please use a newer slot
# instead. Removal in 30 days. Bug #713478.
dev-ruby/json:0

# Hans de Graaff <graaff@gentoo.org> (2020-08-07)
# Slot with known security issues. Please use a newer slot
# instead. Removal in 30 days. Bug #733116.
dev-ruby/kramdown:0

# Mikle Kolyada <zlogene@gentoo.org> (2020-08-02)
# consolekit is abandoned upstream.
# People are encouraged to switch to any logind
# implementation (systemd/elogind).
# Removal in 60 days (bug #727730)
sys-auth/consolekit
sec-policy/selinux-consolekit

# Michał Górny <mgorny@gentoo.org> (2020-07-28)
# Masked for the time being due to dep on LLVM 8.  Bug #720236.
<=dev-ada/gps-2019-r1

# Sam James <sam@gentoo.org> (2020-07-20)
# Serious security vulnerabilities, including
# remote code execution. Upstream have not yet
# made a stable release in response to numerous
# CVEs. Applying patches is not a workable
# solution for now because of the fragility
# of reverse dependencies.
# Indefinitely masking until we have a solution
# for this.
# bug #719084
net-analyzer/ntopng
net-analyzer/pmacct
net-libs/nDPI

# Jaco Kroon <jaco@uls.co.za> (2020-07-20)
# Asterisk 11 is EOL. All users should migrate to asterisk 13.
# Removal unspecified, will remain for the foreseeable future. If you need
# help migrating, contact jkroon in #gentoo-voip on freenode.
=net-misc/asterisk-11*
=net-misc/asterisk-g729-11*

# Andreas K. Hüttel <dilfridge@gentoo.org> (2020-07-15)
# In preparation; do not use yet.
=dev-lang/perl-5.32*
~virtual/perl-Archive-Tar-2.360.0
~virtual/perl-autodie-2.320.0
~virtual/perl-Compress-Raw-Bzip2-2.93.0
~virtual/perl-Compress-Raw-Zlib-2.93.0
~virtual/perl-CPAN-2.270.0
~virtual/perl-DB_File-1.853.0
~virtual/perl-Devel-PPPort-3.570.0
~virtual/perl-Digest-MD5-2.550.100_rc
~virtual/perl-Dumpvalue-1.210.0
~virtual/perl-Encode-3.60.0
~virtual/perl-Exporter-5.740.0
~virtual/perl-ExtUtils-CBuilder-0.280.234
~virtual/perl-ExtUtils-MakeMaker-7.440.0
~virtual/perl-Filter-Simple-0.960.0
~virtual/perl-Getopt-Long-2.510.0
~virtual/perl-I18N-LangTags-0.440.0
~virtual/perl-IO-1.430.0
~virtual/perl-IO-Compress-2.93.0
~virtual/perl-IPC-Cmd-1.40.0
~virtual/perl-JSON-PP-4.40.0
~virtual/perl-Math-BigInt-1.999.818
~virtual/perl-Math-BigInt-FastCalc-0.500.900
~virtual/perl-Module-CoreList-5.202.6.200
~virtual/perl-Module-Load-Conditional-0.700.0
~virtual/perl-Module-Metadata-1.0.37
~virtual/perl-Net-Ping-2.720.0
~virtual/perl-parent-0.238.0
~virtual/perl-podlators-4.140.0
~virtual/perl-Pod-Simple-3.400.0
~virtual/perl-Safe-2.410.0
~virtual/perl-Scalar-List-Utils-1.550.0
~virtual/perl-Socket-2.29.0
~virtual/perl-Storable-3.210.0
~virtual/perl-Sys-Syslog-0.360.0
~virtual/perl-Term-ANSIColor-5.10.0
~virtual/perl-Test-Simple-1.302.175
~virtual/perl-Thread-Queue-3.140.0
~virtual/perl-threads-2.250.0
~virtual/perl-threads-shared-1.610.0
~virtual/perl-Time-HiRes-1.976.400
~virtual/perl-Time-Piece-1.340.100
~virtual/perl-Unicode-Normalize-1.270.0

# William Hubbs <williamh@gentoo.org> (2020-07-14)
# The kubernetes split packages are old versions with known security
# issues.
#
#If you haven't already, please upgrade and migrate to sys-cluster/kubernetes:
#
# https://www.gentoo.org/support/news-items/2020-04-03-kubernetes-moving-to-single-package.html
#
# Removal in 60 days. Bug #731804
sys-cluster/kubeadm
sys-cluster/kube-apiserver
sys-cluster/kube-controller-manager
sys-cluster/kubectl
sys-cluster/kubelet
sys-cluster/kube-proxy
sys-cluster/kube-scheduler

# Michał Górny <mgorny@gentoo.org> (2020-07-13)
# Python 2 dev-python/pillow revdeps with extended removal time.
# Removal in 90 days.  Bug #729672.
<net-wireless/gnuradio-3.8
<net-wireless/gr-iio-0.3_p20191219-r1
<net-wireless/gr-paint-0.0_p20200517
<net-analyzer/gr-fosphor-0.0_p20200131
<net-wireless/gr-ieee802154-0.0_p20191006
<net-wireless/gr-iqbal-0.38.1
<net-wireless/gr-osmosdr-0.2.0

# Stephan Hartmann <sultan@gentoo.org> (2020-09-06)
# Dev channel releases are only for people who
# are developers or want more experimental features
# and accept a more unstable release.
>=www-client/chromium-87

# Mart Raudsepp <leio@gentoo.org> (2020-06-06)
# Meson port does not handle multilib yet and has issues
# regarding runstatedir (not using /run).
=net-misc/networkmanager-1.22.10-r11

# Georgy Yakovlev <gyakovlev@gentoo.org> (2020-04-18)
# Unmaintained, vulnerable oracle java ebuilds, even fetching distfiles
# requires agreement to restrictive license
# Revdeps that still depend on oracle variants require javafx
# javafx package  for icedtea or openjdk is in the works and
# will be commited before oracle-jdk is removed.
# Oracle JDK Removal in 30 days.
# Packages will get unmasked after switch to openjfx.
# https://bugs.gentoo.org/681828
dev-java/oracle-jdk-bin
dev-java/oracle-jre-bin
app-text/jabref-bin
dev-java/netbeans-platform
dev-java/netbeans-harness
games-util/pogo-manager-bin
net-p2p/bisq
sci-mathematics/geogebra

# Georgy Yakovlev <gyakovlev@gentoo.org> (2020-03-27)
# Vulnerable old version of icedtea-web #711392
<dev-java/icedtea-web-1.8.4

# Eray Aslan <eras@gentoo.org> (2020-03-09)
# Mask experimental software
=mail-mta/postfix-3.6*

# Miroslav Šulc <fordfrog@gentoo.org> (2020-02-27)
# Depends on dev-java/eclipse-ecj:4.13 which
# depends on >=virtual/{jdk,jre}-11 which is masked
www-servers/tomcat:9

# Mart Raudsepp <leio@gentoo.org> (2020-02-16)
# Fails to automatically launch pipewire for me. Help welcome figuring it out.
net-misc/gnome-remote-desktop

# Stefan Strogin <steils@gentoo.org> (2020-02-12)
# Mask for testing revdeps.
>=dev-games/mygui-3.4.0

# Patrick McLean <chutzpah@gentoo.org> (2020-02-07)
# Mask until sys-libs/libxcrypt[system] is unmasked
>=virtual/libcrypt-2

# Mart Raudsepp <leio@gentoo.org> (2020-02-03)
# Known breakages that need to be handled first, bug 698922
>=x11-libs/pango-1.43

# Robin H. Johnson <robbat2@gentoo.org> (2020-01-26)
# EAPI conversion caused some regressions, need to redesign old ebuilds.
=dev-lang/lua-5.1.5-r5

# Andrew Ammerlaan <andrewammerlaan@riseup.net> (2020-01-26)
# Proxy Maintainers <proxy-maint@gentoo.org>
# v3.6.4 uses huge amounts of memory: Bug #705682
# v3.6.1 is the latest version without this issue
>=dev-libs/libsass-3.6.2

# Georgy Yakovlev <gyakovlev@gentoo.org> (2020-01-26)
# Starting with Firefox 74 Mozilla removes xpi sideloading support
# install from addons.mozilla.org
# passff-host remains in the tree
www-plugins/passff

# Victor Payno <vpayno+gentoo@gmail.com> (2020-01-23)
# Requires slotted lua.
=dev-lang/lua-5.1.5-r103
=dev-lang/lua-5.2.4-r2
=dev-lang/lua-5.3.5-r2

# Michał Górny <mgorny@gentoo.org> (2020-01-16)
# The new version loses Python 2 support but does not introduce any real
# changes.  Let's mask it to reduce the noise, and hopefully try to get
# python2_7 out of default PYTHON_TARGETS first.
>=dev-python/setuptools-47

# 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

# 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
dev-java/ant-eclipse-ecj:4.13
dev-java/eclipse-ecj:4.13

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

# 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

# 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

# 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

# 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

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

# 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

# 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.30-r8
<sys-devel/binutils-2.33.1-r1
<sys-devel/binutils-hppa64-2.33.1

# 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-util/nvidia-cuda-sdk-8
<dev-util/nvidia-cuda-toolkit-8

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