summaryrefslogtreecommitdiff
blob: 3ddc66b42dd92aff8d07bbf9372bd5d8ae25baaa (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
####################################################################
# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.14305 2012/12/18 01:36:41 blueness Exp $
#
# When you add an entry to the top of this file, add your name, the date, 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> (28 Jun 2012)
## # 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")
# d) the word "removal"
#
## Example:
##
## Dev E. Loper <developer@gentoo.org> (25 Jan 2012)
## 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 ---

# Anthony G. Basile <blueness@gentoo.org> (17 Dec 2012)
# Masked for removal in 30 days. (17 Jan 2012)
# This is provided by USE=xtended webalizer, bug #445226
app-admin/webalizer-xtended

# Mike Pagano <mpagano@gentoo.org> (14 Dec 2012)
# Masked for testing
>=app-portage/portpeek-2.1.2

# Andrey Grozin <grozin@gentoo.org> (14 Dec 2012)
# Stuff from the lisp overlay, with some version bumps
# Masked for testing
>=dev-lisp/gentoo-init-1.0
>=dev-lisp/asdf-2.26
>=dev-lisp/sbcl-1.1.2

# Sebastien Fabbro <bicatali@gentoo.org> (13 Dec 2012)
# Necessary removal to get rid of very unstable sci-libs/lapack-atlas
# Packages are in the science overlay
# until sci-libs/atlas replacement make it to the main tree
sci-astronomy/sextractor
sci-astronomy/scamp

# Justin Lecher <jlec@gentoo.org> (13 Dec 2012)
# sci-libs/(lapack/blas)-altas will be removed due to
# fragile build and runtime behaviour #372323.
# Alternatives are sci-libs/lapack-reference & sci-libs/blas-reference.
# Follow up package named sci-libs/atlas can be found in
# sci overlay and will be moved once ready for prime time
sci-libs/blas-atlas
sci-libs/lapack-atlas

# Michał Górny <mgorny@gentoo.org> (07 Dec 2012)
# Experimental version disabling XDM-AUTHENTICATION-1 (in favor
# of MIT-MAGIC-COOKIE-1). It should fix bug #306223 but it can also
# raise unknown issues. Bug #445662 for more details.
=x11-apps/xdm-1.1.11-r2

# Doug Goldstein <cardoe@gentoo.org> (07 Dec 2012)
# Masked for removal in 30 days. (07 Jan 2012)
# Upstream says the project is dead and is being replaced
app-emulation/qemulator

# Sergei Trofimovich <slyfox@gentoo.org> (06 Dec 2012)
# dev-haskell/time is a core library for ghc-6.12 and upper.
# Please, unmerge it from your system and fix the breakage
# with haskell-updater.
# Masked for removal.
dev-haskell/time

# Alexandre Rostovtsev <tetromino@gentoo.org> (05 Dec 2012)
# Masked for removal in 30 days.
# Incompatible with recent cogl and clutter versions (bug #435164)
mail-client/claws-mail-geolocation
<media-libs/libchamplain-0.9
<media-libs/clutter-gtk-1.0

# Bernard Cafarelli <voyageur@gentoo.org) (03 Dec 2012)
# Mask release candidates
=sys-devel/llvm-3.2_rc*
=sys-devel/clang-3.2_rc*
=sys-devel/dragonegg-3.2_rc*

# Christoph Jungans <ottxor@gentoo.org> (30 Nov 2012)
# maked for testing
sci-libs/openmm

# Sebastian Pipping <sping@gentoo.org> (27 Nov 2012)
# Masked for removal in 30 days.
# Licensing issues, turned out not distributable (bug #444332)
app-admin/profiler

# Sebastian Pipping <sping@gentoo.org> (27 Nov 2012)
# Masked for removal in 30 days.
# Server and software development discontinued upstream (bug #438082)
app-admin/smolt

# Tim Harder <radhermit@gentoo.org> (27 Nov 2012)
# Masked for testing
=media-libs/libsfml-2*

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Violates java packaging policy (#168867), no release since
# 2006, it would require jdic in the tree but that needs huge
# work to be done and someone wanting to do that.
# Removal in a month.
net-proxy/paros

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Fails to install (#195030), ELF installed into /usr/share (#297140)
# upstream is dead for a long time, no other distribution is still
# supplying it. Removal in a month.
net-misc/ups-monitor

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Upstream is dead, doesn't build against latest kernels (#199294).
# Removal in a month.
app-emulation/mol

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Upstream is dead, doesn't build with recent kernels (#201922),
# kernel-3.6 shouldn't need it. Removal in a month.
net-wireless/fsam7400

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Upstream dead for ages, multiple opened bug, possible legal
# problems (#211846). Removal in a month.
net-wireless/acx
net-wireless/acx-firmware

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Doesn't build against recent kernels (#247898), all its supported
# devices are not supported by latest kernels. Removal in a month.
# See http://wiki.debian.org/linux-wlan-ng for replacements.
net-wireless/linux-wlan-ng-modules
net-wireless/linux-wlan-ng-utils
net-wireless/linux-wlan-ng-firmware
net-wireless/linux-wlan-ng

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Runtime problems (#272751), no update since 2005 (bluez-3 times),
# removal in a month.
net-wireless/opd

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Overflow issues (#277459), upstream lost interest on it.
# Removal in a month.
net-irc/xchat-xsys

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# This project has been superseeded by G'MIC. Removal in a month.
media-plugins/gimp-greycstoration

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Fails to build with latest kernels (#294813), upstream dead since
# 2007. Removal in a month.
net-dialup/openadsl

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Fails to build for years (#294822), getting it updated needs
# a total rework in ebuilds (and splitting) that nobody looks to
# have time to do. Removal in a month.
sci-electronics/chipmunksystem

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Fails to build (#318775). Removal in a month.
media-tv/v4l-dvb-hg

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Dead for ages and collides with dev-libs/ppl (#320413).
# Removal in a month.
net-misc/partysip

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Not needed for a long time and now neither for BSDs (#321261#c9),
# bugs not fixed due upstream dead (#321261). Removal in a month.
sys-apps/915resolution

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Not compatible with recent telepathy versions as upstream no longer
# develops it (#326117). Removal in a month.
dev-util/telepathy-inspector

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Fails to build with automake-1.11 (#328201), nothing in the tree
# needs it. Removal in a month.
dev-libs/yaz++

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Fails to build (#332793), nothing in the tree needs it.
# Removal in a month.
dev-lang/sr

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Can be treecleaned as talked with upstream, use app-laptop/pommed
# instead. Removal in a month.
app-laptop/macbook-backlight

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Lots of bug report, use version from science overlay as pointed
# in bug #339364#c3 . Removal in a month
<sci-mathematics/scilab-5

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Upstream dead for more than 2 years and replaced by nmcli
# (from NetworkManager) (#339664). Removal in a month.
net-misc/cnetworkmanager

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Doesn't build with current kernels (#344889). People needs to
# migrate to x11-drivers/xf86-video-fbdev and be sure they have
# CONFIG_STUB_POULSBO enabled in their kernels.
# Removal in a month.
x11-drivers/psb-kmod
x11-drivers/xf86-video-psb

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Doesn't build with current kernels (#351225), some work is done
# by Ubuntu users but a lot of mantainance work is still needed
# and nobody will take care of it now (#351225#c7).
# Removal in a month.
net-dialup/hsfmodem

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Upstream dead for ages and fails to build (#351449).
# Removal in a month.
x11-terms/hanterm-xf

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Doesn't support current kernels, upstream is dead (#366959).
# Removal in a month
sys-kernel/cell-sources

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Dead for years, time to treeclean by maintainer (#370601)
# Removal in a month.
net-p2p/dctc
net-p2p/ldcc
net-p2p/cccp

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Segfaults (#378917) and other issues. Removal in a month.
app-text/utrac

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Doesn't work on Gentoo (#392597), removal in a month.
app-misc/klive

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Fails to build (#415727), upstream dead.
# Removal in a month.
sys-block/megactl

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# No version in the tree builds (#423253), removal in a month.
net-analyzer/sussen

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Cannot bump it, started to require libselinux unconditionally
# and nothing in the tree neither in gnome overlay needs it (#424217).
# Removal in a month.
app-emulation/libvirt-sandbox

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Fails to build (#427396). Removal in a month.
dev-java/sbaz

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Nothing in the tree needs it, upstream is dead and per fedora removal,
# looks like people can use hfsutils and netatalk as replacements:
# http://www.redhat.com/archives/fedora-maintainers/2006-August/msg00026.html
# Removal in a month (#431298)
app-arch/macutil

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Fails to build with current clutter (#435166). Removal in a month.
dev-python/pyclutter
dev-python/pyclutter-gst
dev-python/pyclutter-gtk

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Fails to build or causes hangs during it (#437736).
# Removal in a month.
dev-lang/tendra

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# People should use xbmc instead (#438736). Removal in a month.
net-fs/ccxstream

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Xrandr supplies its functionality and it's dead (#439874).
# Removal in a month.
app-misc/i810switch

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Dead and doesn't build with glib-2.32 (#442648).
# Removal in a month.
www-client/downman

# Pacho Ramos <pacho@gentoo.org> (24 Nov 2012)
# Moved to net-analyzer/nepenthes instead (#443698).
# Removal in a month.
net-analyzer/mwcollect

# Richard Freeman <rich0@gentoo.org> (24 Nov 2012)
# Live ebuild.
=app-misc/sleepyhead-9999

# Diego Elio Pettenò <flameeyes@gentoo.org> (23 Nov 2012)
# Pending removal on 2012-12-23.
# Replace with sys-devel/gdb[server,-client].
dev-util/gdbserver

# Richard Freeman <rich0@gentoo.org> (22 Nov 2012)
# Masked until plugins are updated to 0.26, but works
# for anyone not using plugins.
>=media-tv/mythtv-0.26

# Doug Goldstein <cardoe@gentoo.org> (21 Nov 2012)
# Masked for removal. Lots of bugs opened. Upstream
# says don't use it. No Gentoo maintainer
# activity for some time. qemu no longer supports it.
# Removal date: 21 Dec 2012
app-emulation/kqemu

# Sergey Popov <pinkbyte@gentoo.org> (20 Nov 2012)
# Does not build with new wireshark, bug #394949
# Last release was in 2007, upstream is dead.
# Masked for removal in 30 days.
net-wireless/wifiscanner

# Robin H. Johnson <robbat2@gentoo.org> (18 Nov 2012)
# Dead upstream, replaced by gitolite
dev-vcs/gitosis
dev-vcs/gitosis-gentoo

# Samuli Suominen <ssuominen@gentoo.org> (16 Nov 2012)
# Unused in gentoo-x86 and fails to compile wrt bug #438894
# Removal in 30 days
dev-python/metacity-python

# Ole Markus With <olemarkus@gentoo.org> (15 Nov 2012)
# Masked for testing
>=dev-lang/php-5.4.9999

# Diego Elio Pettenò <flameeyes@gentoo.org> (14 Nov 2012)
# Masked for testing as too many packages fail.
# See bug #443230 for tracking the progress
=media-video/libav-9_beta*
=media-video/libav-9*

# Sergey Popov <pinkbyte@gentoo.org> (10 Nov 2012)
# Segfaults in read_with_timeout, bug #335705.
# Last release was in 1997, upstream is dead.
# Masked for removal in 30 days.
net-analyzer/nbaudit

# Pawel Hajdan jr <phajdan.jr@gentoo.org> (09 Nov 2012)
# Masked for testing, bug #438756.
>=net-libs/libsrtp-1.4.4_p20121108

# Pawel Hajdan jr <phajdan.jr@gentoo.org> (08 Nov 2012)
# Dev channel releases are only for people who are developers or want more
# experimental features and accept a more unstable release.
>=www-client/chromium-25
>=www-client/google-chrome-25

# Pawel Hajdan jr <phajdan.jr@gentoo.org> (08 Nov 2012)
# Mask v8 versions used for www-client/chromium dev channel releases.
>=dev-lang/v8-3.15

# Christian Ruppert <idl0r@gentoo.org> (06 Nov 2012)
# Mask for testing
=app-admin/puppet-3*
=app-vim/puppet-syntax-3*

# Joerg Bornkessel <hd_brummy@gentoo.org> ( 2012/11/04 )
# masked for testing, bug #422605
=media-plugins/vdr-softdevice-0.5.0.20110417

# Markos Chandras <hwoarang@gentoo.org> (04 Nov 2012)
# Masked for testing
=media-video/avidemux-2.6.0

# Markos Chandras <hwoarang@gentoo.org> (03 Nov 2012)
# Masked for testing
app-benchmarks/ltp

# Ulrich Müller <ulm@gentoo.org> (02 Nov 2012)
# Emacs live ebuilds. Use at your own risk.
~app-editors/emacs-vcs-24.2.9999
~app-editors/emacs-vcs-24.3.9999

# Alexis Ballier <aballier@gentoo.org> (1 Nov 2012)
# Still requires ocaml-3, mask it until it is ported. If this does not happen in
# the near future, we should consider removing it.
dev-ml/ocamlduce

# Diego Elio Pettenò <flameeyes@gentoo.org> (1 Nov 2012)
# See tracker bug #440342. Will probably require GNOME 3.6 to be
# unmasked first.
=dev-libs/libtasn1-3*

# Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> (31 Oct 2012)
# Build and runtime issues, bugs #340883, #369385, #435444.
# If you require a graphical monitor configuration tool and your desktop
# environment doesn't provide any, try x11-misc/arandr or lxde-base/lxrandr
# Masked for removal in 30 days.
x11-apps/grandr

# Julian Ospald <hasufell@gentoo.org> (31 Oct 2012)
# broken, removal in 30 days
# use 0.2.1 instead
=media-gfx/pornview-0.2.0_pre1-r2

# Sébastien Fabbro <bicatali@gentoo.org> (31 Oct 2012)
# live ebuild
=net-fs/redirfs-9999

# Ben de Groot <yngwin@gentoo.org> (29 Oct 2012)
# Fails compilation on missing sqlite header - unbundle patch needs updating
=net-news/quiterss-0.10.3

# Doug Goldstein <cardoe@gentoo.org> (28 Oct 2012)
# Do not use this ebuild. Stop trying to use it.
=app-emulation/qemu-1.2.0

# Gilles Dartiguelongue <eva@gentoo.org> (25 Oct 2012)
# Too broken to be used but adding for testing purpose
=media-sound/rhythmbox-2.98

# Pacho Ramos <pacho@gentoo.org> (25 Oct 2012)
# obexd changed its API without any warning, it's recommended to ship
# 0.46 until https://bugzilla.gnome.org/682106 is fixed to prevent
# bluetooth-sendto breakage.
>=app-mobilephone/obexd-0.47

# Eray Aslan <eras@gentoo.org> (24 Oct 2012)
# Mask experimental software
=mail-client/squirrelmail-1.4.23*

# Doug Goldstein <cardoe@gentoo.org> (23 Oct 2012)
# A cgroup CPU pinning patch caused problems for some people
# where they couldn't start a VM.
=app-emulation/libvirt-0.10.2-r2

# Sergey Popov <pinkbyte@gentoo.org> (22 Oct 2012)
# Mask net-misc/libteam snapshot ebuilds until release
net-misc/libteam

# Michael Palimaka <kensington@gentoo.org> (19 Oct 2012)
# New major release breaks almost all existing consumers.
# Masked until each package can update its dependencies.
>=net-libs/libotr-4.0.0
>=x11-plugins/pidgin-otr-4.0.0

# Patrick Lauer <patrick@gentoo.org> (16 Oct 2012)
# upstream dead since 2008, doesn't build
www-apache/mod_cplusplus

# Tim Harder <radhermit@gentoo.org> (15 Oct 2012)
# Mask development releases
=media-libs/libraw-0.15*

# Naohiro Aota <naota@gentoo.org> (14 Oct 2012)
# Mask unstable ibus which relies on masked version of dconf.
=app-i18n/ibus-1.4.99.20121006

# Ulrich Müller <ulm@gentoo.org> (10 Oct 2012)
# Does not work with Emacs 23 or 24.
# No upstream activity; last release was 12 years ago.
# Masked for removal in 60 days, bug 338535.
app-emacs/tamago

# Robin H. Johnson <robbat2@gentoo.org> (08 Oct 2012)
# Masked for testing
=sys-libs/db-5.3*
=sys-libs/db-5.2*
=sys-libs/db-5.1*
=sys-libs/db-5.0*

# Eray Aslan <eras@gentoo.org> (07 Oct 2012)
# Dead upstream.  Use mail-client/alpine instead.  Bug #371593
# Removal in 30 days
mail-client/pine

# Richard Yao <ryao@gentoo.org> (06 Oct 2012)
# sys-apps/grep-2.13 falsely reports some files as binary, causing build
# failures. Bug #425668
=sys-apps/grep-2.13

# Naohiro Aota <naota@gentoo.org> (06 Oct 2012)
# Masked for removal in 30 days. Obsolete packages. Please migrate to
# app-i18n/ibus-table-chinese.
app-i18n/ibus-table-array30
app-i18n/ibus-table-cangjie
app-i18n/ibus-table-cantonese
app-i18n/ibus-table-xingma
app-i18n/ibus-table-yinma

# Samuli Suominen <ssuominen@gentoo.org> (25 Sep 2012)
# Only package in tree incompatible with the new libmp4v2 API
# Bug 424089
# Removal in 30 days unless fixed
=www-apache/mod_musicindex-1.3.5

# Alexandre Rostovtsev <tetromino@gentoo.org> (25 Sep 2012)
# GNOME 3.6 mask
# Core libraries to be unmasked first:
=app-accessibility/at-spi2-atk-2.6*:2
=app-accessibility/at-spi2-core-2.6*:2
=dev-cpp/glibmm-2.34*:2
=dev-cpp/gtkmm-3.6*
=dev-libs/atk-2.6*
=dev-libs/gjs-1.34*
=dev-libs/glib-2.34*:2
=dev-libs/gobject-introspection-1.34*
=dev-libs/gobject-introspection-common-1.34*
=dev-python/pyatspi-2.6*
=dev-python/pygobject-3.4*:3
=dev-util/gdbus-codegen-2.34*
=gnome-base/dconf-0.14*
=gnome-base/gvfs-1.14*
=net-libs/glib-networking-2.34*
>=x11-libs/gdk-pixbuf-2.26.5
=x11-libs/gtk+-3.6*:3
=x11-themes/gnome-themes-standard-3.6*
# Other stuff
=app-accessibility/accerciser-3.6*
=app-accessibility/orca-3.6*
=app-admin/gnome-system-log-3.6*
=app-arch/file-roller-3.6*
=app-cdr/brasero-3.6*
=app-crypt/gcr-3.6*
=app-crypt/seahorse-3.6*
=app-crypt/seahorse-sharing-3.6*
=app-dicts/gnome-dictionary-3.6*
=app-editors/gedit-3.6*
=app-editors/gedit-plugins-3.6*
=app-editors/ghex-3.6*
=app-misc/gnote-3.6*
=app-text/evince-3.6*
>=app-text/gtranslator-2.91.5-r1
=app-text/yelp-tools-3.6*
>=dev-cpp/gstreamermm-0.10.11
=dev-libs/gdl-3.6*
=dev-libs/libxml2-2.9*
=dev-util/anjuta-3.6*
>=dev-util/d-feet-0.3
=dev-util/devhelp-3.6*
=dev-util/glade-3.14*
=dev-util/gnome-devel-docs-3.6*
=gnome-base/gdm-3.6*
=gnome-base/gnome-3.6*
=gnome-base/gnome-applets-3.6*
=gnome-base/gnome-control-center-3.6*
=gnome-base/gnome-core-apps-3.6*
=gnome-base/gnome-core-libs-3.6*
=gnome-base/gnome-desktop-3.6*
=gnome-base/gnome-extra-apps-3.6*
=gnome-base/gnome-fallback-3.6*
=gnome-base/gnome-keyring-3.6*
=gnome-base/gnome-light-3.6*
=gnome-base/gnome-menus-3.6*
=gnome-base/gnome-panel-3.6*
=gnome-base/gnome-session-3.6*
=gnome-base/gnome-settings-daemon-3.6*
=gnome-base/gnome-shell-3.6*
=gnome-base/gsettings-desktop-schemas-3.6*
=gnome-base/libgnomekbd-3.6*
=gnome-base/libgnome-keyring-3.6*
=gnome-base/nautilus-3.6*
=gnome-extra/evolution-data-server-3.6*
=gnome-extra/evolution-ews-3.6*
=gnome-extra/evolution-exchange-3.6*
=gnome-extra/evolution-groupwise-3.6*
=gnome-extra/evolution-kolab-3.6*
=gnome-extra/gcalctool-6.6*
gnome-extra/gnome-clocks
=gnome-extra/gnome-color-manager-3.6*
=gnome-extra/gnome-contacts-3.6*
=gnome-extra/gnome-documents-3.6*
=gnome-extra/gnome-games-3.6*
=gnome-extra/gnome-packagekit-3.6*
=gnome-extra/gnome-power-manager-3.6*
=gnome-extra/gnome-screensaver-3.6*
=gnome-extra/gnome-search-tool-3.6*
=gnome-extra/gnome-shell-extensions-3.6*
=gnome-extra/gnome-system-monitor-3.6*
=gnome-extra/gnome-tweak-tool-3.6*
=gnome-extra/gnome-user-docs-3.6*
=gnome-extra/gtkhtml-4.6*
=gnome-extra/gucharmap-3.6*
=gnome-extra/libgda-5.1*
=gnome-extra/mousetweaks-3.6*
=gnome-extra/nautilus-sendto-3.6*
=gnome-extra/seahorse-nautilus-3.6*
=gnome-extra/sushi-3.6*
=gnome-extra/yelp-3.6*
=gnome-extra/yelp-xsl-3.6*
=gnome-extra/zenity-3.6*
=mail-client/evolution-3.6*
=media-gfx/eog-3.6*
=media-gfx/eog-plugins-3.6*
=media-gfx/gnome-font-viewer-3.6*
=media-gfx/gnome-screenshot-3.6*
=media-gfx/simple-scan-3.6*
=media-libs/clutter-1.12*
=media-libs/cogl-1.12*
>=media-libs/libcanberra-0.30
=media-sound/sound-juicer-3.5*
=media-video/cheese-3.6*
=media-video/totem-3.6*
=net-im/empathy-3.6*
=net-im/telepathy-mission-control-5.14*
=net-libs/gnome-online-accounts-3.6*
=net-libs/libsoup-2.40*
=net-libs/libsoup-gnome-2.40*
net-libs/libzapojit
>=net-libs/rest-0.7.90
=net-libs/telepathy-glib-0.20*
=net-libs/webkit-gtk-1.10*
=net-misc/vinagre-3.6*
=net-misc/vino-3.6*
=net-wireless/gnome-bluetooth-3.6*
=sys-apps/baobab-3.6*
=sys-apps/gnome-disk-utility-3.6*
=www-client/epiphany-3.6*
=www-client/epiphany-extensions-3.6*
=x11-libs/gtksourceview-3.6*
=x11-libs/libcryptui-3.6*
=x11-misc/alacarte-3.6*
=x11-terms/gnome-terminal-3.6*
=x11-themes/gnome-icon-theme-3.6*
=x11-themes/gnome-icon-theme-extras-3.6*
=x11-themes/gnome-icon-theme-symbolic-3.6*
=x11-wm/mutter-3.6*

# Pacho Ramos <pacho@gentoo.org> (16 Sep 2012)
# Dead upstream, fails tests (#315565), wasn't updated
# for recent MythTV versions. Removal in a month.
media-libs/gmyth
media-plugins/gst-plugins-mythtv

# Pacho Ramos <pacho@gentoo.org> (16 Sep 2012)
# Has overflows (#423619), upstream dead and only useful for MP3
# players released in 1998. Removal in a month.
app-misc/rio

# Pacho Ramos <pacho@gentoo.org> (16 Sep 2012)
# Diego Elio Pettenò <flameeyes@gentoo.org> (08 Jul 2012)
# Dead upstream (domain is gone as well), very bad code.
# If possible use net-ftp/tftp-hpa; if that is not possible, let us
# know by filing a bug and blocking against bug #425362.
# Removal in a month.
net-ftp/netkit-tftp

# Pacho Ramos <pacho@gentoo.org> (16 Sep 2012)
# It ignores CFLAGS (#431298), nothing in the tree needs it,
# upstream is dead and people can use hfsutils and netatalk
# as replacements. Removal in a month.
app-arch/macutil

# Rick Farina <zerochaos@gentoo.org> (10 Sep 2012)
# Unclear licensing issues, upstream is distributing a file
# under the MS-RSL license which forbids redistribution
net-wireless/sdrsharp

# Samuli Suominen <ssuominen@gentoo.org> (05 Sep 2012)
# Replaced by dev-java/antlr wrt bug #255699 and bug #430078
# Removal in 30 days
dev-util/pccts
=dev-util/cccc-3.1.4-r1

# Doug Goldstein <cardoe@gentoo.org> (03 Sep 2012)
# masked due to bug #433692
=app-accessibility/caribou-0.4.3

# Tim Harder <radhermit@gentoo.org> (01 Sep 2012)
# Mask development releases
=media-sound/lilypond-2.17*

# Doug Goldstein <cardoe@gentoo.org> (25 Aug 2012)
# Mask the release candidates
=app-emulation/libvirt-0.10.0_rc1
=app-emulation/libvirt-0.10.0_rc2

# Julian Ospald <hasufell@gentoo.org> (19 Aug 2012)
# Masked for removal in 30 days
# games-strategy/megaglest supersedes games-strategy/glest
games-strategy/glest

# Markos Chandras <hwoarang@gentoo.org> (17 August 2012)
# Masked for testing. Required by dev-lang/jimctl-0.73
=dev-embedded/openocd-0.6.1

# Benedikt Böhm <hollow@gentoo.org> (11 Aug 2012)
# Regression in iproute code, does not detect IP addresses correctly anymore.
~dev-ruby/ohai-6.14.0

# Jeroen Roovers <jer@gentoo.org> (2 Aug 2012)
# Development version
>app-admin/sysstat-10.1

# Ralph Sennhauser <sera@gentoo.org> (18 Jul 2012)
# Unmaintained, multiple vulnarabilities. #351626
# A more recent source build maintained by the community is available in the
# seden overlay. A more recent binary is available in the java-overlay.
<=dev-util/eclipse-sdk-3.5.1-r1

# Michael Weber <xmw@gentoo.org> (07 Jul 2012)
# Masked for testing only beta (bug 424866)
=sci-electronics/eagle-6.2.1_beta

# Michael Weber <xmw@gentoo.org> (29 Jun 2012)
# Masking for security reasons (bug 424025, CVE-2012-3366)
# Users of trigger plugin, update asap.
<app-admin/bcfg2-1.2.2-r1

# Andreas K. Huettel <dilfridge@gentoo.org> (25 Jun 2012)
# Mask live ebuild
=net-print/cups-9999

# Maxim Koltsov <maksbotan@gentoo.org> (21 Jun 2012)
# It's not what it's called now, mask it not protect people
=dev-util/febootstrap-3*

# Ian Stakenvicius <axs@gentoo.org> (19 Jun 2012)
# Mask new spidermonkey until rdeps can accept it
~dev-lang/spidermonkey-1.8.7

# Michael Weber <xmw@gentoo.org> (13 Jun 2012)
# Mask beta versions for testing
>sci-electronics/magic-8
>sci-electronics/xcircuit-3.8

# Justin Lecher <jlec@gentoo.org> (13 Jun 2012)
# Justin Lecher <jlec@gentoo.org> (01 Nov 2012)
# Mask old version numbers
# Shows newest unstable to users easily
>=sci-biology/ncbi-tools-20080302
>=sci-chemistry/dssp-070831
>=sci-biology/ncbi-tools++-2010.06.15

# Patrick Lauer <patrick@gentoo.org> (06 Jun 2012)
# Temporarily mask nginx >=1.3 see #411937
>=www-servers/nginx-1.3

# Markos Chandras <hwoarang@getnoo.org> (27 May 2012)
# Mask alpha release
=sci-electronics/qelectrotech-0.30_alpha*

# Alexis Ballier <aballier@gentoo.org> (26 May 2012)
# API/ABI has changed with this release.
# Mask until the tree is fine.
# https://bugs.gentoo.org/show_bug.cgi?id=417677
>=media-video/ffmpeg-0.11

# Benda Xu <heroxbd@gentoo.org> (20 May 2012)
# geant-4.9.5_p01 has a major class declaration change that renders
# geant-python (g4py upstream) unable to compile
# upstream bug http://bugzilla-geant4.kek.jp/show_bug.cgi?id=1317
=sci-physics/geant-4.9.5_p01
=sci-physics/geant-python-4.9.5_p01

# Alexandre Rostovtsev <tetromino@gentoo.org> (20 May 2012)
# Requires dev-scheme/guile-2.0.5 which is in lisp overlay and masked;
# bug #416683
>=games-board/aisleriot-3.3.1

# Ultrabug <ultrabug@gentoo.org> (16 May 2012)
# Masked for testing
>=sys-cluster/corosync-2.0.0

# Alistair Bush <ali_bush@gentoo.org> (10 May 2012)
# Mask alpha version of mono for testing
>=dev-lang/mono-2.11.1
>=dev-lang/mono-tools-2.11
>=virtual/monodoc-2.11

# Johannes Huber <johu@gentoo.org> (03 May 2012)
# Unstable dev channel release. Fixes build with gcc47
# (bug #413941).
>=media-sound/mp3diags-1.1

# Robin H. Johnson <robbat2@gentoo.org> (09 Feb 2012)
# Needs to be slotted better
=dev-libs/yaz-4*

# Maxim Koltsov <maksbotan@gentoo.org> (19 Apr 2012)
# Broken, masking by maintainer's request
net-ftp/leechcraft-lcftp
net-p2p/leechcraft-eiskaltdcpp

# Jeroen Roovers <jer@gentoo.org> (04 Apr 2012)
# Alpha versions of dev-libs/libevent are considered unstable
>dev-libs/libevent-2.1

# Mike Gilbert <floppym@gentoo.org> (01 Apr 2012)
# The python-3 slot is obsolete for this package.
=dev-python/python-dateutil-2.0

# Andreas K. Huettel <dilfridge@gentoo.org> (22 Mar 2012)
# Even its author admits that it's an ugly hack. Crashes e.g.
# firefox with kde-4.8. Unmask at your own risk.
kde-misc/kgtk

# Samuli Suominen <ssuominen@gentoo.org> (06 Mar 2012)
# Masked for testing since this is known to break nearly
# every reverse dependency wrt bug 407091
>=dev-lang/lua-5.2.0

# Sébastien Fabbro <bicatali@gentoo.org> (26 Feb 2012)
# Needs development version x11-libs/wxGTK
>=sci-visualization/fityk-1.1

# Angelo Arrifano <miknix@gentoo.org> (10 Feb 2012)
# Upstream versioning changed, hard masked old versions
# to force upgrade to arduino-1.0
=dev-embedded/arduino-0015-r1
=dev-embedded/arduino-0017

# Michał Górny <mgorny@gentoo.org> (21 Jan 2012)
# Blocks sysvinit yet doesn't provide all tools provided by it.
# Masking until we get the necessary tools out of sysvinit.
sys-apps/systemd-sysv-utils

# Eray Aslan <eras@gentoo.org> (19 Jan 2012)
# Mask experimental software
=mail-mta/postfix-2.10*

# Jeroen Roovers <jer@gentoo.org> (27 Mar 2012)
# Opera Next and Opera snapshots are unsupported and eternally unstable.
# <http://my.opera.com/desktopteam/blog>
www-client/opera-next
=www-client/opera-12.12*

# Hanno Boeck <hanno@gentoo.org> (15 Dec 2011)
# Breaks pam_mount, which is its only user in the tree.
# Can be unmasked when a new pam_mount version is released.
=sys-libs/libhx-3.12

# Ulrich Mueller <ulm@gentoo.org> (13 Dec 2011)
# SLOTs 21 and 22 of app-editors/emacs, corresponding to
# GNU Emacs versions 21.4 and 22.3. These versions were
# released in February 2005 and September 2008, respectively.
# Please upgrade to >=app-editors/emacs-23 and update your
# Emacs Lisp packages with emacs-updater.
# Keeping these versions in the tree masked indefinitely,
# by popular request. Bug 394589.
=app-editors/emacs-21*
=app-editors/emacs-22*
<virtual/emacs-23

# Alexandre Rostovtsev <tetromino@gentoo.org> (07 Dec 2011)
# spidermonkey-1.9.2.x was renamed to 1.8.2.x; mask 1.9.2.x for bug #393473.
=dev-lang/spidermonkey-1.9.2*

# Christoph Junghans <ottxor@gentoo.org> (15 Nov 2011)
# current version of google-talkplugin never clear what you get
=www-plugins/google-talkplugin-9999

# Michael Weber <xmw@gentoo.org> (04 Nov 2011)
# Masked due security issue bug 385967
=net-misc/radvd-1.7
=net-misc/radvd-1.8
=net-misc/radvd-1.8.1

# Diego E. Pettenò <flameeyes@gentoo.org> (30 Oct 2011)
# Working on more reliable versioning, consider experimental for now.
>=dev-lang/luajit-2.0.0_beta8

# Samuli Suominen <ssuominen@gentoo.org> (30 Oct 2011)
# Masked for security bug #294253, use only at your own risk!
=media-libs/fmod-3*
games-puzzle/candycrisis
games-simulation/stoned-bin
games-sports/racer-bin
games-strategy/dark-oberon
games-strategy/savage-bin

# MATSUU Takuto <matsuu@gentoo.org> (27 Oct 2011)
# Mask for testing
>=sys-devel/distcc-3.2_rc1

# Justin Bronder <jsbronder@gentoo.org> (27 Sep 2011)
# Masking the torque 2.3 series due to bug #372959.  This allows
# sites that are ok with the vulnerability but prefer the stability
# of 2.3.x to continue to get updates (if any).
<sys-cluster/torque-2.4
dev-perl/perl-PBS

# Joerg Bornkessel <hd_brummy@gentoo.org> (17 Sep 2011)
# media-video/vdr-xvdr-9999, masked git live ebuild
=media-plugins/vdr-xvdr-9999
=media-plugins/xbmc-addon-vdr-9999

# Alexis Ballier <aballier@gentoo.org> (20 Aug 2011)
# dev-tex/pdftex-1.40.11 is 100% identical to the one in TeX Live 2010;
# TeX Live 2011 has a newer version, which makes the standalone package useless;
# mask it for now, we'll see about removing it later.
dev-tex/pdftex

# Jesus Rivero <neurogeek@gentoo.org> (29 Jul 2011)
# This package had wrong versioning. Masked to enforce upgrade on the
# upcoming 0.0.13
=dev-python/pyasn1-0.0.13b

# Robin H. Johnson <robbat2@gentoo.org> (01 Nov 2012)
# Update of mask to 5.6 instead of 5.5
# Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> (28 Jul 2011)
# A new update of the mysql / mariadb mask
# Robin H. Johnson <robbat2@gentoo.org> (01 Feb 2010)
# Mask 5.6/6.0 series that are alpha and and crazy experimental.
# Mask 5.2/5.3 virtual that exists in the overlay as well (it is MariaDB only)
>=dev-db/mariadb-5.6
>=dev-db/mysql-5.6
>=virtual/mysql-5.6
=dev-db/mariadb-5.2*
=virtual/mysql-5.2*
=dev-db/mariadb-5.3*
=virtual/mysql-5.3*

# Peter Volkov <pva@gentoo.org> (23 Jul 2011)
# Mask release candidates
=dev-libs/guiloader-2.99.0
=dev-libs/guiloader-c++-2.99.0
=dev-util/crow-designer-2.99.0

# Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> (15 July 2011)
# Masking mariadb-5.1.55 until we have feedback about the unit tests
# as they build for me but fail for Robin
~dev-db/mariadb-5.1.55

# Justin Lecher <jlec@gentoo.org> (27 Jun 2011)
# Only avalable version isn't in the tree.
# Mask until it is bumped
sci-chemistry/webmo

# Torsten Veller <tove@gentoo.org> (18 Jun 2011)
# Mask perl-5.14. See tracker bug #356171
=dev-lang/perl-5.14*

# Tim Harder <radhermit@gentoo.org> (3 Jun 2011)
# Mask release candidates
=app-office/scribus-1.4.0_rc*

# Hans de Graaff <graaff@gentoo.org> (15 May 2011)
# Mask new versions until thread-related crashes have been fixed.
# See bug 367423.
=dev-lang/ruby-enterprise-1.8.7.2011.03
=dev-lang/ruby-enterprise-1.8.7.2012.02

# Alexis Ballier <aballier@gentoo.org> (20 Apr 2011)
# Tiziano Müller <dev-zero@gentoo.org> (11 Aug 2010)
# Breaks net-voip/sflphone, non maintainer update, but is needed by
# media-video/ffmpeg
>=media-libs/celt-0.8.1

# Marijn Schouten <hkBst@gentoo.org> (07 April 2011)
# Masked for number of issues, but can be used to
# test against if people are impatient ;P
# Known issues:
# - Broken emacs support (ulm has promised to look)
# - doesn't build when boehm-gc is built without threads
# - no SLOTting yet!
=dev-scheme/guile-2.0.0

# Ryan Hill <dirtyepic@gentoo.org> (02 Apr 2011)
# Masked for testing
>=sys-devel/gcc-4.7.0

# Christian Faulhammer <fauli@gentoo.org> (12 Mar 2011)
# Mask for testing
>=www-apps/joomla-1.6.0

# Ryan Hill <dirtyepic@gentoo.org> (30 Mar 2011)
# Masked indefinitely (until 0.40 is released).
# http://bugs.gentoo.org/354423
>=app-pda/libopensync-0.30
>=app-pda/libopensync-plugin-file-0.30
>=app-pda/libopensync-plugin-google-calendar-0.30
>=app-pda/libopensync-plugin-irmc-0.30
>=app-pda/libopensync-plugin-palm-0.30
>=app-pda/libopensync-plugin-python-0.30
app-pda/libopensync-plugin-syncml
app-pda/libopensync-plugin-vformat
app-pda/osynctool

# Ryan Hill <dirtyepic@gentoo.org> (30 Mar 2011)
# Work in progress
# http://bugs.gentoo.org/show_bug.cgi?id=354423
app-pda/libopensync-plugin-evolution2
app-pda/libopensync-plugin-gnokii
app-pda/libopensync-plugin-gpe
app-pda/multisync-gui

# Ryan Hill <dirtyepic@gentoo.org> (22 Jan 2011)
# Mask development versions due to unstable API
# as requested by leio
>=dev-python/wxpython-2.9
>=x11-libs/wxGTK-2.9

# Michael Sterrett <mr_bones_@gentoo.org> (20 Jan 2010)
# testing mask for upcoming exult release
>=games-engines/exult-1.3

# Torsten Veller <tove@gentoo.org> (06 Jan 2011)
# Next step to remove old perl and libperl versions.
# Versions prior 5.12 are masked and will be removed when 5.14 is available.
# If you are a sparc-fbsd user and your only keyworded perl version was masked,
# test perl-5.12.2 and reply to bug 288028
# For other complaints go to bug 350785
<dev-lang/perl-5.12.2
<sys-devel/libperl-5.10.1

# Gilles Dartiguelongue <eva@gentoo.org> (07 Dec 2010)
# Part of GNOME 2.32 release set by breaks my machine as hell
# Needs more testing before unleashing
>=gnome-base/libbonobo-2.32

# Markos Chandras <hwoarang@gentoo.org> (01 Nov 2010)
# Masking alpha releases
net-analyzer/ncrack

# Peter Volkov <pva@gentoo.org> (29 Oct 2010)
# mask beta release
=net-analyzer/tcpreplay-3.4.5*

# Markos Chandras <hwoarang@gentoo.org> (26 Oct 2010)
# master branch is heavily broken at the moment. Use
# 2.0.9999 instead if you want a kmess
# that actually builds
=net-im/kmess-9999

# Luca Barbato <lu_zero@gentoo.org> (21 Jul 2010)
# Not ready for public consumption, clashes with current mesa-git
media-libs/shivavg

# Stefan Briesenick <sbriesen@gentoo.org> (21 Jul 2010)
# doesn't compile against latest media-libs/spandsp.
# not needed anymore for Asterisk 1.6.
net-misc/asterisk-spandsp_codec_g726

# Doug Goldstein <cardoe@gentoo.org> (07 Jul 2010)
# No actual Gentoo support yet. If you're interested, please see bug #295993
net-misc/netcf

# Justin Lecher <jlec@gentoo.org> (16 Jun 10)
# Just working with the masked experimental version of refmac
>=sci-libs/monomer-db-5.16

# Robin H. Johnson <robbat2@gentoo.org> (09 Jun 2010)
# Fails to self-verify/sign in FIPS mode, pending upstream response before
# usage for GSoC project.
app-crypt/hmaccalc

# Luca Barbato <lu_zero@gentoo.org> (21 May 2010)
# development release
=dev-db/mongodb-1.5*

# Justin Lecher <jlec@gentoo.org> (16 May 2010)
# Upstreams testing version
# Added on request
>=sci-chemistry/refmac-5.6

# Pacho Ramos <pacho@gentoo.org> (10 Apr 2010)
# This version provides packages from testing to let people using
# latest Xorg (from ~arch or overlay) have 3D support. If you don't need it,
# keep with unmasked versions.
#
# Please don't ask for including testing packages in other emul
# packages, this is an exception to current policy because some people
# from X11 team needed 3D support even with bleeding edge Xorg.
=app-emulation/emul-linux-x86-opengl-20110722-r99
=app-emulation/emul-linux-x86-baselibs-20110722-r99

# Patrick Lauer <patrick@gentoo.org> (07 Apr 2010)
# Keeping samba-4 masked until release.
>net-fs/samba-4

# Mike Frysinger <vapier@gentoo.org> (07 Mar 2010)
# Very old packages that people should have upgraded away from
# long ago.  Courtesy mask ... time to upgrade.
# Added <sys-fs/e2fsprogs as well (halcy0n)
<sys-libs/e2fsprogs-libs-1.41.8
<sys-fs/e2fsprogs-1.41.9

# Robert Piasek <dagger@gentoo.org> (23 Feb 2010)
# Masking libmapi as it depends on masked samba4
>=net-libs/libmapi-0.9

# Matthias Schwarzott <zzam@gentoo.org> (22 Jan 2010)
# since long time included in media-tv/gentoo-vdr-scripts
media-tv/vdr-dvd-scripts
media-tv/vdrplugin-rebuild

# Christian Parpart <trapni@gentoo.org> (23 Dec 2009)
# Masked for testing/feedback.
media-sound/teamspeak-server-bin

# Joerg Bornkessel <hd_brummy@gentoo.org> (02 Dec 2009)
# cvs ebuild vdr-xineliboutput-9999 masked for lifetime
=media-plugins/vdr-xineliboutput-9999

# Peter Alfredsen <loki_val@gentoo.org> (21 Oct 2009)
# Masked because this needs a patch to be applied to portage
# to not install the kitchensink and everything else
# into /usr/src/debug with FEATURES=installsources
=dev-util/debugedit-4.4.6-r2

# Diego E. Pettenò <flameeyes@gmail.com> (09 Oct 2009)
# Untested yet; documented only in Russian, help is appreciated.
sys-auth/pam_keystore

# Diego E. Pettenò <flameeyes@gentoo.org> (08 Aug 2009)
#  on behalf of QA Team
#
# Mass-masking of live ebuilds; we cannot guarantee working state of
# live ebuilds, nor the availability of the server hosting them. As
# per QA team policy, all these need to be kept masked by default, if
# available in the tree.
~app-i18n/skk-jisyo-9999
net-misc/netcomics-cvs
app-portage/layman-dbtools
sci-astronomy/casa-data
# rdep on the one above
sci-astronomy/casacore
sci-electronics/kicad
dev-ruby/rcsparse
# rdep on the one above
dev-vcs/fromcvs
sci-biology/picard
~dev-libs/libg15-9999

# Federico Ferri <mescalinum@gentoo.org> (08 Aug 2009)
# Doesn't build with Tcl 8.5, has several bugs open
=dev-tcltk/tcl-debug-2.0

# Marijn Schouten <hkBst@gentoo.org> (29 Jul 2009)
# Masked for increasingly many problems. Upstream is flaky and hasn't released since 2005.
# Maxima is the only consumer and can be built with sbcl or clisp.
# Hopefully upstream will do a release that we can add to revive this package.
dev-lisp/gcl

# Jeremy Olexa <darkside@gentoo.org> (28 Jul 2009)
# On behalf of Robin H. Johnson <robbat2@gentoo.org>.
# These versions are vulnerable to GLSA's and should not be used. They will stay
# in the tree because they are useful to tracking down bugs. You have been
# warned. bug 271686
<dev-db/mysql-5.1.56
<virtual/mysql-5.1

# Nirbheek Chauhan <nirbheek@gentoo.org> (10 Jun 2009)
# Several feature regressions that will make our users
# go on a witchhunt if unmasked
# * No XDMCP connection UI
# * No configuration/theming support
# * No support for auth backends other than PAM
# * Many more...
=gnome-base/gdm-2.3*

# Benedikt Böhm <hollow@gentoo.org> (19 Apr 2009)
# masked for testing
=net-analyzer/centreon-1.4.2.7

# Tiziano Müller <dev-zero@gentoo.org> (08 Apr 2009)
# pre-releases
net-libs/libinfinity
>=app-editors/gobby-0.4.91

# Paul Varner <fuzzyray@gentoo.org> (06 Apr 2009)
# Dead upstream and has issues with newer portages.
# Due to popular demand and no suitable replacement, it will stay in the tree
# in a masked status until it completely breaks or is replaced.
app-portage/udept

# Diego E. Pettenò <flameeyes@gentoo.org> (03 Jan 2009)
# 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/msp430-binutils
dev-embedded/msp430-gcc
dev-embedded/msp430-gdb
dev-embedded/msp430-libc
dev-embedded/msp430mcu
dev-embedded/avr-libc

# Peter Volkov <pva@gentoo.org> (16 Nov 2008)
# The development branch, to be unmasked when out of beta by upstream.
=net-misc/socat-2.0.0*

# Steve Dibb <beandog@gentoo.org> (05 Nov 2008)
# Mask realplayer codecs for security bug 245662
# http://forums.gentoo.org/viewtopic-t-713051.html
media-libs/amd64codecs
media-libs/realcodecs

# Doug Goldstein <cardoe@gentoo.org> (17 Sep 2008)
# under development
gnome-extra/gnome-lirc-properties

# Markus Ullmann <jokey@gentoo.org> (07 Jul 2008)
# mask for security bug #190667 (CVE-2007-{4584,5839})
#
# both CVEs are fixed in upstream version control as per:
# http://bitchx.svn.sourceforge.net/svnroot/bitchx/trunk/Changelog
~net-irc/bitchx-1.1

# Vlastimil Babka <caster@gentoo.org> (20 May 2008)
# Masked for testing
app-arch/rpm5

# Chris Gianelloni <wolf31o2@gentoo.org> (03 Mar 2008)
# 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-phantasm
games-fps/doom3-roe
games-fps/quake4-bin
games-fps/quake4-data
games-fps/quake4-demo

# Piotr Jaroszyński <peper@gentoo.org> (26 Nov 2007)
# opensync live ebuilds
=app-pda/libsyncml-9999
=app-pda/libopensync-9999
=app-pda/osynctool-9999
=app-pda/libopensync-plugin-evolution2-9999
=app-pda/libopensync-plugin-file-9999
=app-pda/libopensync-plugin-gnokii-9999
=app-pda/libopensync-plugin-gpe-9999
=app-pda/libopensync-plugin-irmc-9999
=app-pda/libopensync-plugin-palm-9999
=app-pda/libopensync-plugin-python-9999
=app-pda/libopensync-plugin-syncml-9999
=app-pda/libopensync-plugin-vformat-9999

# MATSUU Takuto <matsuu@gentoo.org> (05 Apr 2007)
# to be tested, seems unstable
>=app-i18n/scim-anthy-1.3.0

# Tavis Ormandy <taviso@gentoo.org> (21 Mar 2006)
# masked pending unresolved security issues #127167
games-roguelike/slashem

# Tavis Ormandy <taviso@gentoo.org> (21 Mar 2006)
# masked pending unresolved security issues #125902
games-roguelike/nethack
games-util/hearse

# Robin H. Johnson <robbat2@gentoo.org> (11 Feb 2006)
# zlib interaction is badly broken. See bug #124733.
=dev-vcs/cvs-1.12.13*

# <klieber@gentoo.org> (01 Apr 2004)
# The following packages contain a remotely-exploitable
# security vulnerability and have been hard masked accordingly.
#
# Please see http://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