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
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
|
date 25 Apr 2001
new app-misc/ckermit-7.0
michael
date 24 Apr 2001
new net-www/oops-1.5.6
drobbins
a new multithreaded high-performance caching web proxy; all perms/file locations are OK, but I still need to create the initscript
upd sys-apps/portage-1.5-r3 to 1.5-r4
drobbins
several build-related bugs fixes of medium importance
new app-text/dictd-devils
michael
new app-text/dictd-elements-2000.22.07
michael
new app-text/dictd-foldoc-2001.03.13
michael
new app-text/dictd-gazetteer-1.2
michael
new app-text/dictd-jargon-4.2.3
michael
new app-text/dictd-misc-1.5b
michael
new app-text/dictd-vera-1.7
michael
new app-text/dictd-web1913-1.4
michael
new app-text/dictd-wn-1.5
michael
upd dev-util/tkcvs-6.4 to 6.4-r1
aj
Added documentation
date 23 Apr 2001
new dev-util/tkcvs-6.4
aj
upd sys-apps/iptables-1.2-r1 to 1.2.1a
drobbins
a new iptables release with some bug fixes
upd x11-base/xfree-4.0.3-r1 to 4.0.3-r2
drobbins
a few dependency fixes, now provides virtual/opengl
new net-news/knews-1.0.1b
michael
upd sys-apps/dcron-2.7-r3 to 2.7-r4
drobbins
crond was in the wrong location, causing a crond to continually
restart. Now fixed.
new dev-util/cscopre-15.1
blutgens
date 22 Apr 2001
new app-text/dictd-1.5.5
michael
date 21 Apr 2001
upd sys-apps/portage-1.5-r2 to 1.5-r3
drobbins
Portage will now work without a /etc/make.profile directory if necessary.
new media-lib/compface-1.4
tadpol
new app-misc/screen-3.9.8
blutgens
new app-crypt/gnupg-1.0.4
blutgens
date 20 Apr 2001
upd sys-apps/portage-1.5-r1 to 1.5-r2
drobbins
you can now type "emerge rsync" to update your Portage tree via
rsync, and type "emerge rsync clean" to remove stale ebuilds and
patches during the sync process. the distfiles and packages directories
will be excluded from deletion, as you would expect.
upd net-fs/samba-2.2.0_alpha3 to 2.2.0
drobbins
New official Samba release; we now have 2.0.8 and 2.2.0 available
upd net-irc/epic4-1.0.1 to 1.0.1-r1
ben
new x11-wm/blackbox-0.61.1
ben
date 19 Apr 2001
upd net-misc/bind-9.1.0 to 9.1.1
jerry
Feature upgrade and bug fixes.
upd net-mail/procmail-3.15 to 3.15.1
jerry
Bug fixes and minor security upgrade.
date 18 Apr 2001
upd sys-apps/portage-1.5 to 1.5-r1
drobbins
/var/db/pkg/virtual now has priority over profile/virtuals; profile/virtuals
now gives a hint to emerge on how to resolve a virtual dependency.
upd net-www/prozilla-1.3.3 to 1.3.4
drobbins
upd net-fs/samba-2.0.7-r4 to 2.0.8
drobbins
Security and ebuild upgrades
date 16 Apr 2001
upd media-libs/libao-0.5.0-r1 to 0.6.0
pete
upd media-libs/libogg-1.0_beta3 to 1.0_beta4
pete
upd media-libs/libvorbis-1.0_beta3 to 1.0_beta4
pete
upd media-sound/vorbis-tools-1.0_beta3 to 1.0_beta4
pete
date 15 Apr 2001
upd dev-libs/librep-0.13.5 to 0.13.6
pete
upd gnome-apps/nautilus-0.8.2 to 1.0
pete
upd gnome-base/gnome-1.4_pre2 to 1.4
pete
upd gnome-base/gnome-applets-1.3.1 to 1.4.0.1
pete
upd gnome-base/mc-4.5.51 to 4.5.53
pete
upd gnome-libs/ammonite-0.8.6 to 1.0.0
pete
upd gnome-libs/medusa-0.3.2 to 0.5.0
pete
upd x11-wm/sawfish-0.37.3-r1 to 0.38
pete
new dev-util/xml-i18n-tools-0.8.1
pete
upd gnome-base/bonobo-0.37-r1 to 1.0.1
pete
upd gnome-base/gnome-core-1.3.1 to 1.4.0.1
pete
upd gnome-base/gtkhtml-0.8.2 to 0.8.3
pete
upd gnome-base/libglade-0.16 to 0.16-r1
pete
upd gnome-base/scrollkeeper-0.1.2 to 0.2
pete
date 14 Apr 2001
upd sys-apps/portage-1.5_pre10 to 1.5
drobbins
package.mask support; emerge --pretend now tells you whether each to-be-installed package
will be a package upgrade, a new cat/pkg on the system (not replacing an earlier version),
or will replace an identical version of an already installed package. This feature should
help sysadmins spot potential upgrade problems more easily.
date 13 Apr 2001
upd gnome-base/ORBit-0.5.7 to 0.5.7-r1
pete
upd gnome-base/bonobo-0.37 to 0.37-r1
pete
upd gnome-base/control-center-1.2.4 to 1.4.0.1
pete
upd gnome-base/gconf-0.50 to 1.0.0
pete
upd gnome-base/gdk-pixbuf-0.9.0-r1 to 0.10.1
pete
upd gnome-libs/gnome-libs-1.2.12 to 1.2.13
pete
upd gnome-libs/gnome-print-0.25-r1 to 0.28
pete
upd gnone-base/gnome-vfs-0.6.2 to 1.0.0
pete
upd gnome-base/libxml-1.8.10-r1 to 1.8.11
pete
upd gnome-base/oaf-0.6.4 to 0.6.5
pete
date 10 Apr 2001
upd sys-apps/portage-1.5_pre9 to 1.5_pre10
drobbins
pkgmerge now works
date 08 Apr 2001
new sys-apps/yard-2.0
achim
system for creating custom bootdisks
new sys-apps/busybox-0.50
achim
BusyBox combines tiny versions of many common UNIX utilities into a single
small executable
new gnome-base/gnome-libs-1.2.13
mysteryguy
new version
date 06 Apr 2001
new net-im/caim/caim-0.03
ryan
Caim is a console AIM Client
date 05 Apr 2001
upd sys-kernel/linux-sources-2.4.2-r3 to 2.4.2-r4
drobbins
With the latest 27 Mar 2001 ReiserFS patches
upd sys-kernel/linux-2.4.2-r3 to 2.4.2-r4
drobbins
With the latest 27 Mar 2001 ReiserFS patches
upd sys-apps/portage-1.5_pre8 to 1.5_pre9
drobbins
Various important bug fixes
upd app-admin/gkrellm-1.0.6 to 1.0.7
achim
date 4 Apr 2001
upd dev-libs/glib-1.2.10
pete
upd x11-libs/gtk+-1.2.10
pete
date 3 Apr 2001
upd sys-kernel/linux-sources-2.4.2.13-r1
pete
cleaned up a bunch of stuff
upd sys-kernel/linux-sources-2.4.2.27-r1
pete
ditto
date 31 Mar 2001
new media-libs/ofbis
ryan
Ofbis is a framebuffer graphical library
date 30 Mar 2001
new media-gfx/fbi-1.7
ryan
fbi is a framebuffer console image viewer
new net-fs/samba-winbind-20010330
achim
CVS snapshot from samba-tng. This package only includes the winbind daemon
and the nss and pam libs, required to use NT-Domain users on yourlinux box
upd app-editors/joe-2.8-r1 to 2.9.5
achim
This version no longer searches for a configuration file in the current directory,
and thus closes a very large security hole. A problem with resizing was also solved.
date 29 Mar 2001
upd media-libs/netpbm-9.10 to 9.12
ryan
new media-gfx/zgv-5.3
ryan
Zgv is a svgalib image viewer
date 28 Mar 2001
upd net-fs/samba-2.0.5 to 2.2.0_alpha3
achim
ALPHA release for testing only
upd kde-base/kdelibs-2.1-r2 to 2.1.1
achim
Bugfix release
upd kde-base/kdebase-2.1-r1 to 2.1.1
achim
Bugfix release
date 25 Mar 2001
new app-text/gentoo-guide-xsl-stylesheets-1.0
achim
The XSL Stylesheets for html output separated from
daniels gentoo-web package
new app-text/gentoo-guide-xml-dtd-1.0
achim
A DTD for Gentoo-Guide style XML files
new app-doc/gentoo-doc-1.0_rc4
achim
I merged the install doc with petes Gentoo-HOWTO and my manpages.
It generates the following output types: html,ps,pdf,dvi,man
date 22 Mar 2001
upd sys-apps/portage-1.5_pre7 to 1.5_pre8
drobbins
type "emerge filename.ebuild" to perform recursive merge
upd net-mail/fetchmail-5.6.6 to 5.7.5
ryan
new kde-apps/ktelnet2-0.43
pnamias
new kde-apps/kgraphspace-0.2.14
pnamias
new kde-apps/kfilereplace-0.6.0
pnamias
new kde-apps/kbear-1.2.1
pnamias
new kde-apps/kfilecoder-0.5.0
pnamias
date 21 Mar 2001
upd net-misc/djbdns-1.02 to 1.05
ryan
upd kde-apps/cervisia-1.03 to 1.3
pnamias
new kde-apps/quanta-2.0-pr1
pnamias
date 20 Mar 2001
new net-www/prozilla-1.3.3
pnamias
new kde-apps/kuickshow-0.8
pnamias
new media-sound/mp3blaster-2.0b18
pnamias
date 19 Mar 2001
new kde-apps/knetload-1.91
pnamias
new kde-apps/kcpuload-1.90
pnamias
new kde-apps/kdenetwork-2.1
pnamias
new kde-apps/kdevelop-1.4
pnamias
new kde-apps/kdeutils-2.1
pnamias
new kde-apps/kdeadmin-2.1
pnamias
new kde-apps/ksdk-2.1
pnamias
new kde-apps/kdegraphics-2.1
pnamias
new kde-apps/kdepim-2.1
pnamias
new kde-apps/kdemultimedia-2.1
pnamias
new kde-apps/kdemultimedia-2.1
pnamias
new kde-apps/kmago-1.0.3
pnamias
new x11-libs/qt-2.3.0
pnamias
date 17 Mar 2001
upd sys-kernel/linux-2.4.2-r2 to r3
drobbins
minor build fixes
upd sys-kernel/linux-sources-2.4.2-r2 to r3
drobbins
minor build fixes
new net-im/gtk+licq-0.50.1
jgagnon
new net-im/licq-1.0.3
jgagnon
new net-im/licq-console-1.0.2
jgagnon
date 13 Mar 2001
new media-gfx/glide-3.0.20000312
pete
date 11 Mar 2001
new sys-apps/eject-2.0.2
pete
date 07 Mar 2001
upd sys-kernel/linux-sources-2.4.2-r1 to 2.4.2-r2
drobbins
Kernel 2.4.2 -- contains the latest (05 Mar 2001) Reiserfs patches
upd sys-kernel/linux-2.4.2-r1 to 2.4.2-r2
drobbins
Kernel 2.4.2 -- contains the latest (05 Mar 2001) Reiserfs patches
upd sys-apps/reiserfs-utils-3.6.25-r3 to r4
achim
Includes the latest reiserfsck version (3.x.0f)
You should upgrade
date 03 Mar 2001
upd tar-1.13.18-r3 to 1.13.18-r4
drobbins
rmt is installed as rmt.gnu with an rmt symlink
new app-arch/mt-st-0.6
drobbins
includes new mt command that has support for Linux 2.4 ioctls
upd sys-apps/star-1.3_alpha8-r1 to 1.3_alpha8-r2
drobbins
removed mt and smt, rmt is installed as rmt.star with an rmt symlink
upd sys-apps/cpio-2.4.2-r3 to 2.4.2-r4
drobbins
removed mt
date 02 Mar 2001
upd sys-apps/iproute2-2.2.4-r1 to 2.2.4-r2
drobbins
DIFFSERV (differential services) now enabled; should allow support for
ingress policing, gred, dsmark queueing disciplines and the tcindex
filter
date 01 Mar 2001
new x11-wm/fvwm-2.3.28
pete
new app-misc/xscreensaver-3.29
pete
upd sys-kernel/linux-sources-2.4.2 to 2.4.2-r1
drobbins
Latest (01 March 2001) ReiserFS patches included
upd sys-kernel/linux-2.4.2 to 2.4.2-r1
drobbins
Latest (01 March 2001) ReiserFS patches included
upd sys-apps/portage-1.5_pre6-r1 to 1.5_pre7
drobbins
A new test version of Portage with a lot of new features, including a
recursive ebuild merge program called "emerge" ("emerge foo-1.0.ebuild" or
"emerge --pretend foo-1.0.ebuild"). There are still some not-yet-fixed
bugs in pkgmerge. There are lots of bug fixes in this new version.
date 28 Feb 2001
del sys-kernel/linux-2.4.1.19-r1
drobbins
2.4.1-ac19 has file system corruption problems
del sys-kernel/linux-sources-2.4.1.19-r1
drobbins
2.4.1-ac19 has file system corruption problems
date 27 Feb 2001
new x11-wm/sawfish-0.37.3
drobbins
not yet tested, but it's there :)
new sys-kernel/linux-sources-2.4.2
drobbins
Kernel 2.4.2 with ReiserFS patches; 2.4.1-ac19 proved ugly
for ReiserFS so hopefully this one will be better.
date 22 Feb 2001
upd sys-apps/portage-1.5-r5 to 1.5-r6
drobbins
Portage will now tell you exactly what's wrong with bogus package names.
upd net-irc/bitchx-1.0.17 to 1.0.18
ryan
date 21 Feb 2001
upd sys-apps/portage-1.5_pre4 to 1.5_pre5
drobbins
portage.py now performs numerous checks for invalid cat/pkg strings.
Portage will continue gracefully when possible.
upd sys-devel/binutils-2.1.10.0.7 to 2.1.10.91.0.2
achim
This version fixes segfaults in ld that occured with 2.1.10.0.7
date 20 Feb 2001
new media-libs/netpbm-9.10-r2
pete
new media-libs/tiff-3.5.5-r3
pete
tiff-3.5.5-r2 didn't work for me, installed a bunch of stuff to /usr/local
without using ${D}, for some reason, so I fixed it up
new x11-wm/AfterStep-1.8.8
pete
upd sys-kernel/linux-2.4.1.19 to 2.4.1.19-r1
drobbins
Now with LVM 0.9.1-beta5
upd sys-kernel/linux-sources-2.4.1.19 to 2.4.1.19-r1
drobbins
Now with LVM 0.9.1-beta5
upd sys-apps/portage-1.5_pre3 to 1.5_pre4
drobbins
another unmerge fix, portage-maintain now works, tiny API changes
upd sys-apps/reiserfs-utils-3.6.25-r1 to r3
achim
This includes the lates version fo reiserfsck (3.x.0d)
Update recommended
date 19 Feb 2001
upd sys-apps/portage-1.5_pre2 to 1.5_pre3
drobbins
New test version of Portage 1.5. Important dyn_install mtime fix that makes
unmerge work reliably. All testers should upgrade.
new sys-kernel/linux-2.4.1.19
drobbins
Linux 2.4.1-ac19 with ALSA 0.5.10b, lm-sensors 2.5.5, JFS 0.1.5, LVM 0.9.1_beta4
Did we beat freshmeat? :) Pending work: the config and autoconf.h files need to
be set up appropriately if we want to use this kernel for an actual release. Also,
I commented out the ReiserFS patches; Achim, please comment them in if we need
them. This is a test kernel.
new sys-kernel/linux-sources-2.4.1.19
drobbins
Linux 2.4.1-ac19 with ALSA 0.5.10b, lm-sensors 2.5.5, JFS 0.1.5, LVM 0.9.1_beta4
Possibly needs new ReiserFS patches? This is a test kernel.
upd net-mail/exim-3.22 to 3.22-r1
jerry
Add RDEPEND="!virtual/mta" to prevent virtual/mta packages from stepping
on each other.
upd net-mail/postfix-20010130 to postfix-20010204
jerry
Add RDEPEND="!virtual/mta" to prevent virtual/mta packages from stepping
on each other.
upd net-mail/fetchmail-5.6.0 to 5.6.6
ryan
date 18 Feb 2001
upd dev-perl/AxKit-1.2 to 1.3
achim
This release includes improvements to the XSP engine to allow taglibs to be
written more easily, better dependencies checking, and an
import_template() function in XPathScript.
upd sys.apps/net-tools-1.57-r2 to 1.59
achim
This release fixes some buffer overflow security issues
You should update
upd sys-devel/automake-1.4-r2 to 1.4d
achim
date 16 Feb 2001
upd sys-devel/binutils-2.1.10 to 2.1.10.0.7
achim
required for glibc-2.2.2
upd sys-libs/glibc-2.2.1-r1 to 2.2.2
achim
upd net-www/mozilla-0.7 to 0.8
achim
new dev-perl/AxKit-1.2
achim
upd dev-perl/Chart-0.99b to 9.99c-pre3
achim
new dev-perl/Compress-Zlib-1.10
achim
upd dev-perl/DB-File-1.73 to 1.76
achim
Now linked agains db-3.2.3
upd dev-perl/GD-1.19 to 1.32
achim
upd dev-perl/HTML-Mason-0.89 to 1.0
achim
upd dev-perl/HTML-Parser-3.13 to 3.15
achim
new dev-perl/HTTP-GHTTP-1.06
achim
upd dev-perl/MailAudit-1.6 to 1.8
achim
upd dev-perl/Mail-Procmail-1.00 to 1.01
achim
upd dev-perl/Mon-0.9 to 0.11
achim
upd dev-perl/PDL-2.1.1 to 2.2
achim
upd dev-perl/Parse-RecDescent-1.79 to 1.80
achim
upd dev-perl/RlRPC-0.2012 to 0.2014
achim
upd dev-perl/SNMP-Session-0.80 to 0.83
achim
upd dev-perl/SOAP-0.25 to 0.28
achim
upd dev-perl/URI-1.09 to 1.10
achim
new dev-perl/Unicode-Map8-0.10
achim
new dev-perl/Unicode-String-2.06
achim
upd dev-perl/XML-Catalog-0.01 to 0.02
achim
upd dev-perl/XML-DT-0.14 to 0.19
achim
upd dev-perl/XML-Parser-2.29 to 2.30
achim
upd dev-perl/XML-Sablot-0.44 to 0.50
achim
new dev-perl/XML-XPath-1.04
achim
upd dev-perl/XMS-XSLT-0.24 to 0.31
achim
upd dev-perl/gtk-perl-0.7000 to 0.7004
achim
new dev-perl/libapreq-0.31
achim
upd dev-perl/libwww-perl-5.48 to 5.50
achim
upd dev-perl/mod_perl-1.24.1 to 1.25
achim
date 15 Feb 2001
upd dev-db/mysql-3.23.32 to mysql-3.23.32-r1
pete
same as mysql-3.23.32, but run aclocal/autoconf/automake, and added
autoconf/automake to depends; also, had to add a patch:
mysql-3.23.32-r1-gentoo.diff
upd sys-apps/portage-1.4-r10 to 1.5_pre1
drobbins
New *test* version of portage for testers only. Features second
generation .tbz2 package format, recursive pkgmerge (using digraphs),
will automatically unmerge old instance of a package after a merge,
speed improvements, Achim's FHS 2.1 fixes merged, ebuild bash code
cleanup, python code rewrite/major cleanup.
new net-www/konqueror-embedded-20010207
achim
This is a snapshot release of konqueror that does not other
parts from kde. It can be linked agains qt-x11 or qt-embedded.
new net-mail/mailbase-0.00
jerry
base /etc/mail support for Gentoo and virtual/mta
upd net-mail/exim-3.20-r1 to 3.22
jerry
upd net-mail/postfix-20001217 to 20010130
jerry
date 13 Feb 2001
upd media-libs/libsdl-1.1.7 to 1.1.8
drobbins
Now has nas support; add "nas" to your USE line in make.conf
to enable it.
date 11 Feb 2001
new app-misc/splitvt-1.6.5
ryan
A program for splitting terminals into two shells
date 10 Feb 2001
new media-sound/dcd-0.90
ryan
A simple command-line based CD player
upd media-libs/smpeg-0.4.1 to 0.4.2
achim
upd media-video/avifile-0.53.1 to 0.53.5
achim
date 08 Feb 2001
new app-text/xpdf-0.92
ryan
An alternative PDF viewer for X
new dev-utils/fbset-2.1
achim
A utility to set the Framebuffer resolution
upd x11-base/xfree-4.0.2 to 4.0.2-r1
achim
Added ATI drivers from the gator project (Xv and TV Out support)
upd dev-db/mysql-3.23.31 to 3.23.32
achim
This is the first 3.23 stable release
upd app-text/sablotron-0.44-r2 to 0.50
drobbins
new dev-libs/expat-1.95.1
drobbins
an XML parsing library required by sablotron
new app-text/ispell-de-20001109.ebuild
achim
A german dictionary for ispell
new app-text/aspell-de-20001109.ebuild
achim
A german dictionary for aspell
new kde-apps/kdbg-1.2.0
achim
A Graphical Debugger Interface to gdb
new app-text/ispell-3.1.20.ebuild
achim
Ispell is a fast screen-oriented spelling checker
date 07 Feb 2001
upd net-misc/bind-9.0.1-r1 to 9.1.0
jerry
Update (fixes security exploits in 9.0.1)
upd sys-libs/cracklib-2.7-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-libs/db-1.85 to 1.85-r1
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-libs/db-3.2.3 to 3.2.3-r1
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-libs/gdbm-1.8.0-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-libs/glibc-2.2.1 to 2.2.1-r1
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-libs/gpm-1.19.3-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-libs/libcompat-1.0-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-libs/ncurses-5.2-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-libs/nss-db-2.2 to 2.2-r1
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-libs/pam-0.73 to 0.73-r1
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-libs/pwdb-0.61-r2 to r3
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-libs/readline-4.1-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-libs/slang-1.4.2 to 1.4.3
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-libs/zlib-1.1.3-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-devel/autoconf-2.13-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-devel/automake-1.4-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-devel/bc-1.06 to 1.06-r1
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-devel/bin86-0.15.4 to 0.15.4-r1
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-devel/binutils-2.10.1 to 2.10.1-r1
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-devel/bison-1.28-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-devel/flex-2.5.4a-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
achim
Maintainence and FHS 2.1 fixes for RC4
upd upd sys-devel/gcc-2.95.2-r4 to r5
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-devel/gdb-5.0-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-devel/gettext-0.10.35-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-devel/ld.so-1.9.11-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-devel/libtool-1.3.5-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-devel/m4-1.4o-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-devel/make-3.79.1-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-devel/patch-2.5.4-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-devel/perl-5.6.0-r5 to r6
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-devel/spython-2.0-r2 to r3
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/at-3.1.8-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/bash-2.04-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/bzip2-1.0.1 to 1.0.1-r1
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/console-data-1999.08.29-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/console-tools-0.2.3-r2 to r3
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/cpip-2.4.2-r2 to r3
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/daemontools-0.70 to 0.70-r1
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/dcron-2.7-r2 to r3
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/debianutils-1.13.2-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/devfsd-1.3.10 to 1.3.11
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/diffutils-2.7-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/e2fsprogs-1.19 to 1.19-r1
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/ed-0.2 to 0.2-r1
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/file-3.33 to 3.33-r1
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/fileutils-4.0.36-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/findutils-4.1-r3 to r4
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/gawk-3.0.6-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/gluelog-1.0-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/grep-2.4.2-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/groff-1.16.1 to 1.16.1-r1
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/grub-0.5.96.1-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/gzip-1.2.4a-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/hdparm-3.9-r2 to r3
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/ipchains-1.3.10 to 1.3.10-r1
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/iproute2-2.2.4 to 2.2.4-r1
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/iptables-1.2 to 1.2-r1
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/isapnptools-1.23 to 1.23-r1
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/less-358-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/lilo-21.6 to 21.6-r1
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/man-1.5.1h-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/man-pages-1.31 to 1.34
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/modutils-2.4.0 to 2.4.2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/most-4.9.0-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/net-tools-1.57-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/netkit-base-0.17-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/portage-1.4-r15
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/procps-2.0.7-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/psmisc-19-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/raidtools-0.90-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/reiserfs-utils-3.6.25-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/sed-3.02.80 to 3.02.80-r1
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/setserial-2.17-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/sh-utils-2.0j-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/shadow-20001016-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/sharutils-4.2.1-r2 to r3
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/star-1.3_alpha8 to 1.3_alpha8-r1
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/sysklogd-1.4-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/sysvinit-2.78-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/tar-1.13.18-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/tcp-wrappers-7.6-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/texinfo-4.0-r1 to r2
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/textutils-2.0.10 to 2.0.10-r1
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/ucspi-tcp-0.88 to 0.88-r1
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/util-linux-2.10q to 2.10q-r1
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/vim-nogui-5.7-r2 to r3
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/watchpid-0.1 to 0.1-r1
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/which-2.12 to 2.12-r1
achim
Maintainence and FHS 2.1 fixes for RC4
upd sys-apps/xinetd-2.1.8.8p3-r4 to r5
achim
Maintainence and FHS 2.1 fixes for RC4
date 05 Feb 2001
upd x11-libs/qt-2.2.3 to 2.2.4
achim
A new mainainance release which does not include
the antialias patch use 2.2.3a instead
new app-text/acroread-4.05
achim
Adobe's PDF reader
new kde-apps/kdevelop-1.4_beta2
achim
Requires kde-2.1_beta2
upd media-sound/nas-1.4.1 to 1.4.1-r1
achim
fixed a config bug
new x11-wm/pwm-1.0
pete
A lightweight window manager
upd net-dialup/rp-pppoe-2.3 to 2.8
dave
date 04 Feb 2001
new net-www/links-0.95
ryan
A console-based web-browser that supports frames and tables
upd net-www/squid-2.3.4s-r1 to 2.3.4s-r2
achim
Added all patches for that version from www.squid-cache.org
new media-libs/libao-0.5.0
peter
new media-libs/libogg-1.0_beta3
peter
new media-libs/libvorbis-1.0_beta3
peter
new media-sound/abcde-1.9.7
peter
new media-sound/cd-discid-0.4
peter
new media-sound/cdparanoia-3.9.7
peter
new media-sound/id3-0.12
peter
new media-sound/vorbis-tools-1.0_beta3
peter
new app-editors/emacs-motif-20.7
achim
upd sys-apps/baselayout-1.5-r1 to 1.5-r2
achim
Changed docdir to /usr/share/doc. Added /var/tmp
new app-editors/emacs-nogui-20.7
peter
new app-editors/emacs-x11-20.7
peter
new media-sound/xmms-nas-0.2
achim
An xmms-output plugin for NAS
new media-video/avi-xmms-1.2.2
achim
Plays AVI/DivX movies, uses the avifile library
date 02 Feb 2001
upd sys-apps/portage-1.4-r9 to 1.4-r10
drobbins
ebuild.1, ebuild.5 and make.defaults.5 man pages now available.
(The ebuild.1 man page is good, but the rest still need more work.)
new media-sound/xxms-shn-2.2.3
drobbins
This input plugins allows playback of .shn files, a format popular
for lossless audio encoding and exchange (see media-sound/shorten)
upd media-sound/xmms-aalsa-0.5.4 to 0.5.4-r1
drobbins
merge location fix (original fix didn't work due to weird Makefile)
upd app-admin/gkrellm-1.0.5 to 1.0.6
drobbins
new media-gfx/sane-backends-1.0.4
achim
new media-gfb/sane-frontends-1.0.4
achim
date 31 Jan 2001
upd sys-apps/portage-1.4-r8 to 1.4-r9
drobbins
fix USE/dependency parsing bug
date 30 Jan 2001
upd net-www/apache-ssl-1.3.14.2.7.1-r2 to 1.3.17.2.8.0
achim
upd sys-apps/shadow-20001016 to 20001016-r1
drobbins
added "vigr" symlink
upd kde-apps/cervisia-0.7.1 to 1.0_beta3
achim
upd dev-db/postgresql-7.0.3-r1 to r2
achim
Changed install dirs from postgres to the more widely used pgsql
date 29 Jan 2001
upd sys-apps/portage-1.4-r7 to 1.4-r8
drobbins
should now use spython exclusively
upd sys-devel/spython-2.0-r1 to 2.0-r2
drobbins
added a /usr/bin/python symlink
date 27 Jan 2001
upd sys-kernel/linux-2.4.0.11-r2 to 2.4.0.11-r3
drobbins
The latest LVM patches and tools are now included
upd sys-kernel/linux-sources-2.4.0.11-r2 to 2.4.0.11-r3
drobbins
see above
new app-admin/qtsvc-0.1
achim
Nice qt-frontend for svc
upd net-print/kups-0.8.0 to 1.0
achim
Hope this is more stable
upd net-print/qtcups-1.2 to 2.0
achim
This version is exclusive for qt2
date 26 Jan 2001
new sys-build/bash-2.04-r1
achim
Static linked version for the build system
new sys-build/binutils-2.10.1
achim
Static linked version for the build system
new sys-build/bzip2-1.0.1
achim
Static linked version for the build system
new sys-build/debianutils-1.13.3-r1
achim
Static linked version for the build system
new sys-build/diffutils-2.7-r1
achim
Static linked version for the build system
new sys-build/file-3.33
achim
Static linked version for the build system
new sys-build/fileutils-4.0.36-r1
achim
Static linked version for the build system
new sys-build/findutils-4.1-r3
achim
Static linked version for the build system
new sys-build/gawk-3.0.6-r1
achim
Static linked version for the build system
new sys-build/gcc-2.95.2-r4
achim
Static linked version for the build system
Only c and c++ included
new sys-build/glibc-2.2.1
achim
Version for the build system linked against
$ROOT includes
new sys-build/grep-2.4.2-r1
achim
Static linked version for the build system
new sys-build/gzip-1.2.4a-r1
achim
Static linked version for the build system
new sys-build/make-3.79.1-r1
achim
Static linked version for the build system
new sys-build/sed-3.02.89
achim
Static linked version for the build system
new sys-build/sh-utils-2.0j-r1
achim
Static linked version for the build system
new sys-build/spython-2.0-r1
achim
Static linked version for the build system
new sys-build/tar-1.13.18-r1
achim
Static linked version for the build system
new sys-build/textutils-2.0.10
achim
Static linked version for the build system
date 25 Jan 2001
upd sys-kernel/linux-sources-2.4.0.11 to 2.4.0.11-r1
drobbins
a few minor fixes for linux-sources (BTW, this kernel rocks!)
upd sys-kernel/linux-2.4.0.11 to 2.4.0.11-r1
drobbins
see above
upd sys-apps/portage-1.4-r6 to 1.4-r7
drobbins
new sys-build category added. sys-build contains packages
needed for creating a self-building environment.
date 24 Jan 2001
new dev-perl/LockFile-Simple-0.2.5
jerry
modules for handling various mail operations
new dev-perl/Mail-Audit-1.6
jerry
modules for handling various mail operations
new dev-perl/Mail-Procmail-1.00
jerry
modules for handling various mail operations
new dev-perl/MailTools-1.15
jerry
modules for handling various mail operations
new dev-perl/POP3Client-2.7
jerry
modules for handling various mail operations
date 23 Jan 2001
upd app-admin/gkrellm-1.0.2 to 1.0.5
jerry
upd net-misc/whois-4.5.1 to 4.5.2
jerry
Updated to latest version since older version is no longer available.
upd dev-db/postgresql-7.0.3 to 7.0.3-r1
achim
Fixed buggy .source files and added documentation
new dev-perl/Chart-0.99b
achim
These modules are required for bugzilla
new dev-perl/DataShowTable-3.3
achim
These modules are required for bugzilla
new dev-perl/DBI-1.14
achim
These modules are required for bugzilla
new dev-perl/GD-1.19
achim
These modules are required for bugzilla
new dev-perl/Msql-Mysql-modules-1.2215
achim
These modules are required for bugzilla
new dev-perl/Net-Daemon-0.34
achim
These modules are required for bugzilla
new dev-perl/PlRPC-0.2012
achim
These modules are required for bugzilla
new dev-perl/Storable-1.0.7
achim
These modules are required for bugzilla
date 22 Jan 2001
upd sys-apps/portage-1.4-r5 to 1.4-r6
drobbins
integrated env-update into our python library. Portage contains
env-update now.
upd sys-apps/baselayout-1.5 to 1.5-r1
drobbins
removed env-update from baselayout
date 21 Jan 2001
upd sys-apps/reiserfs-utils-3.6.25 to 3.6.25-r1
achim
Added reiserfsck from reiserfsprogs
upd sys-lib/gpm-1.19.3 to 1.19.3-r1
achim
Added a patch for better devfs support
date 20 Jan 20001
upd sys-kernel/linux-2.4.1_pre8 to 2.4.1_pre8-r1
drobbins
Merged Achim's and Daniel's ebuild; integrated latest LVM tools and lots
of little ebuild cleanups
upd sys-kernel/linux-sources-2.4.1_pre8 to 2.4.1_pre8-r1
drobbins
see above
new media-libs/gle-3.0.1
drobbins
The GL extrusion library
upd media-libs/glut-3.7 to 3.7-r1
drobbins
Replace all that Imakefile garbage with a simple bash script that compiles
everything correctly and links everything perfectly. libglut now is dynamically
linked with the X libraries. This is what other applications expect, and
rather than patch every application that uses GLUT, we've fixed the root
of the problem.
upd sys-apps/portage-1.4-r4 to 1.4-r5
drobbins
shared libraries are now installed with 0755 perms
date 18 Jan 2001
upd media-sound/xmms-1.2.3 to 1.2.4
drobbins
new sys-apps/reiserfs-utils-3.6.25
achim
This is required because it is not in the kernel
upd net-fs/samba-2.0.7-r3 to 2.0.7-r4
drobbins
Configured so that mounting smb filesystems will work perfectly without
any tweaking. People who just want client access to SMB filesystems can install
this package, enable kernel SMB filesystem support, and mount -t smbfs.
new app-admin/pciutils-2.1.8
achim
This includes lspci and setpci
upd sys-libs/db-3.1.17-r1 to 3.2.3h
achim
required for transaction support in mysql
upd dev-db/mysql-3.23.28 to 3.23.31
achim
with transaction support
upd net-ftp/lftp-2.3.5 to 2.3.7
achim
upd sys-apps/shadow-20000902-r1 to 20001016
achim
copy /etc/pam.d/passwd to /etc/pam.d/useradd to get adduser/useradd working.
This fix is in the current baselayout package.
upd sys-libs/pam-0.72-r1 to 0.72
achim
new sys-kernel/linux-2.4.1_pre8
achim
This kernel has the new lm-sensors 2.5.5 patch included
date 17 Jan 2001
upd media-libs/libsdl-1.1.6 to 1.1.7
achim
upd net-libs/pam_ldap-82 to 82-r1
achim
changed pam-module path to /lib/security
date 16 Jan 2001
new sys-kernel/linux-2.4.1_pre7
achim
This kernel has reiserfs included, so no more extra patching.
upd gnome-libs/libgda-0.2.1 to r1
achim
Now depends on CORBA-ORBit
upd gnome-base/gnome-1.2.4-r1 to r2
achim
Added /usr/X11R6/bin/wm/gnome wrapper and updated dependencies
upd kde-base/kde-2.0.1-r1 to r2
achim
Added /usr/X11R6/bin/wm/kde wrapper
upd gnome-office/gnumeric-0.61 to 0.61-r1
achim
fixed gb-detection bug in configure
upd gnome-libs/gb-0.0.16 to 0.0.17
achim
required for gnumeric-0.61
upd sys-libs/glibc-2.2-r2 to 2.2.1
achim
builds without problems, but not tested for
all packages
upd net-dialup/wvdial-1.41-r1 to r2
achim
/etc/ppp/peers/ppp.providers is /etc/ppp/peers/wvdial now.
del sys-devel/python-2.0
drobbins
yes, it's moving back to dev-lang
new dev-lang/python-2.0
drobbins
python's back at dev-lang
upd sys-devel/spython-2.0 to 2.0-r1
drobbins
now a full implementation instead of just a static binary.
No longer depends on the full python package.
upd sys-apps/portage-1.4-r3 to 1.4-r4
drobbins
Portage no longer trashes your existing make.conf
new media-sound/shorten-3.2
drobbins
shorten is back, now at 3.2 and much improved. shorten is a
lossless audio compressor.
new media-sound/xmms-alsa-0.5.4
drobbins
"another ALSA plugin" now available
new media-sound/xmms-arts-0.4
drobbins
xmms plugin for the arts sound server (part of KDE2)
upd media-sound/alsa-utils-0.5.9b-r1 to 0.5.10
drobbins
upd media-libs/alsa-lib-0.5.9-r2 to 0.5.10
drobbins
date 15 Jan 2001
upd x11-base/nvidia-0.9.5-r2 to 0.9.5-r3
drobbins
Finally regained my senses and moved NVdriver back into its own package.
This massively enhanced version includes an interactive install script and a
diagnosis tool, and is patched for devfs and 2.4.0+ kernel support. I need
brave people to test this.
upd net-www/jakarta/jakarta-3.1-r1 to r2
achim
Fixed buggy installation. Other issues have been changed in jdk/apache
without changing the revision
upd app-text/a2ps-4.13b-r1 to r2
achim
Fixed lispdir for install
upd sys-devel/perl-5.6.0-r4 to r5
achim
Fixed arch specific issues
new dev-perl/Mon-0.9
achim
Required for net-misc/mon
new dev-perl/Error-0.13
achim
Required from the CORBA-ORBit module
new dev-perl/CORBA-ORBit-0.4.3
achim
A perl Interface to ORBit
upd net-www/netscape-4.76 to 4.76-r1
achim
Added PROVIDE and RDEPEND vars
upd net-www/navigator-4.76 to 4.76-r1
achim
Added RDEPEND var
upd sys-apps/dcron-2.7-r1 to 2.7-r2
jerry
Fixed perm problem. Users can now edit their crontabs.
upd x11-wm/enlightenment-0.16.5 to 0.16.5-r1
achim
Added env-file and wrapper for /usr/X11R6/bin/wm
upd net-fs/autofs-3.1.7 to 3.1.7-r1
achim
Works now
date 14 Jan 2001
upd sys-apps/fileutils-4.0.33 to 4.0.36
drobbins
lots of semi-important fixes in this release
date 13 Jan 2001
upd app-arch/dump-0.4.20_beta-r1 to 0.4.21
drobbins
new sys-kernel/linux-2.4.0.8
achim
Like 2.4.0.8 but with jfs and reiserfs-nfs support. Not tested so
please use 2.4.0.8 for now!
new sys-kernel/linux-2.4.0.8
achim
Based on 2.4.0ac8 with a special reiserfs-3.6.25 from the newsgroup
that works with ac8. Still without reiserfs-nfs patch.
date 12 Jan 2001
new sys-kernel/linux-2.4.0.7
achim
Based on 2.4.0ac7 with a special reiserfs-3.6.25 from the newsgroup
that works with ac7. Still without reiserfs-nfs patch.
date 11 Jan 2001
del dev-lang/python-1.5.2-r3
drobbins
upd sys-apps/portage-1.4-r2 to 1.4-r3
drobbins
now depends on virtual/python-2.0
new sys-devel/python-2.0
drobbins
now in the base system
new sys-devel/spython-2.0
drobbins
a static python binary
upd net-misc/traceroute-1.4_p5 to 1.4_p12
jerry
older version no longer available on master site
date 09 Jan 2001
upd net-misc/djbdns-1.02 to 1.02-r1
drobbins
supervise and initscript update (enhancements as well)
upd sys-apps/dcron-2.7 to 2.7-r1
drobbins
supervise and initscript update
upd sys-apps/xinetd-2.1.8.8_p3-r3 to 2.1.8.8_p3-r4
drobbins
supervise and initscript update
upd net-fs/samba-2.0.7-r2 to 2.0.7-r3
drobbins
supervise and initscript update
upd net-misc/openssh-2.3.0_p1-r3 to 2.3.0_p1-r4
drobbins
supervise and initscript update
upd sys-apps/baselayout-1.4 to 1.5
drobbins
FHS 2.1 updates, supervise updates and sysklogd initscripts
moved to separate gluelog and sysklogd packages.
upd dev-libs/rep-gtk-0.14 to 0.15
drobbins
upd dev-libs/librep-0.13.2 to 0.13.4
drobbins
upd dev-libs/gmp-3.1 to 3.1.1
drobbins
upd x11-wm/sawfish-0.34 to 0.35
drobbins
new version of sawfish
upd sys-apps/iptables-1.1.2 to 1.2
drobbins
iptables has been moved from /usr/bin to /usr/sbin as well
upd dev-db/unixODBC-1.8.13 to 2.0.2
achim
new net-misc/sitecopy-0.10.12
achim
Without the gnome-frontend for now
date 08 Jan 2001
new sys-kernel/linux-2.4.0.4
achim
Based on 2.4.0ac4 with reiserfs-3.6.25 and the ac4-LFS fix from
the reiserfs mailinglist
upd sys-apps/modutils-3.2.24 to 2.4.0
achim
Just added not jet tested so commented out in current-packages.new
upd sys-apps/portage-1.4-r1 to 1.4-r2
drobbins
A pkgmerge fix. Should now work (no recursive pkgmerge just yet)
new sys-kernel/linux-2.4.0.3-r1
achim
This kernel is based on 2.4.0ac3 with the latest reiserfs-3.6.25 patch.
I removed the nfs-patch because it causes alot of reiserfs warnings
over here
date 04 Jan 2001
upd net-www/apache-1.3.14.2.7.1-r1 to 1.3.14.2.7.1-r2
drobbins
Removed a broken FLOCK #define which was causing apache to flake out
as well as affecting the ability of other processes to perform
exclusive locks.
date 01 Jan 2001
upd net-fs/samba-2.0.7-r1 to 2.0.7-r2
drobbins
Samba now has supervise and multilog support
upd sys-libs/ncurses-5.2 to 5.2-r1
drobbins
xterms are now color-enabled by default
new sys-apps/star-1.3_alpha8
drobbins
World's fastest tar now part of Gentoo Linux base. Enhanced mt and
rmt tools also included in this package.
upd sys-apps/cpio-2.4.2-r1 to 2.4.2-r2
drobbins
mt now depreciated
upd sys-apps/tar-1.13.18 to 1.13.18-r1
drobbins
rmt now depreciated
upd sys-apps/portage-1.4 to 1.4-r1
drobbins
doins now externalized to /usr/lib/portage/bin, donewins symlink created.
date 22 Dec 2000
new net-misc/djbdns-1.02
drobbins
This is an excellent DNS package. Developers, be sure
to check out /etc/rc.d/init.d/dnscache and the interactive
setup functionality (requires /etc/rc.d/config/functions
from CVS)
upd sys-apps/vcron-3.0_p1-r1 to 3.0_p1-r2
drobbins
/usr/sbin/crontab is now properly in /usr/bin/crontab
new net-ftp/ncftp-3.0.2
jerry
new apps-editors/vile-9.2
jerry
date 21 Dec 2000
new net-mail/courier-imap-1.2.3
drobbins
A working version of courier-imap (imapd for maildirs) :)
date 20 Dec 2000
upd net-www/cvsweb-1.93 to 1.93-r1
drobbins
Fixed cvsweb.conf and a ${P} was set wrong.
upd net-misc/openssh-2.3.0_p1-r1 to 2.3.0_p1-r2
drobbins
/etc/pam.d/sshd was messed up and referred to a non-existent
pam_chroot.so. That line was removed for now. I also added
the --disable-lastlog option, and all is now OK with this
package.
upd net-misc/rsync-2.4.6 to 2.4.6-r1
drobbins
Now properly looks in /etc/rsync rather than just /etc. The
--sysconfdir option didn't work as expected, but a little sed
did the trick.
new net-mail/postfix-20001217
jerry
upd net-mail/exim-3.20 to 3.20-r1
jerry
Cleaned up mail, mailq and sendmail symlinks
upd net-misc/bind-9.0.1 to 9.0.1-r1
jerry
Fixed errors that kept named from starting
upd net-mail/mutt-1.2.5-r1 to 1.2.5-r2
drobbins
some nice (color) customizations
date 19 Dec 2000
upd x11-wm/sawfish-0.33.1 to 0.34
jerry
date 17 Dec 2000
upd sys-apps/baselayout-1.3-r2 to 1.4
drobbins
Contains new env-management support
upd sys-apps/portage-1.3-r3 to 1.4
drobbins
Contains new env-management code
upd kde-base/kde-2.0.1 to 2.0.1-r1
drobbins
Getting ready for new env-var management system
upd gnome-base/gnome-1.2.4 to 1.2.4-r1
drobbins
Getting ready for new env-var management system
date 15 Dec 2000
upd net-mail/maildrop-1.2.2-r2 to 1.2.2-r3
jerry
changed DEPEND to use "virtual/mta"
upd net-mail/qmail-1.03-r1 to 1.03-r2
jerry
portage now sets PROVIDE="virtual/mta"
upd net-mail/qmail-ldap-1.03.20000701-r1 to 1.03.20000701-r2
jerry
portage now sets PROVIDE="virtual/mta"
upd net-mail/qmail-mysql-1.03-r1 to 1.03-r2
jerry
portage now sets PROVIDE="virtual/mta"
new net-mail/procmail-3.15
jerry
date 11 Dec 2000
upd sys-apps/textutils-2.0.9 to 2.0.10
drobbins
includes some minor fixes
date 10 Dec 2000
new gnome-base/gnome-1.2.4
drobbins
This is a "virtual" (dummy) package that depends on all the required
GNOME packages. Makes it easy to get everything installed.
new kde-base/kde-2.0.1
drobbins
This is a "virtual" (dummy) package that depends on all the required
KDE packages. Makes it easy to get everything installed.
upd sys-apps/shadow-20000902 to 20000902-r1
drobbins
shadow now includes securetty and login is happy
del app-doc/man-pages-1.31
drobbins
new location
new sys-apps/man-pages-1.31
drobbins
new location
date 09 Dec 2000
del sys-apps/sysklogd-1.4
drobbins
now depreciated
upd sys-apps/xinetd-2.1.8.8_p3-r1 to 2.1.8.8_p3-r2
drobbins
now supervised
del sys-apps/shtool-1.5.1-r1
drobbins
location fix
new dev-util/shtool-1.5.1-r1
drobbins
location fix
upd net-misc/openssh-2.3.0_p1 to 2.3.0_p1-r1
drobbins
script fix and supervise support added
new sys-apps/gluelog-1.0
drobbins
for new logging system
del x11-wm/openmotif-2.1.30
drobbins
location change
new x11-libs/openmotif-2.1.30
drobbins
new location
date 08 Dec 2000
new media-gfx/blender-static-2.04
drobbins
fixing dir layout
del kde-base/qt-x11-2.2.1
drobbins
fixing naming convention
del kde-base/qt-x11-2.2.2
drobbins
fixing naming convention
new kde-base/qt-2.2.1
drobbins
fixing naming convention
new kde-base/qt-2.2.2
drobbins
fixing naming convention
date 07 Dec 2000
new sys-kernel/linux-2.4.0_rc10-r5
achim
new updated kernel for bootdisk; drobbins added some ebuild fixed from rc11
new sys-kernel/linux-2.4.0_rc10-r6
achim
new modular kernel for normal systems; drobbins added fixes in rc11 ebuild
new sys-kernel/linux-sources-2.4.0_rc10-r5
drobbins
new kernel sources, new ReiserFS patches. Work done by achim, little ebuild
fixes from rc11 added by drobbins.
date 05 Dec 2000
upd sys-apps/findutils-4.1-r1 to findutils-4.1-r2
drobbins
/var/state/locatedb fix
upd sys-apps/bash-2.04 to 2.04-r1
drobbins
man page fixes, bashbug location fix
date 04 Dec 2000
upd net-mail/exim-3.16 to exim-3.20
jerry
Added latest version of exim. This new version now provides TLS support
as well enhanced smartuser functionality. This portage now uses the
PROVIDE variable for support of virtual/mta.
date 03 Dec 2000
upd x11-libs/gtk+-1.2.8-r2 to 1.2.8-r3
drobbins
added nice, clean default gtk+ style
date 01 Dec 2000
upd sys-apps/portage-1.3-r2 to 1.3-r3
drobbins
fixed dependency resolution bug (empty deplist condition)
upd sys-kernel/linux-2.4.0-rc10-r4 to 2.4.0_rc11
drobbins
not in current-packages yet
upd sys-kernel/linux-sources-2.4.0-rc10-r4 to 2.4.0_rc11
drobbins
not in current-packages yet
upd sys-kernel/linux-2.4.0_rc10-r3 to 2.4.0_rc10-r4
drobbins
Updated ReiserFS patch, and a little compile fix
upd sys-kernel/linux-sources-2.4.0_rc10-r3 to 2.4.0_rc10-r4
drobbins
Updated ReiserFS patch, and a little compile fix
upd gnome-office/gnumeric-0.59a to 0.59a-r1
drobbins
now depends on virtual/python-1.5.2
upd dev-python/gnome-python-1.0.53-r1 to 1.0.53-r2
drobbins
now depends on virtual/python-1.5.2
upd dev-lang/swig-1.3_alpha5 to 1.3_alpha5-r1
drobbins
now depends on virtual/python-1.5.2
upd app-editors/vim-gtk-5.7-r1 to 5.7-r2
drobbins
now depends on virtual/python-1.5.2
upd dev-lang/python-1.5.2-r2 to 1.5.2-r3
drobbins
now provides virtual/python-1.5.2
upd sys-devel/python-basic-1.5.2-r2 to 1.5.2-r3
drobbins
now provides virtual/python-1.5.2
upd app-admin/yup-0.6.5-r1 to 0.6.5-r2
drobbins
yup now depends on virtual/python-1.5.2
upd sys-apps/portage-1.3-r1 to 1.3-r2
drobbins
Updated make.conf so that portage is production-ready
date 28 Nov 2000
upd sys-apps/fileutils-4.0.32 to 4.0.33
drobbins
date 26 Nov 2000
upd sys-apps/portage-1.3 to 1.3-r1
drobbins
small but very important ebuild fix
date 25 Nov 2000
upd sys-apps/portage-1.2 to 1.3
drobbins
Added runtime dependencies and object-based dependency system
upd gnome-base/ORBit-0.53 to 0.5.4
achim
upd gnome-base/bonobo-0.18 to 0.28
achim
upd gnome-base/control-center-1.2.2 to 1.2.2-r1
achim
upd gnome-base/gconf-0.8 to 0.11
achim
new gnome-base/gal-0.2.2
achim
new gnome-base/glibwww-0.2
achim
upd gnome-base/gnome-applets-1.2.2 to 1.2.4
achim
upd gnome-base/gnome-core-1.2.2.1 to 1.2.4
achim
upd gnome-base/gnome-libs-1.2.4 to 1.2.8
achim
upd gnome-base/gnome-print-0.24 to 0.25
achim
upd gnome-base/gnome-vfs-0.3.1 to 0.4.2
achim
upd gnome-base/gtkhtml-0.6.1 to 0.7
achim
upd gnome-base/libglade-0.14 to 0.15
achim
upd gnome-base/libgtop-1.0.9 to 1.0.10
achim
upd gnome-base/libxml-1.8.10 to 1.8.10-r1
achim
upd gnome-base/oaf-0.5.1 to 0.6.1
achim
new gnome-base/libunicode-0.4
achim
del gnome-libs/libunicode-0.4
achim
new gnome-base/bonobo-0.23
achim
new gnome-base/bonobo-0.26
achim
These two are not installed by default but required for evolution or nautilus
upd gnome-apps/bug-buddy-1.1 to 1.2
achim
upd gnome-apps/ee-0.3.12 to 0.3.12-r1
achim
del gnome-apps/gb-0.0.12
achim
upd gnome-apps/gdm-2.0_beta4 to 2.0_beta4-r1
achim
upd gnome-apps/gedit-0.9.1 to 0.9.4
achim
upd gnome-apps/ggv-0.95 to 0.95-r1
achim
upd gnome-apps/glade-0.5.9 to 0.5.11
achim
upd gnome-apps/gnome-media-1.2.0 to 1.2.0-r1
achim
upd gnome-apps/gnome-utils-1.2.1 to 1.2.1-r1
achim
upd gnome-apps/gnorpm-0.95.1 to 0.95.1-r1
achim
upd gnome-apps/gtop-1.0.9 to 1.0.10
achim
upd gnome-apps/gupsc-0.3.0 to 0.3.0-r1
achim
del gnome-apps/medusa-0.2
achim
del gnome-apps/nmap-2.53-r2
achim
add net-analyzer/nmap-2.53-r2
achim
upd gnome-apps/evolution-0.5.1 to 0.6-r1
achim
Deactivated by default compile gnome without the use bonobo flag
merge bonobo-0.23 and build evolution
upd gnome-apps/nautilus-0.1.0 to 0.5.0
achim
Deactivated by default compile gnome without the use bonobo flag
merge bonobo-0.26 and build medusa, amonite and nautilus
del gnome-libs/gal-0.1
achim
new gnome-libs/gb-0.0.15
achim
upd gnome-libs/libgda-0.1 to 0.2
achim
upd gnome-libs/libole2-0.1.6 to 0.1.7
achim
new gnome-libs/ammonite-0.8.1
achim
new gnome-libs/medusa-0.2.2
achim
These two are not installed by default but required for nautilus
upd gnome-office/dia-0.86 to 0.86-r1
achim
upd gnome-office/gnome-db-0.1.0 to 0.2.0
achim
upd gnome-office/gnome-pim-1.2.0 to 1.2.0-r1
achim
upd gnome-office/gnumeric-0.57 to 0.59a
achim
new media-libs/freetype-2.0
achim
Not installed by default but required for nautilus
upd media-sound/esound-0.2.19 to 0.2.20
achim
upd net-libs/libwww-5.3.1 to 5.3.1-r1
achim
date 24 Nov 2000
upd sys-apps/portage-1.1 to 1.2
drobbins
Portage now supports the PROVIDES variable and virtual
packages
upd media-sound/alsa-utils-0.5.9b to 0.5.9b-r1
drobbins
Now includes an rc script to store/restore ALSA volume
upd sys-kernel/linux-2.4.0_rc10-r2 to 2.4.0_rc10-r3
drobbins
ALSA now appears in the package/merge automatically
upd sys-kernel/linux-sources-2.4.0_rc10-r2 to 2.4.0_rc10-r3
drobbins
Updated to match sys-kernel/linux
upd sys-apps/portage-1.0-r4 to 1.1
drobbins
There have been changes on almost a daily basis, and it's
time to bump up the rev on this one. Most recent change was
to make the DEPEND string true build dependencies. This means
they are checked against /var/db/pkg and *not* ${ROOT}var/db/pkg.
upd app-arch/dump-0.4.20_beta to 0.4.20_beta-r1
drobbins
fixed rdump and rrestore symlinks
del sys-apps/mkisofs-1.13-r1
drobbins
This program is included in app-cdr/cdrecord and we don't
especially need it in sys-apps
date 23 Nov 2000
new sys-apps/ucspi-tcp-0.88
drobbins
This is the famed tcpserver package
new sys-apps/daemontools-0.70
drobbins
This package contains supervise and multilog, the heart of
our new daemon management system
date 22 Nov 2000
del app-admin/daemontools-0.70-r1
drobbins
moved to sys-apps
upd sys-kernel/linux-sources-2.4.0_rc10-r1 to 2.4.0_rc10-r2
drobbins
Added LVM 0.9 support, fixed some packaging problems
upd sys-kernel/linux-sources-2.4.0_rc10-r1 to 2.4.0_rc10-r2
drobbins
Added LVM 0.9 support, fixed some packaging problems
upd sys-kernel/linux-sources-2.4.0_rc10 to 2.4.0_rc10-r1
drobbins
Added a little patch for the nvidia drivers that are now included with
the kernel sources. Fixed version numbers which I messed up. Moved
things around in FILESDIR.
upd sys-kernel/linux-2.4.0_rc10 to 2.4.0_rc10-r1
drobbins
Added a little patch for the nvidia drivers that are now included with
the kernel sources. Fixed version numbers which I messed up. Moved
things around in FILESDIR.
new sys-apps/baselayout-1.3-r2
drobbins
Fixed a small bug in /etc/rc.d/config/functions that affected rc-update
new dev-perl/DB_File-1.73
anonymous?
new net-misc/traceroute-1.4_p7
jerry
new net-misc/openssh-2.3.0_p1
jerry
Added latest and greatest version of OpenSSH.
del net-misc/openssh-2.2.0_p1
jerry
Removed old versions of OpenSSH. Better to be rid of them and not have
any conflict. Especially since 2.3.0 corrects some security holes.
del net-misc/openssh-2.2.0_p1-r1
jerry
Removed old versions of OpenSSH. Better to be rid of them and not have
any conflict. Especially since 2.3.0 corrects some security holes.
upd kde-base/kdebase-2.0 to 2.0-r2
achim
Added openmotif to the dependencies
date 21 Nov 2000
new dev-lang/kaffe-1.0.6
jerry
new net-misc/ntp-4.0.99k
jerry
upd x11-libs/gtk+-1.2.8-r1 to 1.2.8-r2
achim
Added ldconfig to pkg_postinst, required for automated build
upd media-gfb/aview-1.2 to 1.2-r2
achim
Added dependencies
upd net-mail/maildrop-1.2.2 to 1.2.2-r2
achim
Added qmail or exim to dependencies because a mailer is
required for compilation
upd media-sound/gtk-gnutella-0.12 to 0.12-r2
achim
Added dependencies
upd media-libs/alsa-lib-0.5.9 to 0.5.9-r2
achim
Modified dependencies
upd dev-libs/slib-2.3.8 to 2.3.8-r2
achim
Modified dependencies
upd gnome-apps/gnucash-1.4.7 to 1.4.7-r2
achim
Added dependencies
new app-admin/sudo-1.6.3_p5
jerry
date 20 Nov 2000
upd app-admin/gkrellm-1.0.1 to 1.0.2
jerry
upd sys-apps/baselayout-1.3 to 1.3-r1
jerry
/etc/pam.d fix
upd sys-libs/pwdb-0.61-r1 to 0.61-r2
jerry
/etc/pam.d fix
upd net-misc/openssh-2.2.0_p1 to 2.2.0_p1-r1
jerry
/etc/pam.d fix
upd net-misc/snort-1.6.3 to 1.6.3-r2
achim
Fixed a small installation bug.
date 19 Nov 2000
|