summaryrefslogtreecommitdiff
blob: 7326ac4637982f853b4794cef185a083cbe6dc46 (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
# Copyright 1999-2022 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 with a format of YYYY-MM-DD, 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 ---

# Georgy Yakovlev <gyakovlev@gentoo.org> (2022-12-19)
# This version currently is not compatible with kernel build (yet)
~dev-util/bindgen-0.63.0

# Matt Turner <mattst88@gentoo.org> (2022-12-19)
# Only reverse dependency was x11-terms/eterm which was removed almost a year
# ago.
# Removal on 2023-01-20. Bug #875143.
x11-libs/libast

# Michał Górny <mgorny@gentoo.org> (2022-12-19)
# Unmaintained.  The current sawfish version in ::gentoo is a prerelease
# from 2017, there was a single release in 2021.  Bugs are accumulating.
# Includes dependencies specific to Sawfish.
# Removal on 2023-01-18.  Bug #637978.
dev-libs/librep
x11-libs/rep-gtk
x11-themes/sawfish-themes
x11-wm/sawfish

# Andreas Sturmlechner <asturm@gentoo.org> (2022-12-18)
# Bundled by >=dev-util/hip-5, removal on 2023-01-19
dev-libs/rocclr

# Andreas Sturmlechner <asturm@gentoo.org> (2022-12-18)
# Stuck at 2.7.0, no revdeps; removal on 2023-01-19
dev-libs/rocm-hostcall

# Pacho Ramos <pacho@gentoo.org> (2022-12-18)
# Dead for ages, still included and barely maintained in bluez[deprecated].
# See bug #885459
# Removal: 2023-01-17.  Bug #885459.
net-wireless/bluez-hcidump

# Michał Górny <mgorny@gentoo.org> (2022-12-17)
# The new version requires `multipart` that conflicts
# with dev-python/python-multipart used by dev-python/starlette.
# No reverse dependencies.
# Removal on 2023-01-16.  Bug #886475.
dev-python/test_server

# Michał Górny <mgorny@gentoo.org> (2022-12-17)
# Discontinued upstream.  Fails to build for some users.  No reverse
# dependencies.
# Removal on 2023-01-16.  Bug #650346.
dev-perl/perl-mozldap

# Michał Górny <mgorny@gentoo.org> (2022-12-17)
# No longer downloadable.  Pending version bump with no reply from
# the maintainer.
# Removal on 2023-01-16.  Bug #786912.
media-gfx/iscan-plugin-network-nt

# Michał Górny <mgorny@gentoo.org> (2022-12-17)
# Merged into sys-apps/util-linux.
# Removal on 2023-01-16.  Bug #867220.
net-wireless/rfkill

# Michał Górny <mgorny@gentoo.org> (2022-12-16)
# Requires legacy gnome-base/gconf.  A number of other unresolved
# issues.  Last release in 2014.
# Removal on 2023-01-15.  Bug #873871.
media-video/ogmrip
media-video/shrip

# Michał Górny <mgorny@gentoo.org> (2022-12-16)
# Multiple build failures reported.  Last bumped in 2010.
# Homepage gone.
# Removal on 2023-01-15.  Bug #839723.
net-firewall/nufw

# Michał Górny <mgorny@gentoo.org> (2022-12-16)
# Unmaintained.  Broken with >=net-nds/openldap-2.6.
# Last release in 2009.
# Removal on 2023-01-15.  Bug #835649.
net-nds/adtool

# Michał Górny <mgorny@gentoo.org> (2022-12-16)
# The distfile was removed from Gentoo servers in 2021, and it is
# unclear if we were allowed to host it in the first place.  Also,
# it had a build failure reported in 2020.  No reverse dependencies.
# Removal on 2023-01-15.  Bug #790026.
sci-libs/libcmatrix

# Hans de Graaff <graaff@gentoo.org> (2022-12-16)
# ruby27-only package. No longer maintained upstream.
# No reverse dependencies. Masked for removal in 30 days.
dev-ruby/daemon_controller

# Hans de Graaff <graaff@gentoo.org> (2022-12-16)
# ruby27-only package. No longer maintained upstream.
# No reverse dependencies. Masked for removal in 30 days.
dev-ruby/ferret

# Michał Górny <mgorny@gentoo.org> (2022-12-16)
# Not installable since at least Dec 2020 due to checksum mismatch.
# Ebuild not touched since 2018.
# Removal on 2023-01-15.  Bug #759121.
games-puzzle/mindless

# Michał Górny <mgorny@gentoo.org> (2022-12-16)
# NTLK relies on a large number of corpora that either have unknown
# license, a non-free license or that may be in violation of copyright.
# We have been rubber stamping over this in dev-python/nltk-data
# via LICENSE=all-rights-reserved + RESTRICT=bindist but this
# is not a feasible long-term solution.
#
# dev-python/lunr is the only revdep and has no reverse dependencies
# itself.
#
# Removal on 2023-01-15.  Bug #886203.
dev-python/lunr
dev-python/nltk
dev-python/nltk-data

# Michał Górny <mgorny@gentoo.org> (2022-12-15)
# Fails to build since 2019.  Last bumped in 2017.
# Removal on 2023-01-14.  Bug #688950.
sci-astronomy/skycat

# Marco Scardovi <mscardovi@icloud.com> (2022-12-15)
# We are literally the only distro that still have
# an installation option for that package.
# It still uses EAPI 6 and no real support since
# years.
# Removal on 2023-01-14. Bug #885605
net-print/kyocera-mita-ppds

# Marco Scardovi <mscardovi@icloud.com> (2022-12-15)
# Dead upstream, dead homepage, dead symlinks,
# no revdeps and no version bump since 2011
# Removal on 2023-01-14. Bug #884881
net-print/apsfilter

# James Le Cuirot <chewi@gentoo.org> (2022-12-14)
# Merged into games-engines/scummvm a while back. No longer maintained upstream.
# Removal in 30 days.
games-engines/residualvm

# Jaco Kroon <jaco@uls.co.za> (2022-12-14)
# Multiple open bugs (bug #870910, bug #877731, bug #884815), only one of which
# is trivial to solve.
# With more and more SIP traffic using TLS rather than plaintext UDP or TCP
# this is fast becomming less and less useful.  You should rather use
# asterisk's res_hep which can also report encrypted SIP and RTP to any HEP
# compatible reporting tool (including Homer).
# I'm no longer using this and don't recommend it's use, if you want this to be
# unmasked again, please contact me so that we can figure out how to approach
# maintenance thereof. Last-rites bug #885845.
# Removal on 2023-01-31.
net-voip/captagent

# Hans de Graaff <graaff@gentoo.org> (2022-12-11)
# ruby27-only package. No reverse dependencies.
# Last release in 2012. Removal in 30 days.
dev-ruby/log_buddy

# Hans de Graaff <graaff@gentoo.org> (2022-12-11)
# ruby27-only slot. No reverse dependencies.
# Use a newer mime-types slot.
# Removal in 30 days.
dev-ruby/mime-types:2

# Hans de Graaff <graaff@gentoo.org> (2022-12-11)
# ruby27-only package. No reverse dependencies.
# Last release in 2013. Removal in 30 days.
dev-ruby/nagios_analyzer

# Hans de Graaff <graaff@gentoo.org> (2022-12-11)
# ruby27-only package. No reverse dependencies.
# Last release in 2009. Removal in 30 days.
dev-ruby/ntlm-http

# Hans de Graaff <graaff@gentoo.org> (2022-12-11)
# ruby27-only package. No reverse dependencies.
# Removal in 30 days.
dev-ruby/posix-spawn

# Jonas Stein <jstein@gentoo.org> (2022-12-11)
# Unfetchable and mirror-restricted.
# Upstream discontinued
# Removal after 2023-02-01.  Bug #884715.
dev-cpp/sourcetrail

# Andreas K. Hüttel <dilfridge@gentoo.org> (2022-12-10)
# Fails to build with recent perl. No maintainer, no revdeps.
# Removal in 30 days. Bug 849518
net-p2p/opendchub

# Sam James <sam@gentoo.org> (2022-12-09)
# Breaks compilation of reverse dependencies with broken pkgconfig (pc) file
# bug #885075, https://github.com/libarchive/libarchive/issues/1766
=app-arch/libarchive-3.6.2

# Sam James <sam@gentoo.org> (2022-12-09)
# mpc.h breaks compilation of reverse dependencies, reported upstream to ML
=dev-libs/mpc-1.3.0

# Michał Górny <mgorny@gentoo.org> (2022-12-09)
# Unfetchable as the upstream homepage is gone, and mirror-restricted.
# No package activity since 2018.
# Removal on 2023-01-08.  Bug #668090.
games-strategy/netherearth

# Michał Górny <mgorny@gentoo.org> (2022-12-08)
# Seems to break some logic in pkg_resources.  Masked for the time being
# to prevent breakage.
>=dev-python/packaging-22.0

# Ionen Wolkens <ionen@gentoo.org> (2022-12-07)
# Formerly added to apply binary git patches to wine-staging without git, but
# has not been used since 2017 and stuck on EAPI-6. Alternatives: dev-vcs/git
# Removal: 2023-01-06.
dev-util/patchbin

# Sam James <sam@gentoo.org> (2022-12-07)
# HOMEPAGE & remote-id are for a different project, SRC_URI is gone,
# only results on Google are for Gentoo mirrors, EAPI 6. Removal on 2023-01-07.
# bug #630264, bug #655964, bug #750071.
dev-vcs/git-pimp

# Sam James <sam@gentoo.org> (2022-12-07)
# These versions have been masked for testing since 2014(!). These versions
# had a controversial licence change and therefore had limited adoption.
# See also the old 2021-05-30-deprecate-old-bdb-slots news item for
# additional context.
# Removal on 2023-01-07.
=sys-libs/db-6.1*
=sys-libs/db-6.2*
=sys-libs/db-18.1*

# Naohiro Aota <naota@gentoo.org> (2022-12-07)
# Masked for removal in 30 days. Depends on gnome-base/gconf. Last release
# in 2011. See bug #873880.
sys-apps/gpet

# David Seifert <soap@gentoo.org> (2022-12-06)
# EAPI 6, untouched for years, no revdeps. Removal on 2023-01-05.
media-video/nvidia-video-codec

# Sam James <sam@gentoo.org> (2022-12-06)
# Broke C++ reverse dependencies. Please upgrade to 1.1.0-r1. See bug #884369.
=x11-libs/libICE-1.1.0

# Hans de Graaff <graaff@gentoo.org> (2022-12-05)
# ruby27-only package. No longer maintained upstream. Last release in 2017.
# No reverse dependencies. Removal in 30 days.
dev-ruby/hipchat

# Hans de Graaff <graaff@gentoo.org> (2022-12-05)
# This package has been subsumed into its only consumer:
# dev-ruby/nio4r. It is no longer developed, and its last standalone
# release was 11 years ago. Removal in 30 days.
dev-ruby/iobuffer

# Marek Szuba <marecki@gentoo.org> (2022-12-05)
# No releases since 2003 (!), upstream effectively dead, no Unicode support,
# EAPI 6. Removal in 30 days (#884429)
app-editors/elvis

# Robin H. Johnson <robbat2@gentoo.org> (2022-12-04)
# sys-boot/mbr-gpt was a bizzare package extremely sensitive to compiler &
# linker changes. I don't know of any remaining consumers other than one weird
# system I have.
# If you're a consumer: syslinux gptmbr was the successor to this approach,
# you'll need to replace the contents of your BIOS Boot Partition, because it's
# not a direct 1:1 change.
# Only upstream release in 2008. Removal in 30 days.
sys-boot/mbr-gpt

# Hans de Graaff <graaff@gentoo.org> (2022-12-03)
# ruby27-only package with no reverse dependencies.
# Last release in 2019. Removal in 30 days.
dev-ruby/logue

# Hans de Graaff <graaff@gentoo.org> (2022-12-04)
# Obsolete slot without reverse dependencies. Use a newer
# public_suffix slot instead. Masked for removal in 30 days.
dev-ruby/public_suffix:3

# Hans de Graaff <graaff@gentoo.org> (2022-12-04)
# Obsolete slot without reverse dependencies. Use a newer
# rspec-rails slot instead. Masked for removal in 30 days.
dev-ruby/rspec-rails:4

# Hans de Graaff <graaff@gentoo.org> (2022-12-04)
# Obsolete slot without reverse dependencies. Use a newer
# selenium-webdriver slot instead. Masked for removal in 30 days.
dev-ruby/selenium-webdriver:3

# Hans de Graaff <graaff@gentoo.org> (2022-12-03)
# ruby27-only packages with no other reverse dependencies.
# Last releases in 2013 and 2015. Removal in 30 days.
dev-ruby/textpow
dev-ruby/ultraviolet

# Hans de Graaff <graaff@gentoo.org> (2022-12-03)
# Obsolete slot without reverse dependencies. Use a newer vcr
# slot instead. Masked for removal in 30 days.
dev-ruby/vcr:3

# Sam James <sam@gentoo.org> (2022-12-03)
# Dev channel releases are only for people who
# are developers or want more experimental features
# and accept a more unstable release.
>=www-client/chromium-110

# Andreas Sturmlechner <asturm@gentoo.org> (2022-12-03)
# No purpose anymore after <dev-libs/boost-1.80 cleanup.
# Removal on 2022-12-16
dev-util/boost-build

# Hans de Graaff <graaff@gentoo.org> (2022-12-03)
# Obsolete slot without reverse dependencies. Use a newer faraday
# slot instead. Masked for removal in 30 days.
dev-ruby/faraday:0

# Hans de Graaff <graaff@gentoo.org> (2022-12-03)
# Obsolete slot without reverse dependencies. Use a newer net-ssh
# slot instead. Masked for removal in 30 days.
dev-ruby/net-ssh:5

# Hans de Graaff <graaff@gentoo.org> (2022-12-03)
# ruby27-only packages. No recent releases. No reverse dependencies
# anymore. Maksed for removal in 30 days.
dev-ruby/rspec-retry

# Oz Tiram <oz.tiram@gmail.com> (2022-12-03)
# Mate-desktop no longer supports gtk+:2, so there is
# no need for this package. Removal on 2023-01-03.
x11-themes/mate-themes-meta

# Hans de Graaff <graaff@gentoo.org> (2022-12-02)
# Old cucumber slots and dependencies for already removed
# cucumber-3. These have no value as standalone packages.
# Removal in 14 days.
dev-ruby/gherkin
dev-util/cucumber-core:3.2
dev-util/cucumber-expressions
dev-util/cucumber-tag_expressions
dev-util/cucumber-wire:0
dev-util/protobuf-cucumber

# Hans de Graaff <graaff@gentoo.org> (2022-12-01)
# Old slot without dependencies on it. Blocks removal of
# ruby27-only dev-util/cucumber-3.x. Use a newer slot instead.
# Removal in 30 days.
dev-util/aruba:1

# Ionen Wolkens <ionen@gentoo.org> (2022-11-30)
# Stuck on ruby27 and ruby-gtk2, upstream gone and no other distros
# seem to package this (also barely functional using current ruby
# and has a tendency to crash).
# Removal: 2022-12-30.
games-board/camato

# Ulrich Müller <ulm@gentoo.org> (2022-11-30)
# SLOTs 23 and 24 of app-editors/emacs, corresponding to GNU Emacs
# versions 23.4 and 24.5. These versions were released in January 2012
# and April 2015, respectively, and have a non-trivial security issue
# with ctags. Please upgrade to >=app-editors/emacs-25 and update your
# Emacs Lisp packages with emacs-updater.
# Masked for removal in 30 days. Bugs #882347, #882349, #883687.
app-editors/emacs:23
app-editors/emacs:24

# John Helmert III <ajak@gentoo.org> (2022-11-29)
# Unmaintained and outdated in Gentoo, compatibility issues with
# openssl-1.1. Removal in 30 days. Bug #696936.
sys-apps/ucspi-ssl

# John Helmert III <ajak@gentoo.org> (2022-11-29)
# Authentication bypass vulnerability, unmaintained in Gentoo, source
# package available. Use app-metrics/prometheus instead. Removal in 30
# days. Bug #883637.
app-metrics/prometheus-bin

# Piotr Karbowski <slashbeast@gentoo.org> (2022-11-29)
# Multiple stability issues, deadlocks on exit, broken API.
# Bug #883559
=net-p2p/qbittorrent-4.5.0

# John Helmert III <ajak@gentoo.org> (2022-11-27)
# Unmaintained upstream, several unresolved public vulnerabilities,
# Removal in 30 days. Bug #882773.
www-servers/boa

# David Seifert <soap@gentoo.org> (2022-11-27)
# Broke API for C++, causes massive carnage for consumers.
# Bug #883223.
~dev-libs/glib-2.74.2

# Michał Górny <mgorny@gentoo.org> (2022-11-27)
# Broken with OpenSSL-3.  Last upstream activity in 2021, no reply
# to the bug.
# Removal on 2022-12-27.  Bug #805233.
net-dns/dog

# Michał Górny <mgorny@gentoo.org> (2022-11-27)
# Broken with modern dev-python/setuptools versions.  Last upstream
# commit in 2018.  No reverse dependencies.
# Removal on 2022-12-27.  Bug #822840.
dev-python/slimit

# Michał Górny <mgorny@gentoo.org> (2022-11-27)
# Unmaintained.  HOMEPAGE is gone.  Uses GTK+2.
# Removal on 2022-12-27.  Bug #821118.
games-util/xgamer

# Michał Górny <mgorny@gentoo.org> (2022-11-27)
# Unmaintained, ancient package.  x11-misc/unclutter-xfixes is
# a superior replacement.
# Removal on 2022-12-27.  Bug #880845.
x11-misc/unclutter

# Michał Górny <mgorny@gentoo.org> (2022-11-27)
# Unmaintained.  Last bumped in 2005.  Superseded by Python version
# with last release in 2008, then by vnc2flv with last release in 2010.
# Removal on 2022-12-27.  Bug #880927.
x11-misc/vnc2swf

# Michael Mair-Keimberger <mmk@levelnine.at> (2022-11-25)
# Unmaintained, last release a decade ago, upstream declared it EOL
# Removal in 30 days.
net-analyzer/snortsam

# John Helmert III <ajak@gentoo.org> (2022-11-24)
# Binary package several releases behind the source-based package,
# multiple vulnerabilities, unmaintained for several years. Removal in
# 30 days. Bugs #849389, #882783.
dev-db/percona-xtrabackup-bin

# John Helmert III <ajak@gentoo.org> (2022-11-24)
# Compatibility issues with openssl-1.1*, numerous build issues, version
# in tree is EOL upstream. Removal in 30 days. Bug #882759.
net-misc/cfengine

# Pascal Jäger <pascal.jaeger@leimstift.de> (2022-11-24)
# No maintainer, last release in 1994. Fails to build
# with clang-16. Runtime crash in certain conditions.
# Removal on 2022-12-23.
# Bugs #549922 #713492 #731256 #875464 #882263
# Removal Bug: #882631
net-mail/metamail

# Michał Górny <mgorny@gentoo.org> (2022-11-23)
# Unpredictable build failures reported.  No revdeps left.
# dev-libs/opencl-icd-loader is a good replacement.
# Removal on 2022-12-23.  Bug #733018.
dev-libs/ocl-icd

# Michał Górny <mgorny@gentoo.org> (2022-11-23)
# Packages with no maintainer and major issues reported.
#
# app-cdr/xbiso: bug #882089, last release in 2005
# app-emulation/dlx: bug #874933, last release in 2001
# app-office/sc: bug #877051, last release in 2002
# net-libs/ortp: bug #874003, last bumped in 2014
# net-nntp/brag: revdep of app-text/uudeview
# sys-apps/fakeroot-ng: bug #851543, last release in 2013
# sys-apps/pmount-gui: bug #776397, last bumped in 2013, commit in 2019
# www-apache/mod_common_redirect: bug #874660, bumped in 2010, repo gone
#
# Removal on 2022-12-23.
app-cdr/xbiso
app-emulation/dlx
app-office/sc
net-libs/ortp
net-nntp/brag
sys-apps/fakeroot-ng
sys-apps/pmount-gui
www-apache/mod_common_redirect

# David Seifert <soap@gentoo.org> (2022-11-23)
# EAPI 6, no revdeps in tree, never made it into upstream boost, library
# only, last release 6 years ago. Removal on 2022-12-23.
dev-libs/boost-mpl-cartesian_product

# Matt Turner <mattst88@gentoo.org> (2022-11-16)
# Packages or their dependencies have not been ported to libsoup:3.0, while
# other non-slotted dependencies have been.
media-gfx/gnome-photos
media-sound/gnome-music
net-libs/libzapojit
net-misc/gnome-online-miners

# Ionen Wolkens <ionen@gentoo.org> (2022-11-21)
# Was added only for dev-python/pytest-bdd which no longer needs it.
# If using, migrate to stdlib glob which supports `**` since python-3.5.
# Removal: 2022-12-21.
dev-python/glob2

# David Seifert <soap@gentoo.org> (2022-11-21)
# Release more than 30 years (!) old, K&R C, full of implicit function
# declarations, EAPI 6, problematic license. Bug #729536, #854879, #870736.
# Removal on 2022-12-21.
app-text/agrep

# Michał Górny <mgorny@gentoo.org> (2022-11-19)
# Fails to build.  Last bumped in 2017.  Library with no revdeps.
# Removal on 2022-12-19.  Bug #630396.
dev-cpp/pstreams

# Michał Górny <mgorny@gentoo.org> (2022-11-19)
# Packages with no maintainer and major bugs reported.  They are either
# inactive upstream, or have not been bumped for a long time.
#
# app-emulation/aqemu: bug #806421, last bumped in 2016
# app-forensics/ovaldi: revdep of dev-libs/xalan-c, last bumped in 2017
# app-misc/glimpse: bug #684096, last bumped in 2013
# dev-db/cpp-driver: bug #685936, last bumped in 2019
# dev-erlang/riakc: bug #722688, last bumped in 2016
# dev-util/stubgen: bug #839927, last bumped in 2011
# media-gfx/xzgv: bug #831252, last bumped in 2009
# net-dns/dnssec-check: bug #571350, last bumped in 2016
# net-mail/cmd5checkpw: bug #833292, last bumped in 2005
# net-ftp/gproftpd: bug #550524, last bumped in 2007
# sys-apps/intel-performance-counter-monitor: bug #728564,
#                                             last bumped in 2016
#
# Removal on 2022-12-19.
acct-group/cmd5checkpw
acct-user/cmd5checkpw
app-emulation/aqemu
app-forensics/ovaldi
app-misc/glimpse
dev-db/cpp-driver
dev-erlang/riakc
dev-util/stubgen
media-gfx/xzgv
net-dns/dnssec-check
net-mail/cmd5checkpw
net-ftp/gproftpd
sys-apps/intel-performance-counter-monitor

# Michał Górny <mgorny@gentoo.org> (2022-11-19)
# Packages with reported failures and no maintainer activity.
#
# media-sound/retrovol: bug #624136, last bumped in 2013, homepage dead
# media-sound/umix: bug #726076, last release in 2003 (!)
#
# Removal on 2022-12-19.
media-sound/retrovol
media-sound/umix

# Michał Górny <mgorny@gentoo.org> (2022-11-19)
# Agavi and its dependencies that are unmaintained and have no other
# reverse dependencies.  It has received no activity since 2016,
# and at least PEAR-VersionControl_SVN has reported test failures.
# Removal on 2022-12-19.  Bug #737854.
dev-php/agavi
dev-php/phing
dev-php/PEAR-PEAR_PackageFileManager
dev-php/PEAR-PEAR_PackageFileManager2
dev-php/PEAR-PEAR_PackageFileManager_Plugins
dev-php/PEAR-VersionControl_SVN
dev-php/phpmd
dev-php/simpletest

# Michał Górny <mgorny@gentoo.org> (2022-11-18)
# These packages still lack support for Python 3.10.  In general, they
# did not see any activity recently and either have no maintainer
# or their respective maintainers did not reply to the bug.  Many
# of them do not have tests enabled or have unresolved test failures.
# Removal on 2022-12-18.  Tracker bug #823185.
app-admin/ansible-cmdb
app-arch/bloscpack
app-backup/borgweb
app-i18n/fcitx-sunpinyin
app-i18n/ibus-kkc
app-i18n/ibus-sunpinyin
app-i18n/libkkc
app-i18n/libkkc-data
app-i18n/sunpinyin
app-i18n/sunpinyin-data
app-i18n/xsunpinyin
app-portage/distpatch
app-text/q-text-as-data
app-vim/pydiction
app-vim/vimoutliner
dev-libs/aws-sdk-cpp
dev-python/Rx
dev-python/bert
dev-python/flask-assets
dev-python/libpy_simdjson
dev-python/pytest-salt
dev-python/requests_pkcs12
dev-python/slackclient
dev-python/tvdb_api
dev-python/webassets
dev-python/ws4py
dev-util/comparator
dev-util/rosinstall_generator
games-util/pyfa
mate-extra/caja-hide
media-gfx/netpaint
media-plugins/mythplugins

# Jonas Stein <jstein@gentoo.org> (2022-11-13)
# Dead upstream
# Removal after 2023-01-01.  Bug #881249.
net-mail/vchkuser

# Jaco Kroon <jaco@uls.co.za> (2022-11-05)
# Some potentially breaking changes here, please check the UPGRADE.txt file.
# Most important:  chan_sip no longer builds by default, if you've migrated to
# PJSIP you should be OK and most likely you should be able to safely unmask.
# For now to prevent accidental upgrades and to allow proper testing this will
# be in place for minimum six months (2023-04-22).
=net-misc/asterisk-20*
=net-misc/asterisk-opus-20*
=net-misc/asterisk-g729-20*

# Sam James <sam@gentoo.org> (2022-10-28)
# Please upgrade to >=media-libs/fontconfig-2.14.1-r1 for fixed
# cache dir to avoid sandbox violation errors, bug #878471.
=media-libs/fontconfig-2.14.1

# John Helmert III <ajak@gentoo.org> (2022-10-16)
# <OpenSSL-1.1.1 are EOL and contain known vulnerabilities. Users should
# migrate to a newer branch.
<dev-libs/openssl-1.1.1

# Sam James <sam@gentoo.org> (2022-10-12)
# Upstream has withdrawn these releases because of a (yet unexplained)
# "significant regression".
# See https://mta.openssl.org/pipermail/openssl-announce/2022-October/000237.html.
# and https://github.com/openssl/openssl/issues/19389.
=dev-libs/openssl-1.1.1r
=dev-libs/openssl-3.0.6

# Sam James <sam@gentoo.org> (2022-10-04)
# Regression for some Intel LCDs which may cause physical damage
# Please upgrade to 5.19.13 if affected!
# https://lore.kernel.org/all/YzwooNdMECzuI5+h@intel.com/
# https://lore.kernel.org/lkml/1664893073238194@kroah.com/T/
=sys-kernel/gentoo-sources-5.19.12
=sys-kernel/vanilla-sources-5.19.12
=sys-kernel/gentoo-kernel-5.19.12
=sys-kernel/gentoo-kernel-bin-5.19.12
=sys-kernel/vanilla-kernel-5.19.12
=virtual/dist-kernel-5.19.12

# Sam James <sam@gentoo.org> (2022-10-04)
# Please upgrade to >= portage-3.0.38.1 for binpkg fixes.
# bug #870283, bug #874771.
=sys-apps/portage-3.0.31
=sys-apps/portage-3.0.32
=sys-apps/portage-3.0.33
=sys-apps/portage-3.0.34
=sys-apps/portage-3.0.35
=sys-apps/portage-3.0.36
=sys-apps/portage-3.0.37
=sys-apps/portage-3.0.38

# John Helmert III <ajak@gentoo.org> (2022-09-18)
# Unfixed root privilege escalation, bug #631552
sys-cluster/slurm

# Matthias Schwarzott <zzam@gentoo.org> (2022-09-08)
# Breaks kernel builds with BTF enabled.
# Bug #868762.
=dev-util/pahole-1.24

# hololeap <hololeap@protonmail.com> (2022-08-21)
# doctest-parallel does not currently work with Setup.hs (used internally by
# haskell-cabal.eclass)
# See: <https://github.com/martijnbastiaan/doctest-parallel/issues/45>
dev-haskell/doctest-parallel

# Andrew Ammerlaan <andrewammerlaan@gentoo.org> (2022-08-12)
# Masked for testing, depends on dev-qt/qt*:6
# Pyside6 is stuck on python3_10 for the moment being
dev-python/shiboken6
dev-python/pyside6
dev-python/pyside6-tools

# Jimi Huotari <chiitoo@gentoo.org> (2022-08-02)
# Masked for testing. The split of some packages may still
# change. bug #838970.
dev-python/PyQt6
dev-python/PyQt6-WebEngine
dev-qt/qt5compat:6
dev-qt/qtbase:6
dev-qt/qtcharts:6
dev-qt/qtdeclarative:6
dev-qt/qtimageformats:6
dev-qt/qtlocation:6
dev-qt/qtmultimedia:6
dev-qt/qtnetworkauth:6
dev-qt/qtpositioning:6
dev-qt/qtquick3d:6
dev-qt/qtquicktimeline:6
dev-qt/qtserialport:6
dev-qt/qtshadertools:6
dev-qt/qtsvg:6
dev-qt/qttools:6
dev-qt/qtwayland:6
dev-qt/qtwebchannel:6
dev-qt/qtwebengine:6
dev-qt/qtwebsockets:6

# Fabian Groffen <grobian@gentoo.org> (2022-07-02)
# Segfaults handling SPF validations (warn on permerror), like the
# previous release, better not to trust your important mail to
~mail-mta/exim-4.96

# Sam James <sam@gentoo.org> (2022-05-28)
# GCC 9 and older no longer receive upstream support or fixes for
# bugs. Please switch to a newer GCC version using gcc-config.
# The lowest supported version of GCC is GCC 10.
<sys-devel/gcc-10

# Joonas Niilola <juippis@gentoo.org> (2022-04-29)
# Apparently the "b" in version means "beta". 3.24 is available, we
# should update to that. #841437
~sci-physics/bullet-3.22b

# Alfredo Tupone <tupone@gentoo.org> (2022-04-27)
# New release of janestreet packages need to tested
dev-ml/sexplib0:0/0.15
dev-ml/sexplib:0/0.15
dev-ml/base:0/0.15
dev-ml/stdio:0/0.15
dev-ml/ppx_sexp_conv:0/0.15
dev-ml/ppx_enumerate:0/0.15
dev-ml/ppx_compare:0/0.15
dev-ml/ppx_hash:0/0.15
dev-ml/ppx_cold:0/0.15
dev-ml/parsexp:0/0.15
dev-ml/ppx_base:0/0.15
dev-ml/ppx_fields_conv:0/0.15
dev-ml/ppx_here:0/0.15
dev-ml/ppx_let:0/0.15
dev-ml/ppx_sexp_message:0/0.15
dev-ml/ppx_sexp_value:0/0.15
dev-ml/ppx_assert:0/0.15
dev-ml/ppx_optcomp:0/0.15
dev-ml/time_now:0/0.15
dev-ml/ppx_inline_test:0/0.15
dev-ml/ppx_bench:0/0.15
dev-ml/splittable_random:0/0.15
dev-ml/base_quickcheck:0/0.15
dev-ml/ppx_bin_prot:0/0.15
dev-ml/ppx_custom_printf:0/0.15
dev-ml/ppx_disable_unused_warnings:0/0.15
dev-ml/ppx_expect:0/0.15
dev-ml/ppx_fixed_literal:0/0.15
dev-ml/ppx_log:0/0.15
dev-ml/ppx_module_timer:0/0.15
dev-ml/ppx_optional:0/0.15
dev-ml/ppx_stable:0/0.15
dev-ml/ppx_string:0/0.15
dev-ml/typerep:0/0.15
dev-ml/ppx_typerep_conv:0/0.15
dev-ml/variantslib:0/0.15
dev-ml/ppx_variants_conv:0/0.15
dev-ml/ppx_jane:0/0.15
dev-ml/int_repr:0/0.15
dev-ml/base_bigstring:0/0.15
dev-ml/ppx_js_style:0/0.15
dev-ml/core:0/0.15
dev-ml/core_kernel:0/0.15
dev-ml/sexp_pretty:0/0.15
dev-ml/expect_test_helpers_core:0/0.15
dev-ml/timezone:0/0.15
dev-ml/core_unix:0/0.15
dev-ml/textutils_kernel:0/0.15
dev-ml/textutils:0/0.15
dev-ml/async_kernel:0/0.15
dev-ml/protocol_version_header:0/0.15
dev-ml/async_rpc_kernel:0/0.15
dev-ml/async_unix:0/0.15
dev-ml/async:0/0.15
dev-ml/async_extra:0/0.15
dev-ml/core_bench:0/0.15
dev-ml/patience_diff:0/0.15
dev-util/patdiff:0/0.15
=dev-ml/alcotest-1.6.0*

# David Seifert <soap@gentoo.org> (2022-04-06)
# Unsupported branches, no consumers left, removal on 2023-01-01.
sys-devel/automake:1.13
sys-devel/automake:1.15

# Maciej Barć <xgqt@gentoo.org> (2022-02-20)
# Masked for testing, builds and passes tests but randomly segfaults,
# meaningless backtrace, debugging (flags, symbols) do not help
>app-shells/scsh-0.6.9

# Zoltan Puskas <zoltan@sinustrom.info> (2022-02-18)
# Multiple vulnerabilities (CVE-2022-{23803,23804,23946,23947})
# 5.X series is masked to avoid accidental use, but it's kept for
# industrial users who are in the process of migrating to the new
# format of the 6.X series.
<sci-electronics/kicad-6.0.2
<sci-electronics/kicad-footprints-6.0.2
<sci-electronics/kicad-i18n-6.0.2
<sci-electronics/kicad-meta-6.0.2
<sci-electronics/kicad-packages3d-6.0.2
<sci-electronics/kicad-symbols-6.0.2
<sci-electronics/kicad-templates-6.0.2
<app-doc/kicad-doc-6.0.2

# Eray Aslan <eras@gentoo.org> (2022-01-24)
# Mask experimental software
=mail-mta/postfix-3.8*

# James Beddek <telans@posteo.de> (2022-01-19)
# FFmpeg 5.0 ABI/API changes break many packages.
# Masking for tracker/tinderbox. Bug #831437
=media-video/ffmpeg-5*

# Brian Evans <grknight@gentoo.org> (2022-01-07)
# The main consumer, phpunit, does not initiate the new timer correctly
# This is likely to cause issues in tests; Unmask if using for other purposes
>=dev-php/PHP_Timer-5.0

# Volkmar W. Pogatzki <gentoo@pogatzki.net> (2021-11-23)
# Does not support updated dev-java/pdfbox-2.0.24, Bug #803488
# Blocks (CVE-2018-11797, CVE-2021-{27807,27906,31811,31812})
dev-tex/pdfannotextractor

# Ionen Wolkens <ionen@gentoo.org> (2021-10-09)
# Vulkan beta driver branch aimed at Vulkan developers for testing
# new features. Beside vulkan, it is typically behind the main branch
# and may be buggier or less secure. Only unmask if really wanted.
x11-drivers/nvidia-drivers:0/vulkan

# Mart Raudsepp <leio@gentoo.org> (2021-09-23)
# Incompatible with c++17 abseil-cpp, no in-tree consumers yet
media-libs/webrtc-audio-processing:1

# Andreas K. Hüttel <dilfridge@gentoo.org> (2021-09-18)
# sys-devel/automake version 1.11 is EOL and is only useful for testing
# old de-ANSI-fication/ansi2knr/AM_C_PROTOTYPES code. Please uninstall.
sys-devel/automake:1.11

# Joonas Niilola <juippis@gentoo.org> (2021-07-29)
# Upstream provided migration instructions from 2. -> 3. update,
# breaks if not all at least many revdeps. #805011 for tracker bug.
>=net-libs/mbedtls-3.0.0

# Michał Górny <mgorny@gentoo.org> (2021-07-06)
# Upstream changed license to GPL-3+ in order to deliberately cause
# incompatiblity with revdep licenses.  Mask until the situation
# is resolved.  Bug #791259.
>=media-libs/libopenaptx-0.2.1

# Ulrich Müller <ulm@gentoo.org> (2021-04-20)
# Version 3.15 is broken with Emacs 27.2.
=app-emacs/mic-paren-3.15-r0

# Sam James <sam@gentoo.org> (2021-03-30)
# Seems to break dev-tex/culmus-latex
# Masking until we can investigate & fix
# bug #737406
=media-fonts/culmus-0.133-r1

# Sam James <sam@gentoo.org> (2021-03-03)
# Doesn't seem to sync clock correctly
# in some cases.
# bug #772998
~net-misc/openntpd-6.8_p1

# Michał Górny <mgorny@gentoo.org> (2020-11-10)
# This old Kodi version requires vulnerable dev-python/pillow
# and prevents users from upgrading.  Masked for the time being.
# Bug #729672.
media-plugins/kodi-game-libretro-nestopia
media-plugins/kodi-game-libretro-dosbox

# Sam James <sam@gentoo.org> (2020-10-05)
# Masked for testing. New major versions of Guile
# often break reverse dependencies.
# Guile in Gentoo is not slotted, so let's be cautious.
# bug #705554, bug #689408.
>=dev-scheme/guile-3.0.4

# 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

# Andreas Sturmlechner <asturm@gentoo.org> (2018-10-07)
# Masked for more testing especially of reverse-deps.
# ogre 1.11/1.12 breakage: bug #834468
# ogre 2.x breakage: bug #740424
>=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

# 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

# Andreas K. Hüttel <dilfridge@gentoo.org> (2017-05-21)
# (and others, updated later)
# 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-libs/glibc-2.36-r5
<sys-devel/binutils-2.38

# 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

# 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