summaryrefslogtreecommitdiff
blob: 718c0d0352e1e9d201780ad22fc41e2dd81ecb2b (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
# ChangeLog for profile directory
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.6400 2012/04/07 15:02:31 ulm Exp $
#
# This ChangeLog should include records for all changes in profiles directory.
# Only typo fixes which don't affect portage/repoman behaviour could be avoided
# here. If in doubt put a record here!

  07 Apr 2012; Ulrich Müller <ulm@gentoo.org> updates/4Q-2011,
  updates/2Q-2012:
  Move package moves of dev-lisp/cl-asdf and dev-lisp/cl-asdf-binary-locations
  to proper file.

  06 Apr 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Remove entries for gecko-sharp, Gtk2-MozEmbed, ntfsprogs, syncevolution
  and qtada since they got removed from tree.

  06 Apr 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Cleanup.

  06 Apr 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask calligra-2.4.0 until it is released

  06 Apr 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Fill missing dates.

  06 Apr 2012; Davide Pesavento <pesa@gentoo.org> use.desc:
  Update kde USE flag description, kde-base/kde doesn't exist anymore. Ack'ed
  by scarabeus.

  06 Apr 2012; Hans de Graaff <graaff@gentoo.org> package.mask:
  Mask parts of Rails 3.2 until the whole package is ready.

  05 Apr 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask kde-base/ksecrets as it's alpha code

  05 Apr 2012; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask dev-libs/icu-49 again.

  04 Apr 2012; Anthony G. Basile <blueness@gentoo.org> base/make.defaults:
  Add CURL_SSL to USE_EXPAND in base

  04 Apr 2012; Mike Gilbert <floppym@gentoo.org> info_vars:
  Add USE_PYTHON.

  04 Apr 2012; Jeroen Roovers <jer@gentoo.org> package.mask:
  Mask >dev-libs/libevent-2.1.

  04 Apr 2012; Patrick Lauer <patrick@gentoo.org> package.mask:
  Adding nodejs to v8 mask

  03 Apr 2012; Mike Gilbert <floppym@gentoo.org> package.mask:
  Unmask dev-libs/icu-49.

  03 Apr 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove obsolete pmask of nepomukcontroller, bug 406999

  03 Apr 2012; Matt Turner <mattst88@gentoo.org> package.mask:
  Add gnome-dvb-daemon-0.2.8 to package.mask since it needs glib-2.32.

  03 Apr 2012; Anthony G. Basile <blueness@gentoo.org> +desc/curl_ssl.desc:
  Add description of CURL_SSL USE_EXPAND flags for net-misc/curl

  03 Apr 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite media-libs/tunepimp wrt #409257

  03 Apr 2012; Samuli Suominen <ssuominen@gentoo.org>
  +desc/imobiledevice_backend.desc:
  New IMOBILEDEVICE_BACKEND. See base/make.defaults too. Related to
  app-pda/libimobiledevice.

  02 Apr 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  libdlna and ushare are fixed now

  02 Apr 2012; Samuli Suominen <ssuominen@gentoo.org> +updates/2Q-2012,
  package.mask:
  Move xfce4-appfinder from xfce-extra/ to xfce-base/ for compability with Xfce
  4.10 layout.

  01 Apr 2012; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask the python-3 slot for dev-python/python-dateutil.

  31 Mar 2012; Olivier Crête <tester@gentoo.org> package.mask:
  Add farstream port of pidgin to p.mask

  31 Mar 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Mask sys-auth/tcb for removal.

  30 Mar 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  mask x11-themes/qgtkstyle for removal

  29 Mar 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask twittare for removal. Bug #379277

  29 Mar 2012; Mike Gilbert <floppym@gentoo.org> desc/linguas.desc:
  Add sco - Scots locale.

  29 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  desc/video_cards.desc:
  Add omap to VIDEO_CARDS, adjust description to distinguish between omap and
  omapfb.

  29 Mar 2012; Christoph Junghans <ottxor@gentoo.org> package.mask:
  fftw-3.3.1 released

  28 Mar 2012; Alex Legler <a3li@gentoo.org> package.mask:
  Mask various horde ebuilds for removal

  28 Mar 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  www-client/arora is gone from the tree.

  28 Mar 2012; Aaron W. Swenson <titanofold@gentoo.org> package.mask:
  Remove dev-db/pgaccess mask. Package removed from tree.

  28 Mar 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Unmask networkmanger-0.9.4 (appears to work fine with gnome-3.2) and add more
  packages to gnome-3.4 mask.

  27 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask sys-fs/udisks >= 1.90.0 for testing.

  27 Mar 2012; Tupone Alfredo <tupone@gentoo.org> package.mask:
  Unmasking newer dev-util/bam

  27 Mar 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Add modemmanger to the nm mask.

  27 Mar 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  networkmanager-openswan-0.9.4 is not out yet.

  27 Mar 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Mask new networkmanager-0.9.4 and friends.

  27 Mar 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.mask:
  Update the gnome-3.4 mask.

  26 Mar 2012; Nirbheek Chauhan <nirbheek@gentoo.org> package.mask:
  Add telepathy-farstream-0.2 to the GNOME 3 mask because it causes a blocker
  with farsight2

  25 Mar 2012; Krzysztof Pawlik <nelchael@gentoo.org>
  +desc/python_targets.desc:
  Add description for PYTHON_TARGETS USE_EXPAND variable.

  25 Mar 2012; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask dev-libs/boost-1.49 for Arfrever.

  25 Mar 2012; Andreas K. Huettel <dilfridge@gentoo.org> base/make.defaults,
  desc/calligra_features.desc:
  Add new CALLIGRA_FEATURES entry sheets, as this component got renamed

  25 Mar 2012; Nirbheek Chauhan <nirbheek@gentoo.org> package.mask:
  Mask new glib-2.32 and gtk+-3.4 that cause a lot of breakage

  25 Mar 2012; Mike Gilbert <floppym@gentoo.org> package.mask:
  March -> Mar.

  25 Mar 2012; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask dev-libs/icu-49 for testing.

  25 Mar 2012; Nirbheek Chauhan <nirbheek@gentoo.org> package.mask:
  Mask new clutter/cogl/clutter-gtk

  24 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Mask cairo-1.12.0

  24 Mar 2012; Sergei Trofimovich <slyfox@gentoo.org> package.mask:
  Unmask ghc-7.4.

  24 Mar 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask some packages for removal.

  24 Mar 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Revert my commit as lightdm-unity-greeter requires >=valac-0.15 which we
  don't have

  24 Mar 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask x11-misc/lightdm-unity-greeter for testing

  24 Mar 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Maskapp-arch/createrepo for removal. Bug #396067

  23 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Remove obsolete ati-drivers entry.

  23 Mar 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask kde-misc/kgtk because of brokenness

  22 Mar 2012; Tim Harder <radhermit@gentoo.org>
  hardened/linux/amd64/package.use.mask, hardened/linux/x86/package.use.mask:
  Remove redundant use flag mask.

  22 Mar 2012; Alexis Ballier <aballier@gentoo.org> +desc/fftools.desc,
  base/make.defaults:
  Introduce fftools USE_EXPAND per -dev discussion for ffmpeg extra tools.

  22 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite www-client/galeon wrt #333895 and #403415

  22 Mar 2012; Lars Wendler <polynomial-c@gentoo.org> package.mask:
  Masked www-client/icecat for removal.

  20 Mar 2012; Sergei Trofimovich <slyfox@gentoo.org> package.mask:
  Unmask testing dev-haskell/cabal-1.14 and packages coming with ghc-7.4 (but
  not ghc-7.4 yet).

  20 Mar 2012; Samuli Suominen <ssuominen@gentoo.org>
  default/linux/package.use.mask:
  Unmask USE="acl" for sys-auth/consolekit here because it's Linux only feature
  based on udev.

  20 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Unmask =sys-fs/udev-182 because udev-acl is now moved to
  =sys-auth/consolekit-0.4.5-r3 wrt #408713

  20 Mar 2012; Patrick Lauer <patrick@gentoo.org> package.mask:
  Fixing udev mask to include udev-init-scripts too

  19 Mar 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  Drop media-video/avidemux mask.

  19 Mar 2012; William Hubbs <williamh@gentoo.org> package.mask:
  mask udev-182 due to bug #408713.

  19 Mar 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  Mask media-video/avidemux-2.5.6-r1 wrt bug 408813.

  19 Mar 2012; Naohiro Aota <naota@gentoo.org> package.mask:
  Drop mask since security fix added to the package. #390769

  19 Mar 2012; William Hubbs <williamh@gentoo.org> package.mask:
  remove systemd/udev mask

  18 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite dev-cpp/cppserv and dev-cpp/sptk wrt #402149, Comment #9.

  18 Mar 2012; Anthony G. Basile <blueness@gentoo.org> desc/linguas.desc:
  Added some country specific locales

  18 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Drop some x11 masks.

  18 Mar 2012; Matti Bickel <mabi@gentoo.org> package.mask:
  masked dev-php/PEAR-DB_DataObject_FormBuilder for removal, bug 396963

  18 Mar 2012; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  masked for removal, bug 380697

  18 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> use.desc:
  Remove description for USE="esd" because nothing is using it.

  18 Mar 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask some packages for removal.

  18 Mar 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Cleanup old masks.

  18 Mar 2012; Andreas K. Huettel <dilfridge@gentoo.org> desc/linguas.desc:
  Add locale tt for Tatar (can be written in latin, cyrillic, and arabic)

  18 Mar 2012; Tim Harder <radhermit@gentoo.org> package.mask:
  Drop old app-misc/task mask.

  18 Mar 2012; Magnus Granberg <zorry@gentoo.org> 
  hardened/linux/package.use.mask, hardened/linux/use.mask
  mask profile for media-tv/xbmc only.

  17 Mar 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  Mask qt-creator 2.5.0 beta release.

  17 Mar 2012; Ole Markus With <olemarkus@gentoo.org> package.mask:
  pecl-{idn,enchant} has been removed from the tree. Removing from package.mask

  17 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite media-sound/canorus wrt #367861

  17 Mar 2012; Tim Harder <radhermit@gentoo.org>
  hardened/linux/amd64/package.use.mask, hardened/linux/x86/package.use.mask:
  Mask USE="skype" for bitlbee on hardened amd64/x86.

  16 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Drop obsolete libXt mask.

  16 Mar 2012; Mike Gilbert <floppym@gentoo.org> thirdpartymirrors:
  Add ftp.gnu.org so that repoman warns about mirror://gnu/.

  16 Mar 2012; Mike Gilbert <floppym@gentoo.org> thirdpartymirrors:
  Fix a gnu-alpha mirror.

  15 Mar 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  hardened/linux/amd64/use.mask, hardened/linux/x86/use.mask:
  Vdpau actually works with the mesa implementation too. Bug#408267.

  15 Mar 2012; Samuli Suominen <ssuominen@gentoo.org>
  targets/desktop/package.use:
  Stop disabling USE="zlib" by default for sys-apps/pciutils and disable
  USE="compress-db" instead as part of bug #360849

  14 Mar 2012; Bernard Cafarelli <voyageur@gentoo.org> package.mask:
  Clean package.mask after last rites, bug #380433

  14 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Mask xf86-input-synaptics which depends on mtdev.

  14 Mar 2012; Magnus Granberg <zorry@gentoo.org> hardened/linux/use.mask
  Mask the profile use flag for it don't work with PIE

  13 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> updates/1Q-2012:
  Move frescobaldi back from SLOT="4" to SLOT="0".

  13 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> base/package.use.mask,
  package.mask:
  Remove mask for lilypond and reverse dependencies since they are fixed.

  12 Mar 2012; Sébastien Fabbro <bicatali@gentoo.org> package.mask:
  Removed masking of beta version of sci-libs/metis, now gone

  12 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite lilypond and reverse dependencies.

  12 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Mask libXt-1.1.2 for bug #407889.

  12 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite dev-ada/qtada as per request from yngwin.

  12 Mar 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> prefix/package.provided:
  Remove virtual/shadow from package.provided, portage(5) says it should not be
  there. Reported by grobian.

  12 Mar 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> base/packages,
  default/bsd/package.mask, default/bsd/packages, default/linux/packages.build,
  prefix/package.provided, prefix/packages, uclibc/packages.build:
  virtual/shadow related updates.

  11 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite gecko-sharp, Gtk2-MozEmbed and ntfsprogs.

  11 Mar 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Mask sys-apps/hardened-shadow (new package), early upstream release.

  10 Mar 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  Unmask dev-python/{shiboken,pyside,pyside-tools}.

  10 Mar 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  Update dev-python/pyside-tools mask.

  09 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite app-pda/syncevolution.

  09 Mar 2012; Tim Harder <radhermit@gentoo.org> package.mask:
  Mask beta release of mediawiki.

  09 Mar 2012; Tim Harder <radhermit@gentoo.org> package.mask:
  Mask beta release of roundcube.

  09 Mar 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  Mask rewritten dev-python/pyside-tools ebuild too. Unmask qt-webkit, bug
  407315 is fixed.

  08 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Update libXi mask for release depending on beta.

  08 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Mask rtl8192se-firmware which is not useful on its own (in-kernel driver uses
  other firmware).

  08 Mar 2012; Alexandre Rostovtsev <tetromino@gentoo.org> updates/1Q-2012:
  Slotmove the former sunrise overlay version of nautilus-actions to prevent
  collision with the ebuilds that were added to portage.

  07 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Update mask for xorg-server-1.12 release.

  07 Mar 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  Mask x11-libs/qt-webkit-4.8.0-r1 again.

  07 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Include xfdesktop and thunar in the Xfce pre-4.10 mask

  07 Mar 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  Unmask qt-qt3support-4.8.0-r1 and qt-webkit-4.8.0-r1

  06 Mar 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  Mask rewritten dev-python/{shiboken,pyside}-1.1.0-r1 ebuilds.

  06 Mar 2012; Jeremy Olexa <darkside@gentoo.org>
  arch.list, profiles.desc:
  Add ppc64-linux profile for bug 407021 by Richard Yao

  06 Mar 2012; Johannes Huber <johu@gentoo.org> package.mask:
  Mask kde-misc/nepomukcontroller for removal.

  06 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask >=dev-lang/lua-5.2.0 for testing wrt #407091

  06 Mar 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask some packages for removal.

  04 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Drop obsolete x11 masks.

  04 Mar 2012; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  removed pmask media-video/em8300-{modules,libraries}

  04 Mar 2012; Sergei Trofimovich <slyfox@gentoo.org> package.mask:
  Mask ghc-7.4 and friends in tree until we get binaries for it.

  04 Mar 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  sys-kernel/kerneloops is no more

  04 Mar 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  app-portage/autounmask is no more

  04 Mar 2012; Joerg Bornkessel <hd_brummy@gentoo.org> package.mask:
  masked em8300-modules-0.18.0_p20120124 em8300-libraries-0.18.0_p20120124 for
  testing, bug #350211

  03 Mar 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  www-apps/twiki is no more

  03 Mar 2012; Krzysztof Pawlik <nelchael@gentoo.org> package.mask:
  Remove mask for dev-python/pisa.

  03 Mar 2012; Ole Markus With <olemarkus@gentoo.org> package.mask:
  Removing mask of unstable pecl-memcached

  03 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Unmask eselect-opengl-1.2.5 now that mesa has been fixed.

  03 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Mask media-libs/mesa-8.0.1-r1 for breaking compile against glu.h, bug #406641

  03 Mar 2012; Andreas K. Huettel <dilfridge@gentoo.org> updates/1Q-2012:
  konq-plugins is in kde-base now

  03 Mar 2012; Hans de Graaff <graaff@gentoo.org> package.mask:
  Fix broken atom.

  03 Mar 2012; Hans de Graaff <graaff@gentoo.org> package.mask:
  Add new ruby-enterprise release to the test mask.

  02 Mar 2012; Justin Lecher <jlec@gentoo.org> package.mask:
  Remove mask of sci-chemistry/pymol-plugins-cealign as it is removed now

  29 Feb 2012; Mike Gilbert <floppym@gentoo.org> thirdpartymirrors:
  Add gnu-alpha mirrors.

  29 Feb 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  license_groups:
  Update new Adobe licenses in EULA group.

  29 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite gnunet and gnunet-gtk.

  29 Feb 2012; Ralph Sennhauser <sera@gentoo.org> package.mask:
  Remove package.mask for removed sun-j2ee. #91484

  28 Feb 2012; Mike Frysinger <vapier@gentoo.org> package.mask:
  Drop perf mask since it builds nicely now.

  28 Feb 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove pmask of gnu-gs-fonts-*, not in the tree anymore

  28 Feb 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove pmask of xpdf (not in the tree anymore)

  28 Feb 2012; Aaron W. Swenson <titanofold@gentoo.org> package.mask:
  Masked dev-db/postgresql-{docs,base,server}:8.2 for removal. EOL and
  vulnerabilities. (Bug 406037)

  27 Feb 2012; Diego E. Pettenò <flameeyes@gentoo.org> updates/1Q-2012:
  Add slotmove for dev-ruby/syslogger.

  27 Feb 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Unmask boost and friends

  27 Feb 2012; Sébastien Fabbro <bicatali@gentoo.org> package.mask:
  Masked >=sci-visualization/fityk-1.1 (because of wxGTK-2.9)

  27 Feb 2012; Tim Harder <radhermit@gentoo.org> desc/linguas.desc:
  Add Spanish locale for Columbia, used in media-sound/csound.

  26 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Remove mask for fixed extundelete and some removed pkgs.

  26 Feb 2012; Kacper Kowalik <xarthisius@gentoo.org> package.mask:
  removing obsolete mask on dev-lang/open64 that was removed from tree

  26 Feb 2012; Justin Lecher <jlec@gentoo.org> package.mask:
  Remove mask for sci-visualization/hippodraw

  25 Feb 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask rb_libtorrent-0.15.10 as well

  25 Feb 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  genmenu was fixed.

  25 Feb 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  desc/video_cards.desc:
  Add video_cards_modesetting.

  24 Feb 2012; Ulrich Müller <ulm@gentoo.org> license_groups:
  Move CC0-1.0-Universal from MISC-FREE to GPL-COMPATIBLE license group. Add
  EUPL-1.1 to FSF-APPROVED group.

  24 Feb 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  Add also qt-webkit-4.8.0-r1 to the mask for bug #404493.

  24 Feb 2012; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add Unlicense to GPL-COMPATIBLE license group.

  23 Feb 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Unmask x11-misc/lightdm-1.1.3

  23 Feb 2012; Davide Pesavento <pesa@gentoo.org> package.mask:
  Update comment about x11-libs/qt-qt3support-4.8.0-r1 mask.

  23 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite sys-fs/extundelete wrt #402633

  22 Feb 2012; Johannes Huber <johu@gentoo.org> package.mask:
  Remove mask for libreoffice-bin.

  22 Feb 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask new libreoffice binpackages for testing, new generation mechanism

  21 Feb 2012; Michał Górny <mgorny@gentoo.org> package.mask, repo_name:
  Forward mask API-incompatible update of npapi-sdk.

  21 Feb 2012; Theo Chatzimichos <tampakrap@gentoo.org> package.mask:
  Masking www-client/arora

  21 Feb 2012; Ole Markus With <olemarkus@gentoo.org> package.mask:
  Masking dev-php/PEAR-Image_Color, dev-php/PEAR-Image_Canvas

  20 Feb 2012; Alexis Ballier <aballier@gentoo.org> package.mask:
  unmask vlc 2.0

  20 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask what will be the Xfce Desktop Environment 4.10 for testing.

  20 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Removed entries for ogle (and reverse dependencies), ripmake and thunar-vfs.

  19 Feb 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask app-text/notecase-pro for removal

  19 Feb 2012; Robin H. Johnson <robbat2@gentoo.org> updates/1Q-2012:
  Move net-wireless/{wispy-,spec}tools.

  19 Feb 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Masking x11-libs/qt-qt3support-4.8.0-r1 for testing

  19 Feb 2012; William Hubbs <williamh@gentoo.org> package.mask:
  remove old udev from mask and adjust udev-init-scripts mask.

  18 Feb 2012; Vlastimil Babka <caster@gentoo.org> package.mask:
  Unmask dev-java/ant-1.8.2 and friends.

  18 Feb 2012; Eray Aslan <eras@gentoo.org> package.mask:
  punt mask for dovecot-2.1_rc builds

  18 Feb 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask lightdm-1.1.3 for testing

  18 Feb 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Remove entry for dev-util/chromium-tools, package has been removed.

  17 Feb 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Unmask gtkdiskfree after fixing trivial bug and people wanting to keep it due
  less RDEPENDs (bug #370605).

  16 Feb 2012; Vlastimil Babka <caster@gentoo.org> package.mask:
  Mask dev-java/ant-1.8.2 and deps for atomic bump+testing.

  16 Feb 2012; Justin Lecher <jlec@gentoo.org> ChangeLog:
  move app-shells/prll sys-process/prll

  16 Feb 2012; Amadeusz Żołnowski <aidecoe@gentoo.org>
  desc/dracut_modules.desc:
  'ssh-client' added to dracut_modules.

  16 Feb 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  pavuk was fixed and updated, media-libs/libdlna and media-video/ushare will
  be proxy maintained in the near future.

  16 Feb 2012; Justin Lecher <jlec@gentoo.org> package.mask:
  Mask sci-chemistry/pymol-plugins-cealign for removal

  15 Feb 2012; Joerg Bornkessel <hd_brummy@gentoo.org> updates/1Q-2012:
  moved media-tv/linuxtv-dvb-headers virtual/linuxtv-dvb-headers

  15 Feb 2012; Samuli Suominen <ssuominen@gentoo.org>
  targets/desktop/package.use:
  Disable USE="zlib" in sys-apps/pciutils by default for USE="hwdb" in
  sys-fs/udev.

  14 Feb 2012; Bernard Cafarelli <voyageur@gentoo.org> package.mask:
  Last rites for gnustep-libs/objcunit, gnustep-apps/cynthiune,
  gnustep-apps/gridlock, gnustep-apps/talksoup

  14 Feb 2012; Markos Chandras <hwoarang@gentoo.org> use.desc:
  ayatana: add note about libappindicator as well

  14 Feb 2012; Markos Chandras <hwoarang@gentoo.org> use.desc:
  ayatana is now global per
  http://archives.gentoo.org/gentoo-dev/msg_f2eb26947d0c86020625a9aeca6f25e4.xm
  l

  14 Feb 2012; Justin Lecher <jlec@gentoo.org> base/package.use.mask:
  Correct version for recent pymol USE=vmd mask

  13 Feb 2012; Justin Lecher <jlec@gentoo.org> base/package.use.mask:
  Masked USE=vmd for >pymol-1.5

  13 Feb 2012; Alex Legler <a3li@gentoo.org> package.mask:
  tikiwiki is gone

  13 Feb 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask packages with treecleaners CCed for removal.

  12 Feb 2012; Mike Gilbert <floppym@gentoo.org> package.mask:
  Take app-shells/ksh off the chopping block.

  12 Feb 2012; Matti Bickel <mabi@gentoo.org> package.mask:
  Unmask x11-libs/fox-1.7* since the dev branch is quite stable now

  12 Feb 2012; Maxim Koltsov <maksbotan@gentoo.org> package.mask:
  Unmasked ldb-1.1.4, bug 401635

  12 Feb 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask more packages for removal.

  12 Feb 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask more packages for removal.

  12 Feb 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask alsa-driver for removal.

  11 Feb 2012; Ole Markus With <olemarkus@gentoo.org> package.mask:
  Masked pecl-{idn,enchant}

  11 Feb 2012; Sergei Trofimovich <slyfox@gentoo.org>
  hardened/linux/amd64/no-multilib/parent:
  Reverted previous change as it caused phony profiles to pop up (found out by
  blueness).

  11 Feb 2012; Sergei Trofimovich <slyfox@gentoo.org>
  hardened/linux/amd64/no-multilib/parent:
  Make hardened/linux/amd64/no-multilib include arch/amd64/no-multilib
  (http://archives.gentoo.org/gentoo-dev/msg_7c41ab6653426048c2e8b0f271637bf3.x
  ml). Approved by Zorry.

  11 Feb 2012; Sergei Trofimovich <slyfox@gentoo.org>
  hardened/linux/package.mask:
  Mask skypetab-ng for hardened as it's a library for x86-only skype.

  11 Feb 2012; Angelo Arrifano <miknix@gentoo.org> license_groups:
  Add Mendeley-EULA to EULA, needed for sci-misc/mendeleydesktop

  10 Feb 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask app-laptop/thinkpad and friends for removal. Bug #381263

  10 Feb 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Masking app-shells/ksh for removal

  10 Feb 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  app-emulation/{libdsk,lib765} removal. Bug #402857

  10 Feb 2012; Matt Turner <mattst88@gentoo.org>
  +hardened/linux/amd64/no-multilib/use.mask:
  Add d3d USE mask to hardened/amd64/no-multilib.

  10 Feb 2012; Matt Turner <mattst88@gentoo.org> desc/video_cards.desc:
  Add i915 and i965 to video_cards.desc.

  10 Feb 2012; Justin Lecher <jlec@gentoo.org> package.mask:
  Mask sci-libs/cctbx-2010.03.29.2334-r6 as boost-1.48 is maked

  10 Feb 2012; Tim Harder <radhermit@gentoo.org> package.mask:
  Unmask =net-libs/gnutls-2.12*.

  10 Feb 2012; Angelo Arrifano <miknix@gentoo.org> package.mask:
  Force upgrade to arduino-1.0, mask old versions.

  09 Feb 2012; Mike Gilbert <floppym@gentoo.org> package.mask:
  Update dev channel mask for www-client/chromium.

  09 Feb 2012; Robin H Johnson <robbat2@gentoo.org> package.mask:
  Mask sys-libs/db-5.3 for testing.

  08 Feb 2012; Bernard Cafarelli <voyageur@gentoo.org> package.mask:
  gnustep-make-2.6.1-r10 removed from tree, unmask libobjc2 USE flag for
  replacement

  08 Feb 2012; William Hubbs <williamh@gentoo.org> package.mask:
  add udev-181 to the udev mask.

  07 Feb 2012; Anthony G. Basile <blueness@gentoo.org> hardened/linux/use.mask:
  Unmask opencl USE flag on hardened

  06 Feb 2012; Ralph Sennhauser <sera@gentoo.org> package.mask:
  Remove package.mask entry for jrockit-jdk-bin after removal

  06 Feb 2012; Mike Frysinger <vapier@gentoo.org> package.mask:
  Drop the mask as the version no longer has KEYWORDS.

  06 Feb 2012; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask binutils-2.22.52.0.1 due to bug 402271.

  06 Feb 2012; Sébastien Fabbro <bicatali@gentoo.org> package.mask:
  Masked sci-libs/fftw-3.3.1_beta1 until more stable

  06 Feb 2012; Sébastien Fabbro <bicatali@gentoo.org> package.mask:
  Masking sci-visualization/hippodraw for removal

  04 Feb 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Unmask libpciaccess, bug #402141.

  04 Feb 2012; Justin Lecher <jlec@gentoo.org> arch/amd64/use.mask,
  arch/x86/use.mask, base/use.mask:
  Mask USE=zeitgeist globally and unmask fpr keyworded arches

  04 Feb 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Masking sys-kernel/kerneloops for removal. Bug #276412

  04 Feb 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  app-text/lyx2html is gone. Bug #388987

  04 Feb 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Mask app-portage/autounmask for removal

  04 Feb 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Unmask avidemux. Upstream does not care about parallel build and neither do I

  03 Feb 2012; William Hubbs <williamh@gentoo.org> package.mask:
  add udev-180 to the udev mask.

  03 Feb 2012; Maxim Koltsov <maksbotan@gentoo.org> package.mask:
  Mask =sys-libs/ldb-1.1.4

  03 Feb 2012; Nathan Phillip Brink <binki@gentoo.org> updates/1Q-2012:
  Move dev-libs/libmowgli-2* to SLOT=2.

  02 Feb 2012; Samuli Suominen <ssuominen@gentoo.org>
  default/linux/package.use.mask:
  Mask USE="fam" for x11-misc/spacefm since we have inotify support.

  02 Feb 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Masking www-apps/twiki for removal

  02 Feb 2012; Jeroen Roovers <jer@gentoo.org> package.mask:
  Mask >www-client/opera-11.62.

  01 Feb 2012; Eray Aslan <eras@gentoo.org> package.mask:
  unmask postfix-2.9 version

  01 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite FlowScan, CUFlow and JKFlow for abusing < depend in the same
  stabilization level.

  31 Jan 2012; Johannes Huber <johu@gentoo.org> package.mask:
  Remove package.mask on phonon-xine backend. It is removed from tree.

  31 Jan 2012; Pacho Ramos <pacho@gentoo.org> desc/cameras.desc:
  Add new camera.

  31 Jan 2012; Jeff Horelick <jdhore@gentoo.org> package.mask:
  Mask >=dev-libs/libmowgli-2.0.0_alpha1 in preperation for adding it to the tree.

  30 Jan 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Add =sci-geosciences/mapnik-0.7.1-r2 to boost-1.48 reverse dependencies

  30 Jan 2012; Johannes Huber <johu@gentoo.org> package.mask:
  Lift mask for media-libs/opengtl-0.9.16, as it is released now.

  30 Jan 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Clean old entry.

  30 Jan 2012; Pacho Ramos <pacho@gentoo.org> arch/alpha/package.use.mask,
  arch/arm/package.use.mask, arch/ia64/package.use.mask,
  arch/sparc/package.use.mask:
  Mask libvisual USE flag in arches that don't have needed packages keyworded.

  30 Jan 2012; Sébastien Fabbro <bicatali@gentoo.org> package.mask:
  Mask another boost python reverse depedency

  29 Jan 2012; Sébastien Fabbro <bicatali@gentoo.org> package.mask:
  Dropped sci-astronomy/orsa and sci-astronomy/ds9 masking, gone from tree

  29 Jan 2012; Alex Alexander <wired@gentoo.org> package.mask:
  unmasked Qt 4.8.0 and friends

  29 Jan 2012; Aaron W. Swenson <titanofold@gentoo.org> thirdpartymirrors:
  PostgreSQL revamped their download network.
  http://pgsnake.blogspot.com/2011/12/updated-postgresql-download.html

  29 Jan 2012; Alex Alexander <wired@gentoo.org> package.mask:
  masked new revbump of cairo, will unmask it together with new Qt

  29 Jan 2012; Alex Alexander <wired@gentoo.org> package.mask:
  Getting ready to push qt-4.8.0

  29 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Improve xpdf mask message

  29 Jan 2012; Mike Gilbert <floppym@gentoo.org> package.mask:
  Mask another boost python revdep.

  28 Jan 2012; Aaron W. Swenson <titanofold@gentoo.org> package.mask:
  Masked dev-db/pgaccess for removal.

  28 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove pmask of mtink as it has been fixed.

  28 Jan 2012; Mike Gilbert <floppym@gentoo.org> package.mask:
  Add some additial entries to hworang's boost/python mask.

  28 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite x11-misc/enter because it doesn't have ConsoleKit support.

  28 Jan 2012; Ralph Sennhauser <sera@gentoo.org> package.mask:
  Package.mask dev-java/sun-j2ee for removal in 30 days.
  Hopelessly outdated, contains broken jars. #91484

  28 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> thirdpartymirrors:
  Remove everything except archive.xfce.org from the mirror://xfce.

  27 Jan 2012; Krzysztof Pawlik <nelchael@gentoo.org> package.mask:
  Mask dev-python/pisa.

  27 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask xpdf for removal

  27 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Ah well. Lets try cups-1.5 now.

  27 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Prepare for a rebuild of kstlyes-4.7.4 synchronous with qt-4.8 upgrade

  27 Jan 2012; Pacho Ramos <pacho@gentoo.org>
  arch/amd64/no-multilib/package.mask:
  More emul packages


  27 Jan 2012; Jeremy Olexa <darkside@gentoo.org> package.mask:
  remove stale masks

  27 Jan 2012; Jeremy Olexa <darkside@gentoo.org> package.mask:
  cdebootstrap is removed from tree

  26 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask =net-p2p/transmission-2.42 for bugs #400815, #400865 and #400923

  26 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Mask net-misc/hylafax and x11-misc/tkhylafax because lack of support for
  stable media-libs/tiff >= 4.0.0.

  26 Jan 2012; Tony Vroon <chainsaw@gentoo.org> thirdpartymirrors:
  Drop firewalled ftp.silug.org from alsaproject mirror list. Timeouts suck.

  25 Jan 2012; Johannes Huber <johu@gentoo.org> package.mask:
  Lift mask for KDE SC 4.8.0

  25 Jan 2012; Johannes Huber <johu@gentoo.org> package.mask:
  Mask KDE SC 4.8.0

  24 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Finally mask media-fonts/gnu-gs-fonts-* for last-riting, ending 
  year-long annoyance in bug 247657. Replaced by media-fonts/urw-fonts.

  24 Jan 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  lift mask on app-admin/webmin

  24 Jan 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Add dev-python/cgkit-2.0.0_alpha9-r1 to the boost-1.48 rdeps

  24 Jan 2012; Johannes Huber <johu@gentoo.org> updates/1Q-2012:
  Rename net-libs/telepathy-qt4 to net-libs/telepathy-qt

  24 Jan 2012; Jeroen Roovers <jer@gentoo.org> package.mask:
  Unmask www-client/opera-11.61.

  23 Jan 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Initial commit of boost-1.48 reverse python dependencies. See:
  http://archives.gentoo.org/gentoo-dev/msg_ab39d8366b714ecacfc7fa64cd48ad00.xm
  l

  23 Jan 2012; Sergei Trofimovich <slyfox@gentoo.org>
  arch/powerpc/package.use.mask:
  Mask USE=usbredir for qemu and qemu-kvm (unsatisfied dep on
  sys-apps/usbredir).

  22 Jan 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask net-p2p/monsoon for removal

  22 Jan 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Drop my old entries.

  22 Jan 2012; Pacho Ramos <pacho@gentoo.org> package.mask:
  Mask dev-lang/nemerle for removal

  22 Jan 2012; Ulrich Müller <ulm@gentoo.org> package.mask:
  Update mask for Emacs live ebuilds.

  22 Jan 2012; Sergei Trofimovich <slyfox@gentoo.org>
  desc/qemu_softmmu_targets.desc:
  Added LatticeMico32 to QEMU_SOFTMMU_TARGETS.

  21 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> updates/1Q-2012:
  Rename dev-perl/sdl-perl to dev-perl/SDL.

  21 Jan 2012; Sergei Trofimovich <slyfox@gentoo.org>
  desc/qemu_softmmu_targets.desc, desc/qemu_user_targets.desc:
  Added more upstream targets to QEMU_USER_TARGETS and QEMU_SOFTMMU_TARGETS.

  21 Jan 2012; Justin Lecher <jlec@gentoo.org> package.mask:
  Mask sci-visualization/scidavis for removal

  21 Jan 2012; Markos Chandras <hwoarang@gentoo.org> updates/1Q-2012,
  package.mask:
  Remove masking. Use portage move instruction instead

  21 Jan 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  masking media-sound/minitunes for removal

  21 Jan 2012; Ole Markus With <olemarkus@gentoo.org> package.mask:
  Removing mask of pruned packages

  21 Jan 2012; Michał Górny <mgorny@gentoo.org> package.mask:
  Mask sys-apps/systemd-sysv-utils until we get necessary tools out of
  sysvinit.

  20 Jan 2012; Alexey Shvetsov <alexxy@gentoo.org> arch/alpha/package.use.mask,
  arch/ia64/package.use.mask, arch/powerpc/package.use.mask,
  arch/sparc/package.use.mask:
  Mask some use for new openmpi deps

  19 Jan 2012; Eray Aslan <eras@gentoo.org> package.mask:
  Mask experimental mail-mta/postfix-2.10 versions

  18 Jan 2012; Matti Bickel <mabi@gentoo.org> package.mask:
  Lastrite dev-php/PEAR-PHP_Archive

  17 Jan 2012; Matti Bickel <mabi@gentoo.org> package.mask:
  Lastrite dev-php/PEAR-HTML_Select_Common

  17 Jan 2012; Johannes Huber <johu@gentoo.org> package.mask:
  Mask not yet released media-libs/opengtl-0.9.16.

  17 Jan 2012; Johannes Huber <johu@gentoo.org> base/use.mask, use.desc:
  Remove kdeenablefinal. Build feature is gone.

  17 Jan 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.mask:
  Mask dev-util/chromium-tools for removal. Determined by the maintaining team
  to be no longer useful.

  16 Jan 2012; Johannes Huber <johu@gentoo.org> package.mask:
  Update package mask entry for phonon-xine

  16 Jan 2012; Matti Bickel <mabi@gentoo.org> package.mask:
  Lastrite dev-php/PEAR-I18N, bug #396975.

  16 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite dev-dotnet/gnome-panel-sharp.

  16 Jan 2012; Johannes Huber <johu@gentoo.org> package.mask:
  Remove package mask of kcheckgmail, bug #394881.

  16 Jan 2012; Ulrich Müller <ulm@gentoo.org> license_groups:
  Remove Emacs-23-CEDET-grammars from FSF-APPROVED since it's no longer used.

  16 Jan 2012; Nirbheek Chauhan <nirbheek@gentoo.org> package.mask:
  Let's unmask rhythmbox-2.9x, the worst bugs seem to be fixed

  15 Jan 2012; Ole Markus With <olemarkus@gentoo.org> package.mask:
  Removed mask of purged ebuilds

  15 Jan 2012; Justin Lecher <jlec@gentoo.org> package.mask:
  Removed dev-tcltk/tkimg mask as the version isn't in the tree anymore

  14 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask net-print/mtink for removal in 30 days. Bug 342799.

  14 Jan 2012; Kacper Kowalik <xarthisius@gentoo.org> use.desc:
  Add global tcmalloc

  14 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Calligra 2.3.86 has been released

  11 Jan 2012; Bernard Cafarelli <voyageur@gentoo.org> package.mask:
  Remove llvm-gcc mask after last rites

  11 Jan 2012; Daniel Pielmeier <billie@gentoo.org> package.mask:
  net-print/cupsddk has been removed. See bug #394089 reference.

  10 Jan 2012; Samuli Suominen <ssuominen@gentoo.org>
  default/linux/package.use.mask:
  Unmask USE="e2fsprogs" for app-arch/libarchive as Linux -only feature wrt
  #354923

  09 Jan 2012; William Hubbs <williamh@gentoo.org> package.mask:
  add sys-apps/kmod to the udev mask

  09 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite sys-fs/zfs-fuse.

  08 Jan 2012; Robin H. Johnson <robbat2@gentoo.org> package.mask:
  Update package.mask for vulnerable MySQL versions.

  08 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite media-video/ogle and reverse dependencies because of incompabilities
  with current libdvdread.

  08 Jan 2012; Ulrich Müller <ulm@gentoo.org> license_groups:
  Add czyborra and noweb to MISC-FREE license group, bugs 395179 and 397485.

  08 Jan 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  mask new boost for testing

  08 Jan 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  qt-4.8.0_rc is no more

  08 Jan 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  app-admin/mon is no more

  07 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Mask not-yet-released calligra

  07 Jan 2012; Olivier Crête <tester@gentoo.org> package.mask:
  Remove gupnp block as we have the newer gupnp-igd

  07 Jan 2012; Michael Pagano <mpagano@gentoo.org> package.mask:
  Remove portpeek mask

  06 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite media-video/ripmake.

  06 Jan 2012; William Hubbs <williamh@gentoo.org>
  default/linux/package.use.mask:
  dropping mask for zlib on pciutils/usbutils after talking with ssuominon on
  irc.

  05 Jan 2012; William Hubbs <williamh@gentoo.org>
  default/linux/package.use.mask:
  Mask zlib for sys-apps/pciutils and sys-apps/usbutils; needed for bug #360849

  05 Jan 2012; Mike Gilbert <floppym@gentoo.org> package.mask:
  Update mask for chrome dev channel; 17.x is now the beta channel.

  05 Jan 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Mask one more x11 prerelease package.

  05 Jan 2012; Thomas Beierlein <tomjbe@gentoo.org> package.mask:
  Drop mask for media-radio/fldigi as a version supporting fltk-1.3 is in the
  tree

  05 Jan 2012; Maxim Koltsov <maksbotan@gentoo.org> package.mask:
  Unmask app-emulation/libguestfs

  05 Jan 2012; Matthew Marlowe <mattm@gentoo.org> package.mask:
  Taking maintainership for net-libs/wt

  04 Jan 2012; Nirbheek Chauhan <nirbheek@gentoo.org> package.mask:
  Add two more packages that need esound, found by Mr_Bones_

  04 Jan 2012; Michael Pagano <mpagano@gentoo.org> package.mask:
  Mask portpeek >= 2.0.17 for testing

  04 Jan 2012; Ralph Sennhauser <sera@gentoo.org> package.mask:
  Package.mask dev-java/jrockit-jdk-bin for removal in 30 days.
  Outdated Java version, fails to fetch, no upstream. #228929

  04 Jan 2012; Nirbheek Chauhan <nirbheek@gentoo.org> base/use.mask,
  package.mask:
  Last Rites for esound daemon as per mail to gentoo-dev

  02 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org> +ChangeLog-2007, 
  +ChangeLog-2008, +ChangeLog-2009, +ChangeLog-2010, +ChangeLog-2011:
  Split ChangeLog

  02 Jan 2012; Markos Chandras <hwoarang@gentoo.org> package.mask:
  Masking new avidemux2.5.6 until upstream fixes parallel build failures

  02 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> use.desc:
  Description for USE flag "neon"

  02 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> package.mask:
  Lastrite xfce-extra/thunar-vfs.

  02 Jan 2012; Michael Pagano <mpagano@gentoo.org> thirdpartymirrors:
  Remove invalid kernel mirrors. Bug #396087

  01 Jan 2012; Sebastian Pipping <sping@gentoo.org> package.mask:
  Extend mask on Gimp to upcoming version 2.7.4

  01 Jan 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Add mask for xf86-input-evdev versions that require mtdev.

  01 Jan 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  package.mask:
  Mask more prerelease x11 packages.

  01 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.mask:
  Remove package mask of kmuddy, bug 371451

  For previous entries, please see ChangeLog-2011.