summaryrefslogtreecommitdiff
blob: 145880483951b8433aa58f2efde49051a7d01c7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
####################################################################
#
# 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 ---

# Stefan Strogin <steils@gentoo.org> (2019-10-05)
# Masked for testing
>=dev-libs/libressl-3.0.1

# Michał Górny <mgorny@gentoo.org> (2019-10-05)
# Apparently included in apache-2.4, rendering split package obsolete.
# Removal in 30 days.  Bug #680768.
www-apache/mod_xml2enc

# Michał Górny <mgorny@gentoo.org> (2019-10-05)
# Does not support kernels >3.11 (oldest gentoo-sources is 4.4 atm).
# Not bumped since 2013.  Bump request waiting since 2014.
# Removal in 30 days.  Bug #696376.
sys-block/iscsitarget

# Michał Górny <mgorny@gentoo.org> (2019-10-05)
# Open vulnerability for two years.  No maintainer activity since 2017.
# Upstream is not making any new releases, and patches are accumulating.
# Removal in 30 days.  Bug #662878.
net-libs/openslp

# Michał Górny <mgorny@gentoo.org> (2019-10-04)
# Unmaintained, EAPI 0 packages.  No reverse dependencies.  If you want
# them to stay, please port them to EAPI 7, and preferably become
# the maintainer.
# Removal in 30 days.  Bug #696252.
app-benchmarks/volanomark
app-cdr/mode2cdmaker
app-cdr/xdvdfs-tools
app-mobilephone/cobex
app-office/tedia2sql
app-text/mht-rip
dev-embedded/gnap
dev-libs/xplc
dev-util/smem
dev-vcs/cvsd
dev-vcs/cvsq
dev-vcs/svn2cl
mail-client/biabam
mail-client/pinepgp
mail-filter/clamassassin
mail-filter/clamsmtp
mail-filter/disspam
mail-filter/sqlgrey
media-gfx/cthumb
media-gfx/fblogo
net-dialup/globespan-adsl
net-dns/bind-dns-keygen
net-firewall/fwanalog
net-firewall/fwipsec
net-firewall/quicktables
net-firewall/shapecfg
net-irc/dircproxy
net-irc/jircii
net-irc/miau
net-mail/hotwayd
net-mail/popick
net-mail/poppassd_ceti
net-mail/qmail-notify
net-mail/spamcup
net-mail/vacation
net-mail/yosucker
net-misc/cgterm
net-misc/clockspeed-conf
net-misc/fmirror
net-misc/hashcash
net-misc/ng-utils
net-misc/sendfile
net-news/yencode
net-nntp/slrnconf
net-nntp/ubh
net-p2p/createtorrent
net-p2p/ctcs
net-proxy/ratproxy
net-wireless/airsnort
sys-apps/hwdata-redhat
sys-auth/pam-afs-session
sys-auth/pam_chroot
sys-auth/pam_require
sys-block/dellmgr
sys-fs/gt5

# Michał Górny <mgorny@gentoo.org> (2019-10-04)
# Unmaintained, EAPI 0 packages.  No reverse dependencies.  If you want
# them to stay, please sacrifice the 30 minutes of your life needed
# to port them to EAPI 7, recheck license, update URIs, etc.
# Removal in 30 days.  Bug #696248.
app-dicts/dictd-devils
app-dicts/dictd-dicts
app-dicts/dictd-elements
app-dicts/dictd-foldoc
app-dicts/dictd-gazetteer
app-dicts/dictd-jargon
app-dicts/dictd-misc
app-dicts/dictd-web1913

# Michał Górny <mgorny@gentoo.org> (2019-10-04)
# Unmaintained.  EAPI 0.  Last release in 2009.  No reverse
# dependencies.
# Removal in 30 days.  Bug #696176.
mail-filter/procmail-lib

# Patrice Clement <monsieurp@gentoo.org> (2019-10-02)
# OTR support is fully integrated within irssi since version 1.2.0. Type /help otr
# at the command prompt to find out more. The OTR module is therefore obsolete
# and can be tree-cleaned.
# Masked for removal in 30 days. Bug #696074.
net-irc/irssi-otr

# Ulrich Müller <ulm@gentoo.org> (2019-10-01)
# Fails byte-compilation with recent Emacs versions.
# Homepage and SRC_URI are gone. Upstream package
# is unmaintained, according to EmacsWiki.
# Masked for removal in 30 days. Bug #666836.
app-emacs/mode-compile

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

# Brian Evans <grknight@gentoo.org> (2019-10-01)
# Requires end of life PHP 5.6.  Please upgrade.
# Removal in 90 days. Bug 651784
=www-apps/rutorrent-3.4-r1

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

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

# Matt Turner <mattst88@gentoo.org> (2019-09-28)
# Merged into Mesa. No reverse dependencies. Bug #654464
# Removal in 30 days
media-libs/libtxc_dxtn

# Sergei Trofimovich <slyfox@gentoo.org> (2019-09-28)
# ppc64/ia64 binary-only package was needed to workaround
# gcc-3.3 bugs. Should not be needed anymore. To be removed
# in 30 days.
sys-libs/libstdc++-v3-bin

# Michał Górny <mgorny@gentoo.org> (2019-09-28)
# All of the following packages are unfetchable and mirror-restricted.
#
# games-fps/enemy-territory-etpro: #638092
# games-fps/ut2003-bonuspack-cm: #640552
# games-rpg/runescape-launcher: #625884
# games-server/bf1942-lnxded: #640576
# games-server/nwn-ded: #640578
# games-strategy/mindrover-demo: #640586
# media-fonts/hkscs-ming: #640590
# net-print/adobeps: #687000
# sci-chemistry/xdsstat-bin: #673962
# sci-libs/parmgridgen (+ revdep sci-libs/openfoam): #633888
#
# Removal in 30 days.
games-fps/enemy-territory-etpro
games-fps/ut2003-bonuspack-cm
games-rpg/runescape-launcher
games-server/bf1942-lnxded
games-server/nwn-ded
games-strategy/mindrover-demo
media-fonts/hkscs-ming
net-print/adobeps
sci-chemistry/xdsstat-bin
sci-libs/openfoam
sci-libs/parmgridgen

# Michał Górny <mgorny@gentoo.org> (2019-09-28)
# games-fps/ut2004 is unfetchable for almost 3 years.  The remaining
# packagse are its reverse dependencies, some of them unfetchable
# as well.
# Removal in 30 days.  Bug #601402.
games-fps/ut2004
games-fps/ut2004-action
games-fps/ut2004-airbuccaneers
games-fps/ut2004-bonuspack-cbp1
games-fps/ut2004-bonuspack-cbp2
games-fps/ut2004-bonuspack-ece
games-fps/ut2004-bonuspack-mega
games-fps/ut2004-cor
games-fps/ut2004-crossfire
games-fps/ut2004-data
games-fps/ut2004-deathball
games-fps/ut2004-fragops
games-fps/ut2004-hamsterbash
games-fps/ut2004-muralis
games-fps/ut2004-strikeforce
games-fps/ut2004-troopers
games-fps/ut2004-unwheel
games-server/ut2004-ded

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

# Michał Górny <mgorny@gentoo.org> (2019-09-27)
# The virtual is not really useful since all reverse dependencies
# support only Python 2.7.  All its uses were replaced with direct
# dependencies on dev-python/pmw.
# Removal in 30 days.
virtual/python-pmw

# Ulrich Müller <ulm@gentoo.org> (2019-09-26)
# Blocks its own dependency. Bug #695606.
=x11-libs/libXvMC-1.0.12

# Joonas Niilola <juippis@gentoo.org> (2019-09-24)
# Upstream decided to deprecate this service, and app. Removal in 
# ~30 days. Bug #695562
x11-misc/enlightenment-extra

# Hanno Boeck <hanno@gentoo.org> (2019-09-23)
# Depends on an API by German tax authorities that
# has been disabled, bug #695434
app-office/geierlein

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

# James Le Cuirot <chewi@gentoo.org> (2019-09-19)
# Minetest Game is now installed and managed through the Minetest
# engine in games-action/minetest. Removal in 30 days.
games-action/minetest_game

# Michał Górny <mgorny@gentoo.org> (2019-09-19)
# Last bumped in 2010.  Homepage & SRC_URI gone, redistribution
# is forbidden by license.
# Removal in 30 days.  Bug #680726.
sci-chemistry/azara

# Michał Górny <mgorny@gentoo.org> (2019-09-18)
# Distributing an entire prebuilt distribution as a package turned out
# to be a bad idea.  All current upstream versions contain vulnerable
# packages and lack correct license information.  Upstream does not
# provide a publicly accessible bug tracker, and does not reply to mail.
# Removal in 30 days.  Bug #683724.
app-admin/systemrescuecd-x86
sys-boot/systemrescuecd-x86-grub

# Michał Górny <mgorny@gentoo.org> (2019-09-17)
# Unmaintained EAPI 0 Apache modules + mod_access_dnsbl as a revdep.
# Removal in 30 days.  Bug #694608.
www-apache/mod_access_dnsbl
www-apache/mod_authn_sasl
www-apache/mod_depends
www-apache/mod_dnsbl_lookup
www-apache/mod_flvx
www-apache/mod_geoip2
www-apache/mod_macro
www-apache/mod_umask

# Michał Górny <mgorny@gentoo.org> (2019-09-17)
# Unmaintained libraries with no reverse dependencies.
# Removal in 30 days.  Bug #694602.
dev-db/cppdb
dev-db/odbtp
dev-db/soci
dev-db/xbase
dev-db/xbsql

# Michał Górny <mgorny@gentoo.org> (2019-09-17)
# Last touched in 2005.  EAPI 0.  No clearly defined license.
# Removal in 30 days.  Bug #694598.
sys-fs/wpflash

# Michał Górny <mgorny@gentoo.org> (2019-09-16)
# Unmaintained.  Fails to build.  Last release in 2004.  EAPI 0.
# Removal in 30 days.  Bug #592360.
net-mail/mailsync

# Michał Górny <mgorny@gentoo.org> (2019-09-16)
# Unmaintained.  Does not work anymore.  Last release in 2007.
# Our recommended alternative is app-text/wgetpaste.
# Removal in 30 days.  Bug #678554.
app-text/gnopaster

# Michał Górny <mgorny@gentoo.org> (2019-09-16)
# Unmaintained.  Last touched in 2005.  Keyworded ppc only.  Upstream
# is still alive, so this thing needs a major version bump.
# Removal in 30 days.  Bug #694562.
app-emulation/vmips
app-emulation/vmips-cross-bin

# Michał Górny <mgorny@gentoo.org> (2019-09-15)
# This was an attempt to provide more reliable package merging mechanism
# for Portage.  However, it was never finished and with Portage's
# concept of bug-by-bug neverending backwards compatibility it would
# never be accepted anyway.
# Removal in 30 days.  Bug #694514.
dev-util/atomic-install

# Fabian Groffen <grobian@gentoo.org> (2019-09-15)
# Incorporated in >=app-portage/portage-utils-0.80 as qmanifest
# Removal in 30 days.  Bug #694428
app-portage/hashgen

# Zac Medico <zmedico@gentoo.org> (2019-09-14)
# No reverse dependencies.
# Removal in 30 days.  Bug #694390.
dev-go/go-oauth2

# Michał Górny <mgorny@gentoo.org> (2019-09-14)
# Unmaintained.  All of them were not bumped since 2016.  No reverse
# dependencies.
# Removal in 30 days.  Bug #694398.
dev-go/cli
dev-go/go-gitlab-client
dev-go/toml

# Michał Górny <mgorny@gentoo.org> (2019-09-14)
# sci-biology/goby has been removed.  This package makes little sense
# without it.
# Removal in 30 days.
sci-biology/goby-cpp

# Michał Górny <mgorny@gentoo.org> (2019-09-14)
# Unmaintained.  Vulnerable to arbitrary code execution.  Debian (being
# its current upstream) removed it.  The recommended replacement
# is net-misc/dhcpcd.
# Removal in 30 days.  Bug #694314.
net-misc/pump

# Thomas Sachau <tommy@gentoo.org> (2019-09-14)
# Freemail has been completly rewritten so the current
# ebuild does no longer work for it. In addition the source
# has moved. So masking for removal.
# Removal in 30 days. Bug #628914
net-mail/Freemail

# Michał Górny <mgorny@gentoo.org> (2019-09-14)
# The following packages are unmaintained and have not been tested
# with Python 3.7.  Most of them are either in need of version bumps,
# a few have been declared discontinued upstream.  None of them has
# any reverse dependency.
# Removal in 30 days.  Bug #694280.
dev-python/attrdict
dev-python/behave
dev-python/cfgio
dev-python/django-opensearch
dev-python/django-otp-yubikey
dev-python/django-phonenumber-field
dev-python/grafanalib
dev-python/libasyncns-python
dev-python/maybe
dev-python/mockredispy
dev-python/parse
dev-python/parse-type
dev-python/pycallgraph
dev-python/pyroma
dev-python/pytest-raisesregexp
dev-python/python-consul
dev-python/python-ptrace
dev-python/pyuv
dev-python/safety
dev-python/sphinxcontrib-cheeseshop
dev-python/structlog
dev-python/torment
dev-python/twilio
dev-python/xonsh
dev-python/yubiotp

# Michał Górny <mgorny@gentoo.org> (2019-09-14)
# The following packages are unmaintained and do not declare support
# for Python 3.  Most of them are either in need of version bumps,
# or are dead upstream (haven't had a release since 2009-2015).
# None of them have any reverse dependencies.
# Removal in 30 days.  Bug #694280.
dev-python/Ming
dev-python/casuarius
dev-python/imdbpy
dev-python/kaa-base
dev-python/kaa-display
dev-python/kaa-imlib2
dev-python/kaa-metadata
dev-python/larch
dev-python/pybloomfiltermmap
dev-python/pylirc
dev-python/pyringe
dev-python/pystdf
dev-python/python-dsv
dev-python/python-gudev
dev-python/python-spidermonkey
dev-python/python-virtkey
dev-python/rtf2xml
dev-python/tmdb3
dev-python/tracing
dev-python/txsocksx
dev-python/wsgilog
dev-python/xmpppy

# Michał Górny <mgorny@gentoo.org> (2019-09-13)
# Last bumped in 2017.  Newer version fails to fetch.  Pending bump.
# Unresolved license issues.
# Removal in 30 days.  Bug #694264.
dev-util/idea-ultimate

# Michał Górny <mgorny@gentoo.org> (2019-09-13)
# Unmaintained.  Last bumped in 2017.  Unresolved license issues.
# Removal in 30 days.  Bug #694274.
dev-util/webstorm

# Michał Górny <mgorny@gentoo.org> (2019-09-13)
# Unmaintained.  No reverse dependencies.
# Removal in 30 days.  Bug #694260.
sys-libs/libmath++
sys-libs/rvm
sys-libs/system-config-base

# Michał Górny <mgorny@gentoo.org> (2019-09-13)
# Unmaintained.  All look pretty dead.  No reverse dependencies.
#
# x11-libs/gtkhotkey: 2009
# x11-libs/libaosd: 2010
# x11-libs/libproplist: ancient?
#
# Removal in 30 days.  Bug #694258.
x11-libs/gtkhotkey
x11-libs/libaosd
x11-libs/libproplist

# Michał Górny <mgorny@gentoo.org> (2019-09-13)
# Unmaintained.  Not bumped since 2011.  Fails to build due to broken
# build system.  No reverse dependencies.
# Removal in 30 days.  Bug #500616.
net-libs/nacl

# Michał Górny <mgorny@gentoo.org> (2019-09-13)
# Unmaintained.  No reverse dependencies.
# Removal in 30 days.  Bug #694256.
net-libs/ccnet
net-libs/ccrtp
net-libs/dslib
net-libs/libgmail
net-libs/libs3
net-libs/libyahoo2

# Michał Górny <mgorny@gentoo.org> (2019-09-13)
# Unmaintained.  No reverse dependencies.
#
# media-libs/libbmp: 2010, homepage gone.
# media-libs/libmkv: 2011.
# media-libs/sampleicc: 2014, last upstream 2016.
#
# Removal in 30 days.  Bug #694254.
media-libs/libbmp
media-libs/libmkv
media-libs/sampleicc

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  Current version from 2016, needs bump.  No reverse
# dependencies.
# Removal in 30 days.  Bug #694242.
dev-libs/xmlwrapp

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  Last release in 2011.  No reverse dependencies.
# Removal in 30 days.  Bug #694240.
dev-libs/xmlrpc-epi

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  No reverse dependencies.
# Removal in 30 days.  Bug #694238.
dev-libs/xml-security-c

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  Last release in 1998.  No reverse dependencies.
# Removal in 30 days.  Bug #694236.
dev-libs/syncdir

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  Current version from 2011, latest upstream 2015.
# No reverse dependencies.
# Removal in 30 days.  Bug #694234.
dev-libs/stlsoft

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  Last release in 2005.  No reverse dependencies.
# Removal in 30 days.  Bug #694228.
dev-libs/socketstream

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  Last release in 2014.  No reverse dependencies.
# Removal in 30 days.  Bug #694228.
dev-libs/sblim-sfcc

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  Development stalled in 2009.  No reverse dependencies.
# dev-libs/libvterm is the upstream recommended replacement.
# Removal in 30 days.  Bug #694226.
dev-libs/rote

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  Added in 2008.  Live ebuild only.  No reverse
# dependencies.
# Removal in 14 days.  Bug #694224.
dev-libs/polylib

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  Last release in <=2004.  Reported to fail to build.
# No reverse dependencies.
# Removal in 30 days.  Bug #694222.
dev-libs/pcre++

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  Added in 2005 and not bumped since.  Homepage gone.
# No reverse dependencies.
# Removal in 30 days.  Bug #694218.
dev-libs/mdsplib

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  Last bumped in 2009.  Homepage gone.  No reverse
# dependencies.
# Removal in 30 days.  Bug #694216.
dev-libs/mapm

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  Last bumped in 2011.  Homepage gone.  No reverse
# dependencies.
# Removal in 30 days.  Bug #694214.
dev-libs/ltxml

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  EOL-ed upstream.  No reverse dependencies.
# Removal in 30 days.  Bug #694212.
dev-libs/log4shib

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  Old GNOME library, last release in 2000.  No reverse
# dependencies.
# Removal in 30 days.  Bug #694208.
dev-libs/libunicode

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  Current version is from 2015, and is pending bump.
# No reverse dependencies.
# Removal in 30 days.  Bug #694206.
dev-libs/libucl

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  Added in 2002 and not bumped since.  Homepage gone.
# No amd64 keyword.  No reverse dependencies.
# Removal in 30 days.  Bug #694204.
dev-libs/libtrain

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  Last bumped in 2011.  Homepage gone.  No amd64 keyword.
# No reverse dependencies.
# Removal in 30 days.  Bug #694202.
dev-libs/libsqlora8

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  Last release in 2009.  No reverse dependencies.
# Removal in 30 days.  Bug #694200.
dev-libs/libproccpuinfo

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  Current version from 2015, last release in 2016.
# No reverse dependencies.
# Removal in 30 days.  Bug #694198.
dev-libs/libntru

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  Last release in 2014.  Declared obsolete upstream.
# No reverse dependencies.
# Removal in 30 days.  Bug #694196.
dev-libs/libmongo-client

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  Last release in 2009.  No reverse dependencies.
# Removal in 30 days.  Bug #694192.
dev-libs/libmail

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  Last release in 2009.  No reverse dependencies.
# Removal in 30 days.  Bug #694188.
dev-libs/libidmef

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  Last bumped in 2005.  Homepage gone.  No reverse
# dependencies.
# Removal in 30 days.  Bug #694186.
dev-libs/libhtmlparse

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  Last release in 2009.  No reverse dependencies.
# Removal in 30 days.  Bug #694184.
dev-libs/libhome

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  Both fail with modern versions of dev-util/waf
# (#664762, #663712).  No reverse dependencies.
# Removal in 30 days.  Bug #694182.
dev-libs/libcxml
dev-libs/locked_sstream

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  No reverse dependencies.  Its presence breaks
# pulseaudio (#672468).
# Removal in 30 days.  Bug #694180.
dev-libs/libcli

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  Last release in 2010.  No reverse dependencies.
# Removal in 30 days.  Bug #694178.
dev-libs/libcaldav

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  The driver is now included in the kernel,
# so the package installs only a header file.  However, according
# to upstream this file violated Lego Mindstorms SDK license.
# Removal in 30 days.  Bug #694176.
dev-libs/legousbtower

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  No reverse dependencies.  Multiple alternatives exist,
# most with less restrictive licenses (e.g. dev-libs/glib).
# Removal in 30 days.  Bug #694174.
dev-libs/hashit

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  Last release from 2010.  No reverse dependencies.
# Removal in 30 days.  Bug #694170.
dev-libs/fampp2

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  The current release is from 2005, pending version bump
# since 2012.  No reverse dependencies.
# Removal in 30 days.  Bug #694168.
dev-libs/elfio

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  Current release is from 2014, and needs version bump.
# No reverse dependencies.
# Removal in 30 days.  Bug #694166.
dev-libs/cgicc

# Michał Górny <mgorny@gentoo.org> (2019-09-12)
# Unmaintained.  Fails to build against current version of boost.
# No reverse dependencies (last one removed in April).
# Removal in 30 days.  Bug #691264.
dev-libs/actor-framework

# Michał Górny <mgorny@gentoo.org> (2019-09-11)
# Unmaintained.  Last bumped in 2016, many versions behind now.
# Has test failures reported.  No reverse dependencies.
# Removal in 30 days.  Bug #694056.
dev-libs/gecode

# Michał Górny <mgorny@gentoo.org> (2019-09-11)
# Ruby 2.4-only.  Requires old version of dev-libs/gecode.  No reverse
# dependencies.
# Removal in 30 days.  Bug #694040.
dev-ruby/dep_selector

# Michał Górny <mgorny@gentoo.org> (2019-09-11)
# Both packages are unmaintained, and are many releases behind.
# hadolint is reported to fail to build, and requires old version
# of language-docker.  Newer versions of language-docker have
# no revdeps.
# Removal in 30 days.  Bug #674660.
dev-haskell/language-docker
dev-util/hadolint

# Michał Górny <mgorny@gentoo.org> (2019-09-11)
# Gentoo/FreeBSD project is effectively dead.  The core packages are
# outdated and vulnerable.  We do not have a fully working install,
# and I have not been able to find anyone knowing how to create one.
# Leaf packages are failing to build more and more frequently, some
# simply because of our outdated base system.  The profiles were marked
# exp two months ago not to stall other developers, core packages are
# masked for at least two months, and nowadays they have unsatisfied
# dependencies already.
#
# If anyone wishes to take the effort over, please consider it urgent.
# If not, I will slowly start removing remaining parts of FreeBSD
# after this batch, and checking which packages can be salvaged.
#
# Removal in 30 days.  Bug #683284.
sys-freebsd/boot0
sys-freebsd/freebsd-bin
sys-freebsd/freebsd-cddl
sys-freebsd/freebsd-lib
sys-freebsd/freebsd-libexec
sys-freebsd/freebsd-mk-defs
sys-freebsd/freebsd-pam-modules
sys-freebsd/freebsd-pf
sys-freebsd/freebsd-rescue
sys-freebsd/freebsd-sbin
sys-freebsd/freebsd-share
sys-freebsd/freebsd-sources
sys-freebsd/freebsd-ubin
sys-freebsd/freebsd-usbin
sys-freebsd/ubin-wrappers

# Michał Górny <mgorny@gentoo.org> (2019-09-11)
# Unmaintained.  Ancient.  Carries a lot of patches, and has even more
# bugs reported.  Last rites were cancelled due to Gentoo/FreeBSD 1 year
# ago but that project is dead nowadays.  Many alternatives exist,
# sys-process/cronie is probably the closest one (it's a fork).
# Removal in 30 days.  Bug #694036.
sys-process/vixie-cron

# Michał Górny <mgorny@gentoo.org> (2019-09-11)
# Unmaintained.  Last bumped in 2013.  No apparent advantage over
# the two other implementations in Gentoo (dev-util/pkgconfig,
# dev-util/pkgconf).
# Removal in 30 days.  Bug #694034.
dev-util/pkgconfig-openbsd

# Michał Górny <mgorny@gentoo.org> (2019-09-09)
# Unmaintained.  Last bumped in 2009, last upstream release in 2014.
# EAPI 0.  No amd64 keyword.
# Removal in 30 days.  Bug #693944.
www-client/ck4up

# Michał Górny <mgorny@gentoo.org> (2019-09-09)
# Last bumped in 2006.  Homepage gone (domain taken over).  EAPI 0.
# No amd64 keyword.
# Removal in 30 days.  Bug #693942.
www-apps/metadot

# Michał Górny <mgorny@gentoo.org> (2019-09-09)
# Unmaintained.  EAPI 0.  No amd64 keyword.  Does not support most
# of the modern browsers.  Obsoleted by x11-misc/xdg-utils
# and desktop-specific tools.
# Removal in 30 days.  Bug #693940.
www-apps/browser-config

# Michał Górny <mgorny@gentoo.org> (2019-09-09)
# Unmaintained.  Added in 2005.  Last upstream update in 2003.  EAPI 0.
# No amd64 keyword.
# Removal in 30 days.  Bug #693938.
www-apache/mod_diagnostics

# Michał Górny <mgorny@gentoo.org> (2019-09-09)
# Last release in 2005.  EAPI 0.  No amd64 keyword.  No reverse
# dependencies.
# Removal in 30 days.  Bug #693936.
sys-libs/lrmi

# Michał Górny <mgorny@gentoo.org> (2019-09-09)
# Added in 2006 and not updated since.  EAPI 0.  Keyworded only for dead
# x86-fbsd.
# Removal in 30 days.  Bug #693934.
sys-fs/scan-ffs

# Michał Górny <mgorny@gentoo.org> (2019-09-09)
# Added in 2005, not bumped since.  Last upstream release in 2007.
# EAPI 0.  No amd64 keyword.
# Removal in 30 days.  Bug #693932.
sys-cluster/ocfs

# Michał Górny <mgorny@gentoo.org> (2019-09-09)
# Added in 2005, no upstream releases since.  EAPI 0.  No amd64 keyword.
# -master is reported to fail to build.
# Removal in 30 days.  Bug #693930.
sys-cluster/feedbackd-agent
sys-cluster/feedbackd-master

# Michał Górny <mgorny@gentoo.org> (2019-09-09)
# Unmaintained.  Last bumped in 2009, last upstream release from 2005.
# EAPI 0.  No amd64 keyword.
# Removal in 30 days.  Bug #693908.
sys-boot/raincoat

# Michał Górny <mgorny@gentoo.org> (2019-09-09)
# Added in 2006, no new releases since.  EAPI 0.  No amd64 keyword.
# Removal in 30 days.  Bug #693906.
sys-auth/icmpdn

# Michał Górny <mgorny@gentoo.org> (2019-09-09)
# Not touched since 2005.  EAPI 0.  No amd64 keyword.
# Removal in 30 days.  Bug #693904.
sys-apps/netboot-base

# Michał Górny <mgorny@gentoo.org> (2019-09-09)
# Added in 2005 and not bumped since.  Homepage gone.  EAPI 0.  No amd64
# keyword.
# Removal in 30 days.  Bug #693902.
sys-apps/fwcrv

# Michał Górny <mgorny@gentoo.org> (2019-09-09)
# Unmaintained.  Added in 2004 and not bumped since.  Homepage is gone.
# EAPI 0.  No amd64 keyword.
# Removal in 30 days.  Bug #693900.
sys-apps/checkservice

# Michał Górny <mgorny@gentoo.org> (2019-09-09)
# Unmaintained.  Last bumped in 2012, last release in 2007.  EAPI 0.
# No amd64 keyword.
# Removal in 30 days.  Bug #693888.
net-wireless/orinoco-fwutils

# Michał Górny <mgorny@gentoo.org> (2019-09-09)
# Unmaintained.  Last release in 2004.  EAPI 0.  No amd64 keyword.
# Removal in 30 days.  Bug #693886.
net-p2p/xnap

# Michał Górny <mgorny@gentoo.org> (2019-09-09)
# Unmaintained.  Added in 2004, last release in 2002.  EAPI 0.
# QA issues.  No amd64 keyword.
# Removal in 30 days.  Bug #693884.
net-p2p/smet2html

# Michał Górny <mgorny@gentoo.org> (2019-09-09)
# Unmaintained.  Added in 2004 and not bumped since.  Homepage dead.
# EAPI 0.  No amd64 keyword.
# Removal in 30 days.  Bug #693882.
net-p2p/myster

# Michał Górny <mgorny@gentoo.org> (2019-09-09)
# Unmaintained.  Last bumped in 2008, last upstream activity in 2010.
# EAPI 0.  QA issues.  No amd64 keyword.
# Removal in 30 days.  Bug #693880.
net-p2p/mktorrent-borg

# Michał Górny <mgorny@gentoo.org> (2019-09-09)
# Added in 2002 and not bumped since.  EAPI 0.  No amd64 keyword.
# Sources are no longer to be found on the homepage, and upstream
# explicitly points to third-party applications.
# Removal in 30 days.  Bug #693878.
net-misc/shout

# Michał Górny <mgorny@gentoo.org> (2019-09-09)
# Unmaintained.  Last bumped in 2003.  Homepage gone.  EAPI 0.
# No amd64 keyword.
# Removal in 30 days.  Bug #693876.
net-misc/hlfl

# Michał Górny <mgorny@gentoo.org> (2019-09-09)
# Unmaintained.  Last bumped in 2003, no new releases since.  EAPI 0.
# No amd64 keywords.
# Removal in 30 days.  Bug #693868.
net-mail/gensig

# Michał Górny <mgorny@gentoo.org> (2019-09-09)
# Both added in 2003, no new releases since.  Homepage dead.  EAPI 0.
# No amd64 keywords.
# Removal in 30 days.  Bug #693866.
net-mail/qmail-lint
net-mail/qmail-qsanity

# Michał Górny <mgorny@gentoo.org> (2019-09-09)
# Unmaintained.  Added in 2001, no new releases since.  EAPI 0.
# Multiple QA issues.  No amd64 keywords.
# Removal in 30 days.  Bug #693864.
net-mail/fastforward

# Michał Górny <mgorny@gentoo.org> (2019-09-08)
# Suite of NIH libraries.  Only dev-libs/vanessa-logger has external
# revdep of net-misc/aggregate-flim.  All others only revdep between
# themselves.  Almost all packages are EAPI 0, and date back
# to 2002-2010 (one is EAPI 5 / 2015 but has no revdeps).
# Removal in 30 days.  Bug #693820.
dev-libs/vanessa-adt
dev-libs/vanessa-logger
net-libs/vanessa-mcast
net-libs/vanessa-socket
net-misc/aggregate-flim

# Michał Górny <mgorny@gentoo.org> (2019-09-08)
# Unmaintained.  Added in 2004.  Upstream is gone.  EAPI 0.  No amd64
# keyword.  No reverse dependencies.
# Removal in 30 days.  Bug #693812.
net-libs/roadrunner

# Michał Górny <mgorny@gentoo.org> (2019-09-08)
# Unmaintained.  Added in 2006, no newer releases.  EAPI 0.  No amd64
# keywords.
# Removal in 30 days.  Bug #693812.
net-dns/tinystats

# Michał Górny <mgorny@gentoo.org> (2019-09-08)
# Last bumped in 2009, last release in 2010.  EAPI 0.  No amd64 keyword.
# Removal in 30 days.  Bug #693808.
net-dialup/dgcmodem

# Michał Górny <mgorny@gentoo.org> (2019-09-08)
# Added in 2000 and not bumped since.  EAPI 0.  No amd64 keywords.
# Homepage and SRC_URI dead.  Original xanim was removed in 2016.
# Removal in 30 days.  Bug #693804.
media-video/xanim-export

# Michał Górny <mgorny@gentoo.org> (2019-09-08)
# Last bumped in 2007.  EAPI 0.  Multiple QA issues.  x86-only.
# Homepage is long gone.
# Removal in 30 days.  Bug #693802.
media-sound/imp3sh

# Michał Górny <mgorny@gentoo.org> (2019-09-08)
# Last bumped in 2007.  EAPI 0.  Known to be broken on amd64.
# Homepage dead.
# Removal in 30 days.  Bug #693800.
media-sound/hearnet

# Michał Górny <mgorny@gentoo.org> (2019-09-08)
# Added in 2004 and not updated since.  Incorrect license.  EAPI 0.
# Proprietary 32-bit x86 executable.  Homepage and SRC_URI are dead,
# and we shouldn't be mirroring distfiles in the first place.
# Removal in 30 days.  Bug #693798.
sys-boot/psoload

# Michał Górny <mgorny@gentoo.org> (2019-09-08)
# Added in 2003 and not updated since.  Unclear license.  EAPI 0.
# No amd64 keywords.  Homepage and SRC_URI are dead, and we probably
# shouldn't be mirroring distfiles in the first place.
# Removal in 30 days.  Bug #693796.
net-misc/netprofiles-ims

# Michał Górny <mgorny@gentoo.org> (2019-09-08)
# Added in 2004 and not updated since.  Unclear license.  EAPI 0.
# Homepage and SRC_URI are dead, and we probably shouldn't be mirroring
# them in the first place.
# Removal in 30 days.  Bug #693794.
media-video/maven-poke

# Michał Górny <mgorny@gentoo.org> (2019-09-08)
# Last bumped in 2009.  EAPI 0.  Keyworded only for the dead x86-bsd
# port.  No reverse dependencies.
# Removal in 30 days.  Bug #693768.
dev-libs/libvolume_id

# Michał Górny <mgorny@gentoo.org> (2019-09-08)
# Unmaintained.  Added in 2002 and not updated since.  EAPI 0.  No amd64
# keywords.  Apparently the only revdep was Stratego which was removed
# in the past.
# Removal in 30 days.  Bug #693760.
dev-libs/cpl-stratego

# Michał Górny <mgorny@gentoo.org> (2019-09-08)
# Unmaintained.  Added in 2004 and not updated since.  Homepage dead.
# EAPI 0.  No amd64 keywords.  No reverse dependencies.
# Removal in 30 days.  Bug #693758.
dev-libs/asyncresolv

# Michał Górny <mgorny@gentoo.org> (2019-09-08)
# Unmaintained.  Last release in 2004.  EAPI 0, no amd64 keywords.
# Removal in 30 days.  Bug #693756.
dev-lang/gwydion-dylan-bin

# Michał Górny <mgorny@gentoo.org> (2019-09-08)
# Both packages are unmaintained, EAPI 0, not keyworded on amd64.
# Both were last bumped in 2010.  Tinycobol had one release afterwards,
# after which it has been declared dead (in 2011).  It is the only
# reverse dependency of vbisam, and it has no reverse dependencies
# itself.
# Removal in 30 days.  Bug #693752.
dev-db/vbisam
dev-lang/tinycobol

# Michał Górny <mgorny@gentoo.org> (2019-09-08)
# Unmaintained.  EAPI 0.  Added in 2003 and not updated since.
# Apparently FreeBSD had a 1.4.4 but upstream homepage is already gone.
# Not keyworded on amd64.
# Removal in 30 days.  Bug #693750.
app-text/freepwing

# Michał Górny <mgorny@gentoo.org> (2019-09-08)
# Added in 2008 and not updated since.  EAPI 0.  Upstream homepage
# disappeared.  Not keyworded on amd64.
# Removal in 30 days.  Bug #693748.
app-emulation/vov

# Michał Górny <mgorny@gentoo.org> (2019-09-08)
# Does not start.  Last bumped in 2012, numerous releases behind
# upstream.
# Removal in 30 days.  Bug #609652.
net-p2p/saku

# Michał Górny <mgorny@gentoo.org> (2019-09-08)
# Last bumped in 2008.  Needs porting out of games.eclass.  Apparently
# does not work in testing mode, and requires rare hardware and media
# for normal operation.
# Removal in 30 days.  Bug #654290.
games-emulation/daphne

# Michał Górny <mgorny@gentoo.org> (2019-09-08)
# Unmaintained.  EAPI 0.  Homepage gone.  Potential netqmail maintainer
# indicates that it can be replaced by running one daemon from normal
# qmail install.
# Removal in 30 days.  Bug #693746.
mail-mta/mini-qmail

# Michał Górny <mgorny@gentoo.org> (2019-09-07)
# Unmaintained.  Beta version from 2012.  The ebuild is currently
# broken, and since it relies on CD install, so it needs someone with
# the CD to fix it.  The original maintainer suggests trying Serious Sam
# Fusion in wine instead.
# Removal in 30 days.  Bug #551174.
games-fps/serious-sam-tfe

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

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

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

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

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

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

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

# Brian Evans <grknight@gentoo.org> (2019-07-25)
# Mask new beta versions until release
dev-lang/php:7.4
~virtual/httpd-php-7.4

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

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

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

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

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

# Matt Turner <mattst88@gentoo.org> (2019-03-16)
# Previously packaged drivers, now removed from Gentoo.
# Keep this mask in place so users are aware, but can also easily unmask them
# in an overlay if so desired.
x11-drivers/xf86-input-citron
x11-drivers/xf86-video-apm
x11-drivers/xf86-video-ark
x11-drivers/xf86-video-chips
x11-drivers/xf86-video-cirrus
x11-drivers/xf86-video-cyrix
x11-drivers/xf86-video-i128
x11-drivers/xf86-video-i740
x11-drivers/xf86-video-impact
x11-drivers/xf86-video-mach64
x11-drivers/xf86-video-neomagic
x11-drivers/xf86-video-newport
x11-drivers/xf86-video-nsc
x11-drivers/xf86-video-rendition
x11-drivers/xf86-video-s3
x11-drivers/xf86-video-s3virge
x11-drivers/xf86-video-savage
x11-drivers/xf86-video-sis
x11-drivers/xf86-video-sisusb
x11-drivers/xf86-video-sunbw2
x11-drivers/xf86-video-suncg14
x11-drivers/xf86-video-suncg3
x11-drivers/xf86-video-suncg6
x11-drivers/xf86-video-sunffb
x11-drivers/xf86-video-sunleo
x11-drivers/xf86-video-suntcx
x11-drivers/xf86-video-tdfx
x11-drivers/xf86-video-tga
x11-drivers/xf86-video-trident
x11-drivers/xf86-video-tseng
x11-drivers/xf86-video-voodoo

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

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

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

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

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

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

# Andreas Sturmlechner <asturm@gentoo.org> (2018-11-25)
# Masked per security vulnerability CVE-2018-14345, bug #661510
# Keeping it masked while users have unsolved issues with >0.15.0.
<x11-misc/sddm-0.18.0

# Ian Stakenvicius <axs@gentoo.org> (2018-11-07)
# on behalf of Mozilla Project <mozilla@gentoo.org>
# Mask old/vuln thunderbird for removal by 2019,
# see security bug 670102
<mail-client/thunderbird-60.0
<mail-client/thunderbird-bin-60.0

# Brian Evans <grknight@gentoo.org> (2018-11-05)
# Causes a dependency loop in the OpenRC script. Bug #651998
=sys-fs/cryptsetup-2.0.5-r1

# 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

# Michał Górny <mgorny@gentoo.org> (2018-08-01)
# Multiprocessing versions of gemato.  They are known to hang on some
# users, so let's keep them masked until somebody figures out what's
# wrong.  Bug #647964.
~app-portage/gemato-14.1m
~app-portage/gemato-9999m

# Kent Fredric <kentnl@gentoo.org> (2018-05-27)
# Subject to Man-in-the-middle security bypass vulnerability.
# Retained in tree only for users who need older versions
# for compatibility reasons.
# Bug: #623942
<dev-perl/DBD-mysql-4.44.0

# Matt Turner <mattst88@gentoo.org> (2018-05-25)
# New package. Needs to interact with media-libs/mesa and
# x11-drivers/nvidia-drivers. Work in progress.
media-libs/libglvnd

# Brian Evans <grknight@gentoo.org> (2018-04-20)
# Likely to break a lot of software
# Masked for initial testing
>=dev-db/mysql-connector-c++-8.0.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

# Kent Fredric <kentnl@gentoo.org> (2017-10-11)
# This package should now be provided entirely by dev-lang/perl,
# stable perl 5.24 provides Unicode-Collate-1.140.0
# testing perl 5.26 provides Unicode-Collate-1.190.0
# This should only be unmasked if you're locking to perl-5.24 and need
# a newer version of virtual/perl-Unicode-Collate
# If you're upgrading to perl-5.26, please do:
#   emerge -C perl-core/Unicode-Collate
# See bug #634040
<perl-core/Unicode-Collate-1.190.0-r99

# Patrice Clement <monsieurp@gentoo.org> (2017-09-09)
# Python 3 port is almost complete with version 0.6.0. Users might run into
# minor bumps here and there which is why the mask is still in place for the
# time being.
>=dev-java/javatoolkit-0.6.0

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

# Kent Fredric <kentnl@gentoo.org> (2017-07-21)
# Masked due to serious regression that introduces widespread data
# corruption when storing data in blobs. Masked, because any code
# that is written to use this version is now dependent on this version
# and older versions will corrupt your code instead.
# However, any existing packages should not use this version.
# See: https://github.com/perl5-dbi/DBD-mysql/issues/117
=dev-perl/DBD-mysql-4.42.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

# Hans de Graaff <graaff@gentoo.org> (2017-06-05)
# Bundles obsolete and vulnerable webkit version.
# Upstream has stopped development and recommends using
# headless mode in >=www-client/chromium-59.
# Masked for removal in 90 days. Bug #589994.
www-client/phantomjs
dev-ruby/poltergeist

# Michał Górny <mgorny@gentoo.org> (2017-05-22)
# for Maciej S. Szmigiero <mail@maciej.szmigiero.name>
# Any version above 5.100.138 breaks b43 driver in various ways.
# Also, b43 wiki page says to use 5.100.138. Bug #541080.
>=sys-firmware/b43-firmware-6.30.163.46

# Michał Górny <mgorny@gentoo.org>, Andreas K. Hüttel <dilfridge@gentoo.org>,
# Matthias Maier <tamiko@gentoo.org> (2017-05-21 and later updates)
# These old versions of toolchain packages (binutils, gcc, glibc) are no
# longer officially supported and are not suitable for general use. Using
# these packages can result in build failures (and possible breakage) for
# many packages, and may leave your system vulnerable to known security
# exploits.
# If you still use one of these old toolchain packages, please upgrade (and
# switch the compiler / the binutils) ASAP. If you need them for a specific
# (isolated) use case, feel free to unmask them on your system.
<sys-devel/gcc-5.4
<sys-libs/glibc-2.28
<sys-devel/binutils-2.32-r1
<sys-devel/binutils-hppa64-2.32-r1
<sys-libs/binutils-libs-2.32-r1

# Michał Górny <mgorny@gentoo.org> (2017-05-20)
# Old versions of CUDA and their reverse dependencies. They do not
# support GCC 5+, and are really old.
# (updated 2017-12-27 with cuda < 8 because of gcc < 5 mask)
<dev-python/pycuda-2016
<dev-util/nvidia-cuda-sdk-8
<dev-util/nvidia-cuda-toolkit-8
net-wireless/cpyrit-cuda

# Kent Fredric <kentnl@gentoo.org> (2017-02-04)
# Unsecure versions that have been only restored to tree
# to resolve compatibility problems with mail-filter/amavisd-new
# Use with caution due to these being removed for CVE-2016-1251
# Bug: #601144
# Bug: #604678
<dev-perl/DBD-mysql-4.41.0

# 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

# Tim Harder <radhermit@gentoo.org> (2016-11-03)
# Masked for testing
=sys-fs/fuse-3*
=net-fs/sshfs-3*

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

# Ulrich Müller <ulm@gentoo.org> (2014-07-15)
# Permanently mask sys-libs/lib-compat and its reverse dependencies,
# pending multiple security vulnerabilities and QA issues.
# See bugs #515926 and #510960.
sys-libs/lib-compat
sys-libs/lib-compat-loki
games-action/phobiaii
games-fps/rtcw
games-fps/unreal
games-strategy/heroes3
games-strategy/smac

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

# Chris Gianelloni <wolf31o2@gentoo.org> (2008-03-03)
# Masking due to security bug #194607 and security bug #204067
games-fps/doom3
games-fps/doom3-cdoom
games-fps/doom3-chextrek
games-fps/doom3-data
games-fps/doom3-demo
games-fps/doom3-ducttape
games-fps/doom3-eventhorizon
games-fps/doom3-hellcampaign
games-fps/doom3-inhell
games-fps/doom3-lms
games-fps/doom3-mitm
games-fps/doom3-roe
games-fps/quake4-bin
games-fps/quake4-data
games-fps/quake4-demo

# <klieber@gentoo.org> (2004-04-01)
# The following packages contain a remotely-exploitable
# security vulnerability and have been hard masked accordingly.
#
# Please see https://bugs.gentoo.org/show_bug.cgi?id=44351 for more info
#
games-fps/unreal-tournament-goty
games-fps/unreal-tournament-strikeforce
games-fps/unreal-tournament-bonuspacks
games-fps/aaut