summaryrefslogtreecommitdiff
blob: 095219a7a15f31841811979f969e3601bfa9beb6 (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
# Copyright 1999-2023 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 ---

# Michał Górny <mgorny@gentoo.org> (2023-01-26)
# Unmaintained.  Last release in 2003.  The package fails to install
# since Aug 2021 and while a fix would be trivial, there does not seem
# to have been any interest in it during that period.
# Removal on 2023-02-25.  Bug #806384.
www-misc/wsmake

# Marek Szuba <marecki@gentoo.org> (2023-01-26)
# Upstream keeps the module files unversioned so it is only the use of
# mirroring that has prevented us from seeing regular hash mismatches
# - and it is not clear for many of the modules whether we are allowed
# to mirror them or not. A convoluted and fragile process has been
# required to detect new modules and versions, and the request for a
# Repology-friendly upstream endpoint appears to have stalled.
# Please switch to managing SWORD modules on a per-user basis, using
# tools bundled with app-text/sword (see e.g.
# https://wiki.crosswire.org/SWORD_Module_Source_Discovery_and_Module_Updating)
# or appropriate functionality in GUI front-end software.
# Removal on 2023-02-26. Bug #892069.
app-dicts/sword-2BabDict
app-dicts/sword-AB
app-dicts/sword-Abbott
app-dicts/sword-AbbottSmith
app-dicts/sword-AbbottSmithStrongs
app-dicts/sword-ABP
app-dicts/sword-ABPGRK
app-dicts/sword-ABS_Essay_GoodSam_SWB
app-dicts/sword-ACV
app-dicts/sword-Afr1953
app-dicts/sword-AKJV
app-dicts/sword-Alb
app-dicts/sword-Aleppo
app-dicts/sword-alzat
app-dicts/sword-AmTract
app-dicts/sword-Anderson
app-dicts/sword-Antoniades
app-dicts/sword-AraNAV
app-dicts/sword-AraSVD
app-dicts/sword-ArmEastern
app-dicts/sword-ArmWestern
app-dicts/sword-ASV
app-dicts/sword-Azeri
app-dicts/sword-BaptistConfession1646
app-dicts/sword-BaptistConfession1689
app-dicts/sword-Barnes
app-dicts/sword-BasHautin
app-dicts/sword-BBE
app-dicts/sword-BDBGlosses_Strongs
app-dicts/sword-BeaMRK
app-dicts/sword-Bela
app-dicts/sword-br_en
app-dicts/sword-BretonNT
app-dicts/sword-BulCarigradNT
app-dicts/sword-BulVeren
app-dicts/sword-BurCBCM
app-dicts/sword-BurJudson
app-dicts/sword-Burkitt
app-dicts/sword-BWE
app-dicts/sword-Byz
app-dicts/sword-Calo
app-dicts/sword-Catena
app-dicts/sword-Cawdrey
app-dicts/sword-CBC
app-dicts/sword-CebPinadayag
app-dicts/sword-Chamorro
app-dicts/sword-Che1860
app-dicts/sword-ChiNCVs
app-dicts/sword-ChiNCVt
app-dicts/sword-ChiSB
app-dicts/sword-ChiUn
app-dicts/sword-ChiUnL
app-dicts/sword-ChiUns
app-dicts/sword-Clarke
app-dicts/sword-Common
app-dicts/sword-Concord
app-dicts/sword-CopNT
app-dicts/sword-CopSahBible2
app-dicts/sword-CopSahHorner
app-dicts/sword-CopSahidica
app-dicts/sword-CopSahidicMSS
app-dicts/sword-CPDV
app-dicts/sword-CroSaric
app-dicts/sword-CSlElizabeth
app-dicts/sword-CzeB21
app-dicts/sword-CzeBKR
app-dicts/sword-CzeCEP
app-dicts/sword-CzeCSP
app-dicts/sword-Daily
app-dicts/sword-DaNT1819
app-dicts/sword-DaOT1871NT1907
app-dicts/sword-DaOT1931NT1907
app-dicts/sword-Darby
app-dicts/sword-Dari
app-dicts/sword-DarkNightOfTheSoul
app-dicts/sword-DBD
app-dicts/sword-Diaglott
app-dicts/sword-Dodson
app-dicts/sword-DRC
app-dicts/sword-DTN
app-dicts/sword-DutKant
app-dicts/sword-DutKingComm
app-dicts/sword-DutSVV
app-dicts/sword-DutSVVA
app-dicts/sword-Easton
app-dicts/sword-Elzevir
app-dicts/sword-EMBReality
app-dicts/sword-EMTV
app-dicts/sword-en_eu
app-dicts/sword-Esperanto
app-dicts/sword-Est
app-dicts/sword-Etheridge
app-dicts/sword-Eusebian_num
app-dicts/sword-Eusebian_vs
app-dicts/sword-f35
app-dicts/sword-Family
app-dicts/sword-FarHezareNoh
app-dicts/sword-FarOPV
app-dicts/sword-FarTPV
app-dicts/sword-FinBiblia
app-dicts/sword-Finney
app-dicts/sword-FinPR
app-dicts/sword-FinPR92
app-dicts/sword-FinRK
app-dicts/sword-FinSTLK2017
app-dicts/sword-FreAug
app-dicts/sword-FreBailly
app-dicts/sword-FreBBB
app-dicts/sword-FreBDM1707
app-dicts/sword-FreBDM1744
app-dicts/sword-FreChry
app-dicts/sword-FreCJE
app-dicts/sword-FreCrampon
app-dicts/sword-FreDAW
app-dicts/sword-FreGBM
app-dicts/sword-FreGeneve1669
app-dicts/sword-FreJND
app-dicts/sword-FreKhan
app-dicts/sword-FreLSN1872
app-dicts/sword-FreLXX
app-dicts/sword-FreOltramare1874
app-dicts/sword-FrePGR
app-dicts/sword-FrePilgrim
app-dicts/sword-FreSegond1910
app-dicts/sword-FreStapfer1889
app-dicts/sword-FreSynodale1921
app-dicts/sword-FVDPVietAnh
app-dicts/sword-Geez
app-dicts/sword-Geneva
app-dicts/sword-Geneva1599
app-dicts/sword-GerAlbrecht
app-dicts/sword-GerAugustinus
app-dicts/sword-GerBoLut
app-dicts/sword-GerElb1871
app-dicts/sword-GerElb1905
app-dicts/sword-GerGruenewald
app-dicts/sword-GerHfa2002
app-dicts/sword-GerHfaLex2002
app-dicts/sword-GerKingComm
app-dicts/sword-GerLeoNA28
app-dicts/sword-GerLeoRP18
app-dicts/sword-GerLutherpredigten
app-dicts/sword-GerMenge
app-dicts/sword-GerNeUe
app-dicts/sword-GerOffBiSt
app-dicts/sword-GerReinhardt
app-dicts/sword-GerSch
app-dicts/sword-GerTafel
app-dicts/sword-GerTextbibel
app-dicts/sword-GerZurcher
app-dicts/sword-Godbey
app-dicts/sword-GodsWord
app-dicts/sword-GreekHebrew
app-dicts/sword-GreVamvas
app-dicts/sword-Haitian
app-dicts/sword-HebDelitzsch
app-dicts/sword-HebModern
app-dicts/sword-HebrewGreek
app-dicts/sword-Heretics
app-dicts/sword-HinERV
app-dicts/sword-Hitchcock
app-dicts/sword-HunIMIT
app-dicts/sword-HunKar
app-dicts/sword-HunKNB
app-dicts/sword-HunRUF
app-dicts/sword-HunUj
app-dicts/sword-Imitation
app-dicts/sword-Institutes
app-dicts/sword-IriODomhnuill
app-dicts/sword-ISBE
app-dicts/sword-ISV
app-dicts/sword-ItaDio
app-dicts/sword-ItaRive
app-dicts/sword-ItDizGreco
app-dicts/sword-ItNomiBibbia
app-dicts/sword-JapBungo
app-dicts/sword-JapDenmo
app-dicts/sword-JapKougo
app-dicts/sword-JapMeiji
app-dicts/sword-JapRaguet
app-dicts/sword-JCRHoliness
app-dicts/sword-JEAffections
app-dicts/sword-JESermons
app-dicts/sword-JFB
app-dicts/sword-JOChrist
app-dicts/sword-JOCommGod
app-dicts/sword-JOGlory
app-dicts/sword-JOMortSin
app-dicts/sword-Josephus
app-dicts/sword-JPS
app-dicts/sword-JST
app-dicts/sword-Jubilee2000
app-dicts/sword-Kapingamarangi
app-dicts/sword-Kaz
app-dicts/sword-KD
app-dicts/sword-Kekchi
app-dicts/sword-KhmerNT
app-dicts/sword-KingComm
app-dicts/sword-KJV
app-dicts/sword-KJVA
app-dicts/sword-KJVPCE
app-dicts/sword-KLV
app-dicts/sword-KLVen_iklingon
app-dicts/sword-KLViklingon_en
app-dicts/sword-KorHKJV
app-dicts/sword-KorRV
app-dicts/sword-KtuVB
app-dicts/sword-la_en
app-dicts/sword-Latvian
app-dicts/sword-LawGospel
app-dicts/sword-LEB
app-dicts/sword-Leeser
app-dicts/sword-Lightfoot
app-dicts/sword-LinVB
app-dicts/sword-LITV
app-dicts/sword-LO
app-dicts/sword-LtKBB
app-dicts/sword-Luther
app-dicts/sword-LvGluck8
app-dicts/sword-LXX
app-dicts/sword-MAK
app-dicts/sword-Mal1910
app-dicts/sword-ManxGaelic
app-dicts/sword-Maori
app-dicts/sword-MapM
app-dicts/sword-Mg1865
app-dicts/sword-MHC
app-dicts/sword-MHCC
app-dicts/sword-MKJV
app-dicts/sword-MLStrong
app-dicts/sword-MollColossians
app-dicts/sword-MonKJV
app-dicts/sword-Montgomery
app-dicts/sword-MorphGNT
app-dicts/sword-Murdock
app-dicts/sword-Nave
app-dicts/sword-Ndebele
app-dicts/sword-Nestle1904
app-dicts/sword-NETfree
app-dicts/sword-NETnotesfree
app-dicts/sword-NETtext
app-dicts/sword-NHEB
app-dicts/sword-NHEBJE
app-dicts/sword-NHEBME
app-dicts/sword-NlCanisius1939
app-dicts/sword-NorBroed
app-dicts/sword-Norsk
app-dicts/sword-NorSMB
app-dicts/sword-NorthernAzeri
app-dicts/sword-Noyes
app-dicts/sword-OEB
app-dicts/sword-OEBcth
app-dicts/sword-OrthJBC
app-dicts/sword-Orthodoxy
app-dicts/sword-OSHB
app-dicts/sword-OSHM
app-dicts/sword-OxfordTR
app-dicts/sword-Packard
app-dicts/sword-Passion
app-dicts/sword-Personal
app-dicts/sword-Peshitta
app-dicts/sword-Phaistos
app-dicts/sword-Pilgrim
app-dicts/sword-PNT
app-dicts/sword-PohnOld
app-dicts/sword-Pohnpeian
app-dicts/sword-PolGdanska
app-dicts/sword-PolUGdanska
app-dicts/sword-PorAlmeida1911
app-dicts/sword-PorAR
app-dicts/sword-PorBLivre
app-dicts/sword-PorBLivreTR
app-dicts/sword-PorCap
app-dicts/sword-PorIBP
app-dicts/sword-PotLykins
app-dicts/sword-Practice
app-dicts/sword-QuotingPassages
app-dicts/sword-RecVer
app-dicts/sword-Rieger
app-dicts/sword-RKJNT
app-dicts/sword-RNKJV
app-dicts/sword-Robinson
app-dicts/sword-RomCor
app-dicts/sword-Rotherham
app-dicts/sword-RusCARS
app-dicts/sword-RusCARSA
app-dicts/sword-RusCARSADICT
app-dicts/sword-RusCARSDict
app-dicts/sword-RusCARST
app-dicts/sword-RusCARSTDICT
app-dicts/sword-RusMakarij
app-dicts/sword-RusSynodal
app-dicts/sword-RusSynodalLIO
app-dicts/sword-RusVZh
app-dicts/sword-RWebster
app-dicts/sword-RWP
app-dicts/sword-SahidicBible
app-dicts/sword-SAOA
app-dicts/sword-SBLGNT
app-dicts/sword-SBLGNTApp
app-dicts/sword-Scofield
app-dicts/sword-ScotsGaelic
app-dicts/sword-Sentiment
app-dicts/sword-Shona
app-dicts/sword-SloKJV
app-dicts/sword-SloOjacano
app-dicts/sword-SloStritar
app-dicts/sword-SME
app-dicts/sword-Smith
app-dicts/sword-sml_BL_2008
app-dicts/sword-SomKQA
app-dicts/sword-Sorani
app-dicts/sword-SP
app-dicts/sword-SpaPlatense
app-dicts/sword-SpaRV
app-dicts/sword-SpaRV1865
app-dicts/sword-SpaRV1909
app-dicts/sword-SpaRVG
app-dicts/sword-SpaTDP
app-dicts/sword-SpaVNT
app-dicts/sword-SPDSS
app-dicts/sword-SPE
app-dicts/sword-SPMT
app-dicts/sword-Spurious
app-dicts/sword-SPVar
app-dicts/sword-SrKDEkavski
app-dicts/sword-SrKDIjekav
app-dicts/sword-StrongsGreek
app-dicts/sword-StrongsHebrew
app-dicts/sword-Swahili
app-dicts/sword-Swe1917
app-dicts/sword-Swe1917Of
app-dicts/sword-SweFolk1998
app-dicts/sword-SweKarlXII
app-dicts/sword-SweKarlXII1873
app-dicts/sword-Tagalog
app-dicts/sword-TagAngBiblia
app-dicts/sword-Tausug
app-dicts/sword-TCR
app-dicts/sword-TDavid
app-dicts/sword-TFG
app-dicts/sword-ThaiKJV
app-dicts/sword-Tisch
app-dicts/sword-TNT
app-dicts/sword-Torrey
app-dicts/sword-TR
app-dicts/sword-TSK
app-dicts/sword-TurHADI
app-dicts/sword-TurNTB
app-dicts/sword-Twenty
app-dicts/sword-Tyndale
app-dicts/sword-UKJV
app-dicts/sword-Ukrainian
app-dicts/sword-UkrKulish
app-dicts/sword-Uma
app-dicts/sword-UrduGeo
app-dicts/sword-UrduGeoDeva
app-dicts/sword-UrduGeoRoman
app-dicts/sword-UyCyr
app-dicts/sword-VarApp
app-dicts/sword-VieRobinson
app-dicts/sword-VieStrongsGreek
app-dicts/sword-Viet
app-dicts/sword-VietLCCMN
app-dicts/sword-VietLCCMNCT
app-dicts/sword-VietNVB
app-dicts/sword-vlsJoNT
app-dicts/sword-Vulgate
app-dicts/sword-Vulgate_HebPs
app-dicts/sword-VulgClementine
app-dicts/sword-VulgConte
app-dicts/sword-VulgGlossa
app-dicts/sword-VulgHetzenauer
app-dicts/sword-VulgSistine
app-dicts/sword-Webster
app-dicts/sword-Webster1806
app-dicts/sword-Webster1913
app-dicts/sword-WelBeiblNet
app-dicts/sword-Wesley
app-dicts/sword-Westminster
app-dicts/sword-Westminster21
app-dicts/sword-Weymouth
app-dicts/sword-WHNU
app-dicts/sword-WLC
app-dicts/sword-Worsley
app-dicts/sword-Wulfila
app-dicts/sword-Wycliffe
app-dicts/sword-YLT
app-dicts/sword-ZhEnglish
app-dicts/sword-ZhHanzi
app-dicts/sword-ZhPinyin
app-text/sword-modules

# Michał Górny <mgorny@gentoo.org> (2023-01-25)
# Unmaintained.  Multiple build failure bugs reported.  This version
# predates 2008.
# Removal on 2023-02-24.  Bug #837611.
sys-cluster/wulfware

# Michał Górny <mgorny@gentoo.org> (2023-01-25)
# Unfetchable since at least 2021.  Mirror-restricted.
# Removal on 2023-02-24.  Bug #761817.
sci-physics/herwig

# Ionen Wolkens <ionen@gentoo.org> (2023-01-24)
# Mostly obsoleted by the better maintained net-misc/yt-dlp, please
# migrate. If had USE=yt-dlp enabled (default) then was likely already
# using through its youtube-dl compatibility wrapper and this will
# change nothing beside needing to ensure that it is not depcleaned.
#
# Upstream is mostly focusing on compatibility and old python support,
# still uses deprecated Nose for tests, and has not seen a new release
# to deploy fixes in a long time despite major issues (e.g. throttling).
#
# Been kept due to some packages lacking compatibility with yt-dlp's
# python modules, but none are left in tree. Those that call the command
# rather than modules will often work as-is with yt-dlp's wrapper.
# Removal: 2023-02-23. Bug #891917
net-misc/youtube-dl

# Michał Górny <mgorny@gentoo.org> (2023-01-24)
# mps-youtube does not seem to work "out of the box".  It has had its
# last release in 2018, and no commits since 2020.  It is the only
# package needing dev-python/pafy, and pafy is the final package
# requiring net-misc/youtube-dl.
# Removal on 2023-02-23.  Bug #891911.
dev-python/pafy
media-sound/mps-youtube

# David Seifert <soap@gentoo.org> (2023-01-23)
# EOL branch, switch to mariadb-10.4/galera-26.4, removal on 2023-02-22.
<dev-db/mariadb-10.4
<sys-cluster/galera-26.4

# Sam James <sam@gentoo.org> (2023-01-23)
# Please upgrade to >=app-eselect/eselect-wxwidgets-20230114-r1 as -r0 may
# lead to build failures.
=app-eselect/eselect-wxwidgets-20230114

# Michał Górny <mgorny@gentoo.org> (2023-01-21)
# Packages that are incompatible with ffmpeg-5.
#
# media-libs/libextractor: no Gentoo maintainer, ver from 2019, bug #834382
# media-libs/qtav: no Gentoo maintainer, no porting progress, bug #834386
# media-plugins/vdr-vaapidevice: no activity since 2019, bug #834390
# media-sound/potamus: last rel. 2018, one commit in 2020, bug #834396
# media-video/ffmpeg2theora: no activity since 2016, bug #834403
#
# Removal on 2023-02-20.
media-libs/libextractor
media-libs/qtav
media-plugins/vdr-vaapidevice
media-sound/potamus
media-video/ffmpeg2theora

# Michał Górny <mgorny@gentoo.org> (2023-01-21)
# Obsoleted in favor of using extract-on-the-first-run feature
# of games-strategy/wargus.
# Removal on 2023-02-20.  Bug #578340.
games-strategy/wargus-data

# Joonas Niilola <juippis@gentoo.org> (2023-01-21)
# 102.7.0 has a critical authentication issue with Microsoft 365
# Business accounts. Fix should land in 102.7.1. If you're not affected
# and really want this update, please unmask it for yourself.
~mail-client/thunderbird-102.7.0
~mail-client/thunderbird-bin-102.7.0

# Hans de Graaff <graaff@gentoo.org> (2023-01-21)
# No longer maintained upstream and missing recent security fixes.
# Use a newer Rails version instead.
# This mask also includes several supporting or rails 5.2-only packages.
# Masked for removal after 2023-02-21.
dev-ruby/actioncable:5.2
dev-ruby/actionmailer:5.2
dev-ruby/actionpack:5.2
dev-ruby/actionview:5.2
dev-ruby/activejob:5.2
dev-ruby/activemodel:5.2
dev-ruby/activerecord:5.2
dev-ruby/activestorage:5.2
dev-ruby/activesupport:5.2
dev-ruby/rails:5.2
dev-ruby/railties:5.2
dev-ruby/arel
=www-apps/redmine-4.2.9

# Andreas Sturmlechner <asturm@gentoo.org> (2023-01-20)
# KDE Plasma 5.26.90 (5.27 Beta) mask
# Pre-release version - happy testing!
~kde-plasma/bluedevil-5.26.90
~kde-plasma/breeze-5.26.90
~kde-plasma/breeze-grub-5.26.90
~kde-plasma/breeze-gtk-5.26.90
~kde-plasma/breeze-plymouth-5.26.90
~kde-plasma/discover-5.26.90
~kde-plasma/drkonqi-5.26.90
~kde-plasma/kactivitymanagerd-5.26.90
~kde-plasma/kde-cli-tools-5.26.90
~kde-plasma/kde-gtk-config-5.26.90
~kde-plasma/kdecoration-5.26.90
~kde-plasma/kdeplasma-addons-5.26.90
~kde-plasma/kgamma-5.26.90
~kde-plasma/khotkeys-5.26.90
~kde-plasma/kinfocenter-5.26.90
~kde-plasma/kmenuedit-5.26.90
~kde-plasma/kpipewire-5.26.90
~kde-plasma/kscreen-5.26.90
~kde-plasma/kscreenlocker-5.26.90
~kde-plasma/ksshaskpass-5.26.90
~kde-plasma/ksystemstats-5.26.90
~kde-plasma/kwallet-pam-5.26.90
~kde-plasma/kwayland-integration-5.26.90
~kde-plasma/kwin-5.26.90
~kde-plasma/kwrited-5.26.90
~kde-plasma/layer-shell-qt-5.26.90
~kde-plasma/libkscreen-5.26.90
~kde-plasma/libksysguard-5.26.90
~kde-plasma/libkworkspace-5.26.90
~kde-plasma/milou-5.26.90
~kde-plasma/oxygen-5.26.90
~kde-plasma/oxygen-sounds-5.26.90
~kde-plasma/plasma-browser-integration-5.26.90
~kde-plasma/plasma-desktop-5.26.90
~kde-plasma/plasma-disks-5.26.90
~kde-plasma/plasma-firewall-5.26.90
~kde-plasma/plasma-integration-5.26.90
~kde-plasma/plasma-meta-5.26.90
~kde-plasma/plasma-nm-5.26.90
~kde-plasma/plasma-pa-5.26.90
~kde-plasma/plasma-sdk-5.26.90
~kde-plasma/plasma-systemmonitor-5.26.90
~kde-plasma/plasma-thunderbolt-5.26.90
~kde-plasma/plasma-workspace-5.26.90
~kde-plasma/plasma-workspace-wallpapers-5.26.90
~kde-plasma/plasma-vault-5.26.90
~kde-plasma/plymouth-kcm-5.26.90
~kde-plasma/polkit-kde-agent-5.26.90
~kde-plasma/powerdevil-5.26.90
~kde-plasma/sddm-kcm-5.26.90
~kde-plasma/systemsettings-5.26.90
~kde-plasma/xdg-desktop-portal-kde-5.26.90
~kde-plasma/xembed-sni-proxy-5.26.90

# Alfredo Tupone <tupone@gentoo.org> (2023-01-18)
# Masked for removal in 30 days.
# Not maintained (2006), no rev dep, bugs
# (bug #891283)
dev-tcltk/tclperl

# David Seifert <soap@gentoo.org> (2023-01-14)
# Py3.8 only backports
dev-python/backports-tempfile
dev-python/backports-weakref
dev-python/backports-zoneinfo
dev-python/pkgutil_resolve_name

# Andreas Sturmlechner <asturm@gentoo.org> (2023-01-10)
# Unmaintained and reportedly broken by KDE Plasma 5.25 already.
# Masking current stable version is the first step towards last-rites.
# Consider migrating away from latte-dock for your workflow.
# See also: https://tinyurl.com/39dkw43a (links to reddit)
# Removal on 2023-01-30.
=kde-misc/latte-dock-0.10.8*

# Jonas Stein <jstein@gentoo.org> (2023-01-09)
# Dead upstream, open bugs unmaintained.
# Removal after 2023-03-01.  Bug #890244.
www-client/dillo

# John Helmert III <ajak@gentoo.org> (2023-01-08)
# Multiple vulnerabilities include remote code execution, maintainer
# needed, removal in 30 days. Bug #834501
dev-util/artifactory-bin

# Michael Mair-Keimberger <mmk@levelnine.at> (2023-01-08)
# Broken since many years, no reverse dependencies, last release from 2000
# Bug #678518. Removal on 2023-02-08.
net-dns/dnswalk

# Michael Mair-Keimberger <mmk@levelnine.at> (2023-01-08)
# EAPI=6, Installs only card pictures and has no reverse dependencies.
# Bug #805278. Removal on 2023-02-08.
dev-games/cardpics

# Michael Mair-Keimberger <mmk@levelnine.at> (2023-01-08)
# Dependencies of games-server/cyphesis, which got removed ~4 years ago, no
# other reverse dependencies. Bug #728230
# Removal on 2023-02-08.
dev-games/mercator
dev-games/wfmath

# Sam James <sam@gentoo.org> (2023-01-05)
# Breaks reverse dependencies: bug #889694, bug #888579.
=sys-fs/btrfs-progs-6.1.1

# David Seifert <soap@gentoo.org> (2023-01-02)
# EAPI 6, pretty much no upstream activity, outdated, last upstream
# release over 3 years ago, no revdeps. Removal on 2023-02-01.
dev-cpp/pngpp

# Jonas Stein <jstein@gentoo.org> (2023-01-01)
# Package is broken and unusable, no activity upstream.
# Removal after 2023-02-01.  Bug #722568.
net-analyzer/chaosreader

# Arthur Zamarin <arthurzam@gentoo.org> (2022-12-31)
# EAPI=6 ebuild, live only packages for 1 year! maintainer-needed package.
# Removal: 2023-01-30.  Bug #889200.
app-containers/docker-gc

# Arthur Zamarin <arthurzam@gentoo.org> (2022-12-31)
# Live only packages for 4 years!
# Removal: 2023-01-30.  Bug #889196.
sys-auth/google-authenticator-libpam-hardened

# Arthur Zamarin <arthurzam@gentoo.org> (2022-12-31)
# EAPI=6 ebuild, live only packages for 6 years!
# Removal: 2023-01-30.  Bug #889194.
x11-plugins/pidgin-funyahoo-plusplus

# Maciej Barć <xgqt@gentoo.org> (2022-12-29)
# Real upstream dead, uses old R5RS standard, many open bugs.
# Removal on 2022-01-29.
app-shells/scsh
dev-scheme/scsh-lib

# Volkmar W. Pogatzki <gentoo@pogatzki.net> (2022-12-29)
# Upstream is dead, last activity in Nov 2017. Does not
# work with newer log4j, bug #857663. Use net-p2p/biglybt
# instead. Removal on 2023-02-28.
net-p2p/vuze
net-p2p/vuze-coreplugins

# Marco Scardovi <mscardovi@icloud.com> (2022-12-27)
# It builds only with a really old version of libfprint
# and has never been updated to new one. No revdeps, no real usage
# Removal on 2023-01-26. Bug #888665
sys-auth/pam_fprint

# Sam James <sam@gentoo.org> (2022-12-27)
# Obsolete and incompatible with app-alternatives/* (see news item).
# Removal on 2023-01-27. bug #886019 and bug #886021 respectively.
app-eselect/eselect-awk
app-eselect/eselect-sh

# Sam James <sam@gentoo.org> (2022-12-27)
# Regression in listing subvolumes (no UUIDs), bug #888549
# https://github.com/kdave/btrfs-progs/issues/562
=sys-fs/btrfs-progs-6.1

# David Seifert <soap@gentoo.org> (2022-12-26)
# Lots of K&R C, hidden behind an annoying authwall, fails with modern
# GCC and Clang (-fcommon), license prohibits distributing, EAPI 6,
# last release 8 years ago. Removal on 2023-01-25.
sci-biology/consed
sci-biology/phrap
sci-biology/phred

# David Seifert <soap@gentoo.org> (2022-12-26)
# EAPI 6, cheesy build system, last release over 13 years ago, no other
# distro packages this. Removal on 2023-01-25.
sci-misc/flashdot

# Michał Górny <mgorny@gentoo.org> (2022-12-25)
# Broken with pytest-7.2.  Repository archived upstream.  No reverse
# dependencies.
# Removal on 2023-01-24.  Bug #888219.
dev-python/pytest-toolbox

# Michał Górny <mgorny@gentoo.org> (2022-12-25)
# The project did not catch, with hardly any data submissions.
# Removal on 2023-01-24.  Bug #843344.
app-portage/gander

# Hans de Graaff <graaff@gentoo.org> (2022-12-25)
# Last release in 2018. Poor quality C extension code. Package
# consistently segfaults on it tests with the latest ruby versions.
# No reverse dependencies. Removal in 30 days.
dev-ruby/hiredis

# Marco Scardovi <mscardovi@icloud.com> (2022-12-22)
# Per robbat2 request, I'm gonna treeclean it as we
# are actually the only one maintaining it.
# No update upstream, EAPI 6 and with a bug #687786
# As replacement, it is possible to use pv --rate-limit
# instead.
# Removal on 2023-01-21
net-misc/valve

# Ionen Wolkens <ionen@gentoo.org> (2022-12-24)
# Upstream dropped wxGTK support in >=games-emulation/pcsx2-1.7.3773,
# and it now always requires Qt6. Masked given Qt6 is also masked in
# Gentoo at the moment. It is recommended to use <=pcsx2-1.7.3772 for
# now, but you can opt-in for testing by searching for "qtbase" in:
# https://gitweb.gentoo.org/repo/gentoo.git/tree/profiles/package.mask
# and package.unmask the whole list alongside pcsx2.
>=games-emulation/pcsx2-1.7.3773

# Arthur Zamarin <arthurzam@gentoo.org> (2022-12-24)
# Live only packages for 4 years! Upstream repositories are archived
# or inactive.
# Removal: 2023-01-23.  Bug #888175.
media-libs/kodi-platform
media-plugins/kodi-game-libretro-fceumm
media-plugins/kodi-peripheral-steamcontroller

# Arthur Zamarin <arthurzam@gentoo.org> (2022-12-24)
# EAPI=6 ebuilds, live only packages for 5.79 years!
# maintainer-needed packages for a long time.
# Removal: 2023-01-23.  Bug #888173.
x11-misc/xowl

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

# 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

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

# 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

# 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

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

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

# 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

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

# 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

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

# 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
>=media-video/bino-2

# 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

# 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

# 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*
>=media-sound/spek-0.8.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