summaryrefslogtreecommitdiff
blob: 3950e1d97f8fd6ece8d279847ea1f6f929693cc7 (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
# 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 ---

# Michał Górny <mgorny@gentoo.org> (2020-03-18)
# Unmaintained.  Version bump pending.  No Python 3 support upstream.
# Removal in 30 days.  Bug #708268.
app-backup/buttersink

# Michał Górny <mgorny@gentoo.org> (2020-03-17)
# Abandoned.  Python 2 only.  Upstream recommends dev-python/suds
# instead.
# Removal in 30 days.  Bug #713056.
dev-python/soappy

# Marc Schiffbauer <mschiff@gentoo.org> (2020-03-17)
# No py3 support, replaced by its successor automx2
# Removal in 30 days. Bug #708410
net-mail/automx

# Michał Górny <mgorny@gentoo.org> (2020-03-17)
# Unmaintained.  Current Gentoo version is from 2015, last upstream
# release in 2017.  Python 2 only.
# Removal in 30 days.  Bug #712950.
mail-filter/spambayes

# Andreas Sturmlechner <asturm@gentoo.org> (2020-03-14)
# Breaks at least dev-games/simgear right now, bug #709878.
~dev-games/openscenegraph-3.6.5

# Mart Raudsepp <leio@gentoo.org> (2020-03-13)
# Masked for testing due to split of libnma needing migration
# and 1.8.25 being an old development release
>=gnome-extra/nm-applet-1.8.25

# Matthew Thode <prometheanfire@gentoo.org> (2020-03-13)
# masked for removal in 14 days. Bug #712310
dev-python/cliff-tablib

# Ulrich Müller <ulm@gentoo.org> (2020-03-11)
# No license. HOMEPAGE is gone.
# Masked for removal in 14 days. Bug #450454.
games-misc/fortune-mod-humorixfortunes

# Matt Turner <mattst88@gentoo.org> (2020-03-11)
# Masked for testing due to removal of libnm-glib (bug #665338)
>=net-misc/networkmanager-1.20

# Michał Górny <mgorny@gentoo.org> (2020-03-11)
# Unmaintained Trac plugins.  Last bumped in 2013.  Blockers
# for Python 2 removal.
# Removal in 30 days.  Bug #712120.
www-apps/trac-accountmanager
www-apps/trac-mercurial
www-apps/trac-tags

# Michał Górny <mgorny@gentoo.org> (2020-03-11)
# The following Mercurial-related tools do not declare support
# for Python 3 and have no maintainers.
# Removal in 30 days.  Bug #712114.
dev-vcs/hgsubversion
dev-vcs/hgsvn
dev-vcs/hgview
dev-vcs/mercurial-server
dev-vcs/tortoisehg

# Alexander Tsoy <alexander@tsoy.me> (2020-03-10)
# media-sound/gtklick: last commit in 2014, python 2 only, blocks
# dev-python/pygtk removal.
# Alternatives: media-sound/kmetronome, media-sound/gtick,
# media-sound/klick (cli)
#
# media-libs/pyliblo: last commit in 2015, the only revdep is
# media-sound/gtklick, there is an actively maintained fork named
# pyliblo3.
#
# Removal in 30 days.  Bug #708172.
media-sound/gtklick
media-libs/pyliblo

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

# Michał Górny <mgorny@gentoo.org> (2020-03-09)
# Multiple releases behind.  Stuck at py3.6.  No reverse dependencies.
# Removal in 30 days.  Bug #711934.
dev-python/tweepy

# Michał Górny <mgorny@gentoo.org> (2020-03-09)
# Unmaintained.  Outdated.  Stuck on py3.6, wrong use of eclass.
# No revdeps -- it is bundled by every consumer anyway.
# Removal in 30 days.  Bug #711932.
dev-util/waf

# Michał Górny <mgorny@gentoo.org> (2020-03-07)
# The following packages are stuck on Python 3.6, and have no reverse
# dependencies.  Please let the Python team know if you find some
# of them still useful.
# Removal in 30 days.  Bug #711808.
dev-python/CacheControl
dev-python/ImageHash
dev-python/ReParser
dev-python/aadict
dev-python/abstract_rendering
dev-python/aioeventlet
dev-python/aiotest
dev-python/amqplib
dev-python/anyjson
dev-python/asciimatics
dev-python/asset
dev-python/atom
dev-python/batinfo
dev-python/bcolz
dev-python/beaker
dev-python/biplist
dev-python/blaze
dev-python/cgroup-utils
dev-python/colander
dev-python/colorful
dev-python/columnize
dev-python/common
dev-python/crumbs
dev-python/d2to1
dev-python/datashape
dev-python/deform
dev-python/distlib
dev-python/django-appconf
dev-python/django-baker
dev-python/django-crispy-forms
dev-python/django-discover-runner
dev-python/django-grappelli
dev-python/django-haystack
dev-python/django-nose
dev-python/django-picklefield
dev-python/django-recaptcha
dev-python/django-select2
dev-python/django-tinymce
dev-python/dogpile-core
dev-python/dynd-python
dev-python/embedly
dev-python/envoy
dev-python/fedmsg
dev-python/flask-admin
dev-python/flask-peewee
dev-python/flask-pymongo
dev-python/flask-socketio
dev-python/flask-uploads
dev-python/flipflop
dev-python/formencode
dev-python/fudge
dev-python/geoalchemy2
dev-python/geopy
dev-python/gevent-socketio
dev-python/gitlabform
dev-python/globre
dev-python/glymur
dev-python/hiredis
dev-python/hiro
dev-python/httreplay
dev-python/husl
dev-python/hvac
dev-python/influxdb
dev-python/into
dev-python/ipcalc
dev-python/iso3166
dev-python/iso_639
dev-python/jog
dev-python/jpype
dev-python/json-tools
dev-python/keepassx
dev-python/kitchen
dev-python/libzilla
dev-python/locustio
dev-python/mailmanclient
dev-python/meteor-ejson
dev-python/mimerender
dev-python/mmh3
dev-python/mockldap
dev-python/multipledispatch
dev-python/netmiko
dev-python/nosehtmloutput
dev-python/odo
dev-python/passwordmeter
dev-python/pdb-clone
dev-python/pdoc
dev-python/peppercorn
dev-python/pgpdump
dev-python/pillowfight
dev-python/placefinder
dev-python/prettyprinter
dev-python/prometheus_flask_exporter
dev-python/pxml
dev-python/py-lz4framed
dev-python/py2neo
dev-python/pycanberra
dev-python/pycipher
dev-python/pycmd
dev-python/pycobertura
dev-python/pydot-ng
dev-python/pyee
dev-python/pyev
dev-python/pyfiglet
dev-python/pygcrypt
dev-python/pygeocoder
dev-python/pyhcl
dev-python/pymtp
dev-python/pynzb
dev-python/pyopencl
dev-python/pyshark
dev-python/pysnmp-apps
dev-python/pysnmp-mibs
dev-python/pysolr
dev-python/pystache
dev-python/pytest-arraydiff
dev-python/pytest-cython
dev-python/pytest-isort
dev-python/pytest-mpl
dev-python/python-afl
dev-python/python-cluster
dev-python/python-ddp
dev-python/python-ebtables
dev-python/python-engineio
dev-python/python-hpilo
dev-python/python-meteor
dev-python/python-otrs
dev-python/python-scsi
dev-python/python-socketio
dev-python/python-twitter
dev-python/python-uinput
dev-python/pythonmagick
<dev-python/pyx-0.15
dev-python/rackspace-monitoring
dev-python/readlike
dev-python/redis-py-cluster
dev-python/regendoc
dev-python/ropemode
dev-python/schedule
dev-python/schema
dev-python/scp
dev-python/setuptools_hg
dev-python/simplekv
dev-python/slackclient
dev-python/spark-parser
dev-python/sphinx-better-theme
dev-python/sphinxcontrib-googleanalytics
dev-python/tempest-lib
dev-python/testify
dev-python/tlslite
dev-python/tpg
dev-python/translationstring
dev-python/trollius
dev-python/twitter
dev-python/uhashring
dev-python/uncompyle6
dev-python/venusian
dev-python/versiontools
dev-python/vulture
dev-python/weasyprint
dev-python/wsgiintercept
dev-python/wtf-peewee
dev-python/xdis
dev-python/zc-buildout

# Mikle Kolyada <zlogene@gentoo.org> (2020-03-07)
# virtual/shadow has the only alive provider.
# sys-apps/hardened-shadow is unmaintained for the past
# five years (at least). Upstream is dead.
# Removal in 30 days.
sys-apps/hardened-shadow
virtual/shadow

# Michał Górny <mgorny@gentoo.org> (2020-03-06)
# Python 2 only.  Last update in 2012.  Blocker for a few dependencies.
# Removal in 30 days.  Bug #708336.
www-apps/ownpaste

# Michał Górny <mgorny@gentoo.org> (2020-03-04)
# Dead.  Last commit in 2011.  Python 2 only.  Requires old version
# of Django.  The Gentoo instance is being replaced by pluto
# (https://github.com/feedreader/pluto).
# Removal in 30 days.  Bug #706362.
www-apps/venus

# Marek Szuba <marecki@gentoo.org> (2020-03-04)
# Most of upstream code has got merged into x-crypto (dev-go/go-crypto),
# and since go-1.13 subsequently into the Go standard library.
# Original code is no longer maintained and contains known bugs.
# Removal in 30 days. Bug #711520.
dev-go/ed25519

# Craig Andrews <candrews@gentoo.org> (2020-03-03)
# Deprecated upstream in favor of dev-libs/rocm-comgr
# Masked for removal in 30 days. Bug #711398
dev-libs/rocm-opencl-driver

# Andreas Sturmlechner <asturm@gentoo.org> (2020-02-29)
# Breaks at least app-text/texlive-core and app-office/libreoffice right now,
# bugs 711096, 711102.
~app-text/poppler-0.86.0
~app-text/poppler-0.86.1

# 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

# Michał Górny <mgorny@gentoo.org> (2020-02-26)
# Effectively unmaintained.  Last upstream commit in 2016.  Multiple
# unresolved bugs.  Python 2 only.  Repology (https://repology.org/)
# provides quite a good replacement.
# Removal in 30 days.  Bug #709458.
app-portage/euscan

# Andreas Sturmlechner <asturm@gentoo.org> (2020-02-26)
# Unmaintained revdep on dev-python/pygtk blocking its removal, py2-only
# Last release in 2011, bug #708106, masked for removal in 30 days.
app-cdr/gtkcdlabel

# Andreas Sturmlechner <asturm@gentoo.org> (2020-02-26)
# Unmaintained revdep on dev-python/pygtk blocking its removal, py2-only
# No plans upstream to port away from pygtk, suggested alternative dupeguru
# not packaged in Gentoo, bug #708112. Masked for removal in 30 days.
app-misc/fslint

# Andreas Sturmlechner <asturm@gentoo.org> (2020-02-26)
# Unmaintained revdep on dev-python/pygtk blocking its removal, py2-only
# Last release in 2012, bug #708124, masked for removal in 30 days.
app-text/keepnote

# Andreas Sturmlechner <asturm@gentoo.org> (2020-02-26)
# Unmaintained revdep on dev-python/pygtk blocking its removal, py2-only
# Last release in 2012, bug #708142, masked for removal in 30 days.
x11-misc/revelation

# Andreas Sturmlechner <asturm@gentoo.org> (2020-02-26)
# Unmaintained revdep on dev-python/pygtk blocking its removal, py2-only
# Last release in 2011, bug #708150, masked for removal in 30 days.
x11-misc/tintwizard

# Andreas Sturmlechner <asturm@gentoo.org> (2020-02-26)
# Unmaintained revdep on dev-python/pygtk blocking its removal, py2-only
# Last activity in 2013, bug #710162, masked for removal in 30 days.
sci-misc/pythoncad

# Andreas Sturmlechner <asturm@gentoo.org> (2020-02-26)
# Unmaintained revdep on dev-python/pygtk blocking its removal, py2-only
# Last release in 2013, bug #710164, masked for removal in 30 days.
sci-electronics/gresistor

# Marek Szuba <marecki@gentoo.org> (2020-02-24)
# Deprecated upstream in Q1'2018 in favour of dev-libs/intel-neo and
# while it officially remains the recommended solution for "legacy HW
# platforms" not supported by NEO (i.e. Sandy Bridge, Ivy Bridge and
# Haswell GPUs), there has been no repository activity since August 2018.
# Only really suitable for code development due to poor performance, some
# OpenCL-aware software (e.g. media-gfx/darktable) explicitly
# blacklists Beignet devices.
# Upstream does not support LLVM versions newer than 7, third-party patches
# exist for 8 and 9 but Beignet built against those versions fails some
# unit tests.
#
# Removal in 30 days. Bug #710640.
dev-libs/beignet

# Michał Górny <mgorny@gentoo.org> (2020-02-24)
# app-admin/packagekit-base is Python 2 only and behind upstream.
# The Portage backend is unmaintained.  Other packages are its reverse
# dependencies.
#
# It is unclear why app-backup/deja-dup needs it unconditionally.
# However, it has not been bumped since 2016.
#
# Removal in 30 days.  Bug #708398.
app-admin/packagekit
app-admin/packagekit-base
app-admin/packagekit-gtk
app-admin/packagekit-qt
app-backup/deja-dup
gnome-extra/gnome-packagekit

# Michał Górny <mgorny@gentoo.org> (2020-02-24)
# Effectively unmaintained in Gentoo.  Multiple versions behind
# upstream.  Python 2 only.
# Removal in 30 days.  Bug #709466.
app-admin/equo
app-admin/matter
sys-apps/entropy
sys-apps/entropy-server

# David Seifert <soap@gentoo.org> (2020-02-23)
# Last release in 2013, the scons SConstruct script uses variables
# that have been removed from Scons years ago and also uses a ton of
# Python 2-only patterns, sed broken. Bug #703906, #710342.
# Masked for removal in 30 days.
games-strategy/boswars

# Andreas Sturmlechner <asturm@gentoo.org> (2020-02-22)
# Last release in 2009, py2-only, blocks dev-python/pygtk removal, bug #708100
# Use media-gfx/mcomix instead. Masked for removal in 30 days.
media-gfx/comix

# Mart Raudsepp <leio@gentoo.org> (2020-02-21)
# Does not compile against new gupnp-1.2 API. No consumers, dead project.
# Removal in 30 days. Bug #710436.
net-libs/gupnp-ui

# Mikle Kolyada <zlogene#gentoo.org> (2020-02-21)
# Tiny package with semi-dead upstream. Unlikely useful.
# Blocks pygtk removal.
# Removal in 30 days.
media-gfx/cropgui

# Andreas Sturmlechner <asturm@gentoo.org> (2020-02-19)
# Last release in 2011, py2-only, blocks dev-python/pygtk removal, bug #708102
# There are plenty other image viewers to choose. Masked for removal in 30 days.
media-gfx/mirage

# Andreas Sturmlechner <asturm@gentoo.org> (2020-02-19)
# No maintainer, py2-only, blocks dev-python/pygtk removal, needs version bump
# See bugs #546024, #706486. Masked for removal in 30 days.
gnome-extra/nautilus-dropbox

# Andreas Sturmlechner <asturm@gentoo.org> (2020-02-19)
# Last release in 2006, py2-only, blocks dev-python/pygtk removal, bug #708134
# Masked for removal in 30 days.
x11-misc/driconf

# Andreas Sturmlechner <asturm@gentoo.org> (2020-02-19)
# Last commit in 2015, py2-only, blocks dev-python/pygtk removal, bug #710170
# Masked for removal in 30 days.
net-wireless/wifi-radar

# Andreas Sturmlechner <asturm@gentoo.org> (2020-02-19)
# Dead upstream, py2-only. Masked for removal in 30 days.
app-misc/pysmssend

# Andreas Sturmlechner <asturm@gentoo.org> (2020-02-19)
# Last release in 2007, py2-only, blocks dev-python/pygtk removal,
# Masked for removal in 30 days.
app-mobilephone/pysms

# Andreas Sturmlechner <asturm@gentoo.org> (2020-02-19)
# Last release and commit in 2007, py2-only, blocks dev-python/pygtk removal,
# bugs #678656, #707632. Masked for removal in 30 days.
media-sound/pympd

# Andreas Sturmlechner <asturm@gentoo.org> (2020-02-19)
# Abandoned upstream, broken by current dbus-python, py2-only, blocks
# dev-python/pygtk removal, bug #626374. Masked for removal in 30 days.
media-sound/volti

# Michał Górny <mgorny@gentoo.org> (2020-02-19)
# (on behalf of QA team)
# Masked due to unresolved vulnerabilities.  Please do not remove
# the mask until they are resolved and confirmed fixed.
# Bugs #629882, #629884.
net-analyzer/zabbix

# Michał Górny <mgorny@gentoo.org> (2020-02-18)
# Dead and unmaintained.  Last release in 2015.  Broken with newer
# versions of Python 3.  No reverse dependencies left.
# Removal in 30 days.  Bug #691044.
dev-python/tlslite

# Michał Górny <mgorny@gentoo.org> (2020-02-17)
# Unmaintained.  Last bumped in 2018.  Blocks dev-qt/qtwebkit removal.
# Removal in 30 days.  Bug #709850.
app-text/openlp

# Michał Górny <mgorny@gentoo.org> (2020-02-17)
# Unmaintained.  No Python 3 support.  Last bumped in 2013.  Numerous
# releases behind upstream.
# Removal in 30 days.  Bug #709460.
app-admin/bcfg2

# Michał Górny <mgorny@gentoo.org> (2020-02-17)
# Unmaintained.  No Python 3 support.  Needs a version bump.
# Removal in 30 days.  Bug #708956.
app-misc/tails-installer

# Michał Górny <mgorny@gentoo.org> (2020-02-17)
# Unmaintained.  Last release in 2009.  Python 2 only, depends on dead
# dev-python/pygtk and dev-python/pygtksourceview.  Multiple unresolved
# bugs including crashes.
# Removal in 30 days.  Bug #708096.
app-portage/porthole

# Michał Górny <mgorny@gentoo.org> (2020-02-17)
# Unmaintained upstream.  Last release in 2008.  Python 2 only.
# No reverse dependencies left.
# Removal in 30 days.  Bug #707906.
dev-python/gnuplot-py

# Michał Górny <mgorny@gentoo.org> (2020-02-17)
# Last release in 2011.  Python 2 only.
# Removal in 30 days.  Bug #705652.
sci-geosciences/tappy

# Michał Górny <mgorny@gentoo.org> (2020-02-17)
# Unmaintained.  Last (alpha) release in 2008.  Python 2 only.  Multiple
# bugs open.
# Removal in 30 days.  Bug #705606.
net-proxy/http-replicator

# Michał Górny <mgorny@gentoo.org> (2020-02-17)
# Discontinued as a standalone package, merged into AstroPy.  No reverse
# dependencies.
# Removal in 30 days.  Bug #704038.
dev-python/asciitable

# Michał Górny <mgorny@gentoo.org> (2020-02-17)
# Superseded by media-gfx/gmic.  Fails to build.
# Removal in 30 days.  Bug #628116.
media-gfx/greycstoration

# Michał Górny <mgorny@gentoo.org> (2020-02-17)
# Unmaintained upstream.  Last release in 2011.  Python 2 only.
# Removal in 30 days.  Bug #703858.
games-strategy/outerspace

# Michał Górny <mgorny@gentoo.org> (2020-02-17)
# Unmaintained upstream.  Last release in 2011, 2.0 branch never
# finished.  Python 2 only.
# Removal in 30 days.  Bug #703856.
games-strategy/lightyears

# Michał Górny <mgorny@gentoo.org> (2020-02-17)
# SRC_URI is dead and the package cannot be mirrored.  Last updated
# in 2016, newer versions are non-trivial to bump.
# Removal in 30 days.  Bug #694548.
net-p2p/soulseek-qt

# Michał Górny <mgorny@gentoo.org> (2020-02-17)
# Effectively unmaintained.  Fails to build for almost a year now.
# Removal in 30 days.  Bug #681054.
games-rpg/arx-fatalis-data
games-rpg/arx-fatalis-demo
games-rpg/arx-libertatis

# Michał Górny <mgorny@gentoo.org> (2020-02-17)
# Unmaintained.  Does not build with any version of app-antivirus/clamav
# available in Gentoo.
# Removal in 30 days.  Bug #672668.
app-antivirus/skyldav

# Michał Górny <mgorny@gentoo.org> (2020-02-17)
# Unmaintained.  Reported test failures.  No reverse dependencies.
# Removal in 30 days.  Bug #659796.
dev-python/Kivy

# Michał Górny <mgorny@gentoo.org> (2020-02-17)
# Based on very old code needing a lot of patches.  Minimal upstream
# activity since early 2011, last patches accepted in 2016.  Multiple
# unresolved bugs.  app-editors/vim[minimal] is the recommended
# replacement.
# Removal in 30 days.  Bug #690102.
app-editors/nvi

# Rich Freeman <rich0@gentoo.org> (2020-02-16)
# Dead upstream, obsolete deps.
app-misc/sleepyhead

# 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

# Stephan Hartmann <stha09@googlemail.com> (2020-02-16)
# Dev channel releases are only for people who
# are developers or want more experimental features
# and accept a more unstable release.
>=www-client/chromium-82

# Mart Raudsepp <leio@gentoo.org> (2020-02-12)
# GNOME 3.35 development release packages
>=dev-libs/vala-common-0.47
dev-lang/vala:0.48

# 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

# Joonas Niilola <juippis@gentoo.org> (2020-02-05)
# Stagnant upstream with latest release from 2016, python2-only, no maintainer
# in Gentoo, no notable ebuild action in years, multiple bugs open. Blocks
# pygtk removal.
# Switch to alternatives such as,
# net-misc/connman, net-misc/dhcpcd, net-misc/netifrc, net-misc/NetworkManager
# and so on. Removal in ~90 days. #708316
net-misc/wicd

# 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.3 uses huge amounts of memory: Bug #705682
# v3.6.1 is the latest version without this issue
=dev-libs/libsass-3.6.3

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

# Mikle Kolyada <zlogene@gentoo.org> (2020-01-13)
# Current versioning breaks portage logic and prevents
# us from adding official releases made by google.
# Please DOWNGRADE to dev-python/nototools-0_pre20200113
=dev-python/nototools-20190320

# Ulrich Müller <ulm@gentoo.org> (2020-01-06)
# Snapshots from Git and pretest versions, masked for testing.
=app-editors/emacs-27.0.50_pre*
~app-editors/emacs-27.0.90

# Jonas Stein <jstein@gentoo.org> (2019-12-30)
# Package masked for removal. Broken SRC_URI,
# last upstream activity was ~16 years ago.
# Bug #704316.
# Removal after 2020-03-01
app-backup/tob

# 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

# 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
~xfce-base/xfce4-panel-4.15.1

# 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

# 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

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

# 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

# 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

# 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.29
<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