1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
|
# ChangeLog for Gentoo base-profile
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/profiles/base/ChangeLog,v 1.713 2014/08/27 03:26:21 zerochaos Exp $
26 Aug 2014; Rick Farina <zerochaos@gentoo.org> package.use.mask:
mirisdr does not seem to like making releases
<net-wireless/gr-osmosdr-9999 mirisdr
20 Aug 2014; Samuli Suominen <ssuominen@gentoo.org> package.use.stable.mask:
Mask USE="static" for sys-fs/cryptsetup and sys-fs/lvm2 wrt bugs #496612 and
#516224 in preparation of stabilization wrt bug #493892
16 Aug 2014; Mikle Kolyada <zlogene@gentoo.org> package.use.stable.mask:
Mask dev-perl/PDL pdl2 pgplot plplot.
10 Aug 2014; Justin Lecher <jlec@gentoo.org> package.use.force:
Force acl for netatalk, #516626
09 Aug 2014; Brian Evans <grknight@gentoo.org> package.use.mask:
Remove use masks on pbxt as it is no longer included on any mysql variant
05 Aug 2014; Maxim Koltsov <maksbotan@gentoo.org> package.use.mask:
Mask app-leechcraft/lc-azoth[sarin]
04 Aug 2014; Mike Frysinger <vapier@gentoo.org> package.use.mask:
Mask x86-specific flashrom USE flags in base.
01 Aug 2014; Samuli Suominen <ssuominen@gentoo.org> package.use.stable.mask:
Mask USE="java mono" for media-libs/libcaca as unrequired and too fragile
(multiple race condition build errors) for stable.
30 Jul 2014; Brian Evans <grknight@gentoo.org> package.use.mask:
Mask embedded useflag on dev-db/percona-server
27 Jul 2014; Alexis Ballier <aballier@gentoo.org> use.mask:
mask xop useflag (amd cpu optimizations)
21 Jul 2014; Anthony G. Basile <blueness@gentoo.org> package.mask:
It is safe to unmask sys-lib/musl now
21 Jul 2014; Alon Bar-Lev <alonbl@gentoo.org> package.use.stable.mask:
Add 'app-crypt/tpm-tools pkcs11' per bug#510204
14 Jul 2014; Hans de Graaff <graaff@gentoo.org> use.stable.mask:
Revert masking of ruby_targets_ruby21 since it is not needed for bug 505920
although it was listed, incorrectly, in an alpha specific list. Discussed
with phajdan.jr via email.
14 Jul 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org> use.stable.mask:
Mask ruby_targets_ruby21 on stable, dev-lang/ruby:2.1 is not stable. This is
needed for bug #505920 .
11 Jul 2014; Rick Farina <zerochaos@gentoo.org> package.use.mask:
Mask ogdi for sci-libs/gdal due to repoman errors, please fix and remove mask
08 Jul 2014; Mikle Kolyada <zlogene@gentoo.org> package.use.stable.mask:
Stablemask libcaca and sdl use flags due to bug #514906
30 Jun 2014; Thomas Sachau (Tommy[D]) <tommy@gentoo.org> package.use.mask:
Mask pixman USE flag of dev-libs/efl for future removal, bug 501074
29 Jun 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.use.mask,
use.mask:
Mask use-flag firebird and package dev-db/firebird for bug 460780
29 Jun 2014; Andreas K. Huettel <dilfridge@gentoo.org>
package.use.stable.mask:
Stablemask firebird useflag on libreoffice until dependencies are stabilized
20 Jun 2014; Jeroen Roovers <jer@gentoo.org> package.use.mask:
Mask USE=libadns (bug #513982).
14 Jun 2014; Anthony G. Basile <blueness@gentoo.org> package.use.mask:
net-libs/cyassl is being tree cleaned, bug #495848
06 Jun 2014; Rick Farina <zerochaos@gentoo.org> package.mask:
masking <upower-0.99.0 due to portage failure to negotiate the upgrade for openrc users
06 Jun 2014; Zac Medico <zmedico@gentoo.org> package.use.mask:
Mask lua for www-servers/mongoose.
05 Jun 2014; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
Mask glamor flag for xorg-server, bug #510940.
05 Jun 2014; Sergey Popov <pinkbyte@gentoo.org> package.use.mask:
Mask USE='multislot' wrt bugs #507808, #507810 and #507814
05 Jun 2014; Manuel Rüger <mrueg@gentoo.org> package.use.mask:
Mask otr on net-im/climm.
30 May 2014; Mike Gilbert <floppym@gentoo.org> package.use.stable.mask:
Stable-mask sys-apps/systemd[ssl].
22 May 2014; Rick Farina <zerochaos@dev.gentoo.org> package.use.mask:
metasploit tests do not pass at this time
14 May 2014; Tom Wijsman <TomWij@gentoo.org> package.use.mask:
Documentation generation needs APIviz which is not in the Portage tree yet.
Tracked in Gentoo bug #509602.
26 Apr 2014; Michał Górny <mgorny@gentoo.org> package.use.mask, use.mask:
Mask USE flags for Python 2.6 to prepare for the removal.
26 Apr 2014; Tim Harder <radhermit@gentoo.org> package.use.mask:
Mask qt5 use flag on >=media-video/mkvtoolnix-6.9.0 until qt5 pkgs are added
to the tree.
23 Apr 2014; Lars Wendler <polynomial-c@gentoo.org> package.use.mask:
medias-ound/lmms[vst] not working on 64bit systems.
22 Apr 2014; Mike Frysinger <vapier@gentoo.org> make.defaults:
Build pkgconfig with USE=internal-glib in stage2 #507930.
21 Apr 2014; Rick Farina <zerochaos@gentoo.org> package.use.mask:
remove masks on metasploit[test,development] now that we have rake 10
20 Apr 2014; Richard Freeman <rich0@gentoo.org> package.use.stable.mask:
Removing mythplugins stable mask - DateTime is now stable on relevant archs.
20 Apr 2014; Markos Chandras <hwoarang@gentoo.org> package.use.mask:
Mask media-video/rtmpdump[polarssl] because it fails to build with recent
polarssl (>=1.3). Bug #503604
19 Apr 2014; Richard Freeman <rich0@gentoo.org> package.use.stable.mask:
Stable mask media-plugins/mythplugins[mythweather] - 508198/471536.
12 Apr 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.use.mask:
Mask marble python bindings in future releases
12 Apr 2014; Lars Wendler <polynomial-c@gentoo.org> package.use.mask:
Masked avformat USE flag for >=media-libs/xine-lib-1.2.5 until required
ffmpeg version got unmasked (#507474).
09 Apr 2014; Michał Górny <mgorny@gentoo.org> make.defaults:
Fix mailing list address.
08 Apr 2014; Alexey Shvetsov <alexxy@gentoo.org> use.mask:
Mask cuda globaly
06 Apr 2014; Michał Górny <mgorny@gentoo.org> package.use.mask:
Mask USE=pypy for sys-apps/portage, since pypy has limited KEYWORDS.
05 Apr 2014; Andreas K. Huettel <dilfridge@gentoo.org>
package.use.stable.mask:
Migrate app-portage/eix[clang] stable mask from eapi-5-files after review
01 Apr 2014; Mike Frysinger <vapier@gentoo.org> make.defaults, use.mask:
Add ABI_S390 defines.
30 Mar 2014; Mike Gilbert <floppym@gentoo.org> use.mask, use.stable.mask:
Convert python_targets_python3_4 into a stable mask.
29 Mar 2014; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Unmask USE="webkit2" for www-client/midori wrt #489936 by "A. Person"
29 Mar 2014; Mike Frysinger <vapier@gentoo.org> make.defaults, use.mask:
Add ABI_PPC defines.
27 Mar 2014; Andreas K. Huettel <dilfridge@gentoo.org>
package.use.stable.mask:
Migrate several entries from eapi-5-files after review
27 Mar 2014; Mike Gilbert <floppym@gentoo.org> package.use.mask:
Mask sys-apps/systemd[seccomp].
22 Mar 2014; Mike Gilbert <floppym@gentoo.org> package.use.stable.mask:
Move sys-boot/grub[libzfs] mask to arch/amd64.
22 Mar 2014; Mike Gilbert <floppym@gentoo.org> package.use.stable.mask:
Transfer sys-boot/grub[libzfs] stable mask.
22 Mar 2014; Mike Gilbert <floppym@gentoo.org> package.use.stable.mask:
Reorder the file correctly.
20 Mar 2014; Manuel Rüger <mrueg@gentoo.org> package.use.mask:
Mask server useflag for rubygems-1.8.x due to ruby1.8 deprecation
19 Mar 2014; Samuli Suominen <ssuominen@gentoo.org> package.use.stable.mask:
Mask USE="opencl" for stable users of media-gfx/imagemagick wrt #472766
19 Mar 2014; Andrey Grozin <grozinge@gentoo.org>
use.stable.mask:
Mask gcl
18 Mar 2014; Andreas K. Huettel <dilfridge@gentoo.org>
package.use.stable.mask:
Migrate net-libs/libkolab entry from eapi-5-files
16 Mar 2014; Andreas K. Huettel <dilfridge@gentoo.org>
-package.use.mask.example:
We have enough examples in the real file now.
16 Mar 2014; Andreas K. Huettel <dilfridge@gentoo.org>
package.use.stable.mask:
Migrate kde-base/kalzium entry from eapi-5-files
16 Mar 2014; Andreas K. Huettel <dilfridge@gentoo.org>
+package.use.stable.mask:
Add empty file for migrating entries
16 Mar 2014; Andreas K. Huettel <dilfridge@gentoo.org> +eapi,
+package.use.stable.force, +use.stable.force, +use.stable.mask:
Increase EAPI to 5 and move empty stable mask/force files here
16 Mar 2014; Michał Górny <mgorny@gentoo.org> use.mask:
Mask new PyPy flags.
16 Mar 2014; Patrick Lauer <patrick@gentoo.org> use.mask:
Mask ruby_targets_ruby18 so that it's properly gone
16 Mar 2014; Manuel Rüger <mrueg@gentoo.org> make.defaults:
Remove ruby18, add ruby20 to default RUBY_TARGETS
14 Mar 2014; Manuel Rüger <mrueg@gentoo.org> package.use.mask:
Update ruby1.8-only mask.
13 Mar 2014; Mike Gilbert <floppym@gentoo.org> package.use.force:
Force python_targets_pypy rather than pypy on python-exec.
12 Mar 2014; Michał Górny <mgorny@gentoo.org> package.use.force:
Force pypy on python-exec.
07 Mar 2014; Manuel Rüger <mrueg@gentoo.org> package.use.mask:
Mask ruby18-only compatible flags
27 Feb 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.use.mask:
Unmask aura for chromium-34 (build works now).
27 Feb 2014; Michał Górny <mgorny@gentoo.org> package.use.mask:
Mask experimental USE=kdbus on systemd.
26 Feb 2014; Mike Gilbert <floppym@gentoo.org> use.mask:
Mask avx2
18 Feb 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org> package.use.mask:
Mask aura for chromium-34 (build failures).
17 Feb 2014; Mike Gilbert <floppym@gentoo.org> package.use.force:
Force-enable python_targets_python3_4 for python-exec.
17 Feb 2014; Mike Gilbert <floppym@gentoo.org> use.mask:
Mask python_single_target_python3_4.
03 Feb 2014; Mike Frysinger <vapier@gentoo.org> package.use.mask:
Mask elfutils[threads] for now. #465754 by Toralf Förster.
02 Feb 2014; Sven Vermeulen <swift@gentoo.org> package.mask:
Remove selinux mask as it is fully managed and controlled through
USE=selinux, which is only available through profiles/features/selinux. See
also bug 499946
01 Feb 2014; Mike Gilbert <floppym@gentoo.org> package.use.mask:
Mask aura for chromium-33.
01 Feb 2014; Mike Frysinger <vapier@gentoo.org> package.mask:
Drop bogus uclibc mask.
22 Jan 2014; Gilles Dartiguelongue <eva@gentoo.org> package.use.mask:
Clean up outdated tracker/gnote use mask entries.
19 Jan 2014; Sven Vermeulen <swift@gentoo.org> package.mask:
Adding cachefilesd policy to the tree
18 Jan 2014; Mike Frysinger <vapier@gentoo.org> make.defaults:
Update PYTHON_TARGETS from 3.2 to 3.3 now that it is stable #474128.
16 Jan 2014; Ultrabug <ultrabug@gentoo.org> make.defaults:
add new USWGI_PLUGINS USE_EXPAND
14 Jan 2014; Ruud Koolen <redlizard@gentoo.org> use.mask:
Add prefix-guest use mask for new prefix profiles.
13 Jan 2014; Lars Wendler <polynomial-c@gentoo.org> package.use.mask:
Removed use.mask entry for seamonkey's crypt USE flag.
05 Jan 2014; Lars Wendler <polynomial-c@gentoo.org> package.use.mask:
Adjusted polarssl use.mask for media-sound/umurmur.
04 Jan 2014; Andreas K. Huettel <dilfridge@gentoo.org> package.use.mask:
Mask dev-vcs/git[mediawiki] until dependencies are keyworded
01 Jan 2014; Patrick Lauer <patrick@gentoo.org> use.mask:
Masking ruby_targets_ruby18 as there's now cascading breakage of deps and
deps-of-deps and it's going to be removed anyway
30 Dec 2013; Alexis Ballier <aballier@gentoo.org> package.use.mask:
unmask pulseaudio and openal on multilib ffmpeg
29 Dec 2013; Sven Vermeulen <swift@gentoo.org> package.mask:
Add mask for selinux-mandb
27 Dec 2013; Sergey Popov <pinkbyte@gentoo.org> package.use.mask:
Mask 'context' USE-flag for dev-libs/boost
26 Dec 2013; Gilles Dartiguelongue <eva@gentoo.org> package.use.mask:
Add missing version to libpeas python mask.
24 Dec 2013; Gilles Dartiguelongue <eva@gentoo.org> package.use.mask:
Add relevant USE mask for libpeas.
23 Dec 2013; Gilles Dartiguelongue <eva@gentoo.org> package.use.mask:
Add gstreamer use mask for new cogl release.
20 Dec 2013; Rick Farina <zerochaos@gentoo.org> package.use.mask:
Masking test and development for metasploit until gentoo has rake 10
18 Dec 2013; Johannes Huber <johu@gentoo.org> package.use.mask:
Mask >=kde-base/kopete-4.12.0[otr] because of package mask on
>=net-libs/libotr-0.4.0.
16 Dec 2013; Sven Vermeulen <swift@gentoo.org> package.mask:
Mask selinux-rngd (new SELinux policy package)
15 Dec 2013; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask:
Simplify wine ebuilds: apply winepulse patchset only when USE=pulseaudio (bug
#489004), and allow -9999 users to enable it if they really want.
13 Dec 2013; Lars Wendler <polynomial-c@gentoo.org> package.use.mask:
Mask crypt USE flag for >=seamonkey-2.23 until enigmail provides a build
system fix. package.use.mask
12 Dec 2013; Andreas K. Huettel <dilfridge@gentoo.org> package.use.mask:
LibreOffice kde support has been fixed, hooray
06 Dec 2013; Andreas K. Huettel <dilfridge@gentoo.org> package.use.mask:
Mask kde integration of libreoffice
23 Nov 2013; Mike Frysinger <vapier@gentoo.org> make.defaults:
Add ublox to GPSD_PROTOCOLS.
19 Nov 2013; Tim Harder <radhermit@gentoo.org> package.use.mask:
Mask racket USE flag for app-editors/(g)vim.
12 Nov 2013; Andrey Grozin <grozin@gentoo.org>
package.use.mask:
Mask USE=berkdb on sci-physics/reduze (needs masked db-6.0).
10 Nov 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
Drop mesa[llvm] mask which lives in individual arch profiles now.
10 Nov 2013; Michał Górny <mgorny@gentoo.org> package.use.mask:
Mask USE=sandbox on pypy wrt bug #429372.
30 Oct 2013; Michał Górny <mgorny@gentoo.org> package.use.force:
Copy the forced flags to dev-lang/python-exec (the new name).
27 Oct 2013; Julian Ospald <hasufell@gentoo.org> package.use.mask:
mask luajit useflag for games-action/minetest
25 Oct 2013; Davide Pesavento <pesa@gentoo.org> package.use.force:
Remove obsolete entry.
21 Oct 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
Mask mesa i965 driver for security bug #472280.
15 Sep 2013; Tom Wijsman <TomWij@gentoo.org> package.use.mask:
Masked JCE functionality of dev-java/diablo-jdk.
12 Sep 2013; Diego E. Pettenò <flameeyes@gentoo.org> package.use,
package.use.force:
Enable ruby20 by default, do not force it.
07 Sep 2013; Tom Wijsman <TomWij@gentoo.org> package.use.mask:
net-proxy/swiftiply: Dependency (www-servers/mongrel) currently only works
with Ruby 1.8; so, masking Ruby 1.9 USE flag until Ruby 1.9 support is added
to mongrel.
05 Sep 2013; Michał Górny <mgorny@gentoo.org> package.use.force, use.mask:
Python 2.5, 3.1, and PyPy 1.9 were removed from the tree.
01 Sep 2013; Jeff Horelick <jdhore@gentoo.org> package.use.mask:
mask sid for >=media-plugins/audacious-plugins-3.4
31 Aug 2013; Julian Ospald <hasufell@gentoo.org> package.use.mask:
mask custom-cflags for media-libs/libsdl2 since it's unsupported
27 Aug 2013; Ulrich Müller <ulm@gentoo.org> packages:
Temporarily add sys-apps/openrc to the system set, until bug 373219 is
resolved.
23 Aug 2013; Sven Vermeulen <swift@gentoo.org> package.mask:
Removed selinux-tvtime, see bug #479642 (tvtime package was removed earlier
on)
23 Aug 2013; Ole Markus With <olemarkus@gentoo.org> make.defaults:
Changing PHP_TARGETS to php5.5, as it has now been stabilised
23 Aug 2013; Andreas K. Huettel <dilfridge@gentoo.org> make.defaults:
Make emerge messages default to English as per Council decision
23 Aug 2013; Mike Gilbert <floppym@gentoo.org> package.use.mask:
Mask >=www-client/chromium-30[system-ffmpeg]
22 Aug 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
Mask openvg flag for recent gnash snapshots
22 Aug 2013; Michael Weber <xmw@gentoo.org> package.use.mask:
Expand mask to revisions.
22 Aug 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask, use.mask:
Drop global opencl masks.
21 Aug 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
Mask opencl flag for mesa-9.2.0_rc1
16 Aug 2013; Jeroen Roovers <jer@gentoo.org> package.use.mask:
Fix date.
13 Aug 2013; Tim Harder <radhermit@gentoo.org> package.use.mask:
Mask luajit USE flag for app-editors/(g)vim.
12 Aug 2013; Alexis Ballier <aballier@gentoo.org> package.use.mask:
unmask dirac for multilib ffmpeg
11 Aug 2013; Alexis Ballier <aballier@gentoo.org> package.use.mask:
Mask useflags having unsatisfiable deps for multilib ffmpeg 0.10
11 Aug 2013; Alexis Ballier <aballier@gentoo.org> package.use.mask:
unmask celt for masked ffmpeg releases
10 Aug 2013; Michał Górny <mgorny@gentoo.org> make.defaults:
Move COLLISION_IGNORE and UNINSTALL_IGNORE from make.globals.
07 Aug 2013; Michał Górny <mgorny@gentoo.org> use.mask:
Mask Python 2.5, 3.1 and PyPy 1.9. Bug #480070.
07 Aug 2013; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Mask USE="ios ipod" for media-sound/clementine wrt #471920
05 Aug 2013; Ulrich Müller <ulm@gentoo.org> use.mask:
Remove unused kdeprefix flag.
02 Aug 2013; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Remove now unnecessary USE="alsa" mask entry for removed media-tv/tvtime.
02 Aug 2013; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Move sys-fs/lvm2[clvm,cman] mask to ../eapi-5-files/package.use.stable.mask
31 Jul 2013; Alexis Ballier <aballier@gentoo.org> use.mask:
remove fdk useflag global mask that is useless these days
30 Jul 2013; Matt Turner <mattst88@gentoo.org> make.defaults:
Add ABI_MIPS to USE_EXPAND.
29 Jul 2013; Matt Turner <mattst88@gentoo.org> use.mask:
Mask MIPS multilib flags.
29 Jul 2013; Ole Markus With <olemarkus@gentoo.org> package.use.mask:
Removing kolab use flag mask since no PHP ebulids have this flag anymore
29 Jul 2013; Sergey Popov <pinkbyte@gentoo.org> make.defaults:
Drop MISDN_CARDS, wrt bug #471796
27 Jul 2013; William Hubbs <williamh@gentoo.org> packages:
Add virtual/service-manager for bug #409385
24 Jul 2013; Sven Vermeulen <swift@gentoo.org> package.mask:
Mask out selinux-sensord (new policy package)
21 Jul 2013; Andreas K. Huettel <dilfridge@gentoo.org> package.use.mask:
Mask phonon useflag of dev-qt/designer
19 Jul 2013; Mike Gilbert <floppym@gentoo.org> package.use.force:
Revert previous change; pypy-bin was committed prematurely.
19 Jul 2013; Ian Delaney <idella4@gentoo.org>
package.use.force:
Add flags for new pypy-bin
17 Jul 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
Update dev-libs/weston mask for new x11-libs/cairo revision.
16 Jul 2013; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask:
Remove obsolete introspection masks
13 Jul 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
Remove extra =
13 Jul 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
Mask gles2&rpi flag for dev-libs/weston.
10 Jul 2013; Jeroen Roovers <jer@gentoo.org> package.use.mask:
Remove USE=java mask for =net-dns/libidn-1.27 (bug #472604).
05 Jul 2013; Tomáš Chvátal <scarabeus@gentoo.org> make.defaults:
Bump PHP_TARGETS to php5-4, as it should be always latest stable.
03 Jul 2013; Alexis Ballier <aballier@gentoo.org> package.use.mask:
Mask libcxxrt[libunwind]
25 Jun 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
Update mesa-9.1[r600-llvm-compiler,video_cards_radeonsi] mask message.
25 Jun 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
Remove ptlib sdl mask as user-visible breakage is addressed now.
24 Jun 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
Mask libsdl flag for ptlib-2.12, bug #474362.
18 Jun 2013; Michael Weber <xmw@gentoo.org> package.use.mask:
Mask =www-client/netsurf-3.0 fbcon pdf-writer gstreamer
17 Jun 2013; Patrick Lauer <patrick@gentoo.org> package.use.mask:
Fix per-arch mask of phonon[zeitgeist] #460140
13 Jun 2013; Ulrich Müller <ulm@gentoo.org> package.use.mask, use.mask:
Remove mask for real USE flag because the flag is gone, bug 473206.
12 Jun 2013; Michael Palimaka <kensington@gentoo.org> package.use.mask:
Remove obsolete kde-base/kdelibs USE mask.
08 Jun 2013; Sergey Popov <pinkbyte@gentoo.org> package.use.mask:
Move mask for app-leechcraft/leechcraft-meta[unstable] from arch profiles
07 Jun 2013; Jeroen Roovers <jer@gentoo.org> package.use.mask:
Mask USE=java for +=net-dns/libidn-1.27 (bug #472604).
04 Jun 2013; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Punt inline commenting wrt #472292 since "man 5 portage" says it's illegal
by Andreas Wiese
02 Jun 2013; Robin H. Johnson <robbat2@gentoo.org> package.use.mask:
Block new PBXT usage per news item.
01 Jun 2013; Michael Palimaka <kensington@gentoo.org> use.mask:
Mask qt5 globally.
01 Jun 2013; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Temporarily mask USE="webkit2" for www-client/midori while waiting for
>=net-libs/webkit-gtk-2 unmasking from general package.mask.
30 May 2013; Michał Górny <mgorny@gentoo.org> make.defaults:
Drop stale ALSA_PCM_PLUGINS from USE_EXPAND. Bug #471792.
28 May 2013; Mike Gilbert <floppym@gentoo.org> make.defaults:
Sort USE_EXPAND.
24 May 2013; Patrick Lauer <patrick@gentoo.org> package.use.mask:
Remove bad xen/qemu mask
23 May 2013; Agostino Sarubbo <ago@gentoo.org> package.use.mask:
Temporart mask for >=xen-tools/xen-tools-4.2.1-r3[qemu] because of texinfo-5
21 May 2013; Patrick McLean <chutz@gentoo.org> use.mask:
Unmask python_targets_python3_3 and python_single_target_python3_3.
19 May 2013; Kacper Kowalik <xarthisius@gentoo.org> package.use.mask:
Mask app-doc/doxygen[sqlite]. Experimental feature, fails to build for me
10 May 2013; Johannes Huber <johu@gentoo.org> package.use.mask:
Move use mask on net-libs/libkolabxml[php], net-libs/libkolab[php] to stable
for easier testing bug #430858.
09 May 2013; Alexis Ballier <aballier@gentoo.org> package.use.mask:
mask lyx[subversion]
08 May 2013; Christian Faulhammer <fauli@gentoo.org> package.use.mask:
Mask USE=gtk3 for upcoming mail-client/claws-mail-3.9.1, does not build yet
04 May 2013; Michał Górny <mgorny@gentoo.org> package.use.mask:
Remove USE=systemd from package.use.mask since the flag is (un)masked
globally now.
04 May 2013; Michał Górny <mgorny@gentoo.org> use.mask:
Mask systemd flag globally, unmask on arches on which systemd is keyworded.
26 Apr 2013; Michael Weber <xmw@gentoo.org> package.use.mask:
expand use mask
19 Apr 2013; Samuli Suominen <ssuominen@gentoo.org> use.mask:
Mask USE="kmod" here and unmask it only for Linux in default/linux/
13 Apr 2013; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Remove redudant mask of now non-existing USE="extras" in sys-fs/udev.
09 Apr 2013; Rick Farina <zerochaos@gentoo.org> make.defaults:
Add expanded PYTHON_TARGETS to BOOTSTRAP_USE to prevent catalyst build failures.
These will need to be kept in sync to keep builds sane. Bug #465306 report by me,
verification by jmbsvicetto, all solutions by floppym
06 Apr 2013; Sven Vermeulen <swift@gentoo.org> package.mask:
Drop python-selinux from this mask (moved to global mask for removal)
04 Apr 2013; Bernard Cafarelli <voyageur@gentoo.org> package.use.mask:
Mask USE=flac for gnustep-apps/cynthiune
02 Apr 2013; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask:
Mask USE=udisks for <gvfs-1.14, thanks to Samuli Suominen (bug #463792).
28 Mar 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
Allow wayland with recent gtk+ as libxkbommon is now in tree.
28 Mar 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
Drop mesa[wayland] mask now that it is in use.stable.mask
24 Mar 2013; Richard Freeman <rich0@gentoo.org> package.use.mask:
Mask cuneiform use flag due to buffer overflow for now.
23 Mar 2013; Michael Weber <xmw@gentoo.org> package.use.mask:
mask =media-libs/oyranos-0.9.4 fltk for now
23 Mar 2013; Tomáš Chvátal <scarabeus@gentoo.org> make.defaults:
Enable libreoffice implementation by default for office extensions.
22 Mar 2013; Zac Medico <zmedico@gentoo.org> use.mask:
Mask python_targets_python3_4, since Python 3.4 pre-releases not available in
main tree yet.
19 Mar 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
Drop glamor mask, add mask for mesa r600-llvm-compiler and radeonsi driver.
16 Mar 2013; Sven Vermeulen <swift@gentoo.org> package.mask:
Add in selinux-abrt package
16 Mar 2013; Tom Wijsman <TomWij@gentoo.org> package.use.mask:
Unmasking system-ffmpeg on media-video/avidemux as it no longer has that.
16 Mar 2013; Tom Wijsman <TomWij@gentoo.org> package.use.mask:
Masking system-ffmpeg on media-libs/avidemux-core until it compiles & works.
10 Mar 2013; Sven Vermeulen <swift@gentoo.org> package.mask:
Adding mask for SELinux backup module
10 Mar 2013; Christoph Junghans <ottxor@gentoo.org> package.use.mask:
Mask media-sound/google-musicmanager log wrt #287697, Comment #12.
10 Mar 2013; Tom Wijsman <TomWij@gentoo.org> package.use.mask:
Masking system-ffmpeg on media-video/avidemux until it compiles and works.
08 Mar 2013; Davide Pesavento <pesa@gentoo.org> package.use.force:
Adjust entry for qt-creator.
07 Mar 2013; Tim Harder <radhermit@gentoo.org> package.use.force:
Add jython2_7 for PYTHON_TARGETS.
02 Mar 2013; Michał Górny <mgorny@gentoo.org> use.mask:
Use stable-masking only for systemd. Masking it for old profiles is too
troublesome (overrides arch-specific masks).
27 Feb 2013; Michał Górny <mgorny@gentoo.org> use.mask:
Mask x32 ABI in base profile. Unmasked in specific profile.
26 Feb 2013; Michał Górny <mgorny@gentoo.org> package.use.force:
Force "development" flag on emul-linux-x86-xlibs meta-package since it is no
longer effective.
24 Feb 2013; Michał Górny <mgorny@gentoo.org> use.mask:
Mask the systemd flag globally. Unmasked in 13.0 profiles.
21 Feb 2013; Justin Lecher <jlec@gentoo.org> package.use.mask:
cuda only works on x86 and amd64
21 Feb 2013; Agostino Sarubbo <ago@gentoo.org> package.use.mask:
Mask >=media-plugins/gst-plugins-meta-1.0[vpx] because requires new libvpx
and is not ready to go to stable
20 Feb 2013; Julian Ospald <hasufell@gentoo.org> package.use.mask:
mask system-wine useflag for net-misc/teamviewer
12 Feb 2013; Christoph Junghans <ottxor@gentoo.org> use.mask:
sse41 -> sse4_1 (bug #456886)
10 Feb 2013; Julian Ospald <hasufell@gentoo.org> package.use.mask:
mask broken system-qt useflag for googleearth
07 Feb 2013; Matt Turner <mattst88@gentoo.org> use.mask:
Drop sse5 USE flag.
06 Feb 2013; Matt Turner <mattst88@gentoo.org> use.mask:
use.mask mips-only loongson2f USE flag.
01 Feb 2013; Michał Górny <mgorny@gentoo.org> make.defaults, use.mask:
Introduce ABI_X86 USE_EXPAND and mask the flags by default.
29 Jan 2013; Michał Górny <mgorny@gentoo.org> package.use.force, use.mask:
Remove pypy1_8 flag mask, the flags were removed.
25 Jan 2013; Christoph Junghans <ottxor@gentoo.org> use.mask:
mask missing amd64/x86 instruction sets
22 Jan 2013; Sergey Popov <pinkbyte@gentoo.org> package.use.mask:
Move mask media-gfx/opencolorio -> media-libs/opencolorio
20 Jan 2013; Michał Górny <mgorny@gentoo.org> use.mask:
Add a note that pypy flags are unmasked in the new profiles.
19 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Mask USE="systemd" for sys-fs/udisks because systemd is not stable yet.
18 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Unmask USE="cman clvm" for current ~arch sys-fs/lvm2 because new enough cman
is in Portage now.
15 Jan 2013; Alexis Ballier <aballier@gentoo.org> package.use.mask:
unmask libass[harfbuzz] now that it works, bug #452210 by Nikoli
13 Jan 2013; Alexis Ballier <aballier@gentoo.org> package.use.mask:
also mask dev-ml/eliom[ocamlduce], bug #446876 by Michael Palimaka
(kensington)
02 Jan 2013; Michał Górny <mgorny@gentoo.org> package.use.force:
Force pypy2.0 on python-exec.
02 Jan 2013; Mike Gilbert <floppym@gentoo.org> use.mask:
Mask pypy targets; should be unmasked for each arch.
30 Dec 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask:
Mask sys-kernel/dracut[dracut_modules_systemd]; unmasked in arches where
appropriate.
30 Dec 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask:
Mask sys-kernel/dracut[dracut_modules_biosdevname]; unmasked in arches where
appropriate.
30 Dec 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask:
Mask zeitgeist-datasources[chromium,tomboy]; unmasked in arches where
appropriate.
30 Dec 2012; Sven Vermeulen <swift@gentoo.org> package.mask:
Adding entry for selinux-googletalk
30 Dec 2012; Sven Vermeulen <swift@gentoo.org> package.mask:
Adding mask for selinux-openrc
29 Dec 2012; Davide Pesavento <pesa@gentoo.org> package.use.mask:
Remove obsolete x11-libs/qt-* use.mask entries.
27 Dec 2012; Sergey Popov <pinkbyte@gentoo.org> package.use.mask:
Remove obsolete masks, wrt bug #444181
27 Dec 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask:
Add epiphany[jit] to webkit-gtk[jit] mask.
27 Dec 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask:
Mask tracker[eds] since gnome-3.6 has been unmasked (bug #436460).
26 Dec 2012; Christoph Junghans <ottxor@gentoo.org> package.use.mask:
masked mkl for sci-chemistry/gromacs
25 Dec 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
Update mesa wayland mask for new stabilization target.
25 Dec 2012; Julian Ospald <hasufell@gentoo.org> package.use.mask:
mask systemd useflag for =sys-apps/udevl-0.3.6 to allow stabilization wrt
#448034
22 Dec 2012; Zac Medico <zmedico@gentoo.org> package.use.mask:
Mask USE=pypy2_0 for sys-apps/portage, since pypy has limited KEYWORDS.
20 Dec 2012; Mike Gilbert <floppym@gentoo.org> use.mask:
Mask python_targets_pypy2_0.
19 Dec 2012; Sergey Popov <pinkbyte@gentoo.org> package.use.mask:
Clean up from obsolete package atoms, wrt bug #444181
25 Dec 2012; <anarchy@gentoo.org> package.use.mask
Mask PGO useflag on firefox until major work can be done to properly
support.
13 Dec 2012; <swift@gentoo.org> package.mask:
Adding mask for SELinux at policy
09 Dec 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask,
use.mask:
dev-lang/orc is used in many packages, so move orc from package.use.mask to
use.mask
04 Dec 2012; <swift@gentoo.org> package.mask:
Prepare for selinux-dirsrv package
04 Dec 2012; Zac Medico <zmedico@gentoo.org> package.use.force:
Force app-shells/bash[readline] in stage1 builds, so that compgen is
available for sys-apps/portage (see bug #445576).
30 Nov 2012; Christoph Junghans <ottxor@gentoo.org> package.use.mask:
masked cuda and openmm for sci-chemistry/gromacs
29 Nov 2012; Mike Gilbert <floppym@gentoo.org> package.use.mask:
Remove mask on test use flag for freerdp.
26 Nov 2012; Anthony G. Basile <blueness@gentoo.org> package.use.mask:
Remove maskings on net-misc/tor[nat-pmp,upnp]
24 Nov 2012; Mike Gilbert <floppym@gentoo.org> use.mask:
Add masks for python_single_target values.
24 Nov 2012; Michał Górny <mgorny@gentoo.org> make.defaults:
Introduce PYTHON_SINGLE_TARGET for Python packages not supporting multiple
Python implementations.
24 Nov 2012; <creffett@gentoo.org> package.use.mask:
Mask php USE flag for libkolab and libkolabxml
18 Nov 2012; <swift@gentoo.org> package.mask:
Preparing for selinux-makewhatis package
18 Nov 2012; <swift@gentoo.org> package.mask:
Preparation for new selinux-logsentry package
16 Nov 2012; Thomas Sachau (Tommy[D]) <tommy@gentoo.org> make.defaults:
Add ENLIGHTENMENT_MODULES to USE_EXPAND as discussed on gentoo-dev ML
12 Nov 2012; Mike Gilbert <floppym@gentoo.org> make.defaults:
Move PYTHON_TARGETS=python3_2 from arch profiles to base.
11 Nov 2012; Mike Gilbert <floppym@gentoo.org> package.use.mask:
Mask test use flag for net-misc/freerdp.
06 Nov 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
Mask glamor for xf86-video-ati too.
04 Nov 2012; Diego E. Pettenò <flameeyes@gentoo.org> package.use.mask:
Mask dane USE flag for net-libs/gnutls.
01 Nov 2012; Alexis Ballier <aballier@gentoo.org> package.use.mask:
mask useflags requiring dev-ml/ocamlduce so that we can mask it and unmask
ocaml-4
01 Nov 2012; <swift@gentoo.org> package.mask:
Adding mask for selinux-dbadmin package
30 Oct 2012; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Mask USE="systemd" for sys-power/upower because of stabilization.
29 Oct 2012; Michał Górny <mgorny@gentoo.org> package.use.force:
Remove traces of pypy1.7, no longer in the tree and not supported by the
eclasses.
29 Oct 2012; Michał Górny <mgorny@gentoo.org> package.use.force:
Enable python3.3 for python-exec.
22 Oct 2012; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Punt obsolete imagemagick mask.
22 Oct 2012; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Mask legacy USE flag "extras" for >=sys-fs/udev-171.
14 Oct 2012; Sergey Popov <pinkbyte@gentoo.org> package.use.mask:
Unmask ipv6 USE-flag on dev-libs/libdnet - all rdeps was built successfully
on it
12 Oct 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask:
Temporarily add a masked osmesa-multilib USE flag for wine to allow overlay
users to enable osmesa support for win32 on amd64 until bug #430268 is
resolved.
11 Oct 2012; Sergey Popov <pinkbyte@gentoo.org> package.use.mask:
Mask ipv6 USE-flag on dev-libs/libdnet
09 Oct 2012; Justin Lecher <jlec@gentoo.org> package.use.mask:
Use mask dev-lang/idb[eclipse] because all versions of dev-util/eclipse-sdk
are masked
08 Oct 2012; Johannes Huber <johu@gentoo.org> package.use.mask:
Remove mask on net-libs/telepathy-qt[farstream] as required dep is stable
now.
08 Oct 2012; Mike Gilbert <floppym@gentoo.org> use.mask:
Mask python_targets_python3_3.
02 Oct 2012; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Mask <gnome-base/gvfs-1.12.3-r1[udisks] for stabilization bug #427544,
Comment #27
29 Sep 2012; <swift@gentoo.org> package.mask:
Add mask for selinux-rtorrent, new policy ebuild
27 Sep 2012; Ian Stakenvicius <axs@gentoo.org> make.defaults:
Added prefix flag to IUSE_IMPLICIT for EAPI=5 ebuild testing
25 Sep 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask:
Mask gtk+[egl] since it's only useful with wayland.
19 Sep 2012; Matt Turner <mattst88@gentoo.org> package.use.force:
Add media-libs/glu -multilib to package.use.force
19 Sep 2012; Matt Turner <mattst88@gentoo.org> package.use.mask:
Add media-libs/glu multilib to package.use.mask.
14 Sep 2012; Johannes Huber <johu@gentoo.org> package.use.mask:
Masked media-libs/phonon[zeitgeist] for stabilization as the use flag pulls a
dep tree of hell.
13 Sep 2012; Zac Medico <zmedico@gentoo.org> make.defaults:
Add IUSE injection variables to PROFILE_ONLY_VARIABLES.
13 Sep 2012; Zac Medico <zmedico@gentoo.org> make.defaults:
Populate variables for "Profile IUSE injection" (applies only to ebuilds
which use EAPI 5 or later). These are just minimal settings for ARCH, ELIBC,
KERNEL, and USERLAND flags which everyone can probably agree on.
12 Sep 2012; Davide Pesavento <pesa@gentoo.org> package.use.force:
Force usage of bundled botan in >=qt-creator-2.6
10 Sep 2012; Johannes Huber <johu@gentoo.org> package.use.mask:
Restore mask net-libs/telepathy-qt[farstream] otherwise repoman will scream.
09 Sep 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask:
GNOME 3.4 is unmasked
02 Sep 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
Mask wayland for one more version of mesa so it can go stable, bug #432400.
31 Aug 2012; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Mask USE="cdr" of app-pda/gtkpod for #433535
22 Aug 2012; <swift@gentoo.org> package.mask:
Adding mask for SELinux vdagent policy
22 Aug 2012; <swift@gentoo.org> package.mask:
Adding mask for SELinux device kit policy package
31 Jul 2012; Ralph Sennhauser <sera@gentoo.org> use.mask:
Mask python_targets_jython*, unmask where it's available.
28 Jul 2012; <swift@gentoo.org> package.mask:
Adding mask for SELinux flash policy
27 Jul 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use:
Add xorg to default flags for x11-base/xorg-server, sort newest first.
26 Jul 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
Mask osmesa flag for mesa-8.1_rc1_pre20120724
26 Jul 2012; Johannes Huber <johu@gentoo.org> package.use.mask:
Mask experimental udisks2 support for kde-base/kdelibs, bug #424157.
22 Jul 2012; <swift@gentoo.org> package.mask:
Adding mask for SELinux chromium policy module
21 Jul 2012; <swift@gentoo.org> package.mask:
Adding mask for new nslcd selinux policy package
20 Jul 2012; Ole Markus With <olemarkus@gentoo.org> package.use.mask:
PHP Kolab patch broken with newer versions of c-client
18 Jul 2012; Michael Weber <xmw@gentoo.org> package.use.mask:
www-client/netsurf: webp got functional
18 Jul 2012; Ralph Sennhauser <sera@gentoo.org> package.use.mask:
use mask eclipse for dev lang/icc as it requires masked eclipse-sdk
18 Jul 2012; Michael Weber <xmw@gentoo.org> package.use.mask:
www-client/netsurf: mask problematic use flags for now
16 Jul 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
Update glamor mask to only apply to stable xf86-video-intel.
12 Jul 2012; <swift@gentoo.org> package.mask:
Adding selinux-phpfpm to the general selinux mask (upcoming new policy build)
04 Jul 2012; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Remove obsolete entries to net-libs/xulrunner and www-client/icecat wrt
#424617
29 Jun 2012; Mike Gilbert <floppym@gentoo.org> package.use.mask:
Mask libzfs flag for grub due to sys-fs/zfs keywords.
22 Jun 2012; Tony Vroon <chainsaw@gentoo.org> make.defaults:
Add VOICEMAIL_STORAGE to USE_EXPAND for net-misc/asterisk; approved by Ian
"axs" Stakenvicius on gentoo-dev.
19 Jun 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
mask wayland flag for stable mesa, #419473
18 Jun 2012; <swift@gentoo.org> package.mask:
Removing obsoleted packages, see #415729
18 Jun 2012; Ultrabug <ultrabug@gentoo.org> package.use.mask:
Drop gevent USE mask for www-servers/uwsgi wrt gevent-1.0_beta2 being
unmasked
17 Jun 2012; Davide Pesavento <pesa@gentoo.org> package.use.mask:
Restrict c++0x and qpa USE mask to Qt < 4.8.3 only.
14 Jun 2012; Davide Pesavento <pesa@gentoo.org> package.use.mask:
Consolidate USE=jit masking/unmasking for qt-script and qt-webkit.
13 Jun 2012; Zac Medico <zmedico@gentoo.org> package.use.mask:
Mask USE=pypy1_9 for sys-apps/portage, since pypy has limited KEYWORDS.
02 Jun 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.use.mask:
Postgres support in calligra needs libpqxx-3* which is not in the tree
anymore
02 Jun 2012; Michael Weber <xmw@gentoo.org> package.use.mask:
dev-db/firebird client: Not fit for production (bug 404403, comment #5)
25 May 2012; Andreas K. Huettel <dilfridge@gentoo.org> package.use.mask:
Mask ipp useflag on opencv, because icc cannot be installed (no distfile)
25 May 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask:
Remove webkit-gtk's USE mask, the flags are now masked in specific arches.
24 May 2012; Arun Raghavan <ford_prefect@gentoo.org> package.use.mask:
Consolidate media-sound/pulseaudio entries.
24 May 2012; Arun Raghavan <ford_prefect@gentoo.org> package.use.mask:
For PulseAudio, mask xen USE flag by default, unmask on x86/amd64 where it is
supported.
21 May 2012; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Remove USE="test" mask for app-text/asciidoc because media-sound/lilypond is
stable again wrt #415627
21 May 2012; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Remove mask for USE="nsplugin" in media-video/vlc because it was removed in
favour of media-plugins/npapi-vlc.
20 May 2012; Maciej Mrozowski <reavertm@gentoo.org> package.use.mask:
Remove USE mask on kdevelop-php doc
18 May 2012; Mike Frysinger <vapier@gentoo.org> packages:
Force recent patch version so devs do not need to worry about inconsistent
treatment of DOS line endings and differences in behavior with patch-2.5.
15 May 2012; Mike Gilbert <floppym@gentoo.org> make.defaults:
Set default value for PYTHON_TARGETS, bug 415575.
14 May 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask:
Start gnome-3.4 package.use.mask
10 May 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask:
Mask =app-misc/gnote-0.8.2[applet] to allow stabilization (bug #414983).
07 May 2012; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Mask deprecated xulrunner support for =media-video/vlc-1.1* wrt #407567
02 May 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
Mask qt4 flag for <cairo-1.12
01 May 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
Mask xf86-video-intel glamor flag.
19 Apr 2012; Davide Pesavento <pesa@gentoo.org> package.use.mask:
Mask c++0x and qpa USE flags for the new qt-bearer ebuild too.
19 Apr 2012; Johannes Huber <johu@gentoo.org> package.use.mask:
Mask net-libs/telepathy-qt[farstream] as required dep is masked.
19 Apr 2012; Johannes Huber <johu@gentoo.org> package.use.mask:
Remove obsolete use mask for net-libs/telepathy-qt[glib], required version in
tree.
13 Apr 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask:
Mask webkit-gtk[geoloc] in base and unmask on arches where app-misc/geoclue
and app-accessibility/at-spi2-core are available.
13 Apr 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask:
Consolidate USE=systemd mask, and add gnome-system-monitor.
12 Apr 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask:
Temporarily mask gobject-introspection[doctool] for mako keywording to avoid
touching hppa profile, bug #411761.
12 Apr 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask:
Mask gtkmm[wayland] since it needs gtk+[wayland].
11 Apr 2012; Sebastian Pipping <sping@gentoo.org> package.use.mask:
Mask >=media-libs/babl-0.1.8[introspection] and >=media-libs/gegl-0.2[introspection]
11 Apr 2012; Michał Górny <mgorny@gentoo.org> package.use.mask:
Mask USE=jit on libzpaq for non-x86/amd64.
08 Apr 2012; Alexis Ballier <aballier@gentoo.org> package.use.mask:
mask x264-encoder[ffmpegsource] on all versions but latest one
05 Apr 2012; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Unmask USE="q64" for media-gfx/imagemagick >= 6.7.6.4 wrt #401327
31 Mar 2012; Davide Pesavento <pesa@gentoo.org> package.use.mask:
Update mask of c++0x and qpa USE flags to include Qt 4.8.1.
29 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> use.mask:
Mask video_cards_omap as it is not useful on most arches.
28 Mar 2012; Arun Raghavan <ford_prefect@gentoo.org> package.use.mask:
webrtc-audio-processing is only supported on x86/amd64. Possibly arm can be
added.
27 Mar 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask:
Mask USE=systemd for gnome-extra/gnome-screensaver, it requires a systemd
version which is keyworded only on two arches.
27 Mar 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask:
Mask x11-libs/gtk+[wayland], requires libxkbcommon from x11 overlay.
26 Mar 2012; <swift@gentoo.org> package.mask:
Masking out new selinux-sssd package for non-SELinux systems
25 Mar 2012; Krzysztof Pawlik <nelchael@gentoo.org> make.defaults:
Add PYTHON_TARGETS to USE_EXPAND.
25 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
Fix cairo mask.
24 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
Allow USE="openvg" for latest cairo release.
23 Mar 2012; Johannes Huber <johu@gentoo.org> package.use.mask:
Mask broken upnp use flag in kde-base/kdelibs for upcoming stabilization.
22 Mar 2012; Tim Harder <radhermit@gentoo.org> package.use.mask:
Mask USE="skype" for bitlbee since skype has no stable versions.
20 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Mask USE="acl" for sys-auth/consolekit here and unmask it in
default/linux/package.use.mask.
18 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> use.mask,
package.use.mask:
Remove entries related to media-sound/esound which got removed from tree.
12 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> use.mask:
Mask USE="packagekit" because it's not ready.
12 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Mask USE="test" for app-text/asciidoc because media-sound/lilypond is masked
in ../package.mask for removal.
03 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Remove USE="libffi" mask for sys-devel/gcc because the flag is gone wrt
#354903
28 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> use.mask:
Mask USE="vidix" as x86 only.
26 Feb 2012; Mike Doty <kingtaco@gentoo.org> packages:
adding sys-apps/less temporarly to resolve bug 398295.
26 Feb 2012; <swift@gentoo.org> package.mask:
Mask out new selinux policy packages
25 Feb 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
Mask directfb for gnash.
24 Feb 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
Unmask lirc on most recent gnash
18 Feb 2012; Zac Medico <zmedico@gentoo.org> package.use.mask:
Mask USE=pypy1_8 for sys-apps/portage, since pypy has limited KEYWORDS.
11 Feb 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask:
Mask USE=systemd for gnome-extra/gnome-screensaver, it requires a systemd
version which is masked and keyworded only for 2 arches.
10 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Mask USE="q64" for media-gfx/imagemagick wrt #401327 and #402999
08 Feb 2012; Bernard Cafarelli <voyageur@gentoo.org> package.use.mask:
Global mask for gnustep-base/gnustep-make[libobjc2] with new version
05 Feb 2012; Christoph Junghans <ottxor@gentoo.org> package.use.mask:
mips flags exist also in fftw-3.2
04 Feb 2012; Christoph Junghans <ottxor@gentoo.org> package.use.mask:
Masked sci-libs/fftw mips only flags
03 Feb 2012; William Hubbs <williamh@gentoo.org> packages:
replace sys-apps/module-init-tools with virtual/modutils for bug #401899.
31 Jan 2012; Johannes Huber <johu@gentoo.org> package.use.mask:
Remove use mask on phonon-xine. Backend is removed from tree.
29 Jan 2012; Alex Alexander <wired@gentoo.org> package.use.mask:
masked experimental qt useflags qpa and c++0x
25 Jan 2012; Johannes Huber <johu@gentoo.org> package.use.mask:
Mask glib use flag for >=net-libs/telepathy-qt-0.9, required version of
net-libs/telepathy-glib is not in tree yet.
23 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Unmask USE="test" for x11-libs/libnotify because GTK+ 3.0 has been stabilized
since.
23 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> package.use.force:
Force USE="symlink" enabled for x11-libs/libnotify while waiting for
supporting eselect module wrt #379941
20 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Unmask USE="jack" for media-plugins/audacious-plugins wrt #389439 by Bob
Johnson
14 Jan 2012; Sven Vermeulen <swift@gentoo.org> package.mask:
Mask SELinux policy packages that are soon to be added
10 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Mask USE="e2fsprogs" for app-arch/libarchive as Linux -only feature wrt
#354923
09 Jan 2012; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask:
Mask USE="jit" for webkit-gtk in base profile; it is unmasked in individual
profiles which support it (bug #396313).
08 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Unmask USE="pronounce" for stardict 3.0.3 and above wrt #246174
07 Jan 2012; Mike Frysinger <vapier@gentoo.org> packages:
Require baselayout-2 now so packages don't have to #396731.
05 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Mask USE="systemd" for sys-auth/polkit for keywording and testing.
31 Dec 2011; Alexis Ballier <aballier@gentoo.org> package.use.mask:
remove usemask for vlc useflag thats now gone
06 Dec 2011; Mike Frysinger <vapier@gentoo.org> package.use.mask:
Mask gcc[libssp] as no one should generally be using it.
06 Dec 2011; Mike Frysinger <vapier@gentoo.org> packages:
Drop zlib dep from system since pkgs pull it in as needed.
06 Dec 2011; Mike Frysinger <vapier@gentoo.org> packages:
Drop ncurses dep from system since pkgs pull it in as needed.
06 Dec 2011; Alexis Ballier <aballier@gentoo.org> package.use.mask:
usemask vlc media-library useflag: does not build
06 Dec 2011; Alexis Ballier <aballier@gentoo.org> package.use.mask:
mask vlc macosx-qtkit useflag too
06 Dec 2011; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Mask USE="pic" in media-video/transcode here and unmask only for x86 arch.
06 Dec 2011; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Mask USE="nuv" for media-video/transcode and explicitely unmask it for x86
arch only.
02 Dec 2011; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Remove now unnecessary entry for media-video/tovid.
01 Dec 2011; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask:
Drop obsolete introspection mask entries, requested by darkside.
30 Nov 2011; Davide Pesavento <pesa@gentoo.org> package.use.mask:
Mask USE="jit" for x11-libs/qt-webkit.
29 Nov 2011; Mike Frysinger <vapier@gentoo.org> packages:
Drop sys-libs/readline from system; USE=readline controls when it is needed.
25 Nov 2011; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask:
GNOME 3.2 is unmasked!
25 Nov 2011; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Mask USE="suid" for www-client/links everywhere except x86.
24 Nov 2011; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask:
Unmask libpeas[seed] and gnome-games[seed] since seed-3.2.0 works well
enough.
14 Nov 2011; Mike Frysinger <vapier@gentoo.org> packages:
Move sys-apps/net-tools to Linux profiles.
12 Nov 2011; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Mask USE="wxwidgets" for media-video/tovid wrt #330683
09 Nov 2011; Kacper Kowalik <xarthisius@gentoo.org> package.use.mask:
dev-lang/path64[debugger]: pathdb works only as a SIGSEGV generator, mask
until upstream fixes it, bug #385683
31 Oct 2011; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask:
mx-1.0 is in portage, evolution[clutter] can be enabled. However, it
shouldn't be dropped on gnome2 stable users without some testing.
27 Oct 2011; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask:
Mask USE=applet for gtk3-based gnote, it pulls in masked gnome-panel-3.
22 Oct 2011; Markos Chandras <hwoarang@gentoo.org> package.use.mask:
Remove xen mask for app-emulation/libvirt
22 Oct 2011; Matt Turner <mattst88@gentoo.org> use.mask:
use.mask arm's iwmmxt flag.
21 Oct 2011; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask:
Undo poorly thought out masking of USE="colord packagekit" on gtk+; need to
get it keyworded properly (bug #387959)
21 Oct 2011; Hans de Graaff <graaff@gentoo.org> use.mask:
Mask Rubinius by default like other ruby targets.
19 Oct 2011; Alexandre Rostovtsev <tetromino@gentoo.org> package.use.mask:
Mask USE="colord" and "packagekit" for x11-libs/gtk+.
16 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Mask USE="bluray" for gnome-base/gvfs.
13 Oct 2011; Alex Legler <a3li@gentoo.org> package.use.mask:
Mask alsa USE flag for upcoming tvtime packages
03 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> use.mask:
Update mask message for USE=dxr3"
01 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Mask USE="nautilus" for gnome-disk-utility >= 3 pending on nautilus >= 3
unmasking.
27 Sep 2011; Nirbheek Chauhan <nirbheek@gentoo.org> package.use.mask:
Mask dev-libs/glib[systemtap] and unmask for amd64/x86, bug 384647
18 Sep 2011; Samuli Suominen <ssuominen@gentoo.org> use.mask:
Remove obsolete USE="hal" mask.
06 Sep 2011; Markos Chandras <hwoarang@gentoo.org> package.use.mask:
Unmask spice useflag for qemu-kvm since spice is now stable
23 Aug 2011; Nirbheek Chauhan <nirbheek@gentoo.org> package.use.mask:
Don't unmask introspection on stable babl
22 Aug 2011; Andreas K. Huettel <dilfridge@gentoo.org> make.defaults:
The component active belongs to Calligra Mobile, which we dont support here
21 Aug 2011; Kacper Kowalik <xarthisius@gentoo.org> package.use.mask:
Remove obsolete/invalid masks
19 Aug 2011; Andreas K. Huettel <dilfridge@gentoo.org> make.defaults:
Update list of calligra features
19 Aug 2011; Markos Chandras <hwoarang@gentoo.org> package.use.mask:
Masking xen useflag in libvirt per bug #379815
19 Aug 2011; Markos Chandras <hwoarang@gentoo.org> package.use.mask:
Mask spice for app-emulation/qemu-kvm as well
19 Aug 2011; Markos Chandras <hwoarang@gentoo.org> package.use.mask:
Masking rbd for app-emulation/qemu-kvm per bug #364889
19 Aug 2011; Nirbheek Chauhan <nirbheek@gentoo.org> package.use.mask:
Mask USE=introspection on glib because it's mostly useless for now, and
causes an extra gobject-introspection dep on systems
16 Aug 2011; Nirbheek Chauhan <nirbheek@gentoo.org> package.use.mask:
Use-mask seed, broken package
16 Aug 2011; Nirbheek Chauhan <nirbheek@gentoo.org> package.use.mask:
Add libgdata to the introspection mask, pointed out by Mr_Bones_
16 Aug 2011; Nirbheek Chauhan <nirbheek@gentoo.org> package.use.mask,
use.mask:
Convert the introspection mask from a whitelist to a blacklist.
USE=introspection is now unmasked in general, and masked only on old stable
ebuilds.
14 Aug 2011; Nirbheek Chauhan <nirbheek@gentoo.org> package.use.mask:
Unmask USE=introspection on gupnp-related packages and gstreamer
22 Jul 2011; Anthony G. Basile <blueness@gentoo.org> package.use.mask:
Mask USE="nat-pmp" and "upnp" here and unmask it in amd64 and x86 profiles.
11 Jul 2011; Samuli Suominen <ssuominen@gentoo.org> use.mask:
Mask USE="opencl" here and unmask it in amd64 and x86 profile.
11 Jul 2011; Robin H. Johnson <robbat2@gentoo.org> package.use.mask:
Mask parse-clocks for ntp due to pps-tools.
03 Jul 2011; Alexey Shvetsov <alexxy@gentoo.org> package.use.mask:
Mask maui use flag for torque
01 Jul 2011; Alexey Shvetsov <alexxy@gentoo.org> use.mask:
use mask infiniband in base profile
30 Jun 2011; Alexey Shvetsov <alexxy@gentoo.org> package.use.mask:
Use mask infiniband for stable corosync and glusterfs
30 Jun 2011; Alexey Shvetsov <alexxy@gentoo.org> make.defaults,
package.use.mask:
Also unmask infiniband use flag
30 Jun 2011; Alexey Shvetsov <alexxy@gentoo.org> make.defaults:
Add OPENIB_DRIVERS to USE_EXPAND
19 Jun 2011; Nirbheek Chauhan <nirbheek@gentoo.org> package.use.mask:
Remove glade use-mask, it's been added to the tree
15 Jun 2011; Nirbheek Chauhan <nirbheek@gentoo.org> package.use.mask:
Edit vte glade mask to only affect slot 2.90 (slightly broken, but this will
go away soon)
12 Jun 2011; Brian Harring <ferringb@gentoo.org> profile.bashrc:
Remove /etc/portage/env hack- it belongs in the PM, and has been in
portage since 04/10, and alt PMs have their own ways of doing the
same.
11 Jun 2011; Nirbheek Chauhan <nirbheek@gentoo.org> package.use.mask:
Unmask USE=introspection for webkit-gtk
07 Jun 2011; Bernard Cafarelli <voyageur@gentoo.org> package.use.mask:
Mask libobjc2 flag for gnustep-base/gnustep-make
02 Jun 2011; Nirbheek Chauhan <nirbheek@gentoo.org> package.use.mask:
Unmask USE=introspection on media-libs/libchamplain
28 May 2011; Mike Frysinger <vapier@gentoo.org> packages:
Force newer shadow versions in the whole tree #367633.
15 May 2011; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Drop unmask of USE="hal" for kde-base/solid because KDE 4.6 is now stable and
has udev support.
09 May 2011; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask, use.mask:
Unmask video_cards_nouveau, bug #364027.
02 May 2011; Nirbheek Chauhan <nirbheek@gentoo.org> package.use.mask:
Add telepathy-glib to the introspection list, remove libwnck from glade
list
01 May 2011; Nirbheek Chauhan <nirbheek@gentoo.org> package.use.mask:
Add libwnck to the glade/introspection lists
30 Apr 2011; Ulrich Mueller <ulm@gentoo.org> -virtuals:
Remove old-style virtual/linux-sources, bug 118442.
30 Apr 2011; Nirbheek Chauhan <nirbheek@gentoo.org> package.use.mask:
Unmask introspection on vte, gtk+-2.24, and mask glade on vte
30 Apr 2011; Nirbheek Chauhan <nirbheek@gentoo.org> package.use.mask:
Mask USE=glade on gtksourceview:3.0
29 Apr 2011; Nirbheek Chauhan <nirbheek@gentoo.org> package.use.mask:
Unmask introspection for libsoup-2.34, libsoup-gnome-2.34
28 Apr 2011; Alexis Ballier <aballier@gentoo.org> package.use.mask:
mask celt useflag for non live ffmpeg ebuilds as libcelt is masked
24 Apr 2011; Ulrich Mueller <ulm@gentoo.org> packages, virtuals:
Remove old-style virtual/modutils, bug 358891.
24 Apr 2011; Nirbheek Chauhan <nirbheek@gentoo.org> package.use.mask:
Unmask USE=introspection for gtk+:3 deps as well (oops)
24 Apr 2011; Nirbheek Chauhan <nirbheek@gentoo.org> package.use.mask:
Unmask USE=introspection for gtk+:3
24 Apr 2011; Nirbheek Chauhan <nirbheek@gentoo.org> package.use.mask:
Unmask USE=introspection on a few packages. This list will grow till the
use.mask can be removed completely.
20 Apr 2011; Ulrich Mueller <ulm@gentoo.org> virtuals:
Remove cron and libc old-style virtuals, bugs 360109 and 359001.
18 Apr 2011; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
Explicitly allow video_cards_nouveau for libdrm until bug #364027 is
fixed.
16 Apr 2011; Ulrich Mueller <ulm@gentoo.org> virtuals:
Remove old-style virtual/aspell-dict, bug 358821.
Remove old-style virtual/blackbox, bug 358825.
Remove old-style virtual/inetd, bug 358831.
Remove old-style virtual/ssh, bug 361121.
15 Apr 2011; Ulrich Mueller <ulm@gentoo.org> virtuals:
Remove dev-manager and dhcp old-style virtuals, bugs 361133 and 358827.
13 Apr 2011; Ulrich Mueller <ulm@gentoo.org> virtuals:
Remove old-style virtual/{man,skkserv,w3m}; bugs 358839, 358851, 358855.
12 Apr 2011; Mart Raudsepp <leio@gentoo.org> package.use.mask:
Mask orc USE flag on gst-plugins-bad (unmasked only on supported arches).
10 Apr 2011; Diego E. Pettenò <flameeyes@gentoo.org> package.use:
Don't let sudo ldap support enabled by default.
09 Apr 2011; Ulrich Mueller <ulm@gentoo.org> packages, virtuals:
Old-style virtual/portage is replaced by new-style virtual/package-manager,
bug 358847.
07 Apr 2011; Ulrich Mueller <ulm@gentoo.org> virtuals:
Remove old-style virtual/pam, bug 358903.
Remove old-style virtual/logger, bug 358881.
05 Apr 2011; Ulrich Mueller <ulm@gentoo.org> virtuals:
Remove old-style virtual/python, bug 358849.
Remove old-style virtual/utempter, bug 361117.
04 Apr 2011; Ulrich Mueller <ulm@gentoo.org> virtuals:
Remove old-style virtual/m3, bug 358837.
03 Apr 2011; Ulrich Mueller <ulm@gentoo.org> packages, virtuals:
Remove old-style virtual/gzip, bug 358829.
02 Apr 2011; Samuli Suominen <ssuominen@gentoo.org> virtuals:
Remove virtual/libpcap wrt #358835.
30 Mar 2011; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
use.mask:
Mask video_cards_qxl
30 Mar 2011; Alexis Ballier <aballier@gentoo.org> package.use.mask:
bda useflag on vlc is gone, no need to mask it
29 Mar 2011; Tomáš Chvátal <scarabeus@gentoo.org> package.use.mask:
Drop mesa gallium mask that is obsolete.
29 Mar 2011; Andrey Grozin <grozin@gentoo.org> package.use.mask:
mask USE=octave in sci-libs/mathgl
28 Mar 2011; Eray Aslan <eras@gentoo.org> virtuals:
remove old style virtual/mta - bug 360305
27 Mar 2011; Samuli Suominen <ssuominen@gentoo.org> package.use.mask,
use.mask:
Mask USE="hal" as deprecated and replaced by USE="udev".
22 Mar 2011; Ulrich Mueller <ulm@gentoo.org> virtuals:
Remove old-style virtual/jabber-server and virtual/tftp, bugs 358833 and
359125.
20 Mar 2011; Ultrabug <ultrabug@gentoo.org> package.use.mask, use.mask:
Mask clustering support until new sys-cluster/cman is pushed.
20 Mar 2011; Samuli Suominen <ssuominen@gentoo.org> make.defaults:
Remove XZ_OPT="--memory=max" for app-arch/xz-utils wrt #342961 by Ben Kohler.
20 Mar 2011; Eray Aslan <eras@gentoo.org> virtuals:
remove old style virtual/mailx
20 Mar 2011; Mart Raudsepp <leio@gentoo.org> package.use.mask:
Mask orc USE flag on gst-plugins-good (unmasked only on supported arches).
19 Mar 2011; Samuli Suominen <ssuominen@gentoo.org> virtuals:
Remove virtual/alsa.
19 Mar 2011; Samuli Suominen <ssuominen@gentoo.org> virtuals:
Move virtual/lpr to new-style virtual.
19 Mar 2011; Eray Aslan <eras@gentoo.org> virtuals:
remove old style virtual/imapd
18 Mar 2011; Ultrabug <ultrabug@gentoo.org> use.mask:
remove cman from use.mask with ack from flameeyes and robbat2
18 Mar 2011; Nirbheek Chauhan <nirbheek@gentoo.org> package.use.mask:
Remove obsolete introspection-related use-masks
16 Mar 2011; Andreas Proschofsky <suka@gentoo.org> virtuals:
Remove old-style virtual/ooo, bug 358895.
16 Mar 2011; Nirbheek Chauhan <nirbheek@gentoo.org> use.mask:
Remove gtk3 from use.mask, update introspection use.mask comment
16 Mar 2011; Eray Aslan <eras@gentoo.org> virtuals:
virtual/imap-c-client changed to new style - bug 358993
16 Mar 2011; Ulrich Mueller <ulm@gentoo.org> virtuals:
Remove old-style virtual/antivirus, bug 358817.
16 Mar 2011; Eray Aslan <eras@gentoo.org> virtuals:
remove old style virtual/mda
16 Mar 2011; Eray Aslan <eras@gentoo.org> ChangeLog:
remove double entry
15 Mar 2011; Ulrich Mueller <ulm@gentoo.org> virtuals:
Kill old-style virtual/quicktime, bug 358857.
14 Mar 2011; Ulrich Mueller <ulm@gentoo.org> virtuals:
Remove spurious old-style virtuals.
13 Mar 2011; Eray Aslan <eras@gentoo.org> virtuals:
Remove old style virtual/krb5.
04 Mar 2011; Alexis Ballier <aballier@gentoo.org> package.use.mask:
android useflag for vlc is gone
02 Mar 2011; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> packages:
Added xz-utils to the system set per discussion in the dev ml[1].
Portage snapshots are already being offered as lzma archives and releng might
start building stages as lzma archives too.
[1] -
http://archives.gentoo.org/gentoo-dev/msg_e6356a2c6c756d98fb6dd9b4666b367c.xm
l
24 Feb 2011; Alexis Ballier <aballier@gentoo.org> package.use.mask:
mask android useflag for vlc
22 Feb 2011; Sebastian Pipping <sping@gentoo.org> package.use.mask:
Mask use flag "test" on app-text/asciidoc
16 Feb 2011; Alexis Ballier <aballier@gentoo.org> package.use.mask:
mask neon useflag for vlc
16 Feb 2011; Alexis Ballier <aballier@gentoo.org> package.use.mask:
mask Mac OSX specific useflags for vlc
16 Feb 2011; Alexis Ballier <aballier@gentoo.org> package.use.mask:
mask remainings win32 specific useflags for vlc
16 Feb 2011; Alexis Ballier <aballier@gentoo.org> package.use.mask:
vlc[dxva2] is also win32 specific
16 Feb 2011; Alexis Ballier <aballier@gentoo.org> package.use.mask:
mask win32 useflags for vlc
16 Feb 2011; Alexis Ballier <aballier@gentoo.org> package.use.mask:
useflag pda for vlc has been dropped, remove unneeded mask entry
13 Feb 2011; Raúl Porcel <armin76@gentoo.org> package.use.mask:
P.use.mask media-video/mplayer bluray again until devs know how to use
repoman...
05 Feb 2011; Anthony G. Basile <blueness@gentoo.org> package.mask:
Masked new selinux policies.
05 Feb 2011; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Mask USE="test" for x11-libs/libnotify because of x11-libs/gtk+:3
requirement.
30 Jan 2011; Arun Raghavan <ford_prefect@gentoo.org> package.use.mask:
Mask orc USE flag on gst-plugins-ffmpeg (unmasked only on supported arches).
19 Jan 2011; Nirbheek Chauhan <nirbheek@gentoo.org> package.use.mask:
Restrict gnome-extra/gnome-games clutter use-flag masking to =2.3*
18 Jan 2011; Kacper Kowalik <xarthisius@gentoo.org> package.use.mask:
Unmask x11-base/xorg-server doc since #323647 is resolved
06 Jan 2011; Ulrich Mueller <ulm@gentoo.org> virtuals:
Remove stale virtual/j2ee, no ebuild provides it.
27 Dec 2010; Mart Raudsepp <leio@gentoo.org> package.use.mask:
Add gst-plugins-a52dec to the orc package.use.mask set
17 Dec 2010; Ulrich Mueller <ulm@gentoo.org> virtuals:
Remove old-style virtual/commonlisp.
08 Dec 2010; Raúl Porcel <armin76@gentoo.org> use.mask:
Use.mask omapfb
06 Dec 2010; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
Mask x11-base/xorg-server doc until #323647 is resolved
02 Dec 2010; Diego E. Pettenò <flameeyes@gentoo.org> package.use.mask:
Mask jack USE flag for audacious-plugins so that we can drop from stable the
broken bio2jack ebuilds.
28 Nov 2010; Robin H. Johnson <robbat2@gentoo.org> package.use.mask:
Bug #344885: Upstream has broken USE=debug for 5.1 series >=5.1.51
28 Nov 2010; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
Mask mesa's llvm flag, bug #320221
19 Nov 2010; Arun Raghavan <ford_prefect@gentoo.org> package.use.mask:
Mask orc for gst-plugins-base by default (to be unmasked on supported platforms)
18 Nov 2010; Pacho Ramos <pacho@gentoo.org> package.use.mask:
Mask clutter USE on evolution due bug #345937
18 Nov 2010; Justin Lecher <jlec@gentoo.org> package.use.mask:
Fix Version of cns which is masked
17 Nov 2010; Justin Lecher <jlec@gentoo.org> package.use.mask:
Mask USE=aria sci-chemistry/cns
Upstream didn't release patches for aria yet
10 Nov 2010; Dane Smith <c1pher@gentoo.org> package.use.mask:
Mask the valgrind use flag for net-libs/gnutls.
10 Nov 2010; Andrey Grozin <grozin@gentoo.org> package.use.mask:
Unmask qt4 USE flag for app-office/texmacs
07 Nov 2010; Tomáš Chvátal <scarabeus@gentoo.org> package.use.mask:
Mask openvg use on cairo
07 Nov 2010; Tomáš Chvátal <scarabeus@gentoo.org> package.use.mask:
Mask bluray useflag on mplayer snapshots
07 Nov 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
package.use.mask:
Unmask "declarative" USE flag for dev-python/PyQt4.
23 Oct 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
package.use.mask:
Mask "declarative" USE flag for dev-python/PyQt4.
20 Oct 2010; Zac Medico <zmedico@gentoo.org> package.use.force:
Force ipc USE flag for sys-apps/portage since it should remain enabled
unless it is found to be incompatible with a specific profile or
environment. When enabled, it fixes bug #278895, bug #315615, and makes
subshell die support more robust (so that repoman's ebuild.nesteddie check
is irrelevant).
28 Sep 2010; Andreas K. Huettel (dilfridge) <mail@akhuettel.de>
make.defaults:
Added COLLECTD_PLUGINS to USE_EXPAND, defined a default list of plugins
27 Sep 2010; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
Enable gallium for mesa-7.9_rc users
17 Sep 2010; Andrey Grozin <grozin@gentoo.org> package.use.mask:
Masking clozurecl USE flag for maxima (formerly it was openmcl)
15 Sep 2010; Patrick Lauer <patrick@gentoo.org> package.use.mask:
Masking bzip2 useflag for dovecot-1
01 Sep 2010; Alex Legler <a3li@gentoo.org> package.use.mask:
Mask the fastthreading USE flag of dev-lang/ruby-enterprise. That feature
is marked as experimental upstream.
23 Aug 2010; Magnus Granberg <zorry@gentoo.org> package.use.mask:
Undo the change for hardened #280413
23 Aug 2010; Magnus Granberg <zorry@gentoo.org> package.use.mask:
Moved hardened from default/linux/package.use.mask #280413
23 Aug 2010; Robert Piasek <dagger@gentoo.org> package.use.mask:
I've backported dhclient-3 patch to NM 0.8.1, so there is no more need
to mask that flag.
16 Aug 2010; Jeroen Roovers <jer@gentoo.org> virtuals:
Remove old style virtual/gsasl thanks to peper.
04 Aug 2010; Justin Lecher <jlec@gentoo.org> package.use.mask:
Use removed from package - sci-visualization/qtiplot xls
25 Jul 2010; Nirbheek Chauhan <nirbheek@gentoo.org> package.use.mask:
Fix atom for pkgmove from www-client/mozilla-firefox -> www-client/firefox
23 Jul 2010; Peter Volkov <pva@gentoo.org> package.use.mask:
Unmasked mod_srl USE flag for net-im/ejabberd: it workd now, thank NN
14 Jul 2010; Benedikt Böhm <hollow@gentoo.org> make.defaults:
fix #328215
13 Jul 2010; Markus Duft <mduft@gentoo.org> use.mask:
remove obsolete USE flag (interix prefix only)
07 Jul 2010; Andrey Grozin <grozin@gentoo.org> package.use.mask:
Masked qt4 USE for app-office/texmacs: does not work with the current qt
05 Jul 2010; Matti Bickel <mabi@gentoo.org> virtuals:
virtual/httpd-php is now a new style virtual
01 Jul 2010; Peter Volkov <pva@gentoo.org> package.use.mask:
Masked mod_srl USE for ejabberd until we test it better
30 Jun 2010; Justin Lecher <jlec@gentoo.org> ChangeLog:
Use-masked xls for sci-visualization/qtiplot-0.9.8, because
dev-libs/excelformat is not working
29 Jun 2010; Nirbheek Chauhan <nirbheek@gentoo.org> package.use.mask:
Mask clutter on gnome-extra/gnome-games till introspection is unmasked
26 Jun 2010; Kacper Kowalik <xarthisius@gentoo.org> package.use.mask:
Mask USE=infiniband for sys-cluster/corosync
26 Jun 2010; Nirbheek Chauhan <nirbheek@gentoo.org> package.use.mask:
Forgot to mask icecat too
26 Jun 2010; Nirbheek Chauhan <nirbheek@gentoo.org> package.use.mask:
Mask USE=ipc for firefox/xulrunner due to bug 325185
26 Jun 2010; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Masking USE firefox and xulrunner for =dev-java/swt-3.3*.
26 Jun 2010; Nirbheek Chauhan <nirbheek@gentoo.org> package.use.mask:
Mask clutter-gst introspection till gstreamer and gst-plugins-base get
introspection support
23 Jun 2010; Jonathan Callen <abcd@gentoo.org> use.mask:
Mask gtk3 USE flag
22 Jun 2010; Markos Chandras <hwoarang@gentoo.org> package.use.mask:
Drop qml use flag masking from qt-creator
13 Jun 2010; Dror Levin <spatz@gentoo.org> use.mask:
Remove vpx USE mask.
13 Jun 2010; Tomas Touceda <chiiph@gentoo.org> package.use.mask:
Mask svm flag for clisp because the module's broken.
12 Jun 2010; Dror Levin <spatz@gentoo.org> use.mask:
Use mask vpx until media-libs/libvpx is keyworded by arches.
06 Jun 2010; Maciej Mrozowski <reavertm@gentoo.org> package.use.mask:
Mask cups and google-gadgets USE flags also for KDE 4.4
05 Jun 2010; Mike Frysinger <vapier@gentoo.org> make.defaults:
Let XZ use all memory when unpacking to avoid failure with low-mem
#303975.
05 Jun 2010; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Unmask USE bluetooth for app-pda/pilot-link wrt #249889 by Jesse Adelman.
12 May 2010; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
unmask dev-libs/udis86 test after adding patch to make yasm optional
10 May 2010; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
package.use.mask dev-libs/udis86 test
03 May 2010; Alex Legler <a3li@gentoo.org> use.mask:
Readd ruby_targets_ree18 USE mask. Supported arches will be whitelisted
02 May 2010; Alex Legler <a3li@gentoo.org> use.mask:
Remove ruby_targets_ree18 mask
29 Apr 2010; Zac Medico <zmedico@gentoo.org> profile.bashrc:
Skip /etc/portage/env code if PM_EBUILD_HOOK_DIR is set since this means
that /etc/portage/env is supported by the package manager:
http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=ef202
4a33be93a256beef28c1423ba1fb706383d
29 Apr 2010; Peter Volkov <pva@gentoo.org> make.defaults:
Add XTABLES_ADDONS as discussed in -dev on 18.01.2010 (but dropped
_MODULES part to make it shorter).
13 Apr 2010; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
package.use.mask:
mask video_cards_nouveau
9 Apr 2010; Zac Medico <zmedico@gentoo.org> package.use.mask:
Mask python3 for stable portage until python-3.x is marked stable.
21 Mar 2010; Vlastimil Babka <caster@gentoo.org> package.use.mask:
Remove dev-java/gnu-classpath nsplugin use mask, as the flag was removed
physically.
07 Mar 2010; Samuli Suominen <ssuominen@gentoo.org> use.mask:
Mask x86_* flags sse3, sse4, sse4a, and sse5.
07 Mar 2010; Benedikt Böhm <hollow@gentoo.org> make.defaults:
add NGINX_MODULES_HTTP and NGINX_MODULES_MAIL to USE_EXPAND
20 Feb 2010; Samuli Suominen <ssuominen@gentoo.org> use.mask:
Mask sane_backends_qcam here for ioperm/portaccess and unmask only on
amd64/x86 for now.
19 Feb 2010; Diego E. Pettenò <flameeyes@gentoo.org> package.use.force:
Force jruby for duby as well.
16 Feb 2010; Diego E. Pettenò <flameeyes@gentoo.org> package.use.force:
Add bitescript to the list of forced packages.
14 Feb 2010; Samuli Suominen <ssuominen@gentoo.org> use.mask:
Mask SANE_BACKENDS="canon_pp hpsj5s mustek_pp" here because they are
amd64/x86 only.
28 Jan 2010; Diego E. Pettenò <flameeyes@gentoo.org> package.use.force:
Add jruby-debug-base to the list of forced gems.
24 Jan 2010; Zac Medico <zmedico@gentoo.org> package.use.mask:
Mask python3 for stable portage until python-3.x is marked stable.
20 Jan 2010; Markos Chandras <hwoarang@gentoo.org> package.use.mask:
Masking qml use flag for qt-creator-1.3.1 due to qt-declarative
unsatisfied dependencies
15 Jan 2010; Samuli Suominen <ssuominen@gentoo.org> package.use.mask,
use.mask:
Remove now unrequired USE="arts" mask.
14 Jan 2010; Alex Legler <a3li@gentoo.org> package.use.force:
Fix ruby package.use.force entries
10 Jan 2010; Jeremy Olexa <darkside@gentoo.org> package.use.mask:
mask wicd[ioctl] wrt bug 299674
29 Dec 2009; Nirbheek Chauhan <nirbheek@gentoo.org> use.mask:
Entries need to be added to bottom of file, and with proper header
29 Dec 2009; Nirbheek Chauhan <nirbheek@gentoo.org> use.mask:
Add introspection to use.mask in anticipation of addition of ebuilds with
this use-flag
23 Dec 2009; Vlastimil Babka <caster@gentoo.org> package.use.mask:
Mask nsplugin of 1.4 emul java due to security.
14 Dec 2009; Alex Legler <a3li@gentoo.org> use.mask:
Add ruby_targets_jruby to use.mask
11 Dec 2009; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Mask net-im/licq[kde,qt4] wrt bugs #268134 and #296505.
07 Dec 2009; Alex Legler <a3li@gentoo.org> use.mask:
use.mask ruby_targets_ruby19 and ruby_targets_ree18
04 Dec 2009; Zac Medico <zmedico@gentoo.org> +package.use:
Bug #295615 - Disable cxx by default for net-nds/openldap, in order to
avoid a die in pkg_setup with default USE settings (cxx requires sasl).
03 Dec 2009; Samuli Suominen <ssuominen@gentoo.org> make.defaults:
Enable USE cxx by default wrt
http://archives.gentoo.org/gentoo-dev/msg_a181cd0d36600067b599f4b996c6989f
.xml.
03 Dec 2009; Alexey Shvetsov <alexxy@gentoo.org> package.use.mask:
Mask experimental mpi use flag for gamess
30 Nov 2009; Alex Legler <a3li@gentoo.org> make.defaults:
Add RUBY_TARGETS to USE_EXPAND as discussed on -dev starting Oct 6, 2009
29 Nov 2009; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Remove obsolete kde-base/kopete[jingle] mask for KDE 3.5.10.
29 Nov 2009; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Mask USE lzma for ark, kdelibs and kdebase-kioslaves because of xz-utils
depend.
25 Nov 2009; Alexey Shvetsov <alexxy@gentoo.org> package.use.mask:
Mask infiniband use flag. OFED stack available via science overlay
11 Nov 2009; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Unmask USE arts for app-emulation/emul-linux-x86-soundlibs, required by
app-emulation/emul-linux-x86-qtlibs.
11 Nov 2009; Samuli Suominen <ssuominen@gentoo.org> use.mask:
Temporarily mask USE arts for kde-base/.
10 Nov 2009; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Unmask USE doomsday.
10 Nov 2009; Christian Faulhammer <fauli@gentoo.org> use.mask:
Mask ps3 USE flag for bug 244018
01 Nov 2009; Gilles Dartiguelongue <eva@gentoo.org> package.use.mask:
Mask tracker USE flag in apps using it, bug #291501.
19 Oct 2009; Jonathan Callen <abcd@gentoo.org> package.use.force:
Remove media-sound/rubyripper's X USE flag from package.use.force; flag
has been removed
14 Oct 2009; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Mask sys-devel/gcc[libffi] to avoid conflict with dev-libs/libffi in
ld.so.conf.
10 Oct 2009; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Mask USE google-gadgets for plasma-workspace wrt #287697. Only available
on KDE 4.3.2.
10 Oct 2009; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Mask USE cups for kdeadmin-meta and kdeutils-meta wrt #287697. Only
available on KDE 4.3.2.
10 Oct 2009; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Mask USE facebook for net-im/kopete because of missing KEYWORDS.
09 Oct 2009; Samuli Suominen <ssuominen@gentoo.org> package.use.mask:
Mask app-misc/strigi log wrt #287697, Comment #12.
04 Oct 2009; Christian Faulhammer <fauli@gentoo.org> package.use.mask:
unmask lirc_devices_iguanaIR
23 Sep 2009; Jean-Noël Rivasseau <elvanor@gentoo.org> package.use.mask:
X use flag only for amd64/x86, bug 285951.
21 Sep 2009; Nirbheek Chauhan <nirbheek@gentoo.org> package.use.mask:
Mask '=app-office/openoffice-3.1.1 kde' since it's broken with KDE4
16 Sep 2009; Alex Legler <a3li@gentoo.org> package.use.mask:
Masking the "kolab" USE flag for >=www-apps/horde-webmail-1.2.4.
wrobel is currently away, package needs a bump for security bug 285052 and
I can't generate the patch.
16 Sep 2009; Tomáš Chvátal <scarabeus@gentoo.org> package.use.mask:
Unmask policykit useflag on pulseaudio. Per irc request. Since the reason
for the mask is long gone.
05 Sep 2009; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
ChangeLog:
Dropped base/package.mask as the KDE-4.3 masks have been moved to the
individual arches package.mask files.
15 Aug 2009; Zac Medico <zmedico@gentoo.org> make.defaults:
Remove FEATURES settings that are already included in make.globals for
all supported portage versions (since at least portage-2.1.4.x).
12 Aug 2009; Ulrich Mueller <ulm@gentoo.org> use.defaults:
Add gnuplot and skey to use.defaults.
08 Aug 2009; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
+package.mask:
Moved KDE-4.3.0 mask from profiles/package.mask to
profiles/base/package.mask - fixes bug 280734.
01 Aug 2009; Steve Dibb <beandog@gentoo.org> use.mask:
Remove old realcodecs use flag
01 Aug 2009; Steve Dibb <beandog@gentoo.org> make.defaults:
Remove midi from make.defaults, as its been removed from alsa-* and
reverse deps, bug 272659
01 Aug 2009; Steve Dibb <beandog@gentoo.org> package.use.force:
Remove temporary force of +midi on media-sound/alsa-lib
01 Aug 2009; Samuli Suominen <ssuominen@gentoo.org> package.use.force:
Force USE midi in alsa-lib for old versions since the checks in ebuilds
are gone.
31 Jul 2009; Jeremy Olexa <darkside@gentoo.org> package.use.mask:
mask gnome use flag for abiword-plugins-2.4.6 as it pulls in a GLSA affected
atom, bug 271708
28 Jul 2009; Alexis Ballier <aballier@gentoo.org> package.use.mask:
remove vlc[shine] mask, offending version is gone
21 Jul 2009; Zac Medico <zmedico@gentoo.org> profile.bashrc:
Use declare -F instead of type -t for elog function detection.
14 Jul 2009; Alexis Ballier <aballier@gentoo.org> package.use.mask:
usemask vlc-1.0.0[shine], sources haven't made it to the released
tarballs...
09 Jul 2009; Markus Duft <mduft@gentoo.org> use.mask:
added i6fork use.mask, since this is only meaningful on interix-prefix ATM
24 Jun 2009; Patrick Kursawe <phosphan@gentoo.org> make.defaults:
Adding SANE_BACKENDS to USE_EXPAND.
24 Jun 2009; Christian Hoffmann <hoffie@gentoo.org> package.use.mask:
removing traces of dev-lang/php's USE=zip-external
21 Jun 2009; Hans de Graaff <graaff@gentoo.org> virtuals:
Remove virtual/xemacs since xemacs no longer provides it.
19 Jun 2009; Alexey Shvetsov <alexxy@gentoo.org> use.mask:
Mask kdeprefix since its broken by now. As voted on kde team meeting on
18.06.2009
17 Jun 2009; Thomas Anderson <gentoofan23@gentoo.org> package.use.mask:
app-misc/iguanaIR is p.masked so lirc_devices_iguana needs to get masked for
app-misc/lirc.
12 May 2009; Peter Alfredsen <loki_val@gentoo.org> package.use.mask:
Remove mask of openoffice mono use-flag w.r.t. bug 257313.
03 May 2009; Peter Alfredsen <loki_val@gentoo.org> package.use.force:
Remove use.force on nant since mono-2.4 has been unmasked.
03 May 2009; Peter Alfredsen <loki_val@gentoo.org> package.use.force:
Forcing bootstrap on >=dev-dotnet/nant-0.86_beta1 until
http://bugs.gentoo.org/257313 can be resolved, since -bootstrap requires
>=dev-lang/mono-2.4
23 Apr 2009; Ulrich Mueller <ulm@gentoo.org> package.use:
Remove xpm for app-editors/emacs and app-editors/emacs-cvs from
package.use, since we are now using IUSE defaults.
21 Apr 2009; Mounir Lamouri <volkmar@gentoo.org> package.use.mask:
Mask jingle for kopete-3 and kdenetwork-3 because using old ortp version.
See bug 206047.
12 Apr 2009; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
package.use.mask:
Masked bluetooth for solid until we can unmask net-wireless/bluez.
12 Apr 2009; Peter Alfredsen <loki_val@gentoo.org> +package.use.force:
Forcing 'dev-libs/libpcre unicode' w.r.t. bug 265336. When unicode
use-flag is turned off, ABI is broken without a bump.
23 Mar 2009; Steve Dibb <beandog@gentoo.org> package.use.mask:
Update mask for new media-video/mplayer naming scheme
17 Mar 2009; Nirbheek Chauhan <nirbheek@gentoo.org> package.use.mask:
package.use.mask policykit for gnome-extra/gnome-power-manager and
gnome-base/gnome-session
26 Feb 2009; Steve Dibb <beandog@gentoo.org> package.use.mask:
Unmask internal real player codec support on newer mplayer
26 Feb 2009; Steve Dibb <beandog@gentoo.org> use.mask:
Add realcodecs to base use.mask
26 Feb 2009; Steve Dibb <beandog@gentoo.org> package.use.mask:
Adjust dvdnav on media-video/mplayer; old versions require external masked
dep, newer support internal lib
31 Jan 2009; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
package.use.mask:
Masked networkmanager for solid until we can unmask networkmanager-0.7.0.
20 Jan 2009; Peter Alfredsen <loki_val@gentoo.org> package.use.mask:
Pango is a Work-In-Progress for libgdiplus
30 Dec 2008; Panagiotis Christopoulos <pchrist@gentoo.org> packages:
put back sys-fs/e2fsprogs in system set, after fixing e2fsprogs-libs
blockers described in bug #234907
02 Dec 2008; Steve Dibb <beandog@gentoo.org> package.use.mask:
Mask dvdnav use flag on mplayer
09 Nov 2008; Raúl Porcel <armin76@gentoo.org> package.use.mask:
Fix masking of mplayer
27 Oct 2008; Mike Frysinger <vapier@gentoo.org> use.mask:
Mask lilo by default since it is x86/am64 only.
05 Oct 2008; Harald van Dijk <truedfx@gentoo.org> package.use.mask:
Mask tcl flag on nvi-1.81.6-r*, not only 1.81.6
30 Sep 2008; Mart Raudsepp <leio@gentoo.org> package.use.mask:
Unmask soap for net-libs/webkit-gtk, as the necessary version is in
portage tree now
20 Sep 2008; Zac Medico <zmedico@gentoo.org> make.defaults:
Define PROFILE_ONLY_VARIABLES to include ARCH, ELIBC, KERNEL, and USERLAND.
This is intended for use by package managers, to indicate which variables
are set exclusively by the profile and not by user configuration files. This
variable is currently supported in at least sys-apps/portage-2.1.4.4.
17 Sep 2008; Alexis Ballier <aballier@gentoo.org> package.use.mask:
Mask media-sound/lmms:vst useflag; x86 only
10 Sep 2008; Bernard Cafarelli <voyageur@gentoo.org> virtuals:
Remove entry for old-style gnustep-back virtual
31 Aug 2008; Alin Năstac <mrness@gentoo.org> package.use:
Add udpfromto flag for net-dialup/freeradius (#235688).
24 Aug 2008; Peter Alfredsen <loki_val@gentoo.org> package.use.mask:
Unmask qt4 for google-gadgets, qt-4.4 is now unmasked.
17 Aug 2008; Zac Medico <zmedico@gentoo.org> packages:
Remove sys-fs/e2fsprogs from the system set in order to allow
automatic blocker resolution for bug #234907. This change shouldn't
hurt since the sys-fs/e2fsprogs package is pulled in as a dependency
of sys-apps/util-linux, which is a member of the system set for
relevant profiles.
16 Aug 2008; Robert Buchholz <rbu@gentoo.org> package.use.mask:
use-masking tls for kaa-base
02 Aug 2008; Petteri Räty <betelgeuse@gentoo.org> make.defaults:
Add mmap_emul introduced in 1.0.17 to ALSA_PCM_PLUGINS.
30 Jul 2008; Markus Ullmann <jokey@gentoo.org> package.use.mask:
Mask soap for net-libs/webkit-gtk
20 Jul 2008; Serkan Kaba <serkan@gentoo.org> package.use.mask:
Add app-text/enchant:zemberek mask. Java is not supported in most of the
arches enchant is keyworded.
18 Jul 2008; Serkan Kaba <serkan@gentoo.org> package.use.mask:
Remove dev-java/log4j:jmx mask.
04 Jul 2008; Thomas Anderson <gentoofan23@gentoo.org> package.use.mask:
Mask ia32 USE flag for opera on all architectures but amd64 as we're
the only architecture who can use it.
25 Jun 2008; Peter Alfredsen <loki_val@gentoo.org> package.use.mask:
Adjusted mask of gnash:ffmpeg use.mask and added mask of php flag for
>=ming-0.4.0_beta5 due to autotools fail.
21 Jun 2008; Serkan Kaba <serkan@gentoo.org> package.use.mask:
Move dev-java/log4j jmx to top of the package.use.mask file.
21 Jun 2008; Serkan Kaba <serkan@gentoo.org> package.use.mask:
Add dev-java/log4j jmx because dev-java/sun-jms is masked.
06 Jun 2008; Peter Alfredsen <loki_val@gentoo.org> package.use.mask:
Added x11-misc/google-gadgets qt4 to package.use.mask. qt-4.4 required is
package.masked.
06 Jun 2008; Rémi Cardona <remi@gentoo.org> package.mask:
pkgmove to gnome-base/gnome-control-center
30 Apr 2008; Sébastien Fabbro <bicatali@gentoo.org> use.mask:
Removed masking of icc and ifc flags (now only local flags). Removed
inexistent icc-pgo flags
10 Apr 2008; Donnie Berkholz <dberkholz@gentoo.org>; use.mask:
changing around video_cards_via masking by unmasking only for available
arches instead of masking on unavailable.
21 Mar 2008; Markus Ullmann <jokey@gentoo.org> package.use.mask:
use mask qt4 on net-irc/kvirc-3.4.0
21 Mar 2008; Christian Faulhammer <opfer@gentoo.org> virtuals:
there is a new-style virtual now for pager
11 Mar 2008; Christian Faulhammer <opfer@gentoo.org> package.use.mask:
extend libpaludis mask for app-portage/gatt
03 Mar 2008; Christian Faulhammer <opfer@gentoo.org> package.use.mask:
remove useless entry for conky
02 Mar 2008; Christian Faulhammer <opfer@gentoo.org> package.use.mask:
USE=libpaludis is very experimental
14 Feb 2008; Raúl Porcel <armin76@gentoo.org> virtuals:
Remove useless virtual/bittorrent
29 Jan 2008; Raúl Porcel <armin76@gentoo.org> package.use.mask:
Move bluetooth package.use.mask for app-pda/pilot-link from the amd64
profile, since it affects all the arches
25 Jan 2008; Christian Faulhammer <opfer@gentoo.org> package.use.mask:
mask bluetooth for a stable pulseaudio version, so stable users are not
bothered
10 Jan 2008; Sébastien Fabbro <bicatali@gentoo.org> use.mask:
Removed cern from use.mask (has been mark stable sparc,x86 and amd64)
27 Dec 2007; Christian Hoffmann <hoffie@gentoo.org> package.use.mask:
mask USE="java" for dev-lang/php (as the required dependency will be masked)
23 Dec 2007; Mark Loeser <halcy0n@gentoo.org> use.mask:
Remove duplicated fdftk flag; bug #168772
13 Dec 2007; Duncan Coutts <dcoutts@gentoo.org> virtuals:
Remove old-style virtual/ghc as it is no longer used.
28 Nov 2007; Benedikt Böhm <hollow@gentoo.org> make.defaults:
Add APACHE2_MODULES and APACHE2_MPMS to USE_EXPAND
21 Nov 2007; Sébastien Fabbro <bicatali@gentoo.org> virtuals:
Removed virtual/lapack, now new style
05 Nov 2007; Duncan Coutts <dcoutts@gentoo.org> virtuals:
Switch to ghc rather than ghc-bin for virtual as we're p.masking ghc-bin
10 Oct 2007; Christian Faulhammer <opfer@gentoo.org> virtuals:
remove virtual/editor, we have a new-style virtual now
09 Oct 2007; Sébastien Fabbro <bicatali@gentoo.org> virtuals:
removed virtual/blas (now new style), virtual/cblas (which never existed and
now is new style) and replaced default lapack for lapack-reference
08 Oct 2007; Andrej Kacian <ticho@gentoo.org> use.mask:
Mask ssse3 use flag globally - it is unmasked for x86 already, as it should
be. Bug #195086.
09 Sep 2007; Donnie Berkholz <dberkholz@gentoo.org>; use.mask:
Mask amd, vermilion, and xgi VIDEO_CARDS till they get keyworded.
29 Aug 2007; Robert Buchholz <rbu@gentoo.org> package.use.mask:
Masking pptp plugin for knetworkmanager
24 Aug 2007; Sébastien Fabbro <bicatali@gentoo.org> use.mask:
Mask cern in use.mask
22 Jul 2007; Donnie Berkholz <dberkholz@gentoo.org>; use.defaults:
virtual/x11 is gone.
08 Jul 2007; Joshua Kinard <kumba@gentoo.org> use.mask:
Remove ip28/ip32r10k USE masks; they're actually used by mips-sources when
being built on a cross-host for that target.
01 Jun 2007; Ulrich Mueller <ulm@gentoo.org> package.use:
Add app-editors/emacs xpm to package.use.
23 May 2007; Ulrich Mueller <ulm@gentoo.org> +package.use:
package.use xpm for app-editors/emacs-cvs.
21 May 2007; Christian Heim <phreak@gentoo.org> use.mask:
We don't need ip28 and ip32r10k enabled anywhere, so mask it in base/ and
unmask it in default-linux/mips.
27 Apr 2007; Petteri Räty <betelgeuse@gentoo.org> package.use.mask:
package.use.mask nsplugin for blackdown-jdk and blackdown-jre for security
bug #161835.
30 Mar 2007; Alec Warner <antarus@gentoo.org> make.defaults:
Remove autoconfig from FEATURES, it died a long time ago
12 Mar 2007; Joseph Jezak <josejx@gentoo.org> use.mask:
Add macbook USE flag to use.mask.
05 Mar 2007; Stephen Bennett <spb@gentoo.org> make.defaults:
Add /etc/env.d to CONFIG_PROTECT_MASK
15 Feb 2007; Chris Gianelloni <wolf31o2@gentoo.org> use.defaults:
Removed udev remnants using a patch from Arfrever Frehtes Taifersar Arahesis
<FFTA@WP.PL> and closing bug #166917.
29 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> make.defaults:
Add midi useflag by default to cope with newer alsa versions.
27 Jan 2007; Alon Bar-Lev <alonbl@gentoo.org> make.defaults:
Added CAMERAS USE_EXPAND bug#139884
22 Jan 2007; Christian Faulhammer <opfer@gentoo.org> use.mask:
masked bmpx USE flag in order to stable conky
18 Jan 2007; Robert Buchholz <rbu@gentoo.org> use.mask:
Masked lcd_devices_svga as it only works on x86
17 Jan 2007; Robert Buchholz <rbu@gentoo.org> make.defaults:
Added LCD_DEVICES to USE_EXPAND and provided some defaults
|